From 4fb2656e8fec56808dc4ac938faa62cd297766d9 Mon Sep 17 00:00:00 2001 From: cardosofede Date: Wed, 22 May 2024 19:43:35 -0500 Subject: [PATCH] (feat) adapt notebooks --- ...ynb => analyze_optimization_results.ipynb} | 0 .../01_strategy_design_dman_maker.ipynb | 11 +- .../02_single_controller_backtest.ipynb | 39353 +++++++++++++++- .../dman_maker/03_optimization_notebook.ipynb | 587 +- .../01_strategy_design_marroq.ipynb | 0 .../02_single_controller_backtest.ipynb | 0 .../03_optimization_notebook.ipynb | 0 ...egy_design_supertrend_multitimeframe.ipynb | 0 .../02_controller_backtest.ipynb | 0 .../03_optimization_notebook.ipynb | 0 10 files changed, 39522 insertions(+), 429 deletions(-) rename quants_lab/research_notebooks/{01_analyze_optimization_results.ipynb => analyze_optimization_results.ipynb} (100%) rename quants_lab/research_notebooks/{marroq => marroq (old)}/01_strategy_design_marroq.ipynb (100%) rename quants_lab/research_notebooks/{marroq => marroq (old)}/02_single_controller_backtest.ipynb (100%) rename quants_lab/research_notebooks/{marroq => marroq (old)}/03_optimization_notebook.ipynb (100%) rename quants_lab/research_notebooks/{supertrend_multitimeframe => supertrend_multitimeframe(old)}/01_strategy_design_supertrend_multitimeframe.ipynb (100%) rename quants_lab/research_notebooks/{supertrend_multitimeframe => supertrend_multitimeframe(old)}/02_controller_backtest.ipynb (100%) rename quants_lab/research_notebooks/{supertrend_multitimeframe => supertrend_multitimeframe(old)}/03_optimization_notebook.ipynb (100%) diff --git a/quants_lab/research_notebooks/01_analyze_optimization_results.ipynb b/quants_lab/research_notebooks/analyze_optimization_results.ipynb similarity index 100% rename from quants_lab/research_notebooks/01_analyze_optimization_results.ipynb rename to quants_lab/research_notebooks/analyze_optimization_results.ipynb diff --git a/quants_lab/research_notebooks/dman_maker/01_strategy_design_dman_maker.ipynb b/quants_lab/research_notebooks/dman_maker/01_strategy_design_dman_maker.ipynb index befef71..5de4890 100644 --- a/quants_lab/research_notebooks/dman_maker/01_strategy_design_dman_maker.ipynb +++ b/quants_lab/research_notebooks/dman_maker/01_strategy_design_dman_maker.ipynb @@ -3,7 +3,7 @@ { "cell_type": "markdown", "source": [ - "# RESEARCH NOTEBOOK --> SUPERTREND" + "# RESEARCH NOTEBOOK --> DMAN Maker V2" ], "metadata": { "collapsed": false @@ -175,15 +175,6 @@ "start_time": "2024-04-18T22:03:34.504796Z" } } - }, - { - "cell_type": "code", - "execution_count": null, - "outputs": [], - "source": [], - "metadata": { - "collapsed": false - } } ], "metadata": { diff --git a/quants_lab/research_notebooks/dman_maker/02_single_controller_backtest.ipynb b/quants_lab/research_notebooks/dman_maker/02_single_controller_backtest.ipynb index 6d32473..b480200 100644 --- a/quants_lab/research_notebooks/dman_maker/02_single_controller_backtest.ipynb +++ b/quants_lab/research_notebooks/dman_maker/02_single_controller_backtest.ipynb @@ -2,11 +2,15 @@ "cells": [ { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "metadata": { "collapsed": false, "jupyter": { "outputs_hidden": false + }, + "ExecuteTime": { + "end_time": "2024-05-21T23:33:43.257748Z", + "start_time": "2024-05-21T23:33:43.251873Z" } }, "outputs": [], @@ -20,26 +24,26 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 38, "outputs": [], "source": [ "from decimal import Decimal\n", "\n", - "# Market configuration\n", - "exchange = \"binance_perpetual\"\n", + "# Controller configuration\n", + "connector_name = \"kucoin\"\n", "trading_pair = \"WLD-USDT\"\n", - "interval = \"3m\"\n", - "\n", - "# Account configuration\n", - "initial_portfolio_usd = 1000\n", - "order_amount = Decimal(\"25\")\n", - "n_levels = 1\n", - "leverage = 20\n", + "total_amount_quote = 1000\n", "trade_cost = 0.0006\n", - "\n", - "# Backtest period\n", - "start = \"2023-01-01\"\n", - "end = \"2024-01-02\"\n", + "buy_spreads = [Decimal(\"0.002\")]\n", + "sell_spreads = [Decimal(\"0.002\")]\n", + "buy_amounts_pct = [Decimal(\"1\")]\n", + "sell_amounts_pct = [Decimal(\"1\")]\n", + "executor_refresh_time = 60\n", + "cooldown_time = 3600\n", + "top_executor_refresh_time = 60\n", + "executor_activation_bounds = [Decimal(\"0.01\")]\n", + "dca_spreads = [Decimal(\"0.\"), Decimal(\"0.002\"), Decimal(\"0.008\"), Decimal(\"0.01\"), Decimal(\"0.015\"), Decimal(\"0.02\")]\n", + "dca_amounts = [Decimal(\"0.1\"), Decimal(\"0.2\"), Decimal(\"0.3\"), Decimal(\"0.4\"), Decimal(\"0.5\"), Decimal(\"0.6\")]\n", "\n", "# Triple barrier configuration\n", "stop_loss = Decimal(\"0.015\")\n", @@ -49,182 +53,123 @@ "trailing_stop_trailing_delta = Decimal(\"0.004\")" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-05-21T23:53:21.058600Z", + "start_time": "2024-05-21T23:53:21.024538Z" + } } }, { "cell_type": "code", - "execution_count": null, + "execution_count": 39, "metadata": { "collapsed": false, "jupyter": { "outputs_hidden": false + }, + "ExecuteTime": { + "end_time": "2024-05-21T23:53:21.062445Z", + "start_time": "2024-05-21T23:53:21.029893Z" } }, "outputs": [], "source": [ - "from hummingbot.smart_components.utils.order_level_builder import OrderLevelBuilder\n", - "from hummingbot.smart_components.strategy_frameworks.data_types import (\n", - " TripleBarrierConf\n", - ")\n", + "from hummingbot.strategy_v2.executors.position_executor.data_types import TrailingStop\n", + "from quants_lab.controllers.market_making.dman_maker_v2 import DManMakerV2Config, DManMakerV2\n", "\n", - "# Building the order levels\n", - "order_level_builder = OrderLevelBuilder(n_levels=n_levels)\n", - "order_levels = order_level_builder.build_order_levels(\n", - " amounts=order_amount,\n", - " spreads=Decimal(\"0\"),\n", - " # for directional strategies we don't need spreads since we are going to use market orders to enter\n", - " triple_barrier_confs=TripleBarrierConf(\n", - " stop_loss=stop_loss, take_profit=take_profit, time_limit=time_limit,\n", - " trailing_stop_activation_price_delta=trailing_stop_activation_price_delta,\n", - " trailing_stop_trailing_delta=trailing_stop_trailing_delta),\n", + "\n", + "# Creating the instance of the configuration and the controller\n", + "config = DManMakerV2Config(\n", + " connector_name=connector_name,\n", + " trading_pair=trading_pair,\n", + " total_amount_quote=total_amount_quote,\n", + " buy_spreads=buy_spreads,\n", + " sell_spreads=sell_spreads,\n", + " buy_amounts_pct=buy_amounts_pct,\n", + " sell_amounts_pct=sell_amounts_pct,\n", + " executor_refresh_time=executor_refresh_time,\n", + " cooldown_time=cooldown_time,\n", + " top_executor_refresh_time=top_executor_refresh_time,\n", + " executor_activation_bounds=executor_activation_bounds,\n", + " stop_loss=stop_loss,\n", + " take_profit=take_profit,\n", + " time_limit=time_limit,\n", + " trailing_stop=TrailingStop(activation_price=trailing_stop_activation_price_delta,\n", + " trailing_delta=trailing_stop_trailing_delta),\n", + " dca_spreads=dca_spreads,\n", + " dca_amounts=dca_amounts\n", ")" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 47, "metadata": { "collapsed": false, "jupyter": { "outputs_hidden": false + }, + "ExecuteTime": { + "end_time": "2024-05-21T23:53:53.099177Z", + "start_time": "2024-05-21T23:53:39.419416Z" } }, - "outputs": [], - "source": [ - "# Let's inpect the order levels\n", - "order_levels" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "jupyter": { - "outputs_hidden": false + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2024-05-21 18:53:41,626 - asyncio - ERROR - Unclosed client session\n", + "client_session: \n", + "2024-05-21 18:53:41,627 - asyncio - ERROR - Unclosed connector\n", + "connections: ['[(, 55330.4882885)]']\n", + "connector: \n" + ] } - }, - "outputs": [], + ], "source": [ - "import sys\n", - "from hummingbot.data_feed.candles_feed.candles_factory import CandlesConfig\n", - "from quants_lab.controllers.supertrend import SuperTrend, SuperTrendConfig\n", + "import pandas as pd\n", + "from hummingbot.strategy_v2.backtesting import MarketMakingBacktesting\n", "\n", - "# Controller configuration\n", - "length = 100\n", - "multiplier = 3.0\n", - "percentage_threshold = 0.01\n", + "backtesting_engine = MarketMakingBacktesting()\n", "\n", - "# Creating the instance of the configuration and the controller\n", - "config = SuperTrendConfig(\n", - " exchange=exchange,\n", - " trading_pair=trading_pair,\n", - " order_levels=order_levels,\n", - " candles_config=[\n", - " CandlesConfig(connector=exchange, trading_pair=trading_pair, interval=interval, max_records=sys.maxsize),\n", - " ],\n", - " leverage=leverage,\n", - " length=length,\n", - " multiplier=multiplier,\n", - " percentage_threshold=percentage_threshold,\n", - ")\n", - "controller = SuperTrend(config=config)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "from quants_lab.strategy.strategy_analysis import StrategyAnalysis\n", + "# Backtest period\n", + "start = \"2024-01-01\"\n", + "end = \"2024-01-10\"\n", + "backtesting_resolution = \"1m\"\n", "\n", - "from hummingbot.smart_components.strategy_frameworks.directional_trading.directional_trading_backtesting_engine import \\\n", - " DirectionalTradingBacktestingEngine\n", - "\n", - "# Creating the backtesting engine and loading the historical data\n", - "engine = DirectionalTradingBacktestingEngine(controller=controller)\n", - "engine.load_controller_data(\"../../../data/candles\")" + "start_time = pd.to_datetime(start).timestamp() * 1e3\n", + "end_time = pd.to_datetime(end).timestamp() * 1e3\n", + "backtesting_results = await backtesting_engine.run_backtesting(\n", + " controller_config=config, trade_cost=trade_cost,\n", + " start=int(start_time), end=int(end_time),\n", + " backtesting_resolution=backtesting_resolution)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 48, "metadata": { "collapsed": false, "jupyter": { "outputs_hidden": false + }, + "ExecuteTime": { + "end_time": "2024-05-21T23:53:53.105729Z", + "start_time": "2024-05-21T23:53:53.098438Z" } }, - "outputs": [], - "source": [ - "# Let's see what is inside the candles of the controller\n", - "engine.controller.candles" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "jupyter": { - "outputs_hidden": false + "outputs": [ + { + "data": { + "text/plain": "dict_keys(['executors', 'results', 'processed_data'])" + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" } - }, - "outputs": [], - "source": [ - "engine.controller.candles[0].candles_df" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "# Let's understand what is inside the processed data since this is what we are going to use when generating the signal ;)\n", - "engine.controller.get_processed_data()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "# Let's run the backtesting\n", - "\n", - "backtesting_results = engine.run_backtesting(initial_portfolio_usd=initial_portfolio_usd,\n", - " trade_cost=trade_cost,\n", - " start=start, end=end)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], + ], "source": [ "# Let's see what is inside the backtesting results\n", "backtesting_results.keys()" @@ -232,14 +177,27 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 49, "metadata": { "collapsed": false, "jupyter": { "outputs_hidden": false + }, + "ExecuteTime": { + "end_time": "2024-05-21T23:53:53.107299Z", + "start_time": "2024-05-21T23:53:53.104827Z" } }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": "{'reference_price': Decimal('2.497599999999999820232687852694652974605560302734375'),\n 'spread_multiplier': Decimal('1'),\n 'features': timestamp_bt open_bt high_bt low_bt close_bt volume_bt \\\n 0 1704067200000 3.6272 3.6335 3.6268 3.6335 1247.4443 \n 1 1704067260000 3.6333 3.639 3.6317 3.639 373.5355 \n 2 1704067320000 3.6476 3.657 3.6476 3.657 504.2724 \n 3 1704067380000 3.6601 3.6622 3.6586 3.6622 43.5494 \n 4 1704067440000 3.6622 3.6622 3.6622 3.6622 0 \n ... ... ... ... ... ... ... \n 12964 1704844560000 2.4965 2.4965 2.495 2.495 5.1705 \n 12965 1704844620000 2.4978 2.5025 2.4978 2.5025 37.5497 \n 12966 1704844680000 2.5025 2.5025 2.5025 2.5025 0 \n 12967 1704844740000 2.5027 2.5034 2.5006 2.5006 63.5077 \n 12968 1704844800000 2.5026 2.5026 2.4976 2.4976 1009.2771 \n \n quote_asset_volume_bt n_trades_bt taker_buy_base_volume_bt \\\n 0 4528.54482718 0 0 \n 1 1357.28548746 0 0 \n 2 1843.41100357 0 0 \n 3 159.35951529 0 0 \n 4 0 0 0 \n ... ... ... ... \n 12964 12.9018441 0 0 \n 12965 93.93699135 0 0 \n 12966 0 0 0 \n 12967 158.88729718 0 0 \n 12968 2523.49246652 0 0 \n \n taker_buy_quote_volume_bt reference_price spread_multiplier signal \\\n 0 0 3.6335 1 0 \n 1 0 3.639 1 0 \n 2 0 3.657 1 0 \n 3 0 3.6622 1 0 \n 4 0 3.6622 1 0 \n ... ... ... ... ... \n 12964 0 2.495 1 0 \n 12965 0 2.5025 1 0 \n 12966 0 2.5025 1 0 \n 12967 0 2.5006 1 0 \n 12968 0 2.4976 1 0 \n \n timestamp open high low close volume \n 0 1704067200000 3.6272 3.6335 3.6268 3.6335 1247.4443 \n 1 1704067260000 3.6333 3.639 3.6317 3.639 373.5355 \n 2 1704067320000 3.6476 3.657 3.6476 3.657 504.2724 \n 3 1704067380000 3.6601 3.6622 3.6586 3.6622 43.5494 \n 4 1704067440000 3.6622 3.6622 3.6622 3.6622 0 \n ... ... ... ... ... ... ... \n 12964 1704844560000 2.4965 2.4965 2.495 2.495 5.1705 \n 12965 1704844620000 2.4978 2.5025 2.4978 2.5025 37.5497 \n 12966 1704844680000 2.5025 2.5025 2.5025 2.5025 0 \n 12967 1704844740000 2.5027 2.5034 2.5006 2.5006 63.5077 \n 12968 1704844800000 2.5026 2.5026 2.4976 2.4976 1009.2771 \n \n [12961 rows x 19 columns]}" + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# now let's analyze each of the dataframes\n", "\n", @@ -249,29 +207,55 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 50, "metadata": { "collapsed": false, "jupyter": { "outputs_hidden": false + }, + "ExecuteTime": { + "end_time": "2024-05-21T23:53:53.140339Z", + "start_time": "2024-05-21T23:53:53.117236Z" } }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": "[ExecutorInfo(id='ATh9By7hcv5V8pLarj4Cy69kKuYgBpNYag1QS428cgjc', timestamp=1704067200000.0, type='dca_executor', close_timestamp=1704067320000.0, close_type=, status=, config=DCAExecutorConfig(id='ATh9By7hcv5V8pLarj4Cy69kKuYgBpNYag1QS428cgjc', type='dca_executor', timestamp=1704067200000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380955'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.626233000000000173583529495'), Decimal('3.618980534000000173236362436'), Decimal('3.597223136000000172194861259'), Decimal('3.589970670000000171847694200'), Decimal('3.571839505000000170979776553'), Decimal('3.553708340000000170111858905')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.657, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.626233}, controller_id=None),\n ExecutorInfo(id='J5kLBeH8TTiQRd1iMTnEG9hHRwp44sBRbgta7PhkP7U4', timestamp=1704067200000.0, type='dca_executor', close_timestamp=1704072300000.0, close_type=, status=, config=DCAExecutorConfig(id='J5kLBeH8TTiQRd1iMTnEG9hHRwp44sBRbgta7PhkP7U4', type='dca_executor', timestamp=1704067200000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('71.99999999999999999999999999'), Decimal('96.19047619047619047619047617'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.640767000000000174582411026'), Decimal('3.648048534000000174931575848'), Decimal('3.669893136000000175979070314'), Decimal('3.677174670000000176328235136'), Decimal('3.695378505000000177201147191'), Decimal('3.713582340000000178074059247')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.01516281491309645797216365536996818264015018939971923828125'), net_pnl_quote=Decimal('-7.67635555945642789055227694916538894176483154296875'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 3.7496, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.686505601555519}, controller_id=None),\n ExecutorInfo(id='FbqtGEUMzuDrG1G9cEP3aV31rLQwjWGxLoyV7TnDeDXs', timestamp=1704067380000.0, type='dca_executor', close_timestamp=1704072360000.0, close_type=, status=, config=DCAExecutorConfig(id='FbqtGEUMzuDrG1G9cEP3aV31rLQwjWGxLoyV7TnDeDXs', type='dca_executor', timestamp=1704067380000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380955'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.654875599999999899861377606'), Decimal('3.647565848799999900061654851'), Decimal('3.625636595199999900662486585'), Decimal('3.618326843999999900862763830'), Decimal('3.600052465999999901363456942'), Decimal('3.581778087999999901864150054')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.033093745264367972758190461490812595002353191375732421875'), net_pnl_quote=Decimal('2.36068716219158236668818062753416597843170166015625'), cum_fees_quote=Decimal('0.042800000000000004707345624410663731396198272705078125'), filled_amount_quote=Decimal('71.333333333333342807236476801335811614990234375'), is_active=False, is_trading=False, custom_info={'close_price': 3.7679, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.650005685649132}, controller_id=None),\n ExecutorInfo(id='HVMBhGCSPyoW2MxZEFeKyq5CmdqEDVmaYz4Up44JrfV9', timestamp=1704075900000.0, type='dca_executor', close_timestamp=1704076020000.0, close_type=, status=, config=DCAExecutorConfig(id='HVMBhGCSPyoW2MxZEFeKyq5CmdqEDVmaYz4Up44JrfV9', type='dca_executor', timestamp=1704075900000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.688762800000000005848979632'), Decimal('3.696140325600000005860677591'), Decimal('3.718272902400000005895771469'), Decimal('3.725650428000000005907469428'), Decimal('3.744094242000000005936714326'), Decimal('3.762538056000000005965959225')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6849, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.6887628}, controller_id=None),\n ExecutorInfo(id='Giv5Y3r8oT7THrkusS6Pjef5hU8Wc5rHhiy47RugTyTa', timestamp=1704076080000.0, type='dca_executor', close_timestamp=1704076200000.0, close_type=, status=, config=DCAExecutorConfig(id='Giv5Y3r8oT7THrkusS6Pjef5hU8Wc5rHhiy47RugTyTa', type='dca_executor', timestamp=1704076080000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.693772799999999899054614614'), Decimal('3.701160345599999898852723843'), Decimal('3.723322982399999898247051531'), Decimal('3.730710527999999898045160760'), Decimal('3.749179391999999897540433833'), Decimal('3.767648255999999897035706906')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6843, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.6937728}, controller_id=None),\n ExecutorInfo(id='A2nCeBXQfU9WT8xQkW9fkuS1EUqQaqaUCeX5R5XkLXbd', timestamp=1704076260000.0, type='dca_executor', close_timestamp=1704076380000.0, close_type=, status=, config=DCAExecutorConfig(id='A2nCeBXQfU9WT8xQkW9fkuS1EUqQaqaUCeX5R5XkLXbd', type='dca_executor', timestamp=1704076260000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428570'), Decimal('71.99999999999999999999999998'), Decimal('96.19047619047619047619047617'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.688362000000000049990719895'), Decimal('3.695738724000000050090701335'), Decimal('3.717868896000000050390645654'), Decimal('3.725245620000000050490627094'), Decimal('3.743687430000000050740580693'), Decimal('3.762129240000000050990534293')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6783, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.688362}, controller_id=None),\n ExecutorInfo(id='EpHqffK2HVxQJZnwy3DtiFAfpioZH4X2KDGTQvDxuZE2', timestamp=1704076440000.0, type='dca_executor', close_timestamp=1704076560000.0, close_type=, status=, config=DCAExecutorConfig(id='EpHqffK2HVxQJZnwy3DtiFAfpioZH4X2KDGTQvDxuZE2', type='dca_executor', timestamp=1704076440000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.685957199999999869863773204'), Decimal('3.693329114399999869603500750'), Decimal('3.715444857599999868822683390'), Decimal('3.722816771999999868562410936'), Decimal('3.741246557999999867911729802'), Decimal('3.759676343999999867261048668')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6786, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.6859572}, controller_id=None),\n ExecutorInfo(id='76VV1Dj9mDBg7vpAsSR1i55gbndn1Wds9auLpiAd6CQk', timestamp=1704076620000.0, type='dca_executor', close_timestamp=1704076740000.0, close_type=, status=, config=DCAExecutorConfig(id='76VV1Dj9mDBg7vpAsSR1i55gbndn1Wds9auLpiAd6CQk', type='dca_executor', timestamp=1704076620000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142858')], prices=[Decimal('3.680546400000000020799878485'), Decimal('3.687907492800000020841478242'), Decimal('3.709990771200000020966277513'), Decimal('3.717351864000000021007877270'), Decimal('3.735754596000000021111876662'), Decimal('3.754157328000000021215876055')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6715, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.6805464}, controller_id=None),\n ExecutorInfo(id='E3vRDqYQbgm6YFYYxqDAjd5Wcy4SRZYJ11AvibZbHVTU', timestamp=1704072360000.0, type='dca_executor', close_timestamp=1704076860000.0, close_type=, status=, config=DCAExecutorConfig(id='E3vRDqYQbgm6YFYYxqDAjd5Wcy4SRZYJ11AvibZbHVTU', type='dca_executor', timestamp=1704072360000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.760364200000000026789752361'), Decimal('3.752843471600000026736172856'), Decimal('3.730281286400000026575434342'), Decimal('3.722760558000000026521854837'), Decimal('3.703958737000000026387906076'), Decimal('3.685156916000000026253957314')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.0145037687138440223033608589275900158099830150604248046875'), net_pnl_quote=Decimal('-7.1610631385472256482671582489274442195892333984375'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 3.6552, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.713420848392969}, controller_id=None),\n ExecutorInfo(id='2oEWXZQv7ewiAUt6VRU5VHLqBgJc3vJXVU3SCjS9FyxT', timestamp=1704076800000.0, type='dca_executor', close_timestamp=1704076920000.0, close_type=, status=, config=DCAExecutorConfig(id='2oEWXZQv7ewiAUt6VRU5VHLqBgJc3vJXVU3SCjS9FyxT', type='dca_executor', timestamp=1704076800000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000006'), Decimal('96.19047619047619047619047624'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.676137600000000061381633108'), Decimal('3.683489875200000061504396374'), Decimal('3.705546700800000061872686173'), Decimal('3.712898976000000061995449439'), Decimal('3.731279664000000062302357605'), Decimal('3.749660352000000062609265770')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6576, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.6761376}, controller_id=None),\n ExecutorInfo(id='6GmfMuYpmpcoZ8S4qsdwsNrGFLbykxRTPjA4MRjho8YE', timestamp=1704076980000.0, type='dca_executor', close_timestamp=1704077100000.0, close_type=, status=, config=DCAExecutorConfig(id='6GmfMuYpmpcoZ8S4qsdwsNrGFLbykxRTPjA4MRjho8YE', type='dca_executor', timestamp=1704076980000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000006'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142858')], prices=[Decimal('3.654995399999999942482796498'), Decimal('3.662305390799999942367762091'), Decimal('3.684235363199999942022658870'), Decimal('3.691545353999999941907624463'), Decimal('3.709820330999999941620038445'), Decimal('3.728095307999999941332452428')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6333, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.6549954}, controller_id=None),\n ExecutorInfo(id='C3gb5NYU3hcdJfzUvzTaLwXK8t7ZqtvgkC7jNGkBaB3b', timestamp=1704077160000.0, type='dca_executor', close_timestamp=1704077280000.0, close_type=, status=, config=DCAExecutorConfig(id='C3gb5NYU3hcdJfzUvzTaLwXK8t7ZqtvgkC7jNGkBaB3b', type='dca_executor', timestamp=1704077160000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.639364199999999884101113677'), Decimal('3.646642928399999883869315904'), Decimal('3.668479113599999883173922586'), Decimal('3.675757841999999882942124814'), Decimal('3.693954662999999882362630382'), Decimal('3.712151483999999881783135951')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6304, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.6393641999999997}, controller_id=None),\n ExecutorInfo(id='2Q78Zgrg28Vj1zxYs4RaawWc1uJBbAS1vkkdjQdB9n7i', timestamp=1704077340000.0, type='dca_executor', close_timestamp=1704109320000.0, close_type=, status=, config=DCAExecutorConfig(id='2Q78Zgrg28Vj1zxYs4RaawWc1uJBbAS1vkkdjQdB9n7i', type='dca_executor', timestamp=1704077340000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.637059599999999915427426054'), Decimal('3.644333719199999915258280906'), Decimal('3.666156076799999914750845462'), Decimal('3.673430195999999914581700315'), Decimal('3.691615493999999914158837445'), Decimal('3.709800791999999913735974575')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.031084693949450438454906731067239888943731784820556640625'), net_pnl_quote=Decimal('2.22329572914640749559112009592354297637939453125'), cum_fees_quote=Decimal('0.0429142857142857103713851074644480831921100616455078125'), filled_amount_quote=Decimal('71.5238095238095183958648703992366790771484375'), is_active=False, is_trading=False, custom_info={'close_price': 3.5315, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.641912241437017}, controller_id=None),\n ExecutorInfo(id='AzHcWY7a6BZcEZL1YHHwoZAYq8bSKe9zQQ68nBCBnzCt', timestamp=1704109320000.0, type='dca_executor', close_timestamp=1704109440000.0, close_type=, status=, config=DCAExecutorConfig(id='AzHcWY7a6BZcEZL1YHHwoZAYq8bSKe9zQQ68nBCBnzCt', type='dca_executor', timestamp=1704109320000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000006'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142858')], prices=[Decimal('3.538562999999999861314083081'), Decimal('3.545640125999999861036711247'), Decimal('3.566871503999999860204595746'), Decimal('3.573948629999999859927223912'), Decimal('3.591641444999999859233794327'), Decimal('3.609334259999999858540364743')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.5385, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.538563}, controller_id=None),\n ExecutorInfo(id='G676QHWqXVGeBr7MtEw7BCkgJsy1v8gZ6QFUrYouBrBy', timestamp=1704109500000.0, type='dca_executor', close_timestamp=1704109620000.0, close_type=, status=, config=DCAExecutorConfig(id='G676QHWqXVGeBr7MtEw7BCkgJsy1v8gZ6QFUrYouBrBy', type='dca_executor', timestamp=1704109500000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000005'), Decimal('96.19047619047619047619047624'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142858')], prices=[Decimal('3.548182200000000136844481578'), Decimal('3.555278564400000137118170541'), Decimal('3.576567657600000137939237431'), Decimal('3.583664022000000138212926394'), Decimal('3.601404933000000138897148802'), Decimal('3.619145844000000139581371210')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.5404, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.5481822000000003}, controller_id=None),\n ExecutorInfo(id='78aQMv4CM5ZX2qK8cpK4kaZMG9p5LfgaST4upkumjHDe', timestamp=1704109680000.0, type='dca_executor', close_timestamp=1704109800000.0, close_type=, status=, config=DCAExecutorConfig(id='78aQMv4CM5ZX2qK8cpK4kaZMG9p5LfgaST4upkumjHDe', type='dca_executor', timestamp=1704109680000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428571'), Decimal('71.99999999999999999999999999'), Decimal('96.19047619047619047619047617'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.540567000000000085582770036'), Decimal('3.547648134000000085753935576'), Decimal('3.568891536000000086267432196'), Decimal('3.575972670000000086438597736'), Decimal('3.593675505000000086866511587'), Decimal('3.611378340000000087294425437')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.5366, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.5405670000000002}, controller_id=None),\n ExecutorInfo(id='DMuck9wctakrNJ2sZ3qNiJ4oNxZvqJ9SPcFDEtoFq7bf', timestamp=1704109860000.0, type='dca_executor', close_timestamp=1704109980000.0, close_type=, status=, config=DCAExecutorConfig(id='DMuck9wctakrNJ2sZ3qNiJ4oNxZvqJ9SPcFDEtoFq7bf', type='dca_executor', timestamp=1704109860000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.543673199999999965972977132'), Decimal('3.550760546399999965904923086'), Decimal('3.572022585599999965700760949'), Decimal('3.579109931999999965632706903'), Decimal('3.596828297999999965462571789'), Decimal('3.614546663999999965292436675')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.539, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.5436731999999997}, controller_id=None),\n ExecutorInfo(id='9oSUcrrAE3MccCqVK7Hd4rJr2fcq4QLopXju24y6RXnc', timestamp=1704080460000.0, type='dca_executor', close_timestamp=1704123660000.0, close_type=, status=, config=DCAExecutorConfig(id='9oSUcrrAE3MccCqVK7Hd4rJr2fcq4QLopXju24y6RXnc', type='dca_executor', timestamp=1704080460000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.569446800000000001269337413'), Decimal('3.562307906400000001266798738'), Decimal('3.540891225600000001259182714'), Decimal('3.533752332000000001256644039'), Decimal('3.515905098000000001250297352'), Decimal('3.498057864000000001243950665')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.00023754063515637728761474567473754859747714363038539886474609375'), net_pnl_quote=Decimal('-0.117282860743757044730273264576680958271026611328125'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 3.5185, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.524886808663259}, controller_id=None),\n ExecutorInfo(id='8Tkirv9ee195HKe5iLoEucwThiHVD5oaa5zVkqXFkMCy', timestamp=1704123660000.0, type='dca_executor', close_timestamp=1704123780000.0, close_type=, status=, config=DCAExecutorConfig(id='8Tkirv9ee195HKe5iLoEucwThiHVD5oaa5zVkqXFkMCy', type='dca_executor', timestamp=1704123660000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.511462999999999960851822245'), Decimal('3.504440073999999960930118601'), Decimal('3.483371295999999961165007667'), Decimal('3.476348369999999961243304023'), Decimal('3.458791054999999961439044911'), Decimal('3.441233739999999961634785800')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.5228, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.511463}, controller_id=None),\n ExecutorInfo(id='3A2bsXXCUsutNgULychab5goCkaRvWoZSzdmjbfzhk4U', timestamp=1704123840000.0, type='dca_executor', close_timestamp=1704123960000.0, close_type=, status=, config=DCAExecutorConfig(id='3A2bsXXCUsutNgULychab5goCkaRvWoZSzdmjbfzhk4U', type='dca_executor', timestamp=1704123840000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.525135600000000006235037486'), Decimal('3.518085328800000006222567411'), Decimal('3.496934515200000006185157186'), Decimal('3.489884244000000006172687111'), Decimal('3.472258566000000006141511924'), Decimal('3.454632888000000006110336736')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.5363, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.5251356}, controller_id=None),\n ExecutorInfo(id='3ZGoQ6gtLd49DNDuMbYTkJs9cXGgpPR7MRLxbzCxWbeA', timestamp=1704124020000.0, type='dca_executor', close_timestamp=1704139260000.0, close_type=, status=, config=DCAExecutorConfig(id='3ZGoQ6gtLd49DNDuMbYTkJs9cXGgpPR7MRLxbzCxWbeA', type='dca_executor', timestamp=1704124020000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714291'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.529227400000000220389605177'), Decimal('3.522168945200000219948825967'), Decimal('3.500993580800000218626488336'), Decimal('3.493935126000000218185709125'), Decimal('3.476288989000000217083761099'), Decimal('3.458642852000000215981813073')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.0308962131428041804348527676893354509957134723663330078125'), net_pnl_quote=Decimal('7.30621878415074110790783379343338310718536376953125'), cum_fees_quote=Decimal('0.14188571428571428167941803621943108737468719482421875'), filled_amount_quote=Decimal('236.4761904761904816041351296007633209228515625'), is_active=False, is_trading=False, custom_info={'close_price': 3.6117, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.5052775483326624}, controller_id=None),\n ExecutorInfo(id='HfeBhgPMXUN7FEf9X2hYcEn1vDgmCZ78LQ1igd48eYYM', timestamp=1704139260000.0, type='dca_executor', close_timestamp=1704139380000.0, close_type=, status=, config=DCAExecutorConfig(id='HfeBhgPMXUN7FEf9X2hYcEn1vDgmCZ78LQ1igd48eYYM', type='dca_executor', timestamp=1704139260000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380950'), Decimal('70.85714285714285714285714284'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.604476599999999910500304845'), Decimal('3.597267646799999910679304235'), Decimal('3.575640787199999911216302406'), Decimal('3.568431833999999911395301797'), Decimal('3.550409450999999911842800272'), Decimal('3.532387067999999912290298748')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6112, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.6044766}, controller_id=None),\n ExecutorInfo(id='4RRTfhyXDBSH4SpAt5eCNoRwAsCBcgrCnjUQNjTRDocb', timestamp=1704139440000.0, type='dca_executor', close_timestamp=1704139560000.0, close_type=, status=, config=DCAExecutorConfig(id='4RRTfhyXDBSH4SpAt5eCNoRwAsCBcgrCnjUQNjTRDocb', type='dca_executor', timestamp=1704139440000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.598887800000000082817099012'), Decimal('3.591690024400000082651464814'), Decimal('3.570096697600000082154562220'), Decimal('3.562898922000000081988928022'), Decimal('3.544904483000000081574842527'), Decimal('3.526910044000000081160757032')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6138, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.5988878}, controller_id=None),\n ExecutorInfo(id='CN8X5KdydpXCEYWBSxvWVFSbai96m8TYai2TJNaSnB4L', timestamp=1704139620000.0, type='dca_executor', close_timestamp=1704139740000.0, close_type=, status=, config=DCAExecutorConfig(id='CN8X5KdydpXCEYWBSxvWVFSbai96m8TYai2TJNaSnB4L', type='dca_executor', timestamp=1704139620000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.607869799999999979994085020'), Decimal('3.600654060399999980034096850'), Decimal('3.579006841599999980154132340'), Decimal('3.571791101999999980194144170'), Decimal('3.553751752999999980294173745'), Decimal('3.535712403999999980394203320')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6148, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.6078698}, controller_id=None),\n ExecutorInfo(id='9Hbf6s4dUzibQBzKGtxBYiXmgaFFHa8SxXdwky3rhK2a', timestamp=1704139800000.0, type='dca_executor', close_timestamp=1704139920000.0, close_type=, status=, config=DCAExecutorConfig(id='9Hbf6s4dUzibQBzKGtxBYiXmgaFFHa8SxXdwky3rhK2a', type='dca_executor', timestamp=1704139800000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.607370799999999813350518019'), Decimal('3.600156058399999813723816983'), Decimal('3.578511833599999814843713875'), Decimal('3.571297091999999815217012839'), Decimal('3.553260237999999816150260249'), Decimal('3.535223383999999817083507659')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6124, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.6073708}, controller_id=None),\n ExecutorInfo(id='EDn4KZGBAuJkiEJ6tZ6CofT6DqUgZ8wsuTyNNgq5gEYK', timestamp=1704110040000.0, type='dca_executor', close_timestamp=1704153240000.0, close_type=, status=, config=DCAExecutorConfig(id='EDn4KZGBAuJkiEJ6tZ6CofT6DqUgZ8wsuTyNNgq5gEYK', type='dca_executor', timestamp=1704110040000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047617'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.546078000000000146099923824'), Decimal('3.553170156000000146392123672'), Decimal('3.574446624000000147268723215'), Decimal('3.581538780000000147560923062'), Decimal('3.599269170000000148291422681'), Decimal('3.616999560000000149021922300')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.00854299774488135633954133396628094487823545932769775390625'), net_pnl_quote=Decimal('-4.3249943107002923881054812227375805377960205078125'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 3.6245, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.590627032862249}, controller_id=None),\n ExecutorInfo(id='9ZcJRETDNT2qt5zqyGAfdStFRB4eqj5y9FVVfsJJMVVd', timestamp=1704153240000.0, type='dca_executor', close_timestamp=1704153360000.0, close_type=, status=, config=DCAExecutorConfig(id='9ZcJRETDNT2qt5zqyGAfdStFRB4eqj5y9FVVfsJJMVVd', type='dca_executor', timestamp=1704153240000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('71.99999999999999999999999999'), Decimal('96.19047619047619047619047616'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.631748999999999832839402135'), Decimal('3.639012497999999832505080939'), Decimal('3.660802991999999831502117352'), Decimal('3.668066489999999831167796156'), Decimal('3.686225234999999830331993167'), Decimal('3.704383979999999829496190178')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6174, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.6317489999999997}, controller_id=None),\n ExecutorInfo(id='7qv4cbX8wcYNQoBzjKFX8KNneQ8jwtePgwbZdDCbpTP8', timestamp=1704153420000.0, type='dca_executor', close_timestamp=1704153540000.0, close_type=, status=, config=DCAExecutorConfig(id='7qv4cbX8wcYNQoBzjKFX8KNneQ8jwtePgwbZdDCbpTP8', type='dca_executor', timestamp=1704153420000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.624735000000000160342468468'), Decimal('3.631984470000000160663153405'), Decimal('3.653732880000000161625208216'), Decimal('3.660982350000000161945893153'), Decimal('3.679106025000000162747605495'), Decimal('3.697229700000000163549317837')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6119, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.6247350000000003}, controller_id=None),\n ExecutorInfo(id='CYAt1pa4TTc4goAfMXC9NA4PUuSpudVf4JCoujG6Pv5U', timestamp=1704153600000.0, type='dca_executor', close_timestamp=1704153720000.0, close_type=, status=, config=DCAExecutorConfig(id='CYAt1pa4TTc4goAfMXC9NA4PUuSpudVf4JCoujG6Pv5U', type='dca_executor', timestamp=1704153600000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.613512600000000061379031023'), Decimal('3.620739625200000061501789085'), Decimal('3.642420700800000061870063271'), Decimal('3.649647726000000061992821333'), Decimal('3.667715289000000062299716488'), Decimal('3.685782852000000062606611643')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.599, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.6135126}, controller_id=None),\n ExecutorInfo(id='HbP6YqUFhpxnFWdEw9N2uviWQ7TVuWWuKKnW3q75KTv9', timestamp=1704139980000.0, type='dca_executor', close_timestamp=1704160620000.0, close_type=, status=, config=DCAExecutorConfig(id='HbP6YqUFhpxnFWdEw9N2uviWQ7TVuWWuKKnW3q75KTv9', type='dca_executor', timestamp=1704139980000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.606771999999999879298856476'), Decimal('3.599558455999999879540258763'), Decimal('3.577917823999999880264465624'), Decimal('3.570704279999999880505867911'), Decimal('3.552670419999999881109373629'), Decimal('3.534636559999999881712879346')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.03145933504437083139126940523055964149534702301025390625'), net_pnl_quote=Decimal('7.4393837062069305687828091322444379329681396484375'), cum_fees_quote=Decimal('0.14188571428571428167941803621943108737468719482421875'), filled_amount_quote=Decimal('236.4761904761904816041351296007633209228515625'), is_active=False, is_trading=False, custom_info={'close_price': 3.6908, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.5822959193717274}, controller_id=None),\n ExecutorInfo(id='BCwKiF9hHYvyG4uiyZVrsiGYBLY2bsktMPBZqaa2gR5U', timestamp=1704153780000.0, type='dca_executor', close_timestamp=1704161760000.0, close_type=, status=, config=DCAExecutorConfig(id='BCwKiF9hHYvyG4uiyZVrsiGYBLY2bsktMPBZqaa2gR5U', type='dca_executor', timestamp=1704153780000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047624'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.603692999999999807919502657'), Decimal('3.610900385999999807535341662'), Decimal('3.632522543999999806382858678'), Decimal('3.639729929999999805998697684'), Decimal('3.657748394999999805038295197'), Decimal('3.675766859999999804077892710')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.01493250714901908811349517947064668987877666950225830078125'), net_pnl_quote=Decimal('-7.55975951213316310628442806773819029331207275390625'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 3.706, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.648965844501011}, controller_id=None),\n ExecutorInfo(id='mxTQ9PYU7EkQQaY7BLcFwcLxT4HtQTQRdYQxSxwkx9V', timestamp=1704160620000.0, type='dca_executor', close_timestamp=1704177900000.0, close_type=, status=, config=DCAExecutorConfig(id='mxTQ9PYU7EkQQaY7BLcFwcLxT4HtQTQRdYQxSxwkx9V', type='dca_executor', timestamp=1704160620000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380955'), Decimal('70.85714285714285714285714292'), Decimal('94.28571428571428571428571433'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000001')], prices=[Decimal('3.683418399999999858731131175'), Decimal('3.676051563199999859013668913'), Decimal('3.653951052799999859861282126'), Decimal('3.646584215999999860143819863'), Decimal('3.628167123999999860850164207'), Decimal('3.609750031999999861556508552')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.032656674102879611198968490270999609492719173431396484375'), net_pnl_quote=Decimal('2.32950941933874577927099380758590996265411376953125'), cum_fees_quote=Decimal('0.042800000000000004707345624410663731396198272705078125'), filled_amount_quote=Decimal('71.333333333333342807236476801335811614990234375'), is_active=False, is_trading=False, custom_info={'close_price': 3.7946, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.678510453987717}, controller_id=None),\n ExecutorInfo(id='3gqAmdWvLCPHMXCsKA3MZ5JemnTMF4Q7SiR6mdmQYmZq', timestamp=1704165360000.0, type='dca_executor', close_timestamp=1704189000000.0, close_type=, status=, config=DCAExecutorConfig(id='3gqAmdWvLCPHMXCsKA3MZ5JemnTMF4Q7SiR6mdmQYmZq', type='dca_executor', timestamp=1704165360000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428574'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.743271599999999787278351369'), Decimal('3.750758143199999786852908072'), Decimal('3.773217772799999785576578180'), Decimal('3.780704315999999785151134883'), Decimal('3.799420673999999784087526640'), Decimal('3.818137031999999783023918396')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.01390103960291601097043479029480295139364898204803466796875'), net_pnl_quote=Decimal('-7.037566787542932189580824342556297779083251953125'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 3.8476, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.7902979568710906}, controller_id=None),\n ExecutorInfo(id='8TA9qPcksvZ9gtDM31BMdJiVsR2zt2JPTxVwAyDX2PR1', timestamp=1704177900000.0, type='dca_executor', close_timestamp=1704189120000.0, close_type=, status=, config=DCAExecutorConfig(id='8TA9qPcksvZ9gtDM31BMdJiVsR2zt2JPTxVwAyDX2PR1', type='dca_executor', timestamp=1704177900000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571433'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.787010799999999972895395328'), Decimal('3.779436778399999972949604537'), Decimal('3.756714713599999973112232165'), Decimal('3.749140691999999973166441375'), Decimal('3.730205637999999973301964398'), Decimal('3.711270583999999973437487421')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.036201224464641391931341019017054350115358829498291015625'), net_pnl_quote=Decimal('5.147469345305676569068964454345405101776123046875'), cum_fees_quote=Decimal('0.08531428571428571749901692555795307271182537078857421875'), filled_amount_quote=Decimal('142.19047619047620401033782400190830230712890625'), is_active=False, is_trading=False, custom_info={'close_price': 3.9043, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.769382049122572}, controller_id=None),\n ExecutorInfo(id='DkU1sUjB4rGrQtcnh3Y31oCKdrdH15MHaLT2LQUV2mDp', timestamp=1704189120000.0, type='dca_executor', close_timestamp=1704191940000.0, close_type=, status=, config=DCAExecutorConfig(id='DkU1sUjB4rGrQtcnh3Y31oCKdrdH15MHaLT2LQUV2mDp', type='dca_executor', timestamp=1704189120000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.896491400000000103369211801'), Decimal('3.888698417200000103162473377'), Decimal('3.865319468800000102542258107'), Decimal('3.857526486000000102335519683'), Decimal('3.838044029000000101818673624'), Decimal('3.818561572000000101301827565')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.0132542149687274839198192211142668384127318859100341796875'), net_pnl_quote=Decimal('-6.54411085253575830478212083107791841030120849609375'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 3.7888, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.847848673898105}, controller_id=None),\n ExecutorInfo(id='HaKQSmrpfox47QNdakGadZjBSfeJ2mEAjiyNhHNqQYZK', timestamp=1704192600000.0, type='dca_executor', close_timestamp=1704192720000.0, close_type=, status=, config=DCAExecutorConfig(id='HaKQSmrpfox47QNdakGadZjBSfeJ2mEAjiyNhHNqQYZK', type='dca_executor', timestamp=1704192600000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.774533999999999904041717012'), Decimal('3.782083067999999903849800446'), Decimal('3.804730271999999903274050748'), Decimal('3.812279339999999903082134182'), Decimal('3.831152009999999902602342767'), Decimal('3.850024679999999902122551352')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.7523, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.774534}, controller_id=None),\n ExecutorInfo(id='BkfmvzjJWjFsjXjmPYb5Baa1k195rQ6EsL7yngZzHrca', timestamp=1704195540000.0, type='dca_executor', close_timestamp=1704195660000.0, close_type=, status=, config=DCAExecutorConfig(id='BkfmvzjJWjFsjXjmPYb5Baa1k195rQ6EsL7yngZzHrca', type='dca_executor', timestamp=1704195540000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.711661800000000072175569688'), Decimal('3.704238476400000072031218549'), Decimal('3.681968505600000071598165130'), Decimal('3.674545182000000071453813991'), Decimal('3.655986873000000071092936143'), Decimal('3.637428564000000070732058294')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.7206, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.7116618}, controller_id=None),\n ExecutorInfo(id='GhmdG1UuNYxHo5HjAVgMuktTav4nK3rZNWMYHAnsTcec', timestamp=1704195720000.0, type='dca_executor', close_timestamp=1704195840000.0, close_type=, status=, config=DCAExecutorConfig(id='GhmdG1UuNYxHo5HjAVgMuktTav4nK3rZNWMYHAnsTcec', type='dca_executor', timestamp=1704195720000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380950'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.712460199999999984244451745'), Decimal('3.705035279599999984275962842'), Decimal('3.682760518399999984370496131'), Decimal('3.675335597999999984402007228'), Decimal('3.656773296999999984480784969'), Decimal('3.638210995999999984559562710')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.7128, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.7124601999999998}, controller_id=None),\n ExecutorInfo(id='7QufBAMdvc1eeup3wNAH2aDKjJq2w4MiaYecsNxBAUFJ', timestamp=1704195900000.0, type='dca_executor', close_timestamp=1704202320000.0, close_type=, status=, config=DCAExecutorConfig(id='7QufBAMdvc1eeup3wNAH2aDKjJq2w4MiaYecsNxBAUFJ', type='dca_executor', timestamp=1704195900000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380955'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.719146799999999912622886122'), Decimal('3.711708506399999912797640350'), Decimal('3.689393625599999913321903033'), Decimal('3.681955331999999913496657261'), Decimal('3.663359597999999913933542830'), Decimal('3.644763863999999914370428400')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.0322810098878496543051141998148523271083831787109375'), net_pnl_quote=Decimal('2.302712038666609117854022770188748836517333984375'), cum_fees_quote=Decimal('0.042800000000000004707345624410663731396198272705078125'), filled_amount_quote=Decimal('71.333333333333342807236476801335811614990234375'), is_active=False, is_trading=False, custom_info={'close_price': 3.832, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.714191247922029}, controller_id=None),\n ExecutorInfo(id='6LkhuSxFWhpFFSmyFSkMFr2EdcADe7Z9CKfnxLEFedeN', timestamp=1704202320000.0, type='dca_executor', close_timestamp=1704205500000.0, close_type=, status=, config=DCAExecutorConfig(id='6LkhuSxFWhpFFSmyFSkMFr2EdcADe7Z9CKfnxLEFedeN', type='dca_executor', timestamp=1704202320000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380950'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('139.9999999999999999999999999')], prices=[Decimal('3.824335999999999850924914391'), Decimal('3.816687327999999851223064562'), Decimal('3.793741311999999852117515076'), Decimal('3.786092639999999852415665247'), Decimal('3.766970959999999853161040675'), Decimal('3.747849279999999853906416103')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.01559459184714712988439888619041084893979132175445556640625'), net_pnl_quote=Decimal('-7.69964407462595357145573871093802154064178466796875'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 3.714, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.776594042050441}, controller_id=None),\n ExecutorInfo(id='346HDSG85aqivXjSABkFJSoQPYW4DgT9iNyh2uG6ufhg', timestamp=1704192780000.0, type='dca_executor', close_timestamp=1704205920000.0, close_type=, status=, config=DCAExecutorConfig(id='346HDSG85aqivXjSABkFJSoQPYW4DgT9iNyh2uG6ufhg', type='dca_executor', timestamp=1704192780000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428574'), Decimal('72.00000000000000000000000005'), Decimal('96.19047619047619047619047624'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142858')], prices=[Decimal('3.760506000000000114070461408'), Decimal('3.768027012000000114298602331'), Decimal('3.790590048000000114983025099'), Decimal('3.798111060000000115211166022'), Decimal('3.816913590000000115781518329'), Decimal('3.835716120000000116351870636')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.034961247657317638670715354010098963044583797454833984375'), net_pnl_quote=Decimal('17.69954783184630997538988594897091388702392578125'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 3.6854, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.8077488709612943}, controller_id=None),\n ExecutorInfo(id='GGSePg14t2FWjCC8VxyibfyCR2MLkmg6w7ATy6byG5Ju', timestamp=1704205920000.0, type='dca_executor', close_timestamp=1704206040000.0, close_type=, status=, config=DCAExecutorConfig(id='GGSePg14t2FWjCC8VxyibfyCR2MLkmg6w7ATy6byG5Ju', type='dca_executor', timestamp=1704205920000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.692770800000000009408965272'), Decimal('3.700156341600000009427783203'), Decimal('3.722312966400000009484236994'), Decimal('3.729698508000000009503054925'), Decimal('3.748162362000000009550099751'), Decimal('3.766626216000000009597144577')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6769, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.6927708}, controller_id=None),\n ExecutorInfo(id='7rAyQqPqub9DsQLHYdGFaxhfEzyxJkfj4AR6mQ97Vr8b', timestamp=1704206100000.0, type='dca_executor', close_timestamp=1704211860000.0, close_type=, status=, config=DCAExecutorConfig(id='7rAyQqPqub9DsQLHYdGFaxhfEzyxJkfj4AR6mQ97Vr8b', type='dca_executor', timestamp=1704206100000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.677239800000000162480541520'), Decimal('3.684594279600000162805502603'), Decimal('3.706657718400000163780385852'), Decimal('3.714012198000000164105346935'), Decimal('3.732398397000000164917749643'), Decimal('3.750784596000000165730152350')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.031711147218162601124635813221175340004265308380126953125'), net_pnl_quote=Decimal('2.268102053413343810461810790002346038818359375'), cum_fees_quote=Decimal('0.0429142857142857103713851074644480831921100616455078125'), filled_amount_quote=Decimal('71.5238095238095183958648703992366790771484375'), is_active=False, is_trading=False, custom_info={'close_price': 3.5685, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.6821460507051933}, controller_id=None),\n ExecutorInfo(id='BKuDzKDZk3LCbwXaoiLoMhvgDygUQYSRMg5rqQz6smDi', timestamp=1704211860000.0, type='dca_executor', close_timestamp=1704211980000.0, close_type=, status=, config=DCAExecutorConfig(id='BKuDzKDZk3LCbwXaoiLoMhvgDygUQYSRMg5rqQz6smDi', type='dca_executor', timestamp=1704211860000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047624'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.575636999999999782999603180'), Decimal('3.582788273999999782565602386'), Decimal('3.604242095999999781263600005'), Decimal('3.611393369999999780829599212'), Decimal('3.629271554999999779744597228'), Decimal('3.647149739999999778659595244')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.5699, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.575637}, controller_id=None),\n ExecutorInfo(id='7W2XaaDr9XMtareJnGAcyZGiac9T1UsxV9eACkV7uvjv', timestamp=1704212040000.0, type='dca_executor', close_timestamp=1704212160000.0, close_type=, status=, config=DCAExecutorConfig(id='7W2XaaDr9XMtareJnGAcyZGiac9T1UsxV9eACkV7uvjv', type='dca_executor', timestamp=1704212040000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428569'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142856')], prices=[Decimal('3.578442599999999918984809609'), Decimal('3.585599485199999918822779228'), Decimal('3.607070140799999918336688086'), Decimal('3.614227025999999918174657705'), Decimal('3.632119238999999917769581753'), Decimal('3.650011451999999917364505801')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.5759, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.5784426}, controller_id=None),\n ExecutorInfo(id='3WWGshTprU6CHY7gNha3QSU7DSKbvfFRZwZ5uwLUcVxt', timestamp=1704212220000.0, type='dca_executor', close_timestamp=1704212340000.0, close_type=, status=, config=DCAExecutorConfig(id='3WWGshTprU6CHY7gNha3QSU7DSKbvfFRZwZ5uwLUcVxt', type='dca_executor', timestamp=1704212220000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047624'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142858')], prices=[Decimal('3.587460599999999815750430231'), Decimal('3.594635521199999815381931091'), Decimal('3.616160284799999814276433673'), Decimal('3.623335205999999813907934533'), Decimal('3.641272508999999812986686684'), Decimal('3.659209811999999812065438836')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.5704, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.5874606}, controller_id=None),\n ExecutorInfo(id='3V4eLchsWfVTJhkHE192wP9CNom8NzsYQYNWPpunetsC', timestamp=1704212400000.0, type='dca_executor', close_timestamp=1704212520000.0, close_type=, status=, config=DCAExecutorConfig(id='3V4eLchsWfVTJhkHE192wP9CNom8NzsYQYNWPpunetsC', type='dca_executor', timestamp=1704212400000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.580045800000000187395236827'), Decimal('3.587205891600000187770027301'), Decimal('3.608686166400000188894398722'), Decimal('3.615846258000000189269189195'), Decimal('3.633746487000000190206165379'), Decimal('3.651646716000000191143141564')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.5572, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.5800458}, controller_id=None),\n ExecutorInfo(id='Fz2F9cR4yjRAp94MJ2Py9p9cJodsg99Xc5GkDXs94dCm', timestamp=1704212580000.0, type='dca_executor', close_timestamp=1704212700000.0, close_type=, status=, config=DCAExecutorConfig(id='Fz2F9cR4yjRAp94MJ2Py9p9cJodsg99Xc5GkDXs94dCm', type='dca_executor', timestamp=1704212580000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.575136000000000060665472644'), Decimal('3.582286272000000060786803589'), Decimal('3.603737088000000061150796425'), Decimal('3.610887360000000061272127370'), Decimal('3.628763040000000061575454734'), Decimal('3.646638720000000061878782097')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.5744, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.575136}, controller_id=None),\n ExecutorInfo(id='6zxuKQfrSfHxjHinTQVQQtuzU4p45Ct52MQAh9tdJeAE', timestamp=1704212760000.0, type='dca_executor', close_timestamp=1704229380000.0, close_type=, status=, config=DCAExecutorConfig(id='6zxuKQfrSfHxjHinTQVQQtuzU4p45Ct52MQAh9tdJeAE', type='dca_executor', timestamp=1704212760000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.590767200000000119047155465'), Decimal('3.597948734400000119285249776'), Decimal('3.619493337600000119999532709'), Decimal('3.626674872000000120237627020'), Decimal('3.644628708000000120832862797'), Decimal('3.662582544000000121428098574')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.03109490402272947762174482022601296193897724151611328125'), net_pnl_quote=Decimal('11.21119360990934410438057966530323028564453125'), cum_fees_quote=Decimal('0.2163285714285713978721759076506714336574077606201171875'), filled_amount_quote=Decimal('360.547619047619036791729740798473358154296875'), is_active=False, is_trading=False, custom_info={'close_price': 3.515, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.625084956258337}, controller_id=None),\n ExecutorInfo(id='HL62x9eQoubPuYEARCrrMmQSa4VGMdxXZttCmbQFvHrP', timestamp=1704229380000.0, type='dca_executor', close_timestamp=1704240600000.0, close_type=, status=, config=DCAExecutorConfig(id='HL62x9eQoubPuYEARCrrMmQSa4VGMdxXZttCmbQFvHrP', type='dca_executor', timestamp=1704229380000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.522030000000000124740009986'), Decimal('3.529074060000000124989490006'), Decimal('3.550206240000000125737930066'), Decimal('3.557250300000000125987410086'), Decimal('3.574860450000000126611110136'), Decimal('3.592470600000000127234810186')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.01450100081272183948077891812999951071105897426605224609375'), net_pnl_quote=Decimal('-7.341304292402487163826663163490593433380126953125'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 3.6202, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.566276920178244}, controller_id=None),\n ExecutorInfo(id='9ieqt1rvuN6xKqGfxw6ShAbqYei88234uzv6QGkFvnsL', timestamp=1704209100000.0, type='dca_executor', close_timestamp=1704241020000.0, close_type=, status=, config=DCAExecutorConfig(id='9ieqt1rvuN6xKqGfxw6ShAbqYei88234uzv6QGkFvnsL', type='dca_executor', timestamp=1704209100000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714285'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.596492599999999903409421409'), Decimal('3.589299614799999903602602566'), Decimal('3.567720659199999904182146038'), Decimal('3.560527673999999904375327195'), Decimal('3.542545210999999904858280088'), Decimal('3.524562747999999905341232981')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.0323125623759738800355734156255493871867656707763671875'), net_pnl_quote=Decimal('15.95394299977548513425062992610037326812744140625'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 3.6624, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.5515949763405987}, controller_id=None),\n ExecutorInfo(id='GV6mrTPwwDyq4yHji5QfhzszVQorqAdyWzgiGjmTnzqh', timestamp=1704244200000.0, type='dca_executor', close_timestamp=1704244320000.0, close_type=, status=, config=DCAExecutorConfig(id='GV6mrTPwwDyq4yHji5QfhzszVQorqAdyWzgiGjmTnzqh', type='dca_executor', timestamp=1704244200000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.708101399999999878408259156'), Decimal('3.715517602799999878165075674'), Decimal('3.737766211199999877435525229'), Decimal('3.745182413999999877192341748'), Decimal('3.763722920999999876584383043'), Decimal('3.782263427999999875976424339')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.7079, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.7081014}, controller_id=None),\n ExecutorInfo(id='6W93bN3bQKwnpA2Sh6qLyjBPbRXxaukAvFvKe5nPCL4P', timestamp=1704244380000.0, type='dca_executor', close_timestamp=1704244500000.0, close_type=, status=, config=DCAExecutorConfig(id='6W93bN3bQKwnpA2Sh6qLyjBPbRXxaukAvFvKe5nPCL4P', type='dca_executor', timestamp=1704244380000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047615'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.710506200000000058535205848'), Decimal('3.717927212400000058652276260'), Decimal('3.740190249600000059003487495'), Decimal('3.747611262000000059120557906'), Decimal('3.766163793000000059413233936'), Decimal('3.784716324000000059705909965')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6655, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.7105062}, controller_id=None),\n ExecutorInfo(id='4BYCPWt2PPo4WXPKSxkjUKbeyT8G6sNjjZ1suNkhtu38', timestamp=1704241020000.0, type='dca_executor', close_timestamp=1704245220000.0, close_type=, status=, config=DCAExecutorConfig(id='4BYCPWt2PPo4WXPKSxkjUKbeyT8G6sNjjZ1suNkhtu38', type='dca_executor', timestamp=1704241020000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.655075199999999877878598120'), Decimal('3.647765049599999878122840924'), Decimal('3.625834598399999878855569335'), Decimal('3.618524447999999879099812139'), Decimal('3.600249071999999879710419148'), Decimal('3.581973695999999880321026158')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.03258121944274920689377239568784716539084911346435546875'), net_pnl_quote=Decimal('11.525218506212500102492413134314119815826416015625'), cum_fees_quote=Decimal('0.212242857142857122010326520467060618102550506591796875'), filled_amount_quote=Decimal('353.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 3.7295, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.62031914232483}, controller_id=None),\n ExecutorInfo(id='HFVNitZ4R1oW9f5495PRCLEqhbxUfssii2Lq55XKaABc', timestamp=1704245220000.0, type='dca_executor', close_timestamp=1704245340000.0, close_type=, status=, config=DCAExecutorConfig(id='HFVNitZ4R1oW9f5495PRCLEqhbxUfssii2Lq55XKaABc', type='dca_executor', timestamp=1704245220000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.722040999999999815473099296'), Decimal('3.714596917999999815842153097'), Decimal('3.692264671999999816949314502'), Decimal('3.684820589999999817318368303'), Decimal('3.666210384999999818241002807'), Decimal('3.647600179999999819163637310')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.7312, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.722041}, controller_id=None),\n ExecutorInfo(id='GwP9uByaYVAkccmftF2q3UgeVk9kprvVuBzoWRHDF874', timestamp=1704244560000.0, type='dca_executor', close_timestamp=1704255480000.0, close_type=, status=, config=DCAExecutorConfig(id='GwP9uByaYVAkccmftF2q3UgeVk9kprvVuBzoWRHDF874', type='dca_executor', timestamp=1704244560000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428572'), Decimal('71.99999999999999999999999999'), Decimal('96.19047619047619047619047617'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142856')], prices=[Decimal('3.675135600000000171735983766'), Decimal('3.682485871200000172079455734'), Decimal('3.704536684800000173109871636'), Decimal('3.711886956000000173453343604'), Decimal('3.730262634000000174312023522'), Decimal('3.748638312000000175170703441')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.0137716680756585323208707194453381816856563091278076171875'), net_pnl_quote=Decimal('-6.9720709117316044256540408241562545299530029296875'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 3.78, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.7213059709330762}, controller_id=None),\n ExecutorInfo(id='74NikdSGUtPrvJYY2NL57GSdTEG2yYFytiY6p6tYAE9p', timestamp=1704259080000.0, type='dca_executor', close_timestamp=1704259200000.0, close_type=, status=, config=DCAExecutorConfig(id='74NikdSGUtPrvJYY2NL57GSdTEG2yYFytiY6p6tYAE9p', type='dca_executor', timestamp=1704259080000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047624'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.795475800000000045011423753'), Decimal('3.803066751600000045101446601'), Decimal('3.825839606400000045371515143'), Decimal('3.833430558000000045461537991'), Decimal('3.852407937000000045686595109'), Decimal('3.871385316000000045911652228')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.7747, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.7954758}, controller_id=None),\n ExecutorInfo(id='d2ipo5guRUudxKiYNfrHichxt5i3e9nAbWM6Y9yCkyT', timestamp=1704245400000.0, type='dca_executor', close_timestamp=1704259860000.0, close_type=, status=, config=DCAExecutorConfig(id='d2ipo5guRUudxKiYNfrHichxt5i3e9nAbWM6Y9yCkyT', type='dca_executor', timestamp=1704245400000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.723737599999999850219989384'), Decimal('3.716290124799999850519549405'), Decimal('3.693947699199999851418229469'), Decimal('3.686500223999999851717789490'), Decimal('3.667881535999999852466689543'), Decimal('3.649262847999999853215589596')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.033182323229279310494721499935621977783739566802978515625'), net_pnl_quote=Decimal('7.8468293884095743351281271316111087799072265625'), cum_fees_quote=Decimal('0.14188571428571428167941803621943108737468719482421875'), filled_amount_quote=Decimal('236.4761904761904816041351296007633209228515625'), is_active=False, is_trading=False, custom_info={'close_price': 3.8164, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.6984677737575513}, controller_id=None),\n ExecutorInfo(id='73TYTDnBAEKdTddu4YfLQHxci6N3zCMaZBHtES2tJGCa', timestamp=1704259260000.0, type='dca_executor', close_timestamp=1704280260000.0, close_type=, status=, config=DCAExecutorConfig(id='73TYTDnBAEKdTddu4YfLQHxci6N3zCMaZBHtES2tJGCa', type='dca_executor', timestamp=1704259260000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.785756400000000003005154457'), Decimal('3.793327912800000003011164766'), Decimal('3.816042451200000003029195693'), Decimal('3.823613964000000003035206002'), Decimal('3.842542746000000003050231774'), Decimal('3.861471528000000003065257546')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.0332292905953751327441381135940901003777980804443359375'), net_pnl_quote=Decimal('11.9807416068039440659731553751043975353240966796875'), cum_fees_quote=Decimal('0.2163285714285713978721759076506714336574077606201171875'), filled_amount_quote=Decimal('360.547619047619036791729740798473358154296875'), is_active=False, is_trading=False, custom_info={'close_price': 3.6995, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.8219377111662154}, controller_id=None),\n ExecutorInfo(id='33Eqbq7QQokveGypRapvfdoAeBxn57awm146xyGHv2Sn', timestamp=1704259860000.0, type='dca_executor', close_timestamp=1704280260000.0, close_type=, status=, config=DCAExecutorConfig(id='33Eqbq7QQokveGypRapvfdoAeBxn57awm146xyGHv2Sn', type='dca_executor', timestamp=1704259860000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.808767199999999792777588548'), Decimal('3.801149665599999793192033371'), Decimal('3.778297062399999794435367840'), Decimal('3.770679527999999794849812663'), Decimal('3.751635691999999795885924720'), Decimal('3.732591855999999796922036777')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.01472786297712492219191826592350480495952069759368896484375'), net_pnl_quote=Decimal('-7.27170701325332213826868610340170562267303466796875'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 3.6995, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.761219598664223}, controller_id=None),\n ExecutorInfo(id='AbcwgEZtzHNydHG84d1uXSrCs5XRyMLkwWRrc858n83E', timestamp=1704280260000.0, type='dca_executor', close_timestamp=1704280380000.0, close_type=, status=, config=DCAExecutorConfig(id='AbcwgEZtzHNydHG84d1uXSrCs5XRyMLkwWRrc858n83E', type='dca_executor', timestamp=1704280260000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428575'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142858')], prices=[Decimal('3.706899000000000010833479945'), Decimal('3.714312798000000010855146905'), Decimal('3.736554192000000010920147785'), Decimal('3.743967990000000010941814744'), Decimal('3.762502485000000010995982144'), Decimal('3.781036980000000011050149544')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.6961, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.706899}, controller_id=None),\n ExecutorInfo(id='HdKRmy6nGXsmqYMkh2x6wrAvf1EoNqhuGiqM4cha4hv4', timestamp=1704280440000.0, type='dca_executor', close_timestamp=1704283260000.0, close_type=, status=, config=DCAExecutorConfig(id='HdKRmy6nGXsmqYMkh2x6wrAvf1EoNqhuGiqM4cha4hv4', type='dca_executor', timestamp=1704280440000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.680346000000000042870748616'), Decimal('3.687706692000000042956490113'), Decimal('3.709788768000000043213714605'), Decimal('3.717149460000000043299456102'), Decimal('3.735551190000000043513809845'), Decimal('3.753952920000000043728163588')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.0578587166740297254019509409772581420838832855224609375'), net_pnl_quote=Decimal('8.3041034312155037611091756843961775302886962890625'), cum_fees_quote=Decimal('0.08611428571428569878065673037781380116939544677734375'), filled_amount_quote=Decimal('143.5238095238095183958648703992366790771484375'), is_active=False, is_trading=False, custom_info={'close_price': 3.488, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.697563278898474}, controller_id=None),\n ExecutorInfo(id='8urnJCcj1kVQ6TAKEfBzrrqQBxqMJXdcZYWgcWirdAjS', timestamp=1704283260000.0, type='dca_executor', close_timestamp=1704283680000.0, close_type=, status=, config=DCAExecutorConfig(id='8urnJCcj1kVQ6TAKEfBzrrqQBxqMJXdcZYWgcWirdAjS', type='dca_executor', timestamp=1704283260000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.494975999999999989465759852'), Decimal('3.501965951999999989444691372'), Decimal('3.522935807999999989381485931'), Decimal('3.529925759999999989360417451'), Decimal('3.547400639999999989307746250'), Decimal('3.564875519999999989255075049')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.1406777257904436861934982516686432063579559326171875'), net_pnl_quote=Decimal('20.19060312059034600906670675612986087799072265625'), cum_fees_quote=Decimal('0.08611428571428569878065673037781380116939544677734375'), filled_amount_quote=Decimal('143.5238095238095183958648703992366790771484375'), is_active=False, is_trading=False, custom_info={'close_price': 3.0304, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.511326086794957}, controller_id=None),\n ExecutorInfo(id='D77zT11dfVfbQqYJ5x72A52zvzmPH9FDP4ELGNE4YMfD', timestamp=1704283680000.0, type='dca_executor', close_timestamp=1704283800000.0, close_type=, status=, config=DCAExecutorConfig(id='D77zT11dfVfbQqYJ5x72A52zvzmPH9FDP4ELGNE4YMfD', type='dca_executor', timestamp=1704283680000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.036460800000000205171746258'), Decimal('3.042533721600000205582089751'), Decimal('3.060752486400000206813120228'), Decimal('3.066825408000000207223463721'), Decimal('3.082007712000000208249322452'), Decimal('3.097190016000000209275181183')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.4556, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.0364608000000004}, controller_id=None),\n ExecutorInfo(id='652B2Bdp5qehoqQbTeJgUEYWNJQEsEfuGHwGcqFzrcTJ', timestamp=1704283860000.0, type='dca_executor', close_timestamp=1704283920000.0, close_type=, status=, config=DCAExecutorConfig(id='652B2Bdp5qehoqQbTeJgUEYWNJQEsEfuGHwGcqFzrcTJ', type='dca_executor', timestamp=1704283860000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.722634400000000059918087157'), Decimal('2.728079668800000060037923331'), Decimal('2.744415475200000060397431854'), Decimal('2.749860744000000060517268029'), Decimal('2.763473916000000060816858464'), Decimal('2.777087088000000061116448900')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 2.8168, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.756838591040775}, controller_id=None),\n ExecutorInfo(id='69jSp1WSNi3sFfJmR1xeQpFdiTB7TutdqzPb7kVFzjyj', timestamp=1704283860000.0, type='dca_executor', close_timestamp=1704283980000.0, close_type=, status=, config=DCAExecutorConfig(id='69jSp1WSNi3sFfJmR1xeQpFdiTB7TutdqzPb7kVFzjyj', type='dca_executor', timestamp=1704283860000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.711765600000000059453092449'), Decimal('2.706342068800000059334186264'), Decimal('2.690071475200000058977467709'), Decimal('2.684647944000000058858561525'), Decimal('2.671089116000000058561296062'), Decimal('2.657530288000000058264030600')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.9242, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7117656}, controller_id=None),\n ExecutorInfo(id='BCaK5pj9Sk7ZdEhm5BsCxuXk1SF1GFZCfrjN9UEs7D36', timestamp=1704284040000.0, type='dca_executor', close_timestamp=1704284160000.0, close_type=, status=, config=DCAExecutorConfig(id='BCaK5pj9Sk7ZdEhm5BsCxuXk1SF1GFZCfrjN9UEs7D36', type='dca_executor', timestamp=1704284040000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714285'), Decimal('94.28571428571428571428571425'), Decimal('117.2619047619047619047619047'), Decimal('139.9999999999999999999999999')], prices=[Decimal('2.976335399999999950946442950'), Decimal('2.970382729199999951044550064'), Decimal('2.952524716799999951338871406'), Decimal('2.946572045999999951436978520'), Decimal('2.931690368999999951682246306'), Decimal('2.916808691999999951927514091')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0258, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.9763354}, controller_id=None),\n ExecutorInfo(id='9hCimsNzMt6LmsMQuyJCUEXgcAR9x1QNx1S34LRn18Zq', timestamp=1704284220000.0, type='dca_executor', close_timestamp=1704284640000.0, close_type=, status=, config=DCAExecutorConfig(id='9hCimsNzMt6LmsMQuyJCUEXgcAR9x1QNx1S34LRn18Zq', type='dca_executor', timestamp=1704284220000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.042303199999999998454841554'), Decimal('3.036218593599999998457931871'), Decimal('3.017964774399999998467202822'), Decimal('3.011880167999999998470293138'), Decimal('2.996668651999999998478018931'), Decimal('2.981457135999999998485744723')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.032962694914138612745091450051404535770416259765625'), net_pnl_quote=Decimal('0.78482606938425270026726821015472523868083953857421875'), cum_fees_quote=Decimal('0.01428571428571428526821396332024960429407656192779541015625'), filled_amount_quote=Decimal('23.8095238095238102005168912000954151153564453125'), is_active=False, is_trading=False, custom_info={'close_price': 3.14, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0423032}, controller_id=None),\n ExecutorInfo(id='Ga4c6Y27UX19pG8CgfSxMTxh92CQd8EVUD4NLeMyHD7P', timestamp=1704284640000.0, type='dca_executor', close_timestamp=1704284940000.0, close_type=, status=, config=DCAExecutorConfig(id='Ga4c6Y27UX19pG8CgfSxMTxh92CQd8EVUD4NLeMyHD7P', type='dca_executor', timestamp=1704284640000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('139.9999999999999999999999999')], prices=[Decimal('3.133720000000000123965560039'), Decimal('3.127452560000000123717628919'), Decimal('3.108650240000000122973835559'), Decimal('3.102382800000000122725904439'), Decimal('3.086714200000000122106076638'), Decimal('3.071045600000000121486248838')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.041373410367910368190536019028513692319393157958984375'), net_pnl_quote=Decimal('9.7838264708115669776589129469357430934906005859375'), cum_fees_quote=Decimal('0.14188571428571428167941803621943108737468719482421875'), filled_amount_quote=Decimal('236.4761904761904816041351296007633209228515625'), is_active=False, is_trading=False, custom_info={'close_price': 3.2265, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.1124541192106325}, controller_id=None),\n ExecutorInfo(id='4mksuVN9mukXBrFL5GKJ5FWz1SSinyUHKGVWLhzARuZY', timestamp=1704284940000.0, type='dca_executor', close_timestamp=1704285120000.0, close_type=, status=, config=DCAExecutorConfig(id='4mksuVN9mukXBrFL5GKJ5FWz1SSinyUHKGVWLhzARuZY', type='dca_executor', timestamp=1704284940000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380950'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.220047000000000145235608262'), Decimal('3.213606906000000144945137045'), Decimal('3.194286624000000144073723396'), Decimal('3.187846530000000143783252179'), Decimal('3.171746295000000143057074138'), Decimal('3.155646060000000142330896097')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.010682266166465392842610526713542640209197998046875'), net_pnl_quote=Decimal('-5.274241749856972916177255683578550815582275390625'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 3.1118, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.1798488195917924}, controller_id=None),\n ExecutorInfo(id='FXBoFrr5XtWo2EZc8iAZEbu5z6a3cW7aLiNtospFcCsv', timestamp=1704287520000.0, type='dca_executor', close_timestamp=1704287640000.0, close_type=, status=, config=DCAExecutorConfig(id='FXBoFrr5XtWo2EZc8iAZEbu5z6a3cW7aLiNtospFcCsv', type='dca_executor', timestamp=1704287520000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047625'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.207101399999999878387442474'), Decimal('3.213515602799999878144217359'), Decimal('3.232758211199999877414542014'), Decimal('3.239172413999999877171316899'), Decimal('3.255207920999999876563254111'), Decimal('3.271243427999999875955191323')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.181, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.2071014}, controller_id=None),\n ExecutorInfo(id='FsAfLV4DpmUAmQnuFmbWBy4xegYGQXNftqb7dg6FZsJE', timestamp=1704287700000.0, type='dca_executor', close_timestamp=1704287820000.0, close_type=, status=, config=DCAExecutorConfig(id='FsAfLV4DpmUAmQnuFmbWBy4xegYGQXNftqb7dg6FZsJE', type='dca_executor', timestamp=1704287700000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047615'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.207301799999999856316572343'), Decimal('3.213716403599999856029205488'), Decimal('3.232960214399999855167104922'), Decimal('3.239374817999999854879738066'), Decimal('3.255411326999999854161320928'), Decimal('3.271447835999999853442903790')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1951, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.2073017999999998}, controller_id=None),\n ExecutorInfo(id='GFV6SsX4e5WsLAYccbPYtmAtskWQaVYEvad9rUjc4Shw', timestamp=1704287880000.0, type='dca_executor', close_timestamp=1704288000000.0, close_type=, status=, config=DCAExecutorConfig(id='GFV6SsX4e5WsLAYccbPYtmAtskWQaVYEvad9rUjc4Shw', type='dca_executor', timestamp=1704287880000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142856')], prices=[Decimal('3.191871000000000220841407660'), Decimal('3.198254742000000221283090475'), Decimal('3.217405968000000222608138921'), Decimal('3.223789710000000223049821737'), Decimal('3.239749065000000224154028775'), Decimal('3.255708420000000225258235813')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1658, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.1918710000000003}, controller_id=None),\n ExecutorInfo(id='ANiGDGBTKdC8gSA6TjjRgs8W3y3UmW7FPcreN6JbDhcy', timestamp=1704288060000.0, type='dca_executor', close_timestamp=1704288180000.0, close_type=, status=, config=DCAExecutorConfig(id='ANiGDGBTKdC8gSA6TjjRgs8W3y3UmW7FPcreN6JbDhcy', type='dca_executor', timestamp=1704288060000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.169325999999999811461273701'), Decimal('3.175664651999999811084196248'), Decimal('3.194680607999999809952963891'), Decimal('3.201019259999999809575886438'), Decimal('3.216865889999999808633192807'), Decimal('3.232712519999999807690499175')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1498, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.169326}, controller_id=None),\n ExecutorInfo(id='AjDqTnAY7BvmRQ4wRkGSKFg62qSP7s1DEY4Lc4Twzu9j', timestamp=1704288240000.0, type='dca_executor', close_timestamp=1704288360000.0, close_type=, status=, config=DCAExecutorConfig(id='AjDqTnAY7BvmRQ4wRkGSKFg62qSP7s1DEY4Lc4Twzu9j', type='dca_executor', timestamp=1704288240000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.155097600000000043560888229'), Decimal('3.161407795200000043648010005'), Decimal('3.180338380800000043909375335'), Decimal('3.186648576000000043996497111'), Decimal('3.202424064000000044214301552'), Decimal('3.218199552000000044432105994')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1378, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.1550976}, controller_id=None),\n ExecutorInfo(id='EwnWpvUmVtDXF4ELaNfvN5LWv2oed9SqFS9n7KmE1ZQz', timestamp=1704288420000.0, type='dca_executor', close_timestamp=1704288540000.0, close_type=, status=, config=DCAExecutorConfig(id='EwnWpvUmVtDXF4ELaNfvN5LWv2oed9SqFS9n7KmE1ZQz', type='dca_executor', timestamp=1704288420000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428569'), Decimal('71.99999999999999999999999999'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.143274000000000010810061178'), Decimal('3.149560548000000010831681300'), Decimal('3.168420192000000010896541667'), Decimal('3.174706740000000010918161790'), Decimal('3.190423110000000010972212096'), Decimal('3.206139480000000011026262402')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1383, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.143274}, controller_id=None),\n ExecutorInfo(id='cqZ6b8oXi4azNZ83H3ED4uNdNpgdPqvBe8QW2YMK9bH', timestamp=1704288600000.0, type='dca_executor', close_timestamp=1704288720000.0, close_type=, status=, config=DCAExecutorConfig(id='cqZ6b8oXi4azNZ83H3ED4uNdNpgdPqvBe8QW2YMK9bH', type='dca_executor', timestamp=1704288600000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.157301999999999800781316782'), Decimal('3.163616603999999800382879416'), Decimal('3.182560415999999799187567316'), Decimal('3.188875019999999798789129950'), Decimal('3.204661529999999797793036534'), Decimal('3.220448039999999796796943118')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.128, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.1573019999999996}, controller_id=None),\n ExecutorInfo(id='3ei5wbgLnsd88xgVrLucHYuCUEmeW5GK9xafWpDBajks', timestamp=1704288720000.0, type='dca_executor', close_timestamp=1704288840000.0, close_type=, status=, config=DCAExecutorConfig(id='3ei5wbgLnsd88xgVrLucHYuCUEmeW5GK9xafWpDBajks', type='dca_executor', timestamp=1704288720000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.121744000000000113329234885'), Decimal('3.115500512000000113102576415'), Decimal('3.096770048000000112422601006'), Decimal('3.090526560000000112195942536'), Decimal('3.074917840000000111629296362'), Decimal('3.059309120000000111062650187')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1371, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.121744}, controller_id=None),\n ExecutorInfo(id='GYvKgxy8vL4avnrbf4DhVp7wQJBeinbSV6emCVLRLF8n', timestamp=1704288900000.0, type='dca_executor', close_timestamp=1704289020000.0, close_type=, status=, config=DCAExecutorConfig(id='GYvKgxy8vL4avnrbf4DhVp7wQJBeinbSV6emCVLRLF8n', type='dca_executor', timestamp=1704288900000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.162063200000000104818093094'), Decimal('3.155739073600000104608456908'), Decimal('3.136766694400000103979548349'), Decimal('3.130442568000000103769912163'), Decimal('3.114632252000000103245821698'), Decimal('3.098821936000000102721731232')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1631, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.1620632}, controller_id=None),\n ExecutorInfo(id='2Q7aLqqLVZafqCSH2ggn5QxECrbb7YGfKmU4kwYmz6sd', timestamp=1704289080000.0, type='dca_executor', close_timestamp=1704289200000.0, close_type=, status=, config=DCAExecutorConfig(id='2Q7aLqqLVZafqCSH2ggn5QxECrbb7YGfKmU4kwYmz6sd', type='dca_executor', timestamp=1704289080000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619047'), Decimal('139.9999999999999999999999999')], prices=[Decimal('3.161863600000000126800872580'), Decimal('3.155539872800000126547270835'), Decimal('3.136568691200000125786465599'), Decimal('3.130244964000000125532863854'), Decimal('3.114435646000000124898859491'), Decimal('3.098626328000000124264855128')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1803, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.1618636}, controller_id=None),\n ExecutorInfo(id='3TsjvC2JstYxn2DxdkyJLzJgGsFX27QQD6dsDmXvhRT8', timestamp=1704289260000.0, type='dca_executor', close_timestamp=1704291360000.0, close_type=, status=, config=DCAExecutorConfig(id='3TsjvC2JstYxn2DxdkyJLzJgGsFX27QQD6dsDmXvhRT8', type='dca_executor', timestamp=1704289260000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.176434399999999851661064421'), Decimal('3.170081531199999851957742292'), Decimal('3.151022924799999852847775906'), Decimal('3.144670055999999853144453777'), Decimal('3.128787883999999853886148455'), Decimal('3.112905711999999854627843133')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.018363013039559193673166959115405916236340999603271484375'), net_pnl_quote=Decimal('-9.0665190809842624020120638306252658367156982421875'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 3.0707, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.136780667285528}, controller_id=None),\n ExecutorInfo(id='J7qssTJ4FpeobdRXML53djhz78hwJy2K6Qh1e2XqejMN', timestamp=1704288780000.0, type='dca_executor', close_timestamp=1704292680000.0, close_type=, status=, config=DCAExecutorConfig(id='J7qssTJ4FpeobdRXML53djhz78hwJy2K6Qh1e2XqejMN', type='dca_executor', timestamp=1704288780000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047624'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.144075599999999922526580652'), Decimal('3.150363751199999922371633813'), Decimal('3.169228204799999921906793297'), Decimal('3.175516355999999921751846459'), Decimal('3.191236733999999921364479362'), Decimal('3.206957111999999920977112265')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.034104156072522116838197092647533281706273555755615234375'), net_pnl_quote=Decimal('8.175253412813159314964650548063218593597412109375'), cum_fees_quote=Decimal('0.1438285714285714167459673262783326208591461181640625'), filled_amount_quote=Decimal('239.71428571428572240620269440114498138427734375'), is_active=False, is_trading=False, custom_info={'close_price': 3.0684, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.165498284362336}, controller_id=None),\n ExecutorInfo(id='AndGfBStS7tZWA2ZnHwbDQwpuWW85yPLzwt8LVoaDcfG', timestamp=1704294960000.0, type='dca_executor', close_timestamp=1704295080000.0, close_type=, status=, config=DCAExecutorConfig(id='AndGfBStS7tZWA2ZnHwbDQwpuWW85yPLzwt8LVoaDcfG', type='dca_executor', timestamp=1704294960000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.062263200000000016182050144'), Decimal('3.056138673600000016149686044'), Decimal('3.037765094400000016052593743'), Decimal('3.031640568000000016020229643'), Decimal('3.016329252000000015939319392'), Decimal('3.001017936000000015858409141')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0628, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0622632}, controller_id=None),\n ExecutorInfo(id='6DEHf8T52zYFcjf9ckB5d1wvTytSQEoVa9HDGDabqAvZ', timestamp=1704295140000.0, type='dca_executor', close_timestamp=1704297540000.0, close_type=, status=, config=DCAExecutorConfig(id='6DEHf8T52zYFcjf9ckB5d1wvTytSQEoVa9HDGDabqAvZ', type='dca_executor', timestamp=1704295140000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('139.9999999999999999999999999')], prices=[Decimal('3.051085599999999917614607048'), Decimal('3.044983428799999917779377834'), Decimal('3.026676915199999918273690192'), Decimal('3.020574743999999918438460978'), Decimal('3.005319315999999918850387942'), Decimal('2.990063887999999919262314907')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.036281667430440533994584484389633871614933013916015625'), net_pnl_quote=Decimal('2.5880922767047582766508639906533062458038330078125'), cum_fees_quote=Decimal('0.042800000000000004707345624410663731396198272705078125'), filled_amount_quote=Decimal('71.333333333333342807236476801335811614990234375'), is_active=False, is_trading=False, custom_info={'close_price': 3.1453, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0470202015636847}, controller_id=None),\n ExecutorInfo(id='AGCb9Nh9weDSyiEVPPeUVgsLHntqvzNdraP5nmZUSE57', timestamp=1704292680000.0, type='dca_executor', close_timestamp=1704298320000.0, close_type=, status=, config=DCAExecutorConfig(id='AGCb9Nh9weDSyiEVPPeUVgsLHntqvzNdraP5nmZUSE57', type='dca_executor', timestamp=1704292680000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428569'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.074536800000000016502915699'), Decimal('3.080685873600000016535921530'), Decimal('3.099133094400000016634939025'), Decimal('3.105282168000000016667944856'), Decimal('3.120654852000000016750459434'), Decimal('3.136027536000000016832974013')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.0139393572832908520242600758365369983948767185211181640625'), net_pnl_quote=Decimal('-7.0569655693955564146335746045224368572235107421875'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 3.1632, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.1131619066500495}, controller_id=None),\n ExecutorInfo(id='BvoDGJ6JnhRE5HoVBJXSC96ESFNCSzxx76JsoCz4HS3u', timestamp=1704301920000.0, type='dca_executor', close_timestamp=1704302040000.0, close_type=, status=, config=DCAExecutorConfig(id='BvoDGJ6JnhRE5HoVBJXSC96ESFNCSzxx76JsoCz4HS3u', type='dca_executor', timestamp=1704301920000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.103193999999999975210204782'), Decimal('3.109400387999999975160625192'), Decimal('3.128019551999999975011886420'), Decimal('3.134225939999999974962306830'), Decimal('3.149741909999999974838357854'), Decimal('3.165257879999999974714408878')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0969, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.103194}, controller_id=None),\n ExecutorInfo(id='3i7yjMcgaLmmGhQeJoAUzECqp8BiDxtLcpNmMXJA8k3A', timestamp=1704302100000.0, type='dca_executor', close_timestamp=1704302220000.0, close_type=, status=, config=DCAExecutorConfig(id='3i7yjMcgaLmmGhQeJoAUzECqp8BiDxtLcpNmMXJA8k3A', type='dca_executor', timestamp=1704302100000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.102192000000000085564555440'), Decimal('3.108396384000000085735684551'), Decimal('3.127009536000000086249071884'), Decimal('3.133213920000000086420200994'), Decimal('3.148724880000000086848023772'), Decimal('3.164235840000000087275846549')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0875, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.102192}, controller_id=None),\n ExecutorInfo(id='6LxzTH4USCntJcpqvdR5FJnMFkWHE4wWEaVZDYwmQqWA', timestamp=1704302280000.0, type='dca_executor', close_timestamp=1704302400000.0, close_type=, status=, config=DCAExecutorConfig(id='6LxzTH4USCntJcpqvdR5FJnMFkWHE4wWEaVZDYwmQqWA', type='dca_executor', timestamp=1704302280000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047617'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.083554799999999913268536321'), Decimal('3.089721909599999913095073394'), Decimal('3.108223238399999912574684612'), Decimal('3.114390347999999912401221684'), Decimal('3.129808121999999911967564366'), Decimal('3.145225895999999911533907047')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0807, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.0835548}, controller_id=None),\n ExecutorInfo(id='Ccwz7KaYhnaTzgYWSQxwJWnXGhKq9oyjTAg9xntypfRd', timestamp=1704302460000.0, type='dca_executor', close_timestamp=1704302580000.0, close_type=, status=, config=DCAExecutorConfig(id='Ccwz7KaYhnaTzgYWSQxwJWnXGhKq9oyjTAg9xntypfRd', type='dca_executor', timestamp=1704302460000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000005'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.082753200000000001552016847'), Decimal('3.088918706400000001555120881'), Decimal('3.107415225600000001564432982'), Decimal('3.113580732000000001567537015'), Decimal('3.128994498000000001575297100'), Decimal('3.144408264000000001583057184')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0615, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.0827532}, controller_id=None),\n ExecutorInfo(id='BmPF4ppQ1hgn5RSD55rpSqxtm9Um6CP9UFHqqCXqSBbG', timestamp=1704302640000.0, type='dca_executor', close_timestamp=1704302760000.0, close_type=, status=, config=DCAExecutorConfig(id='BmPF4ppQ1hgn5RSD55rpSqxtm9Um6CP9UFHqqCXqSBbG', type='dca_executor', timestamp=1704302640000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.076440600000000029318343585'), Decimal('3.082593481200000029376980272'), Decimal('3.101052124800000029552890334'), Decimal('3.107205006000000029611527021'), Decimal('3.122587209000000029758118739'), Decimal('3.137969412000000029904710457')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0635, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.0764406}, controller_id=None),\n ExecutorInfo(id='DvSPrzw6KrCG2xZMz3k9AfVgHmCuqfnFpEHC3817vDwM', timestamp=1704302820000.0, type='dca_executor', close_timestamp=1704302940000.0, close_type=, status=, config=DCAExecutorConfig(id='DvSPrzw6KrCG2xZMz3k9AfVgHmCuqfnFpEHC3817vDwM', type='dca_executor', timestamp=1704302820000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.084456600000000036438314864'), Decimal('3.090625513200000036511191494'), Decimal('3.109132252800000036729821383'), Decimal('3.115301166000000036802698013'), Decimal('3.130723449000000036984889587'), Decimal('3.146145732000000037167081161')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0667, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.0844566}, controller_id=None),\n ExecutorInfo(id='BiJBgY2repvDwh16yXBS6k71NCBogorSda2QkDynEZux', timestamp=1704297540000.0, type='dca_executor', close_timestamp=1704308100000.0, close_type=, status=, config=DCAExecutorConfig(id='BiJBgY2repvDwh16yXBS6k71NCBogorSda2QkDynEZux', type='dca_executor', timestamp=1704297540000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571433'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.139009400000000206223450816'), Decimal('3.132731381200000205811003914'), Decimal('3.113897324800000204573663209'), Decimal('3.107619306000000204161216308'), Decimal('3.091924259000000203130099054'), Decimal('3.076229212000000202098981800')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.0157490360619489365434642280661137192510068416595458984375'), net_pnl_quote=Decimal('-7.7758990670627401442516202223487198352813720703125'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 3.0467, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.099822870684043}, controller_id=None),\n ExecutorInfo(id='6LQuSPYcmYdp5QWb492QVzi3T3njQiKv7RG7btzj6ptv', timestamp=1704311700000.0, type='dca_executor', close_timestamp=1704311820000.0, close_type=, status=, config=DCAExecutorConfig(id='6LQuSPYcmYdp5QWb492QVzi3T3njQiKv7RG7btzj6ptv', type='dca_executor', timestamp=1704311700000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.052981799999999930378717650'), Decimal('3.046875836399999930517960215'), Decimal('3.028557945599999930935687909'), Decimal('3.022451981999999931074930474'), Decimal('3.007187072999999931423036885'), Decimal('2.991922163999999931771143297')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0563, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0529818}, controller_id=None),\n ExecutorInfo(id='998TLAKgn1YaGp4DPPRqEnH4B1D8fSzm5Fa9Nkf1pVYY', timestamp=1704311880000.0, type='dca_executor', close_timestamp=1704312000000.0, close_type=, status=, config=DCAExecutorConfig(id='998TLAKgn1YaGp4DPPRqEnH4B1D8fSzm5Fa9Nkf1pVYY', type='dca_executor', timestamp=1704311880000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.048191400000000014764393874'), Decimal('3.042095017200000014734865086'), Decimal('3.023805868800000014646278723'), Decimal('3.017709486000000014616749935'), Decimal('3.002468529000000014542927966'), Decimal('2.987227572000000014469105997')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0549, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0481914}, controller_id=None),\n ExecutorInfo(id='7wfzbRwsc5z388eNAkCmonfbvCuQGBQ5Z2RFr3VqDZeX', timestamp=1704312060000.0, type='dca_executor', close_timestamp=1704312180000.0, close_type=, status=, config=DCAExecutorConfig(id='7wfzbRwsc5z388eNAkCmonfbvCuQGBQ5Z2RFr3VqDZeX', type='dca_executor', timestamp=1704312060000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.051684399999999851666268591'), Decimal('3.045581031199999851962936054'), Decimal('3.027270924799999852852938442'), Decimal('3.021167555999999853149605905'), Decimal('3.005909133999999853891274562'), Decimal('2.990650711999999854632943219')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0638, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0516843999999996}, controller_id=None),\n ExecutorInfo(id='9yEmrBacX18Xmzqmewve2GYqvQBXjVa6NbJfQ9h49wcm', timestamp=1704312240000.0, type='dca_executor', close_timestamp=1704317520000.0, close_type=, status=, config=DCAExecutorConfig(id='9yEmrBacX18Xmzqmewve2GYqvQBXjVa6NbJfQ9h49wcm', type='dca_executor', timestamp=1704312240000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.051983800000000040292615078'), Decimal('3.045879832400000040212029848'), Decimal('3.027567929600000039970274157'), Decimal('3.021463962000000039889688927'), Decimal('3.006204043000000039688225852'), Decimal('2.990944124000000039486762776')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.031078717970544240956076720294731785543262958526611328125'), net_pnl_quote=Decimal('2.21694854856548939636695649824105203151702880859375'), cum_fees_quote=Decimal('0.042800000000000004707345624410663731396198272705078125'), filled_amount_quote=Decimal('71.333333333333342807236476801335811614990234375'), is_active=False, is_trading=False, custom_info={'close_price': 3.1407, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.047917204763151}, controller_id=None),\n ExecutorInfo(id='DJYuBgMGxccABFVqnT3bQgkFY3ysfPro2xfXF7Pzdm5R', timestamp=1704317520000.0, type='dca_executor', close_timestamp=1704317640000.0, close_type=, status=, config=DCAExecutorConfig(id='DJYuBgMGxccABFVqnT3bQgkFY3ysfPro2xfXF7Pzdm5R', type='dca_executor', timestamp=1704317520000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.134418599999999825425316125'), Decimal('3.128149762799999825774465493'), Decimal('3.109343251199999826821913596'), Decimal('3.103074413999999827171062964'), Decimal('3.087402320999999828043936383'), Decimal('3.071730227999999828916809802')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1408, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.1344185999999996}, controller_id=None),\n ExecutorInfo(id='23kVFqkPYKs3kfH7jJtqVsbHXeB2PB7LMhag7CGtrWBA', timestamp=1704317700000.0, type='dca_executor', close_timestamp=1704317820000.0, close_type=, status=, config=DCAExecutorConfig(id='23kVFqkPYKs3kfH7jJtqVsbHXeB2PB7LMhag7CGtrWBA', type='dca_executor', timestamp=1704317700000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('139.9999999999999999999999999')], prices=[Decimal('3.133720000000000123965560039'), Decimal('3.127452560000000123717628919'), Decimal('3.108650240000000122973835559'), Decimal('3.102382800000000122725904439'), Decimal('3.086714200000000122106076638'), Decimal('3.071045600000000121486248838')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1449, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.1337200000000003}, controller_id=None),\n ExecutorInfo(id='2oBqknwYBznjQfd7xLW4mQ69PErpT628kpNPD4XZtv3j', timestamp=1704303000000.0, type='dca_executor', close_timestamp=1704318420000.0, close_type=, status=, config=DCAExecutorConfig(id='2oBqknwYBznjQfd7xLW4mQ69PErpT628kpNPD4XZtv3j', type='dca_executor', timestamp=1704303000000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428571'), Decimal('71.99999999999999999999999998'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.072833399999999981616617682'), Decimal('3.078979066799999981579850917'), Decimal('3.097416067199999981469550623'), Decimal('3.103561733999999981432783859'), Decimal('3.118925900999999981340866947'), Decimal('3.134290067999999981248950036')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.014410874612652495307951738823248888365924358367919921875'), net_pnl_quote=Decimal('-7.295676830686428360195350251160562038421630859375'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 3.1598, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.111437107001599}, controller_id=None),\n ExecutorInfo(id='6Q83eeTDQDrMLzmautWJm7bk4fyim6PFL475avG3ns95', timestamp=1704322020000.0, type='dca_executor', close_timestamp=1704322140000.0, close_type=, status=, config=DCAExecutorConfig(id='6Q83eeTDQDrMLzmautWJm7bk4fyim6PFL475avG3ns95', type='dca_executor', timestamp=1704322020000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428569'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.073735200000000104786396225'), Decimal('3.079882670400000104995969017'), Decimal('3.098325081600000105624687395'), Decimal('3.104472552000000105834260187'), Decimal('3.119841228000000106358192168'), Decimal('3.135209904000000106882124150')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0668, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.0737352000000002}, controller_id=None),\n ExecutorInfo(id='3DaXty3ASyC5omVix9CPb77yikQ1v2zTQX4xKuLzkEPq', timestamp=1704317880000.0, type='dca_executor', close_timestamp=1704323400000.0, close_type=, status=, config=DCAExecutorConfig(id='3DaXty3ASyC5omVix9CPb77yikQ1v2zTQX4xKuLzkEPq', type='dca_executor', timestamp=1704317880000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571433'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.135117199999999970086103640'), Decimal('3.128846965599999970145931433'), Decimal('3.110036262399999970325414811'), Decimal('3.103766027999999970385242604'), Decimal('3.088090441999999970534812085'), Decimal('3.072414855999999970684381567')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.01482051719277664714180531291276565752923488616943359375'), net_pnl_quote=Decimal('-7.31745392920498449740307478350587189197540283203125'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 3.0439, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0959792598374887}, controller_id=None),\n ExecutorInfo(id='36wmFhM1opxrBQgM5bYPDpBC3WgE1bDYVwaSVje342Mn', timestamp=1704327000000.0, type='dca_executor', close_timestamp=1704327120000.0, close_type=, status=, config=DCAExecutorConfig(id='36wmFhM1opxrBQgM5bYPDpBC3WgE1bDYVwaSVje342Mn', type='dca_executor', timestamp=1704327000000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.075237199999999916904477870'), Decimal('3.069086725599999917070668914'), Decimal('3.050635302399999917569242047'), Decimal('3.044484827999999917735433091'), Decimal('3.029108641999999918150910702'), Decimal('3.013732455999999918566388313')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0848, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0752372}, controller_id=None),\n ExecutorInfo(id='BLvSMNzPyUgG64mtC9AHPEkXMLatPzYkQ6WX1viU81qi', timestamp=1704327180000.0, type='dca_executor', close_timestamp=1704327300000.0, close_type=, status=, config=DCAExecutorConfig(id='BLvSMNzPyUgG64mtC9AHPEkXMLatPzYkQ6WX1viU81qi', type='dca_executor', timestamp=1704327180000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.099388799999999916194348693'), Decimal('3.093190022399999916361959996'), Decimal('3.074593689599999916864793903'), Decimal('3.068394911999999917032405206'), Decimal('3.052897967999999917451433463'), Decimal('3.037401023999999917870461719')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1201, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0993888}, controller_id=None),\n ExecutorInfo(id='8WDr1ESrfmeHZfDebRDpU4Xb2uxLjNB4z6aJALjk8Gid', timestamp=1704327360000.0, type='dca_executor', close_timestamp=1704331200000.0, close_type=, status=, config=DCAExecutorConfig(id='8WDr1ESrfmeHZfDebRDpU4Xb2uxLjNB4z6aJALjk8Gid', type='dca_executor', timestamp=1704327360000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.114159200000000062272792478'), Decimal('3.107930881600000062148246893'), Decimal('3.089245926400000061774610138'), Decimal('3.083017608000000061650064553'), Decimal('3.067446812000000061338700591'), Decimal('3.051876016000000061027336628')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.01367262712594022495971035624506839667446911334991455078125'), net_pnl_quote=Decimal('-6.75069687406243890137602647882886230945587158203125'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 3.029, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0752828937406567}, controller_id=None),\n ExecutorInfo(id='M341Byz8v9UDZjay1LnrYU9Hy568Lcxu4UtQNScwVr7', timestamp=1704322200000.0, type='dca_executor', close_timestamp=1704331440000.0, close_type=, status=, config=DCAExecutorConfig(id='M341Byz8v9UDZjay1LnrYU9Hy568Lcxu4UtQNScwVr7', type='dca_executor', timestamp=1704322200000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.070027799999999845631411254'), Decimal('3.076167855599999845322674077'), Decimal('3.094588022399999844396462544'), Decimal('3.100728077999999844087725367'), Decimal('3.116078216999999843315882423'), Decimal('3.131428355999999842544039479')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.034615295998641569530374084706636494956910610198974609375'), net_pnl_quote=Decimal('12.480462554938792862913032877258956432342529296875'), cum_fees_quote=Decimal('0.2163285714285713978721759076506714336574077606201171875'), filled_amount_quote=Decimal('360.547619047619036791729740798473358154296875'), is_active=False, is_trading=False, custom_info={'close_price': 2.997, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.0993687346467014}, controller_id=None),\n ExecutorInfo(id='NzXHdJ5uWm6chPf8BrgUez3te6Mg3Xo1AnAy1gcTPxd', timestamp=1704334800000.0, type='dca_executor', close_timestamp=1704334920000.0, close_type=, status=, config=DCAExecutorConfig(id='NzXHdJ5uWm6chPf8BrgUez3te6Mg3Xo1AnAy1gcTPxd', type='dca_executor', timestamp=1704334800000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714285'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.079229199999999920449919588'), Decimal('3.073070741599999920609019749'), Decimal('3.054595366399999921086320231'), Decimal('3.048436907999999921245420392'), Decimal('3.033040761999999921643170794'), Decimal('3.017644615999999922040921196')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0832, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0792292}, controller_id=None),\n ExecutorInfo(id='6iddh1YnxQBgYgsbKqjbKzvoXDwBPMQdkvCxGLipu3cR', timestamp=1704334980000.0, type='dca_executor', close_timestamp=1704335100000.0, close_type=, status=, config=DCAExecutorConfig(id='6iddh1YnxQBgYgsbKqjbKzvoXDwBPMQdkvCxGLipu3cR', type='dca_executor', timestamp=1704334980000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571426'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.069548599999999878612146065'), Decimal('3.063409502799999878854921773'), Decimal('3.044992211199999879583248896'), Decimal('3.038853113999999879826024604'), Decimal('3.023505370999999880432963874'), Decimal('3.008157627999999881039903144')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0824, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0695486}, controller_id=None),\n ExecutorInfo(id='21MGFxoir7L5xTFi51TQzEoPrPxcWvmP6ZwJVTPv98tM', timestamp=1704331440000.0, type='dca_executor', close_timestamp=1704335820000.0, close_type=, status=, config=DCAExecutorConfig(id='21MGFxoir7L5xTFi51TQzEoPrPxcWvmP6ZwJVTPv98tM', type='dca_executor', timestamp=1704331440000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428571'), Decimal('71.99999999999999999999999998'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.002993999999999886210563792'), Decimal('3.008999987999999885982984920'), Decimal('3.027017951999999885300248302'), Decimal('3.033023939999999885072669430'), Decimal('3.048038909999999884503722249'), Decimal('3.063053879999999883934775068')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.0177243060058717427640573305325233377516269683837890625'), net_pnl_quote=Decimal('-8.973140919115497382563262362964451313018798828125'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 3.0992, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.0407203214151344}, controller_id=None),\n ExecutorInfo(id='AUKZTALxV9rUWHTHU419cmQxvTpF51DiBa8ofu4acxPy', timestamp=1704339420000.0, type='dca_executor', close_timestamp=1704339540000.0, close_type=, status=, config=DCAExecutorConfig(id='AUKZTALxV9rUWHTHU419cmQxvTpF51DiBa8ofu4acxPy', type='dca_executor', timestamp=1704339420000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.096881400000000002976531520'), Decimal('3.103075162800000002982484583'), Decimal('3.121656451200000003000343772'), Decimal('3.127850214000000003006296835'), Decimal('3.143334621000000003021179493'), Decimal('3.158819028000000003036062150')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.091, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.0968814}, controller_id=None),\n ExecutorInfo(id='E1XYqCLQjAZCzDC5jviLcQ9pxtCFM7JYcYLWBSXY7fPe', timestamp=1704339600000.0, type='dca_executor', close_timestamp=1704339720000.0, close_type=, status=, config=DCAExecutorConfig(id='E1XYqCLQjAZCzDC5jviLcQ9pxtCFM7JYcYLWBSXY7fPe', type='dca_executor', timestamp=1704339600000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000006'), Decimal('96.19047619047619047619047624'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142858')], prices=[Decimal('3.099486600000000161032608080'), Decimal('3.105685573200000161354673296'), Decimal('3.124282492800000162320868945'), Decimal('3.130481466000000162642934161'), Decimal('3.145978899000000163448097201'), Decimal('3.161476332000000164253260242')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0913, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.0994866}, controller_id=None),\n ExecutorInfo(id='CatHQLwYiWzKXid3G6yb9LFvqH25WJktxeTy2mAgBLay', timestamp=1704339780000.0, type='dca_executor', close_timestamp=1704339900000.0, close_type=, status=, config=DCAExecutorConfig(id='CatHQLwYiWzKXid3G6yb9LFvqH25WJktxeTy2mAgBLay', type='dca_executor', timestamp=1704339780000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000005'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142858')], prices=[Decimal('3.102292199999999852040426239'), Decimal('3.108496784399999851744507091'), Decimal('3.127110537599999850856749649'), Decimal('3.133315121999999850560830501'), Decimal('3.148826582999999849821032633'), Decimal('3.164338043999999849081234764')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0981, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.1022922}, controller_id=None),\n ExecutorInfo(id='CgU7sRKX1TF6TivEpRXUFoyPdpregPt6f689yzRF7Mj3', timestamp=1704335160000.0, type='dca_executor', close_timestamp=1704362160000.0, close_type=, status=, config=DCAExecutorConfig(id='CgU7sRKX1TF6TivEpRXUFoyPdpregPt6f689yzRF7Mj3', type='dca_executor', timestamp=1704335160000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.076235199999999806990580442'), Decimal('3.070082729599999807376599281'), Decimal('3.051625318399999808534655798'), Decimal('3.045472847999999808920674638'), Decimal('3.030091671999999809885721735'), Decimal('3.014710495999999810850768833')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.032257939517162347031753455439684330485761165618896484375'), net_pnl_quote=Decimal('2.30106635222424760200965465628542006015777587890625'), cum_fees_quote=Decimal('0.042800000000000004707345624410663731396198272705078125'), filled_amount_quote=Decimal('71.333333333333342807236476801335811614990234375'), is_active=False, is_trading=False, custom_info={'close_price': 3.1691, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0721362911487313}, controller_id=None),\n ExecutorInfo(id='JBdrBqxYVFfRZQp4YPaMBMnwzyxvQTeHob5XJFfEUFiR', timestamp=1704362160000.0, type='dca_executor', close_timestamp=1704363360000.0, close_type=, status=, config=DCAExecutorConfig(id='JBdrBqxYVFfRZQp4YPaMBMnwzyxvQTeHob5XJFfEUFiR', type='dca_executor', timestamp=1704362160000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714291'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.162761799999999806277849179'), Decimal('3.156436276399999806665293481'), Decimal('3.137459705599999807827626386'), Decimal('3.131134181999999808215070687'), Decimal('3.115320372999999809183681441'), Decimal('3.099506563999999810152292195')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.01334749331035865564654141479650206747464835643768310546875'), net_pnl_quote=Decimal('-6.59016592325970140819890730199404060840606689453125'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 3.0727, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.123278752260452}, controller_id=None),\n ExecutorInfo(id='HhAbhFALdu1DY9fjuc3i4rc4uLXNuvxKViqFMCXUpBce', timestamp=1704366960000.0, type='dca_executor', close_timestamp=1704367080000.0, close_type=, status=, config=DCAExecutorConfig(id='HhAbhFALdu1DY9fjuc3i4rc4uLXNuvxKViqFMCXUpBce', type='dca_executor', timestamp=1704366960000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714285'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619047'), Decimal('139.9999999999999999999999999')], prices=[Decimal('3.072442799999999781462359239'), Decimal('3.066297914399999781899434521'), Decimal('3.047863257599999783210660365'), Decimal('3.041718371999999783647735647'), Decimal('3.026356157999999784740423850'), Decimal('3.010993943999999785833112054')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0967, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0724427999999997}, controller_id=None),\n ExecutorInfo(id='Du2p8GDpETqQij7iKQ1DzZe5tJHufLavn8TRaYiWMpbf', timestamp=1704367140000.0, type='dca_executor', close_timestamp=1704367260000.0, close_type=, status=, config=DCAExecutorConfig(id='Du2p8GDpETqQij7iKQ1DzZe5tJHufLavn8TRaYiWMpbf', type='dca_executor', timestamp=1704367140000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.089608400000000106948480627'), Decimal('3.083429183200000106734583666'), Decimal('3.064891532800000106092892782'), Decimal('3.058712316000000105878995821'), Decimal('3.043264274000000105344253418'), Decimal('3.027816232000000104809511014')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1031, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0896084}, controller_id=None),\n ExecutorInfo(id='9Vg2DyiJTLc9LoLQ1uzYYowzuFsTJHaa5tg5Cab7aCuQ', timestamp=1704367320000.0, type='dca_executor', close_timestamp=1704367440000.0, close_type=, status=, config=DCAExecutorConfig(id='9Vg2DyiJTLc9LoLQ1uzYYowzuFsTJHaa5tg5Cab7aCuQ', type='dca_executor', timestamp=1704367320000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.096893799999999969378576548'), Decimal('3.090700012399999969439819395'), Decimal('3.072118649599999969623547936'), Decimal('3.065924861999999969684790783'), Decimal('3.050440392999999969837897900'), Decimal('3.034955923999999969991005017')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1059, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0968938}, controller_id=None),\n ExecutorInfo(id='EyFhy8o8HirDjzPoS5A5tXgctwJKANNp3FmnCULqm2Qa', timestamp=1704367500000.0, type='dca_executor', close_timestamp=1704367620000.0, close_type=, status=, config=DCAExecutorConfig(id='EyFhy8o8HirDjzPoS5A5tXgctwJKANNp3FmnCULqm2Qa', type='dca_executor', timestamp=1704367500000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.096694199999999991361356033'), Decimal('3.090500811599999991378633321'), Decimal('3.071920646399999991430465185'), Decimal('3.065727257999999991447742473'), Decimal('3.050243786999999991490935693'), Decimal('3.034760315999999991534128912')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0977, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0966942}, controller_id=None),\n ExecutorInfo(id='3fsX92tY4dDSoVw9A67bCoBnhJWGMB54XMAhxpRgGsNZ', timestamp=1704367680000.0, type='dca_executor', close_timestamp=1704367800000.0, close_type=, status=, config=DCAExecutorConfig(id='3fsX92tY4dDSoVw9A67bCoBnhJWGMB54XMAhxpRgGsNZ', type='dca_executor', timestamp=1704367680000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380950'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('139.9999999999999999999999999')], prices=[Decimal('3.094199200000000044545583888'), Decimal('3.088010801600000044456492720'), Decimal('3.069445606400000044189219217'), Decimal('3.063257208000000044100128049'), Decimal('3.047786212000000043877400130'), Decimal('3.032315216000000043654672210')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0975, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0941992000000003}, controller_id=None),\n ExecutorInfo(id='2fdUq3rzrMjRusCHmCocT6LiZNniddC38SpxqygWxfKD', timestamp=1704367860000.0, type='dca_executor', close_timestamp=1704367980000.0, close_type=, status=, config=DCAExecutorConfig(id='2fdUq3rzrMjRusCHmCocT6LiZNniddC38SpxqygWxfKD', type='dca_executor', timestamp=1704367860000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714285'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.098889800000000192751813122'), Decimal('3.092692020400000192366309496'), Decimal('3.074098681600000191209798617'), Decimal('3.067900902000000190824294991'), Decimal('3.052406453000000189860535925'), Decimal('3.036912004000000188896776860')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1144, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0988898000000002}, controller_id=None),\n ExecutorInfo(id='BEU5gE7XgFbLYuibRYyKNsMABq6edzssBRvAfbBBbe75', timestamp=1704368040000.0, type='dca_executor', close_timestamp=1704368160000.0, close_type=, status=, config=DCAExecutorConfig(id='BEU5gE7XgFbLYuibRYyKNsMABq6edzssBRvAfbBBbe75', type='dca_executor', timestamp=1704368040000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.095496600000000123258032947'), Decimal('3.089305606800000123011516881'), Decimal('3.070732627200000122271968683'), Decimal('3.064541634000000122025452618'), Decimal('3.049064151000000121409162453'), Decimal('3.033586668000000120792872288')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1069, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0954966}, controller_id=None),\n ExecutorInfo(id='EVdrMFhiq6k323ev7tRovcUtBDrYkzMxAeHegyU2cnd8', timestamp=1704368220000.0, type='dca_executor', close_timestamp=1704368340000.0, close_type=, status=, config=DCAExecutorConfig(id='EVdrMFhiq6k323ev7tRovcUtBDrYkzMxAeHegyU2cnd8', type='dca_executor', timestamp=1704368220000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380955'), Decimal('70.85714285714285714285714291'), Decimal('94.28571428571428571428571434'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000001')], prices=[Decimal('3.096993600000000179987702520'), Decimal('3.090799612800000179627727115'), Decimal('3.072217651200000178547800900'), Decimal('3.066023664000000178187825495'), Decimal('3.050538696000000177287886982'), Decimal('3.035053728000000176387948470')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1089, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0969936000000002}, controller_id=None),\n ExecutorInfo(id='5xAn8SG3mg2Ge6TqFf8KMNmLgMa6NXprEPBBuq3XLjQe', timestamp=1704339960000.0, type='dca_executor', close_timestamp=1704381540000.0, close_type=, status=, config=DCAExecutorConfig(id='5xAn8SG3mg2Ge6TqFf8KMNmLgMa6NXprEPBBuq3XLjQe', type='dca_executor', timestamp=1704339960000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.102793200000000019351945045'), Decimal('3.108998786400000019390648935'), Decimal('3.127615545600000019506760605'), Decimal('3.133821132000000019545464495'), Decimal('3.149335098000000019642224221'), Decimal('3.164849064000000019738983946')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.01488779426553446007253089788946454063989222049713134765625'), net_pnl_quote=Decimal('-7.5371230825728385838147005415521562099456787109375'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 3.1933, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.1417732890537553}, controller_id=None),\n ExecutorInfo(id='GSEzTaGjJf6idatM2Mfj7XeS1bUZvsVquprpL3pPoQFT', timestamp=1704368400000.0, type='dca_executor', close_timestamp=1704382020000.0, close_type=, status=, config=DCAExecutorConfig(id='GSEzTaGjJf6idatM2Mfj7XeS1bUZvsVquprpL3pPoQFT', type='dca_executor', timestamp=1704368400000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714285'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.102083399999999841027341352'), Decimal('3.095879233199999841345286669'), Decimal('3.077266732799999842299122621'), Decimal('3.071062565999999842617067938'), Decimal('3.055552148999999843411931232'), Decimal('3.040041731999999844206794525')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.0313729283549353255011737928725779056549072265625'), net_pnl_quote=Decimal('0.7469744846413173267052343362593092024326324462890625'), cum_fees_quote=Decimal('0.01428571428571428526821396332024960429407656192779541015625'), filled_amount_quote=Decimal('23.8095238095238102005168912000954151153564453125'), is_active=False, is_trading=False, custom_info={'close_price': 3.1987, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.1020833999999997}, controller_id=None),\n ExecutorInfo(id='9W7nBNiBGPNdCkS42itVHHLcifh6XjQG3eQVVau4X1EV', timestamp=1704382020000.0, type='dca_executor', close_timestamp=1704382140000.0, close_type=, status=, config=DCAExecutorConfig(id='9W7nBNiBGPNdCkS42itVHHLcifh6XjQG3eQVVau4X1EV', type='dca_executor', timestamp=1704382020000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714291'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.192302600000000098434736751'), Decimal('3.185917994800000098237867277'), Decimal('3.166764179200000097647258857'), Decimal('3.160379574000000097450389383'), Decimal('3.144418061000000096958215700'), Decimal('3.128456548000000096466042016')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.2092, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.1923026}, controller_id=None),\n ExecutorInfo(id='8MtgqDbZBreJCZK8YUFkR3onLoZo8WNHUCuyPMvJr36K', timestamp=1704382200000.0, type='dca_executor', close_timestamp=1704382320000.0, close_type=, status=, config=DCAExecutorConfig(id='8MtgqDbZBreJCZK8YUFkR3onLoZo8WNHUCuyPMvJr36K', type='dca_executor', timestamp=1704382200000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.214757600000000062977717485'), Decimal('3.208328084800000062851762050'), Decimal('3.189039539200000062473895745'), Decimal('3.182610024000000062347940310'), Decimal('3.166536236000000062033051723'), Decimal('3.150462448000000061718163135')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.2186, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.2147576}, controller_id=None),\n ExecutorInfo(id='7Rne4n8QcQKZ4hEmqbYEwUpd57UgAe93ES1yn7RjFhr6', timestamp=1704382380000.0, type='dca_executor', close_timestamp=1704382500000.0, close_type=, status=, config=DCAExecutorConfig(id='7Rne4n8QcQKZ4hEmqbYEwUpd57UgAe93ES1yn7RjFhr6', type='dca_executor', timestamp=1704382380000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571426'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.196095000000000123962957954'), Decimal('3.189702810000000123715032038'), Decimal('3.170526240000000122971254290'), Decimal('3.164134050000000122723328374'), Decimal('3.148153575000000122103513585'), Decimal('3.132173100000000121483698795')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.2143, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.196095}, controller_id=None),\n ExecutorInfo(id='WMYXLpERBcyMoMMnm36TCgmdCi2r6kgTP9RGw4A6B9v', timestamp=1704382560000.0, type='dca_executor', close_timestamp=1704382680000.0, close_type=, status=, config=DCAExecutorConfig(id='WMYXLpERBcyMoMMnm36TCgmdCi2r6kgTP9RGw4A6B9v', type='dca_executor', timestamp=1704382560000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.215156800000000019012158514'), Decimal('3.208726486400000018974134197'), Decimal('3.189435545600000018860061246'), Decimal('3.183005232000000018822036929'), Decimal('3.166929448000000018726976136'), Decimal('3.150853664000000018631915344')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.2272, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.2151568}, controller_id=None),\n ExecutorInfo(id='GyQrh1Lb8LSxWXXmRrdGS8LK4DxBgSc6iryeZrXYwMNJ', timestamp=1704385140000.0, type='dca_executor', close_timestamp=1704385260000.0, close_type=, status=, config=DCAExecutorConfig(id='GyQrh1Lb8LSxWXXmRrdGS8LK4DxBgSc6iryeZrXYwMNJ', type='dca_executor', timestamp=1704385140000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.187863000000000217281422020'), Decimal('3.194238726000000217715984864'), Decimal('3.213365904000000219019673396'), Decimal('3.219741630000000219454236240'), Decimal('3.235680945000000220540643350'), Decimal('3.251620260000000221627050460')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1788, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.187863}, controller_id=None),\n ExecutorInfo(id='44AvEJnyHHAPhJbNLUTKdftKL8DntHrdPgL4BeFSUx1g', timestamp=1704385320000.0, type='dca_executor', close_timestamp=1704385440000.0, close_type=, status=, config=DCAExecutorConfig(id='44AvEJnyHHAPhJbNLUTKdftKL8DntHrdPgL4BeFSUx1g', type='dca_executor', timestamp=1704385320000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047616'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.171530400000000013659090524'), Decimal('3.177873460800000013686408705'), Decimal('3.196902643200000013768363248'), Decimal('3.203245704000000013795681429'), Decimal('3.219103356000000013863976882'), Decimal('3.234961008000000013932272334')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.157, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.1715304}, controller_id=None),\n ExecutorInfo(id='8NBoYg87bYmLpZUQrLHiGBegJRDkr8BtZFb2k1vy5Fn8', timestamp=1704385500000.0, type='dca_executor', close_timestamp=1704385620000.0, close_type=, status=, config=DCAExecutorConfig(id='8NBoYg87bYmLpZUQrLHiGBegJRDkr8BtZFb2k1vy5Fn8', type='dca_executor', timestamp=1704385500000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.164315999999999918255638719'), Decimal('3.170644631999999918092149996'), Decimal('3.189630527999999917601683829'), Decimal('3.195959159999999917438195106'), Decimal('3.211780739999999917029473300'), Decimal('3.227602319999999916620751493')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1639, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.164316}, controller_id=None),\n ExecutorInfo(id='DXY3RNbq8n8XsDuKqvZH6yEopbetfUEtdAbNPqgQtcr4', timestamp=1704385680000.0, type='dca_executor', close_timestamp=1704385800000.0, close_type=, status=, config=DCAExecutorConfig(id='DXY3RNbq8n8XsDuKqvZH6yEopbetfUEtdAbNPqgQtcr4', type='dca_executor', timestamp=1704385680000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142858')], prices=[Decimal('3.162312000000000138964340034'), Decimal('3.168636624000000139242268714'), Decimal('3.187610496000000140076054754'), Decimal('3.193935120000000140353983434'), Decimal('3.209746680000000141048805135'), Decimal('3.225558240000000141743626835')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.157, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.162312}, controller_id=None),\n ExecutorInfo(id='7DR7mV9DedEiQT5vwuDhQ2zjnLPH5c6cVC8dm4Bj7E9g', timestamp=1704385860000.0, type='dca_executor', close_timestamp=1704385980000.0, close_type=, status=, config=DCAExecutorConfig(id='7DR7mV9DedEiQT5vwuDhQ2zjnLPH5c6cVC8dm4Bj7E9g', type='dca_executor', timestamp=1704385860000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.169325999999999811461273701'), Decimal('3.175664651999999811084196248'), Decimal('3.194680607999999809952963891'), Decimal('3.201019259999999809575886438'), Decimal('3.216865889999999808633192807'), Decimal('3.232712519999999807690499175')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1646, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.169326}, controller_id=None),\n ExecutorInfo(id='6SmD513qHvvXHtTuU1izxLuibE24PCDiZGVj59RDoMth', timestamp=1704386040000.0, type='dca_executor', close_timestamp=1704386160000.0, close_type=, status=, config=DCAExecutorConfig(id='6SmD513qHvvXHtTuU1izxLuibE24PCDiZGVj59RDoMth', type='dca_executor', timestamp=1704386040000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.170428199999999912560182112'), Decimal('3.176769056399999912385302476'), Decimal('3.195791625599999911860663569'), Decimal('3.202132481999999911685783933'), Decimal('3.217984622999999911248584844'), Decimal('3.233836763999999910811385754')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1563, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.1704282}, controller_id=None),\n ExecutorInfo(id='8ZXz97CXUNKgPZuSkyHzb2xZTUbKj5zQEERWTwvQWHv', timestamp=1704386220000.0, type='dca_executor', close_timestamp=1704386340000.0, close_type=, status=, config=DCAExecutorConfig(id='8ZXz97CXUNKgPZuSkyHzb2xZTUbKj5zQEERWTwvQWHv', type='dca_executor', timestamp=1704386220000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428574'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.175037399999999849907557357'), Decimal('3.181387474799999849607372472'), Decimal('3.200437699199999848706817816'), Decimal('3.206787773999999848406632931'), Decimal('3.222662960999999847656170717'), Decimal('3.238538147999999846905708504')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.1646, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.1750374}, controller_id=None),\n ExecutorInfo(id='8Z4hUJv5ThyeW26vQaA6iqRKe1s1fsV6p8bY8SMHTNmx', timestamp=1704386400000.0, type='dca_executor', close_timestamp=1704386520000.0, close_type=, status=, config=DCAExecutorConfig(id='8Z4hUJv5ThyeW26vQaA6iqRKe1s1fsV6p8bY8SMHTNmx', type='dca_executor', timestamp=1704386400000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.170929200000000079871700918'), Decimal('3.177271058400000080031444320'), Decimal('3.196296633600000080510674525'), Decimal('3.202638492000000080670417927'), Decimal('3.218493138000000081069776432'), Decimal('3.234347784000000081469134936')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.163, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.1709292000000002}, controller_id=None),\n ExecutorInfo(id='7LBtNuoSAGBHKEd2Lf8JwhUFKVYHn44fhdYrMwsN8NJs', timestamp=1704382740000.0, type='dca_executor', close_timestamp=1704419220000.0, close_type=, status=, config=DCAExecutorConfig(id='7LBtNuoSAGBHKEd2Lf8JwhUFKVYHn44fhdYrMwsN8NJs', type='dca_executor', timestamp=1704382740000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714285'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.220745599999999846695364347'), Decimal('3.214304108799999847001973618'), Decimal('3.194979635199999847921801432'), Decimal('3.188538143999999848228410704'), Decimal('3.172434415999999848994933882'), Decimal('3.156330687999999849761457060')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.0144564951537943971182631486271930043585598468780517578125'), net_pnl_quote=Decimal('-7.13772238105320067091952296323142945766448974609375'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 3.131, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.1805386984616866}, controller_id=None),\n ExecutorInfo(id='Ah4hikxVXa7gQ93Srmvf14FxqjviBxyyW3J3jeYiFFSM', timestamp=1704386580000.0, type='dca_executor', close_timestamp=1704419280000.0, close_type=, status=, config=DCAExecutorConfig(id='Ah4hikxVXa7gQ93Srmvf14FxqjviBxyyW3J3jeYiFFSM', type='dca_executor', timestamp=1704386580000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.169325999999999811461273701'), Decimal('3.175664651999999811084196248'), Decimal('3.194680607999999809952963891'), Decimal('3.201019259999999809575886438'), Decimal('3.216865889999999808633192807'), Decimal('3.232712519999999807690499175')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.064999559240774329449408241998753510415554046630859375'), net_pnl_quote=Decimal('32.906800669918681023773388005793094635009765625'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 3.0041, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.209141934146169}, controller_id=None),\n ExecutorInfo(id='8V9cGMojSQ5HTwMwc8Dr5awhtBFh1ddoBQYtxkQpTszU', timestamp=1704419280000.0, type='dca_executor', close_timestamp=1704419640000.0, close_type=, status=, config=DCAExecutorConfig(id='8V9cGMojSQ5HTwMwc8Dr5awhtBFh1ddoBQYtxkQpTszU', type='dca_executor', timestamp=1704419280000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.010108200000000215138144798'), Decimal('3.016128416400000215568421088'), Decimal('3.034189065600000216859249956'), Decimal('3.040209282000000217289526246'), Decimal('3.055259823000000218365216970'), Decimal('3.070310364000000219440907694')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.0068582201131117681569548949482850730419158935546875'), net_pnl_quote=Decimal('-3.47205557774036943641249308711849153041839599609375'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 3.0977, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.047923896417486}, controller_id=None),\n ExecutorInfo(id='ERhnEqELbFJBFHMCCSmAvbpixVWcsx1DESYgCgEEzuu7', timestamp=1704422820000.0, type='dca_executor', close_timestamp=1704422940000.0, close_type=, status=, config=DCAExecutorConfig(id='ERhnEqELbFJBFHMCCSmAvbpixVWcsx1DESYgCgEEzuu7', type='dca_executor', timestamp=1704422820000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.078330999999999797771911558'), Decimal('3.072174337999999798176367735'), Decimal('3.053704351999999799389736266'), Decimal('3.047547689999999799794192442'), Decimal('3.032156034999999800805332885'), Decimal('3.016764379999999801816473327')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0886, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.078331}, controller_id=None),\n ExecutorInfo(id='8pGwy1m3MstZSmMHNQHsbqdWkQYRGDYWWkDJefzXQE9q', timestamp=1704423240000.0, type='dca_executor', close_timestamp=1704423360000.0, close_type=, status=, config=DCAExecutorConfig(id='8pGwy1m3MstZSmMHNQHsbqdWkQYRGDYWWkDJefzXQE9q', type='dca_executor', timestamp=1704423240000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000005'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.082352400000000045693757110'), Decimal('3.088517104800000045785144624'), Decimal('3.107011219200000046059307167'), Decimal('3.113175924000000046150694681'), Decimal('3.128587686000000046379163467'), Decimal('3.143999448000000046607632252')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0689, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.0823524}, controller_id=None),\n ExecutorInfo(id='JA3Xwcum9oY2azFwE7GT28WviVCP7CJfuNhmhGkvq36R', timestamp=1704423420000.0, type='dca_executor', close_timestamp=1704423540000.0, close_type=, status=, config=DCAExecutorConfig(id='JA3Xwcum9oY2azFwE7GT28WviVCP7CJfuNhmhGkvq36R', type='dca_executor', timestamp=1704423420000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047617'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.075037800000000183814434505'), Decimal('3.081187875600000184182063374'), Decimal('3.099638102400000185284949981'), Decimal('3.105788178000000185652578850'), Decimal('3.121163367000000186571651023'), Decimal('3.136538556000000187490723195')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 3.0732, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.0750378}, controller_id=None),\n ExecutorInfo(id='CWJPgeLupjVB4WJzaBqyKHVXQLbktTC5E6c9ZUF4z1pq', timestamp=1704423600000.0, type='dca_executor', close_timestamp=1704464400000.0, close_type=, status=, config=DCAExecutorConfig(id='CWJPgeLupjVB4WJzaBqyKHVXQLbktTC5E6c9ZUF4z1pq', type='dca_executor', timestamp=1704423600000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.078144000000000064204641602'), Decimal('3.084300288000000064333050885'), Decimal('3.102769152000000064718278735'), Decimal('3.108925440000000064846688018'), Decimal('3.124316160000000065167711226'), Decimal('3.139706880000000065488734434')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.034742183517674628256965974060221924446523189544677734375'), net_pnl_quote=Decimal('8.3281977060940040047398724709637463092803955078125'), cum_fees_quote=Decimal('0.1438285714285714167459673262783326208591461181640625'), filled_amount_quote=Decimal('239.71428571428572240620269440114498138427734375'), is_active=False, is_trading=False, custom_info={'close_price': 2.9949, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.099117448390942}, controller_id=None),\n ExecutorInfo(id='fGaMG4uC8dSbKRDVK9khkbKKFV8piL4u5NLYM84iSmJ', timestamp=1704423000000.0, type='dca_executor', close_timestamp=1704465300000.0, close_type=, status=, config=DCAExecutorConfig(id='fGaMG4uC8dSbKRDVK9khkbKKFV8piL4u5NLYM84iSmJ', type='dca_executor', timestamp=1704423000000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('3.075736200000000083548044871'), Decimal('3.069584727600000083380948781'), Decimal('3.051130310400000082879660512'), Decimal('3.044978838000000082712564422'), Decimal('3.029600157000000082294824198'), Decimal('3.014221476000000081877083974')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.02088586157362193329589672430302016437053680419921875'), net_pnl_quote=Decimal('-10.31214551076661933848299668170511722564697265625'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.9723, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 3.0373395558964655}, controller_id=None),\n ExecutorInfo(id='Ce6Bhfou2ThAeZCaN1XGYhsQgUYaMvTX8vVponKTUNLj', timestamp=1704468900000.0, type='dca_executor', close_timestamp=1704469020000.0, close_type=, status=, config=DCAExecutorConfig(id='Ce6Bhfou2ThAeZCaN1XGYhsQgUYaMvTX8vVponKTUNLj', type='dca_executor', timestamp=1704468900000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380950'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.964359399999999940310117796'), Decimal('2.958430681199999940429497560'), Decimal('2.940644524799999940787636854'), Decimal('2.934715805999999940907016618'), Decimal('2.919894008999999941205466029'), Decimal('2.905072211999999941503915440')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.9652, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.9643593999999998}, controller_id=None),\n ExecutorInfo(id='A6iftg1kz8GwN1WSmJRpKahG7YG1ua1pkYAFVJr6hGWP', timestamp=1704469080000.0, type='dca_executor', close_timestamp=1704469200000.0, close_type=, status=, config=DCAExecutorConfig(id='A6iftg1kz8GwN1WSmJRpKahG7YG1ua1pkYAFVJr6hGWP', type='dca_executor', timestamp=1704469080000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.960766599999999892799117107'), Decimal('2.954845066799999893013518873'), Decimal('2.937080467199999893656724170'), Decimal('2.931158933999999893871125936'), Decimal('2.916355100999999894407130350'), Decimal('2.901551267999999894943134765')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.9663, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.9607666}, controller_id=None),\n ExecutorInfo(id='7BnBih2a5oTG3yQSJw6TzTm1dYYqFTvdMFXggdqXNytU', timestamp=1704469260000.0, type='dca_executor', close_timestamp=1704469380000.0, close_type=, status=, config=DCAExecutorConfig(id='7BnBih2a5oTG3yQSJw6TzTm1dYYqFTvdMFXggdqXNytU', type='dca_executor', timestamp=1704469260000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571426'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.965157799999999852378999854'), Decimal('2.959227484399999852674241854'), Decimal('2.941436537599999853559967855'), Decimal('2.935506221999999853855209855'), Decimal('2.920680432999999854593314856'), Decimal('2.905854643999999855331419857')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.9705, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.9651578}, controller_id=None),\n ExecutorInfo(id='7g11a4r7RFRCBSDhLXCkz56qeivsKDyhQa743z8KVmo', timestamp=1704469440000.0, type='dca_executor', close_timestamp=1704469560000.0, close_type=, status=, config=DCAExecutorConfig(id='7g11a4r7RFRCBSDhLXCkz56qeivsKDyhQa743z8KVmo', type='dca_executor', timestamp=1704469440000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380950'), Decimal('70.85714285714285714285714285'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.947193800000000058025027838'), Decimal('2.941299412400000057908977782'), Decimal('2.923616249600000057560827615'), Decimal('2.917721862000000057444777560'), Decimal('2.902985893000000057154652420'), Decimal('2.888249924000000056864527281')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.9635, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.9471938}, controller_id=None),\n ExecutorInfo(id='4S9AuEjwY5M6Ap8PHX85UiHxJUuwCkqVnV7AqTA6LWru', timestamp=1704469620000.0, type='dca_executor', close_timestamp=1704469740000.0, close_type=, status=, config=DCAExecutorConfig(id='4S9AuEjwY5M6Ap8PHX85UiHxJUuwCkqVnV7AqTA6LWru', type='dca_executor', timestamp=1704469620000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.952982199999999863725454186'), Decimal('2.947076235599999863998003278'), Decimal('2.929358342399999864815650553'), Decimal('2.923452377999999865088199644'), Decimal('2.908687466999999865769572373'), Decimal('2.893922555999999866450945102')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.9688, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.9529821999999997}, controller_id=None),\n ExecutorInfo(id='9uURWtLRnUeTbuFPmirHBhQvjEPYjPZFz4XXEATZFtdm', timestamp=1704469800000.0, type='dca_executor', close_timestamp=1704469920000.0, close_type=, status=, config=DCAExecutorConfig(id='9uURWtLRnUeTbuFPmirHBhQvjEPYjPZFz4XXEATZFtdm', type='dca_executor', timestamp=1704469800000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.954579000000000131064249731'), Decimal('2.948669842000000130802121232'), Decimal('2.930942368000000130015735733'), Decimal('2.925033210000000129753607234'), Decimal('2.910260315000000129098285985'), Decimal('2.895487420000000128442964736')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.9605, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.9545790000000003}, controller_id=None),\n ExecutorInfo(id='5eFLc6iobJAB4Bsgst62XaNvU9qk2Cv4PT46FuoZ5Yo2', timestamp=1704469980000.0, type='dca_executor', close_timestamp=1704470100000.0, close_type=, status=, config=DCAExecutorConfig(id='5eFLc6iobJAB4Bsgst62XaNvU9qk2Cv4PT46FuoZ5Yo2', type='dca_executor', timestamp=1704469980000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714291'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.946195800000000167938925266'), Decimal('2.940303408400000167603047415'), Decimal('2.922626233600000166595413864'), Decimal('2.916733842000000166259536013'), Decimal('2.902002863000000165419841387'), Decimal('2.887271884000000164580146761')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.9482, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.9461958000000004}, controller_id=None),\n ExecutorInfo(id='Bv374hG8F2wZPtQtWC8mW9MRQmBKLRkTwGncnvCfu6Fs', timestamp=1704470160000.0, type='dca_executor', close_timestamp=1704470280000.0, close_type=, status=, config=DCAExecutorConfig(id='Bv374hG8F2wZPtQtWC8mW9MRQmBKLRkTwGncnvCfu6Fs', type='dca_executor', timestamp=1704470160000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714285'), Decimal('94.28571428571428571428571426'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.942303599999999931801578090'), Decimal('2.936418992799999931937974934'), Decimal('2.918765171199999932347165465'), Decimal('2.912880563999999932483562309'), Decimal('2.898169045999999932824554419'), Decimal('2.883457527999999933165546528')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.9605, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.9423036}, controller_id=None),\n ExecutorInfo(id='4ji5N3fikGpS38xe9CoTQppqwSSDH8rsihCBty2E65tx', timestamp=1704470340000.0, type='dca_executor', close_timestamp=1704470460000.0, close_type=, status=, config=DCAExecutorConfig(id='4ji5N3fikGpS38xe9CoTQppqwSSDH8rsihCBty2E65tx', type='dca_executor', timestamp=1704470340000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000001')], prices=[Decimal('2.958171800000000178575250420'), Decimal('2.952255456400000178218099919'), Decimal('2.934506425600000177146648417'), Decimal('2.928590082000000176789497916'), Decimal('2.913799223000000175896621664'), Decimal('2.899008364000000175003745412')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.9853, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.9581718}, controller_id=None),\n ExecutorInfo(id='2xM6HRJTkLUBR3s352rnmSe6Nk5wYRiLU5hxwJfoSK1o', timestamp=1704464400000.0, type='dca_executor', close_timestamp=1704474300000.0, close_type=, status=, config=DCAExecutorConfig(id='2xM6HRJTkLUBR3s352rnmSe6Nk5wYRiLU5hxwJfoSK1o', type='dca_executor', timestamp=1704464400000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('3.000889799999999895466006038'), Decimal('3.006891579599999895256938050'), Decimal('3.024896918399999894629734086'), Decimal('3.030898697999999894420666098'), Decimal('3.045903146999999893897996129'), Decimal('3.060907595999999893375326159')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.036492954001594364588090257939256844110786914825439453125'), net_pnl_quote=Decimal('2.6101150909711776648691738955676555633544921875'), cum_fees_quote=Decimal('0.0429142857142857103713851074644480831921100616455078125'), filled_amount_quote=Decimal('71.5238095238095183958648703992366790771484375'), is_active=False, is_trading=False, custom_info={'close_price': 2.899, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 3.0048936503057257}, controller_id=None),\n ExecutorInfo(id='BGaP2V7nznqr4czBcNBCsZqqqd74pjqfXt1aPtBWkEgV', timestamp=1704470520000.0, type='dca_executor', close_timestamp=1704474480000.0, close_type=, status=, config=DCAExecutorConfig(id='BGaP2V7nznqr4czBcNBCsZqqqd74pjqfXt1aPtBWkEgV', type='dca_executor', timestamp=1704470520000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380950'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619047'), Decimal('139.9999999999999999999999999')], prices=[Decimal('2.976235600000000183538348408'), Decimal('2.970283128800000183171271711'), Decimal('2.952425715200000182070041621'), Decimal('2.946473244000000181702964924'), Decimal('2.931592066000000180785273182'), Decimal('2.916710888000000179867581440')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.0121839387249758727971293836844779434613883495330810546875'), net_pnl_quote=Decimal('-6.0156746985672544525414195959456264972686767578125'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.8949, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.93908109399865}, controller_id=None),\n ExecutorInfo(id='94XYuwV5RtrPedXRPmejAtAQWK3mx4g4krDznR1oMHi6', timestamp=1704478080000.0, type='dca_executor', close_timestamp=1704478200000.0, close_type=, status=, config=DCAExecutorConfig(id='94XYuwV5RtrPedXRPmejAtAQWK3mx4g4krDznR1oMHi6', type='dca_executor', timestamp=1704478080000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.921345600000000023988266928'), Decimal('2.915502908800000023940290394'), Decimal('2.897974835200000023796360793'), Decimal('2.892132144000000023748384259'), Decimal('2.877525416000000023628442924'), Decimal('2.862918688000000023508501589')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.9239, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.9213456}, controller_id=None),\n ExecutorInfo(id='EhPNQhBgD9qFTXkNpGidPkFrcSijs42sNjni8ENE1jxv', timestamp=1704478260000.0, type='dca_executor', close_timestamp=1704478380000.0, close_type=, status=, config=DCAExecutorConfig(id='EhPNQhBgD9qFTXkNpGidPkFrcSijs42sNjni8ENE1jxv', type='dca_executor', timestamp=1704478260000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571433'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.920148000000000155884943842'), Decimal('2.914307704000000155573173954'), Decimal('2.896786816000000154637864291'), Decimal('2.890946520000000154326094404'), Decimal('2.876345780000000153546669684'), Decimal('2.861745040000000152767244965')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.9285, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.920148}, controller_id=None),\n ExecutorInfo(id='EpMSPThyAxpHRwmT8SuJUrMJEvoFqjahNMn3gPcRr698', timestamp=1704478440000.0, type='dca_executor', close_timestamp=1704478560000.0, close_type=, status=, config=DCAExecutorConfig(id='EpMSPThyAxpHRwmT8SuJUrMJEvoFqjahNMn3gPcRr698', type='dca_executor', timestamp=1704478440000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.926834600000000084263378219'), Decimal('2.920980930800000084094851463'), Decimal('2.903419923200000083589271193'), Decimal('2.897566254000000083420744437'), Decimal('2.882932081000000082999427546'), Decimal('2.868297908000000082578110655')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.9303, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.9268346000000003}, controller_id=None),\n ExecutorInfo(id='9BtHjkc39WSYdynXZzwo2rT7wwsRDum3z59PF9oHyUiq', timestamp=1704478620000.0, type='dca_executor', close_timestamp=1704478740000.0, close_type=, status=, config=DCAExecutorConfig(id='9BtHjkc39WSYdynXZzwo2rT7wwsRDum3z59PF9oHyUiq', type='dca_executor', timestamp=1704478620000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571433'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.921545200000000002005487443'), Decimal('2.915702109600000002001476468'), Decimal('2.898172838400000001989443543'), Decimal('2.892329748000000001985432569'), Decimal('2.877722022000000001975405131'), Decimal('2.863114296000000001965377694')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.9219, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.9215452}, controller_id=None),\n ExecutorInfo(id='32PF8nTXMJ1rkcpfL4WYVNDyQh1nQdQdRbsSGxGAouxP', timestamp=1704478800000.0, type='dca_executor', close_timestamp=1704498960000.0, close_type=, status=, config=DCAExecutorConfig(id='32PF8nTXMJ1rkcpfL4WYVNDyQh1nQdQdRbsSGxGAouxP', type='dca_executor', timestamp=1704478800000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.913561199999999994914604007'), Decimal('2.907734077599999994924774799'), Decimal('2.890252710399999994955287175'), Decimal('2.884425587999999994965457967'), Decimal('2.869857781999999994990884947'), Decimal('2.855289975999999995016311927')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.03178415474597177936555425503684091381728649139404296875'), net_pnl_quote=Decimal('11.243266358592922671277847257442772388458251953125'), cum_fees_quote=Decimal('0.212242857142857122010326520467060618102550506591796875'), filled_amount_quote=Decimal('353.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.9731, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.885856188319984}, controller_id=None),\n ExecutorInfo(id='3bqrFYQGxqtbsAzdoN8Aut84PNjNg1jAfMQ3d8MFwgiy', timestamp=1704498960000.0, type='dca_executor', close_timestamp=1704499080000.0, close_type=, status=, config=DCAExecutorConfig(id='3bqrFYQGxqtbsAzdoN8Aut84PNjNg1jAfMQ3d8MFwgiy', type='dca_executor', timestamp=1704498960000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.967153800000000075752236428'), Decimal('2.961219492400000075600731955'), Decimal('2.943416569600000075146218537'), Decimal('2.937482262000000074994714064'), Decimal('2.922646493000000074615952882'), Decimal('2.907810724000000074237191699')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.9773, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.9671538}, controller_id=None),\n ExecutorInfo(id='94M3BE3Ci45ZePH5jWZgbwdEg7BNw3eqWTYcZZGG1GsQ', timestamp=1704499140000.0, type='dca_executor', close_timestamp=1704504000000.0, close_type=, status=, config=DCAExecutorConfig(id='94M3BE3Ci45ZePH5jWZgbwdEg7BNw3eqWTYcZZGG1GsQ', type='dca_executor', timestamp=1704499140000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.975137800000000082843119864'), Decimal('2.969187524400000082677433624'), Decimal('2.951336697600000082180374905'), Decimal('2.945386422000000082014688665'), Decimal('2.930510733000000081600473066'), Decimal('2.915635044000000081186257467')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.0156901973586849215192007278574237716384232044219970703125'), net_pnl_quote=Decimal('-7.7468481577868857357316301204264163970947265625'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.8906, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.937996998631673}, controller_id=None),\n ExecutorInfo(id='8v4XLKD2RCRC6VFiRn3354Gr8PDZaoynzFBmc6HEuGR1', timestamp=1704507600000.0, type='dca_executor', close_timestamp=1704507720000.0, close_type=, status=, config=DCAExecutorConfig(id='8v4XLKD2RCRC6VFiRn3354Gr8PDZaoynzFBmc6HEuGR1', type='dca_executor', timestamp=1704507600000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714291'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.859070399999999791398963556'), Decimal('2.853352259199999791816165629'), Decimal('2.836197836799999793067771848'), Decimal('2.830479695999999793484973920'), Decimal('2.816184343999999794527979103'), Decimal('2.801888991999999795570984285')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8715, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8590704}, controller_id=None),\n ExecutorInfo(id='31jaDzZHoPchfBxNw9mTZTScdgSbG8Pzz4rU1z4RSoH7', timestamp=1704507780000.0, type='dca_executor', close_timestamp=1704507900000.0, close_type=, status=, config=DCAExecutorConfig(id='31jaDzZHoPchfBxNw9mTZTScdgSbG8Pzz4rU1z4RSoH7', type='dca_executor', timestamp=1704507780000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.869449599999999977897524595'), Decimal('2.863710700799999977941729546'), Decimal('2.846494003199999978074344398'), Decimal('2.840755103999999978118549349'), Decimal('2.826407855999999978229061726'), Decimal('2.812060607999999978339574103')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8844, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8694496}, controller_id=None),\n ExecutorInfo(id='3SKjPgfK5PhWjBtJeTMHJLk7Wsc1aYqrUNPZGSHDMKbQ', timestamp=1704507960000.0, type='dca_executor', close_timestamp=1704508080000.0, close_type=, status=, config=DCAExecutorConfig(id='3SKjPgfK5PhWjBtJeTMHJLk7Wsc1aYqrUNPZGSHDMKbQ', type='dca_executor', timestamp=1704507960000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380950'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571425'), Decimal('117.2619047619047619047619047'), Decimal('139.9999999999999999999999999')], prices=[Decimal('2.881824799999999944568290777'), Decimal('2.876061150399999944679154195'), Decimal('2.858770201599999945011744451'), Decimal('2.853006551999999945122607869'), Decimal('2.838597427999999945399766415'), Decimal('2.824188303999999945676924961')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8896, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8818248}, controller_id=None),\n ExecutorInfo(id='2tqxuywFsCfiEFCuKbwhPggaVu5BcXRrhCFjVasYU6kG', timestamp=1704508140000.0, type='dca_executor', close_timestamp=1704508260000.0, close_type=, status=, config=DCAExecutorConfig(id='2tqxuywFsCfiEFCuKbwhPggaVu5BcXRrhCFjVasYU6kG', type='dca_executor', timestamp=1704508140000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.882623199999999856637172835'), Decimal('2.876857953599999856923898489'), Decimal('2.859562214399999857784075452'), Decimal('2.853796967999999858070801107'), Decimal('2.839383851999999858787615242'), Decimal('2.824970735999999859504429378')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8932, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8826232}, controller_id=None),\n ExecutorInfo(id='3Fe6d3wnCU6eoqMrVvFnwrDaVRxm5uLxoBQbG1tMPygN', timestamp=1704508320000.0, type='dca_executor', close_timestamp=1704508440000.0, close_type=, status=, config=DCAExecutorConfig(id='3Fe6d3wnCU6eoqMrVvFnwrDaVRxm5uLxoBQbG1tMPygN', type='dca_executor', timestamp=1704508320000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.888910599999999828981166183'), Decimal('2.883132778799999829323203851'), Decimal('2.865799315199999830349316854'), Decimal('2.860021493999999830691354521'), Decimal('2.845576940999999831546448690'), Decimal('2.831132387999999832401542859')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8947, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8889106}, controller_id=None),\n ExecutorInfo(id='HoWXibemEGgsRNVZisx8e6d1JEDUXAV911sf3CemmHuX', timestamp=1704508500000.0, type='dca_executor', close_timestamp=1704508620000.0, close_type=, status=, config=DCAExecutorConfig(id='HoWXibemEGgsRNVZisx8e6d1JEDUXAV911sf3CemmHuX', type='dca_executor', timestamp=1704508500000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.888910599999999828981166183'), Decimal('2.883132778799999829323203851'), Decimal('2.865799315199999830349316854'), Decimal('2.860021493999999830691354521'), Decimal('2.845576940999999831546448690'), Decimal('2.831132387999999832401542859')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.901, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8889106}, controller_id=None),\n ExecutorInfo(id='AgwR8BW9EWNA75aLQiNCemWxcX6o2WXjhvHz2gvSKyDn', timestamp=1704508680000.0, type='dca_executor', close_timestamp=1704508800000.0, close_type=, status=, config=DCAExecutorConfig(id='AgwR8BW9EWNA75aLQiNCemWxcX6o2WXjhvHz2gvSKyDn', type='dca_executor', timestamp=1704508680000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.892503399999999876492166873'), Decimal('2.886718393199999876739182539'), Decimal('2.869363372799999877480229538'), Decimal('2.863578365999999877727245204'), Decimal('2.849115848999999878344784370'), Decimal('2.834653331999999878962323536')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8951, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8925034}, controller_id=None),\n ExecutorInfo(id='49SjdbWJUSJ18c4Ng6xu2SWrRGMS5nLzhwAmfT7rhQQo', timestamp=1704508860000.0, type='dca_executor', close_timestamp=1704508980000.0, close_type=, status=, config=DCAExecutorConfig(id='49SjdbWJUSJ18c4Ng6xu2SWrRGMS5nLzhwAmfT7rhQQo', type='dca_executor', timestamp=1704508860000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.875337799999999994207076914'), Decimal('2.869587124399999994218662760'), Decimal('2.852335097599999994253420299'), Decimal('2.846584421999999994265006145'), Decimal('2.832207732999999994293970760'), Decimal('2.817831043999999994322935376')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8831, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8753378}, controller_id=None),\n ExecutorInfo(id='81uzWMXDdYMgQabsFp4WNAPJ9Tc29QKhUwq6C2pYXFVm', timestamp=1704509040000.0, type='dca_executor', close_timestamp=1704509160000.0, close_type=, status=, config=DCAExecutorConfig(id='81uzWMXDdYMgQabsFp4WNAPJ9Tc29QKhUwq6C2pYXFVm', type='dca_executor', timestamp=1704509040000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.877333800000000217580313489'), Decimal('2.871579132400000217145152862'), Decimal('2.854315129600000215839670981'), Decimal('2.848560462000000215404510354'), Decimal('2.834173793000000214316608787'), Decimal('2.819787124000000213228707219')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8921, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8773338}, controller_id=None),\n ExecutorInfo(id='FxZB9vq81VqhVrrCMgjH2p3MRwRkm283fsAWsZ6BuTjb', timestamp=1704509220000.0, type='dca_executor', close_timestamp=1704509340000.0, close_type=, status=, config=DCAExecutorConfig(id='FxZB9vq81VqhVrrCMgjH2p3MRwRkm283fsAWsZ6BuTjb', type='dca_executor', timestamp=1704509220000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.878032399999999919040069574'), Decimal('2.872276335199999919201989435'), Decimal('2.855008140799999919687749017'), Decimal('2.849252075999999919849668878'), Decimal('2.834861913999999920254468530'), Decimal('2.820471751999999920659268183')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8821, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8780324}, controller_id=None),\n ExecutorInfo(id='FqtfgYCmg5x4inYLmCHbkSZqQ346Ery5H2hFFV6sc8wQ', timestamp=1704509400000.0, type='dca_executor', close_timestamp=1704509520000.0, close_type=, status=, config=DCAExecutorConfig(id='FqtfgYCmg5x4inYLmCHbkSZqQ346Ery5H2hFFV6sc8wQ', type='dca_executor', timestamp=1704509400000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.876435600000000094902305459'), Decimal('2.870682728800000094712500848'), Decimal('2.853424115200000094143087015'), Decimal('2.847671244000000093953282404'), Decimal('2.833289066000000093478770877'), Decimal('2.818906888000000093004259350')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8822, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8764356}, controller_id=None),\n ExecutorInfo(id='Hr668z3eYaHgvdA6FmQLJ5V2oZXzTU6tU6nTmR5TMJQv', timestamp=1704509580000.0, type='dca_executor', close_timestamp=1704509700000.0, close_type=, status=, config=DCAExecutorConfig(id='Hr668z3eYaHgvdA6FmQLJ5V2oZXzTU6tU6nTmR5TMJQv', type='dca_executor', timestamp=1704509580000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.876435600000000094902305459'), Decimal('2.870682728800000094712500848'), Decimal('2.853424115200000094143087015'), Decimal('2.847671244000000093953282404'), Decimal('2.833289066000000093478770877'), Decimal('2.818906888000000093004259350')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8857, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8764356}, controller_id=None),\n ExecutorInfo(id='G6L3bjAnFMmYQ6M418oHp9dqXrskNVKdEiua6mmpHTZQ', timestamp=1704509760000.0, type='dca_executor', close_timestamp=1704509880000.0, close_type=, status=, config=DCAExecutorConfig(id='G6L3bjAnFMmYQ6M418oHp9dqXrskNVKdEiua6mmpHTZQ', type='dca_executor', timestamp=1704509760000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.874639199999999849546289399'), Decimal('2.868889921599999849847196820'), Decimal('2.851642086399999850749919084'), Decimal('2.845892807999999851050826505'), Decimal('2.831519611999999851803095058'), Decimal('2.817146415999999852555363611')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8833, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8746392}, controller_id=None),\n ExecutorInfo(id='7jfGV8kfxiS5FM3HG1FgzaF68mEG8mkHjQk2NvuytsY9', timestamp=1704509940000.0, type='dca_executor', close_timestamp=1704510060000.0, close_type=, status=, config=DCAExecutorConfig(id='7jfGV8kfxiS5FM3HG1FgzaF68mEG8mkHjQk2NvuytsY9', type='dca_executor', timestamp=1704509940000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.872244000000000113339643226'), Decimal('2.866499512000000113112963940'), Decimal('2.849266048000000112432926080'), Decimal('2.843521560000000112206246794'), Decimal('2.829160340000000111639548578'), Decimal('2.814799120000000111072850361')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8799, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8722440000000002}, controller_id=None),\n ExecutorInfo(id='CQjaXT8ekhH5Lcx4XutaGs8nT2hiiyfXsZqeHu8ErSeg', timestamp=1704510120000.0, type='dca_executor', close_timestamp=1704510240000.0, close_type=, status=, config=DCAExecutorConfig(id='CQjaXT8ekhH5Lcx4XutaGs8nT2hiiyfXsZqeHu8ErSeg', type='dca_executor', timestamp=1704510120000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.875437600000000204816202887'), Decimal('2.869686724800000204406570481'), Decimal('2.852434099200000203177673264'), Decimal('2.846683224000000202768040858'), Decimal('2.832306036000000201743959844'), Decimal('2.817928848000000200719878829')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8761, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8754376}, controller_id=None),\n ExecutorInfo(id='Co38LJy4QbZ9gHwLzy2HieuWs8EoHaLX14vwzcPJkca6', timestamp=1704510300000.0, type='dca_executor', close_timestamp=1704510420000.0, close_type=, status=, config=DCAExecutorConfig(id='Co38LJy4QbZ9gHwLzy2HieuWs8EoHaLX14vwzcPJkca6', type='dca_executor', timestamp=1704510300000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.870347800000000100575532625'), Decimal('2.864607104400000100374381560'), Decimal('2.847385017600000099770928364'), Decimal('2.841644322000000099569777299'), Decimal('2.827292583000000099066899636'), Decimal('2.812940844000000098564021972')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.886, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8703478000000002}, controller_id=None),\n ExecutorInfo(id='H1w4UgkSprGQyJcAN8uZGrXSPE5ENVgrmukfVeww9hof', timestamp=1704510480000.0, type='dca_executor', close_timestamp=1704510600000.0, close_type=, status=, config=DCAExecutorConfig(id='H1w4UgkSprGQyJcAN8uZGrXSPE5ENVgrmukfVeww9hof', type='dca_executor', timestamp=1704510480000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.880228000000000120430526662'), Decimal('2.874467544000000120189665609'), Decimal('2.857186176000000119467082449'), Decimal('2.851425720000000119226221395'), Decimal('2.837024580000000118624068762'), Decimal('2.822623440000000118021916129')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.881, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8802280000000002}, controller_id=None),\n ExecutorInfo(id='8WCztfAYL7DvhJvbbK6JvgPPcaPJVm6npwq3dpoyc2Sj', timestamp=1704510660000.0, type='dca_executor', close_timestamp=1704510780000.0, close_type=, status=, config=DCAExecutorConfig(id='8WCztfAYL7DvhJvbbK6JvgPPcaPJVm6npwq3dpoyc2Sj', type='dca_executor', timestamp=1704510660000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.875237999999999783597950942'), Decimal('2.869487523999999784030755040'), Decimal('2.852236095999999785329167334'), Decimal('2.846485619999999785761971433'), Decimal('2.832109429999999786843981678'), Decimal('2.817733239999999787925991923')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8809, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.875238}, controller_id=None),\n ExecutorInfo(id='9WP5uBD17D5HusaERkEcLuN49FmqhqEeStdYYuumJ7Sp', timestamp=1704510840000.0, type='dca_executor', close_timestamp=1704510960000.0, close_type=, status=, config=DCAExecutorConfig(id='9WP5uBD17D5HusaERkEcLuN49FmqhqEeStdYYuumJ7Sp', type='dca_executor', timestamp=1704510840000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.873042400000000025408525284'), Decimal('2.867296315200000025357708233'), Decimal('2.850058060800000025205257082'), Decimal('2.844311976000000025154440031'), Decimal('2.829946764000000025027397405'), Decimal('2.815581552000000024900354778')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8788, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8730424}, controller_id=None),\n ExecutorInfo(id='E6vrH1Ue6wqaAwduKo57TWNh3BERRe5ayuvcnprAmbZe', timestamp=1704511020000.0, type='dca_executor', close_timestamp=1704511140000.0, close_type=, status=, config=DCAExecutorConfig(id='E6vrH1Ue6wqaAwduKo57TWNh3BERRe5ayuvcnprAmbZe', type='dca_executor', timestamp=1704511020000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714291'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.877832799999999941022849059'), Decimal('2.872077134399999941140803361'), Decimal('2.854810137599999941494666267'), Decimal('2.849054471999999941612620568'), Decimal('2.834665307999999941907506323'), Decimal('2.820276143999999942202392078')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8882, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8778327999999997}, controller_id=None),\n ExecutorInfo(id='DzrbuxQbKhATe5THNeHRdGqHecnAy8ufG1Khm7g5EKZi', timestamp=1704511200000.0, type='dca_executor', close_timestamp=1704511320000.0, close_type=, status=, config=DCAExecutorConfig(id='DzrbuxQbKhATe5THNeHRdGqHecnAy8ufG1Khm7g5EKZi', type='dca_executor', timestamp=1704511200000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.883521399999999979315180865'), Decimal('2.877754357199999979356550503'), Decimal('2.860453228799999979480659418'), Decimal('2.854686185999999979522029056'), Decimal('2.840268578999999979625453152'), Decimal('2.825850971999999979728877248')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8893, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8835214}, controller_id=None),\n ExecutorInfo(id='AACtC1s99b4jubwNp7XL3NuEh3buYkFCjuaHnqrg989h', timestamp=1704511380000.0, type='dca_executor', close_timestamp=1704511500000.0, close_type=, status=, config=DCAExecutorConfig(id='AACtC1s99b4jubwNp7XL3NuEh3buYkFCjuaHnqrg989h', type='dca_executor', timestamp=1704511380000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.883521399999999979315180865'), Decimal('2.877754357199999979356550503'), Decimal('2.860453228799999979480659418'), Decimal('2.854686185999999979522029056'), Decimal('2.840268578999999979625453152'), Decimal('2.825850971999999979728877248')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.891, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8835214}, controller_id=None),\n ExecutorInfo(id='9fbsMxc2inLGBrjs6VuSZKX1g68b5TwPbGaUmTzNQH5P', timestamp=1704511560000.0, type='dca_executor', close_timestamp=1704511680000.0, close_type=, status=, config=DCAExecutorConfig(id='9fbsMxc2inLGBrjs6VuSZKX1g68b5TwPbGaUmTzNQH5P', type='dca_executor', timestamp=1704511560000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571425'), Decimal('117.2619047619047619047619048'), Decimal('139.9999999999999999999999999')], prices=[Decimal('2.885218000000000014062070952'), Decimal('2.879447564000000014033946810'), Decimal('2.862136256000000013949574384'), Decimal('2.856365820000000013921450242'), Decimal('2.841939730000000013851139888'), Decimal('2.827513640000000013780829533')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8892, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.885218}, controller_id=None),\n ExecutorInfo(id='6nb8wkx9efmhy98c4QcN9VrA3b6NrWtmXQScP6HH83PV', timestamp=1704511740000.0, type='dca_executor', close_timestamp=1704511860000.0, close_type=, status=, config=DCAExecutorConfig(id='6nb8wkx9efmhy98c4QcN9VrA3b6NrWtmXQScP6HH83PV', type='dca_executor', timestamp=1704511740000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.883421600000000211907086323'), Decimal('2.877654756800000211483272150'), Decimal('2.860354227200000210211829632'), Decimal('2.854587384000000209788015460'), Decimal('2.840170276000000208728480028'), Decimal('2.825753168000000207668944597')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8838, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8834216}, controller_id=None),\n ExecutorInfo(id='H6kJWSbZdTWbgNNXX55xJuEhixxw6akt1j2KFY9oWiHa', timestamp=1704511920000.0, type='dca_executor', close_timestamp=1704512040000.0, close_type=, status=, config=DCAExecutorConfig(id='H6kJWSbZdTWbgNNXX55xJuEhixxw6akt1j2KFY9oWiHa', type='dca_executor', timestamp=1704511920000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.881226000000000010516629234'), Decimal('2.875463548000000010495595976'), Decimal('2.858176192000000010432496200'), Decimal('2.852413740000000010411462942'), Decimal('2.838007610000000010358879795'), Decimal('2.823601480000000010306296649')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8892, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.881226}, controller_id=None),\n ExecutorInfo(id='6A9ogcXJN7UsDq2S68Qx3zRBycHM5PVLnxCYWYaGWjjx', timestamp=1704512100000.0, type='dca_executor', close_timestamp=1704512220000.0, close_type=, status=, config=DCAExecutorConfig(id='6A9ogcXJN7UsDq2S68Qx3zRBycHM5PVLnxCYWYaGWjjx', type='dca_executor', timestamp=1704512100000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.885417599999999992079291467'), Decimal('2.879646764799999992095132884'), Decimal('2.862334259199999992142657135'), Decimal('2.856563423999999992158498552'), Decimal('2.842136335999999992198102095'), Decimal('2.827709247999999992237705638')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.892, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8854176}, controller_id=None),\n ExecutorInfo(id='Fs2o2nMWxsvHdgQ9jAsvzahFCXYM69BhKEXHG1xo7aPS', timestamp=1704512280000.0, type='dca_executor', close_timestamp=1704512400000.0, close_type=, status=, config=DCAExecutorConfig(id='Fs2o2nMWxsvHdgQ9jAsvzahFCXYM69BhKEXHG1xo7aPS', type='dca_executor', timestamp=1704512280000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000001')], prices=[Decimal('2.894998399999999823307939018'), Decimal('2.889208403199999823661323140'), Decimal('2.871838412799999824721475506'), Decimal('2.866048415999999825074859628'), Decimal('2.851573423999999825958319933'), Decimal('2.837098431999999826841780238')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8997, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8949984}, controller_id=None),\n ExecutorInfo(id='7nZu1mvTnSDCDoffZAfgnPVT8dsphaaPovjgb3kn4uZd', timestamp=1704512460000.0, type='dca_executor', close_timestamp=1704512580000.0, close_type=, status=, config=DCAExecutorConfig(id='7nZu1mvTnSDCDoffZAfgnPVT8dsphaaPovjgb3kn4uZd', type='dca_executor', timestamp=1704512460000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380950'), Decimal('70.85714285714285714285714285'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619047'), Decimal('139.9999999999999999999999999')], prices=[Decimal('2.885118199999999803452944980'), Decimal('2.879347963599999803846039090'), Decimal('2.862037254399999805025321420'), Decimal('2.856267017999999805418415530'), Decimal('2.841841426999999806401150805'), Decimal('2.827415835999999807383886080')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8865, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8851182}, controller_id=None),\n ExecutorInfo(id='DJF2PePDjCRGsrhuQepZcr4uHBXe8CLimhtgo7AbyNEd', timestamp=1704512640000.0, type='dca_executor', close_timestamp=1704512760000.0, close_type=, status=, config=DCAExecutorConfig(id='DJF2PePDjCRGsrhuQepZcr4uHBXe8CLimhtgo7AbyNEd', type='dca_executor', timestamp=1704512640000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.879429600000000208361644605'), Decimal('2.873670740800000207944921316'), Decimal('2.856394163200000206694751448'), Decimal('2.850635304000000206278028159'), Decimal('2.836238156000000205236219936'), Decimal('2.821841008000000204194411713')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.884, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8794296000000004}, controller_id=None),\n ExecutorInfo(id='552gmKn12YHA96aUHN8Bt1rw84SnYdBupRjpHjja9zWB', timestamp=1704474300000.0, type='dca_executor', close_timestamp=1704516000000.0, close_type=, status=, config=DCAExecutorConfig(id='552gmKn12YHA96aUHN8Bt1rw84SnYdBupRjpHjja9zWB', type='dca_executor', timestamp=1704474300000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.904798000000000021479609756'), Decimal('2.910607596000000021522568976'), Decimal('2.928036384000000021651446634'), Decimal('2.933845980000000021694405854'), Decimal('2.948369970000000021801803902'), Decimal('2.962893960000000021909201951')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.0333493407592587443044607198316953144967555999755859375'), net_pnl_quote=Decimal('16.883500775336159449580009095370769500732421875'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 2.8453, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.9412906946221136}, controller_id=None),\n ExecutorInfo(id='9UEiLyWHCcKvxaYnmdJ3TcJUEMyqvNCtJE7R8gmxostL', timestamp=1704516000000.0, type='dca_executor', close_timestamp=1704516120000.0, close_type=, status=, config=DCAExecutorConfig(id='9UEiLyWHCcKvxaYnmdJ3TcJUEMyqvNCtJE7R8gmxostL', type='dca_executor', timestamp=1704516000000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428574'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.850990599999999940313498424'), Decimal('2.856692581199999940194125421'), Decimal('2.873798524799999939836006411'), Decimal('2.879500505999999939716633408'), Decimal('2.893755458999999939418200900'), Decimal('2.908010411999999939119768392')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8481, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.8509906}, controller_id=None),\n ExecutorInfo(id='DgVWvLuCCJAVNsUopnbsw25Xh4aiEh4abWEfSMy4SQfo', timestamp=1704516180000.0, type='dca_executor', close_timestamp=1704516300000.0, close_type=, status=, config=DCAExecutorConfig(id='DgVWvLuCCJAVNsUopnbsw25Xh4aiEh4abWEfSMy4SQfo', type='dca_executor', timestamp=1704516180000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047624'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.853796200000000076298704853'), Decimal('2.859503792400000076451302263'), Decimal('2.876626569600000076909094492'), Decimal('2.882334162000000077061691902'), Decimal('2.896603143000000077443185426'), Decimal('2.910872124000000077824678950')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8266, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.8537962}, controller_id=None),\n ExecutorInfo(id='CccHSJj3AiLMBRrgem2KoCvVkaPTLyujUZHzvULJjyoM', timestamp=1704516360000.0, type='dca_executor', close_timestamp=1704516480000.0, close_type=, status=, config=DCAExecutorConfig(id='CccHSJj3AiLMBRrgem2KoCvVkaPTLyujUZHzvULJjyoM', type='dca_executor', timestamp=1704516360000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.832854399999999935328998112'), Decimal('2.838520108799999935199656108'), Decimal('2.855517235199999934811630097'), Decimal('2.861182943999999934682288093'), Decimal('2.875347215999999934358933084'), Decimal('2.889511487999999934035578074')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8239, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.8328544}, controller_id=None),\n ExecutorInfo(id='9q1vAc4dwtuLk2n3Q7CFAVH8ARXkg5ts9w8qYJheoBMi', timestamp=1704512820000.0, type='dca_executor', close_timestamp=1704517680000.0, close_type=, status=, config=DCAExecutorConfig(id='9q1vAc4dwtuLk2n3Q7CFAVH8ARXkg5ts9w8qYJheoBMi', type='dca_executor', timestamp=1704512820000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.872244000000000113339643226'), Decimal('2.866499512000000113112963940'), Decimal('2.849266048000000112432926080'), Decimal('2.843521560000000112206246794'), Decimal('2.829160340000000111639548578'), Decimal('2.814799120000000111072850361')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.0129355617171167218415472888182193855755031108856201171875'), net_pnl_quote=Decimal('-6.3867796030440349142054401454515755176544189453125'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.7926, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8363876965086563}, controller_id=None),\n ExecutorInfo(id='Qocc8fAshdXs5umDMqePYimF8d69dUB7LiY9fhGBmYY', timestamp=1704516540000.0, type='dca_executor', close_timestamp=1704523800000.0, close_type=, status=, config=DCAExecutorConfig(id='Qocc8fAshdXs5umDMqePYimF8d69dUB7LiY9fhGBmYY', type='dca_executor', timestamp=1704516540000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.829547800000000077009661147'), Decimal('2.835206895600000077163680469'), Decimal('2.852184182400000077625738436'), Decimal('2.857843278000000077779757758'), Decimal('2.871991017000000078164806064'), Decimal('2.886138756000000078549854370')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.033876152460347253025929603609256446361541748046875'), net_pnl_quote=Decimal('0.8065750585796964688967136680730618536472320556640625'), cum_fees_quote=Decimal('0.01428571428571428526821396332024960429407656192779541015625'), filled_amount_quote=Decimal('23.8095238095238102005168912000954151153564453125'), is_active=False, is_trading=False, custom_info={'close_price': 2.735, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.8295478000000003}, controller_id=None),\n ExecutorInfo(id='EEm3CjMa7AZ35UWr7LGg8dQbHQBVxPavEGM6xj293xQ1', timestamp=1704523800000.0, type='dca_executor', close_timestamp=1704523920000.0, close_type=, status=, config=DCAExecutorConfig(id='EEm3CjMa7AZ35UWr7LGg8dQbHQBVxPavEGM6xj293xQ1', type='dca_executor', timestamp=1704523800000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.740469999999999875520198532'), Decimal('2.745950939999999875271238929'), Decimal('2.762393759999999874524360120'), Decimal('2.767874699999999874275400517'), Decimal('2.781577049999999873653001510'), Decimal('2.795279399999999873030602503')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.739, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7404699999999997}, controller_id=None),\n ExecutorInfo(id='5ik72Z7zVMVvAhGbMz7DFRTRWonPG5UgPe4EighSXuBM', timestamp=1704521280000.0, type='dca_executor', close_timestamp=1704524100000.0, close_type=, status=, config=DCAExecutorConfig(id='5ik72Z7zVMVvAhGbMz7DFRTRWonPG5UgPe4EighSXuBM', type='dca_executor', timestamp=1704521280000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.785617599999999903443248517'), Decimal('2.780046364799999903636362020'), Decimal('2.763332659199999904215702529'), Decimal('2.757761423999999904408816032'), Decimal('2.743833335999999904891599789'), Decimal('2.729905247999999905374383547')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.01225597852579453882204685299939228571020066738128662109375'), net_pnl_quote=Decimal('-6.051243492604793772215998615138232707977294921875'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.7072, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7508427166417513}, controller_id=None),\n ExecutorInfo(id='FhLrAeRpUbMyRb4ZApHHF2EFiHvcuZro3pHDheDudKKW', timestamp=1704523980000.0, type='dca_executor', close_timestamp=1704524100000.0, close_type=, status=, config=DCAExecutorConfig(id='FhLrAeRpUbMyRb4ZApHHF2EFiHvcuZro3pHDheDudKKW', type='dca_executor', timestamp=1704523980000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.754798599999999854873843074'), Decimal('2.760308197199999854583590760'), Decimal('2.776836988799999853712833819'), Decimal('2.782346585999999853422581505'), Decimal('2.796120578999999852696950720'), Decimal('2.809894571999999851971319935')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7072, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7547986}, controller_id=None),\n ExecutorInfo(id='2bMcEvTC4RqovEkKpyyz18grzpYQUq4URLdAKMhUBJFs', timestamp=1704527700000.0, type='dca_executor', close_timestamp=1704527820000.0, close_type=, status=, config=DCAExecutorConfig(id='2bMcEvTC4RqovEkKpyyz18grzpYQUq4URLdAKMhUBJFs', type='dca_executor', timestamp=1704527700000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.758072799999999834659597520'), Decimal('2.752556654399999834990278325'), Decimal('2.736008217599999835982320740'), Decimal('2.730492071999999836313001545'), Decimal('2.716701707999999837139703557'), Decimal('2.702911343999999837966405570')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7659, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7580728}, controller_id=None),\n ExecutorInfo(id='95DqAZJ5gjpNrRDuM1H8Nm39B96FjQ4oWy4heqMfonmK', timestamp=1704527880000.0, type='dca_executor', close_timestamp=1704528000000.0, close_type=, status=, config=DCAExecutorConfig(id='95DqAZJ5gjpNrRDuM1H8Nm39B96FjQ4oWy4heqMfonmK', type='dca_executor', timestamp=1704527880000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714284'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.764959000000000184256283842'), Decimal('2.759429082000000183887771274'), Decimal('2.742839328000000182782233571'), Decimal('2.737309410000000182413721004'), Decimal('2.723484615000000181492439584'), Decimal('2.709659820000000180571158165')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7684, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.764959}, controller_id=None),\n ExecutorInfo(id='344Zi9rRFHVBa17Y8bBXKnoGhy4SfUNxyXMmc5rDLwAK', timestamp=1704528060000.0, type='dca_executor', close_timestamp=1704528180000.0, close_type=, status=, config=DCAExecutorConfig(id='344Zi9rRFHVBa17Y8bBXKnoGhy4SfUNxyXMmc5rDLwAK', type='dca_executor', timestamp=1704528060000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.758671600000000211912290493'), Decimal('2.753154256800000211488465912'), Decimal('2.736602227200000210216992169'), Decimal('2.731084884000000209793167588'), Decimal('2.717291526000000208733606136'), Decimal('2.703498168000000207674044683')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7643, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7586716}, controller_id=None),\n ExecutorInfo(id='3CzrxuCabXr4Nn6ujEiyT9JrJaWnw3xDxptX5RUdr3TH', timestamp=1704524160000.0, type='dca_executor', close_timestamp=1704528720000.0, close_type=, status=, config=DCAExecutorConfig(id='3CzrxuCabXr4Nn6ujEiyT9JrJaWnw3xDxptX5RUdr3TH', type='dca_executor', timestamp=1704524160000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.700389999999999839920342136'), Decimal('2.705790779999999839600182820'), Decimal('2.721993119999999838639704873'), Decimal('2.727393899999999838319545557'), Decimal('2.740895849999999837519147268'), Decimal('2.754397799999999836718748979')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.014648871266261333234925956503502675332129001617431640625'), net_pnl_quote=Decimal('-7.4161654698693979526069597341120243072509765625'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 2.7775, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.73431473680807}, controller_id=None),\n ExecutorInfo(id='7jBiQ1WUjFfPKPsciKJfErDWbZ2GZdCBAmrbGw2uYU98', timestamp=1704532320000.0, type='dca_executor', close_timestamp=1704532440000.0, close_type=, status=, config=DCAExecutorConfig(id='7jBiQ1WUjFfPKPsciKJfErDWbZ2GZdCBAmrbGw2uYU98', type='dca_executor', timestamp=1704532320000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.790970800000000098366972899'), Decimal('2.796552741600000098563706845'), Decimal('2.813298566400000099153908682'), Decimal('2.818880508000000099350642628'), Decimal('2.832835362000000099842477492'), Decimal('2.846790216000000100334312357')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.787, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7909708}, controller_id=None),\n ExecutorInfo(id='JbRU5cZHJdnsZ9FPr6cNutHXvodwESurvjE2Dab76HF', timestamp=1704532500000.0, type='dca_executor', close_timestamp=1704532620000.0, close_type=, status=, config=DCAExecutorConfig(id='JbRU5cZHJdnsZ9FPr6cNutHXvodwESurvjE2Dab76HF', type='dca_executor', timestamp=1704532500000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.793776399999999789374791058'), Decimal('2.799363952799999788953540640'), Decimal('2.816126611199999787689789386'), Decimal('2.821714163999999787268538969'), Decimal('2.835683045999999786215412924'), Decimal('2.849651927999999785162286879')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7885, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7937763999999996}, controller_id=None),\n ExecutorInfo(id='BbG4MUCZ1FtJC6V4TGyn9uoaWuR1w2Q2chGk4VyihWy2', timestamp=1704532680000.0, type='dca_executor', close_timestamp=1704532800000.0, close_type=, status=, config=DCAExecutorConfig(id='BbG4MUCZ1FtJC6V4TGyn9uoaWuR1w2Q2chGk4VyihWy2', type='dca_executor', timestamp=1704532680000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.795379600000000057785218276'), Decimal('2.800970359200000057900788713'), Decimal('2.817742636800000058247500022'), Decimal('2.823333396000000058363070459'), Decimal('2.837310294000000058651996550'), Decimal('2.851287192000000058940922642')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.791, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7953796}, controller_id=None),\n ExecutorInfo(id='ELxDBokXFhs19rQryCdho4cpJbPFSZuxVBbwhnDs1p3j', timestamp=1704532860000.0, type='dca_executor', close_timestamp=1704532980000.0, close_type=, status=, config=DCAExecutorConfig(id='ELxDBokXFhs19rQryCdho4cpJbPFSZuxVBbwhnDs1p3j', type='dca_executor', timestamp=1704532860000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.794778400000000123997828670'), Decimal('2.800367956800000124245824327'), Decimal('2.817136627200000124989811299'), Decimal('2.822726184000000125237806957'), Decimal('2.836700076000000125857796100'), Decimal('2.850673968000000126477785243')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7767, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7947784}, controller_id=None),\n ExecutorInfo(id='8EPEdEuC8qMazf2Tn5PzWX6scb2x4n8CzwyUk9KgKeKF', timestamp=1704533040000.0, type='dca_executor', close_timestamp=1704533160000.0, close_type=, status=, config=DCAExecutorConfig(id='8EPEdEuC8qMazf2Tn5PzWX6scb2x4n8CzwyUk9KgKeKF', type='dca_executor', timestamp=1704533040000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142858')], prices=[Decimal('2.784758399999999892609170436'), Decimal('2.790327916799999892394388777'), Decimal('2.807036467199999891750043799'), Decimal('2.812605983999999891535262140'), Decimal('2.826529775999999890998307993'), Decimal('2.840453567999999890461353845')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7801, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7847584}, controller_id=None),\n ExecutorInfo(id='CPwWsajKGDYgNo7TvgwNbRnZC1Ptidp1Tp4v8fkCPZYN', timestamp=1704533220000.0, type='dca_executor', close_timestamp=1704533340000.0, close_type=, status=, config=DCAExecutorConfig(id='CPwWsajKGDYgNo7TvgwNbRnZC1Ptidp1Tp4v8fkCPZYN', type='dca_executor', timestamp=1704533220000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.788966799999999874098285945'), Decimal('2.794544733599999873846482517'), Decimal('2.811278534399999873091072233'), Decimal('2.816856467999999872839268804'), Decimal('2.830801301999999872209760234'), Decimal('2.844746135999999871580251664')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.775, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7889668}, controller_id=None),\n ExecutorInfo(id='E6E7g5SwWzpSuuDwrEuFHEEcqHccyCBsSwB1KC8985Xj', timestamp=1704528240000.0, type='dca_executor', close_timestamp=1704557820000.0, close_type=, status=, config=DCAExecutorConfig(id='E6E7g5SwWzpSuuDwrEuFHEEcqHccyCBsSwB1KC8985Xj', type='dca_executor', timestamp=1704528240000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380950'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.764460000000000017612716841'), Decimal('2.758931080000000017577491407'), Decimal('2.742344320000000017471815106'), Decimal('2.736815400000000017436589673'), Decimal('2.722993100000000017348526088'), Decimal('2.709170800000000017260462504')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.0315703837923945462851094134748564101755619049072265625'), net_pnl_quote=Decimal('4.48900790495667223467535222880542278289794921875'), cum_fees_quote=Decimal('0.08531428571428571749901692555795307271182537078857421875'), filled_amount_quote=Decimal('142.19047619047620401033782400190830230712890625'), is_active=False, is_trading=False, custom_info={'close_price': 2.8344, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.751591281312793}, controller_id=None),\n ExecutorInfo(id='9SUn9qeV4Jj7okT4ZfsqsC1AXQqEgpC6ey98WAXYbutk', timestamp=1704533400000.0, type='dca_executor', close_timestamp=1704576600000.0, close_type=, status=, config=DCAExecutorConfig(id='9SUn9qeV4Jj7okT4ZfsqsC1AXQqEgpC6ey98WAXYbutk', type='dca_executor', timestamp=1704533400000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.781251400000000056360703603'), Decimal('2.786813902800000056473425010'), Decimal('2.803501411200000056811589232'), Decimal('2.809063914000000056924310639'), Decimal('2.822970171000000057206114157'), Decimal('2.836876428000000057487917675')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.00970968279059442572476168464845613925717771053314208984375'), net_pnl_quote=Decimal('4.9156425042002211966973845846951007843017578125'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 2.7933, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.8161919907080373}, controller_id=None),\n ExecutorInfo(id='2AcfUjg9VkoKYagogAfybdvTeq228nQjidNZdbm7N8ZX', timestamp=1704576600000.0, type='dca_executor', close_timestamp=1704576720000.0, close_type=, status=, config=DCAExecutorConfig(id='2AcfUjg9VkoKYagogAfybdvTeq228nQjidNZdbm7N8ZX', type='dca_executor', timestamp=1704576600000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000005'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.798886599999999894033685109'), Decimal('2.804484373199999893821752479'), Decimal('2.821277692799999893185954590'), Decimal('2.826875465999999892974021960'), Decimal('2.840869898999999892444190386'), Decimal('2.854864331999999891914358811')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7901, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7988866}, controller_id=None),\n ExecutorInfo(id='AY8AD6swpaeRhMCdyJCmWZMRDngBdgwWd5cCXQoi3C3X', timestamp=1704557820000.0, type='dca_executor', close_timestamp=1704582240000.0, close_type=, status=, config=DCAExecutorConfig(id='AY8AD6swpaeRhMCdyJCmWZMRDngBdgwWd5cCXQoi3C3X', type='dca_executor', timestamp=1704557820000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.828731200000000030374225357'), Decimal('2.823073737600000030313476906'), Decimal('2.806101350400000030131231554'), Decimal('2.800443888000000030070483103'), Decimal('2.786300232000000029918611977'), Decimal('2.772156576000000029766740850')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.015333232123732158658224733471797662787139415740966796875'), net_pnl_quote=Decimal('-7.5706008226150895978889820980839431285858154296875'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.7484, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7934180983266623}, controller_id=None),\n ExecutorInfo(id='LSpVLPKG6mJMa7B78aAZfhs2BWY1M35vwPtUKJEXuRa', timestamp=1704585840000.0, type='dca_executor', close_timestamp=1704585960000.0, close_type=, status=, config=DCAExecutorConfig(id='LSpVLPKG6mJMa7B78aAZfhs2BWY1M35vwPtUKJEXuRa', type='dca_executor', timestamp=1704585840000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.758272399999999812676818034'), Decimal('2.752755855199999813051464398'), Decimal('2.736206220799999814175403490'), Decimal('2.730689675999999814550049854'), Decimal('2.716898313999999815486665763'), Decimal('2.703106951999999816423281673')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7693, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7582723999999996}, controller_id=None),\n ExecutorInfo(id='JAkFoNjSMFq7Qq3wejkEKiyMjkk8kJwK547daDibhLrN', timestamp=1704586020000.0, type='dca_executor', close_timestamp=1704586140000.0, close_type=, status=, config=DCAExecutorConfig(id='JAkFoNjSMFq7Qq3wejkEKiyMjkk8kJwK547daDibhLrN', type='dca_executor', timestamp=1704586020000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.767454000000000131072055987'), Decimal('2.761919092000000130809911875'), Decimal('2.745314368000000130023479539'), Decimal('2.739779460000000129761335427'), Decimal('2.725942190000000129105975147'), Decimal('2.712104920000000128450614867')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.768, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7674540000000003}, controller_id=None),\n ExecutorInfo(id='2RK1gTqMw9fq6VB6VkXcNPCk4yqaNJT7hEoL7nK3mini', timestamp=1704586200000.0, type='dca_executor', close_timestamp=1704586320000.0, close_type=, status=, config=DCAExecutorConfig(id='2RK1gTqMw9fq6VB6VkXcNPCk4yqaNJT7hEoL7nK3mini', type='dca_executor', timestamp=1704586200000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.766256399999999819767701470'), Decimal('2.760723887199999820128166067'), Decimal('2.744126348799999821209559858'), Decimal('2.738593835999999821570024455'), Decimal('2.724762553999999822471185948'), Decimal('2.710931271999999823372347441')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7776, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7662563999999996}, controller_id=None),\n ExecutorInfo(id='6XhnMDfQue9GWKDWHs1K9seaxmPSrcCPzeiWjtrN2RRp', timestamp=1704586380000.0, type='dca_executor', close_timestamp=1704586500000.0, close_type=, status=, config=DCAExecutorConfig(id='6XhnMDfQue9GWKDWHs1K9seaxmPSrcCPzeiWjtrN2RRp', type='dca_executor', timestamp=1704586380000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571433'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.770647599999999779347584217'), Decimal('2.765106304799999779788889049'), Decimal('2.748482419199999781112803543'), Decimal('2.742941123999999781554108375'), Decimal('2.729087885999999782657370454'), Decimal('2.715234647999999783760632533')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7791, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7706475999999998}, controller_id=None),\n ExecutorInfo(id='AKpKZWapdPxNpkwCbum99hGfY1x8GtpzkWKYEyF2xrdC', timestamp=1704586560000.0, type='dca_executor', close_timestamp=1704586680000.0, close_type=, status=, config=DCAExecutorConfig(id='AKpKZWapdPxNpkwCbum99hGfY1x8GtpzkWKYEyF2xrdC', type='dca_executor', timestamp=1704586560000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.774140600000000059450490364'), Decimal('2.768592318800000059331589383'), Decimal('2.751947475200000058974886441'), Decimal('2.746399194000000058855985460'), Decimal('2.732528491000000058558733009'), Decimal('2.718657788000000058261480557')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7899, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7741406}, controller_id=None),\n ExecutorInfo(id='zjxVfyvhr4V97D7fARyydLtYuzQMpr569SDMoqP4DSH', timestamp=1704586740000.0, type='dca_executor', close_timestamp=1704586860000.0, close_type=, status=, config=DCAExecutorConfig(id='zjxVfyvhr4V97D7fARyydLtYuzQMpr569SDMoqP4DSH', type='dca_executor', timestamp=1704586740000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714284'), Decimal('94.28571428571428571428571426'), Decimal('117.2619047619047619047619047'), Decimal('139.9999999999999999999999999')], prices=[Decimal('2.787114599999999960172918090'), Decimal('2.781540370799999960252572254'), Decimal('2.764817683199999960491534745'), Decimal('2.759243453999999960571188909'), Decimal('2.745307880999999960770324319'), Decimal('2.731372307999999960969459728')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.795, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7871145999999998}, controller_id=None),\n ExecutorInfo(id='5FzYpf96oyUCyewJCyWBezLAT5uahgdifpgUdXWbiaqJ', timestamp=1704586920000.0, type='dca_executor', close_timestamp=1704587040000.0, close_type=, status=, config=DCAExecutorConfig(id='5FzYpf96oyUCyewJCyWBezLAT5uahgdifpgUdXWbiaqJ', type='dca_executor', timestamp=1704586920000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.789409999999999928971469720'), Decimal('2.783831179999999929113526781'), Decimal('2.767094719999999929539697962'), Decimal('2.761515899999999929681755023'), Decimal('2.747568849999999930036897674'), Decimal('2.733621799999999930392040326')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7952, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7894099999999997}, controller_id=None),\n ExecutorInfo(id='Kb7vb4TWncFnS2B2jkPzX3n57Fqn1niE9YkaxZ9Bvqy', timestamp=1704587100000.0, type='dca_executor', close_timestamp=1704587220000.0, close_type=, status=, config=DCAExecutorConfig(id='Kb7vb4TWncFnS2B2jkPzX3n57Fqn1niE9YkaxZ9Bvqy', type='dca_executor', timestamp=1704587100000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.790507800000000029666698265'), Decimal('2.784926784400000029607364868'), Decimal('2.768183737600000029429364679'), Decimal('2.762602722000000029370031282'), Decimal('2.748650183000000029221697791'), Decimal('2.734697644000000029073364300')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7932, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7905078}, controller_id=None),\n ExecutorInfo(id='acyUA98nfJY9XH1Rf1fV8NW9PFi4x2nmFuNgm5vqPcN', timestamp=1704587280000.0, type='dca_executor', close_timestamp=1704587400000.0, close_type=, status=, config=DCAExecutorConfig(id='acyUA98nfJY9XH1Rf1fV8NW9PFi4x2nmFuNgm5vqPcN', type='dca_executor', timestamp=1704587280000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.779729399999999887133696197'), Decimal('2.774169941199999887359428805'), Decimal('2.757491564799999888036626627'), Decimal('2.751932105999999888262359235'), Decimal('2.738033458999999888826690754'), Decimal('2.724134811999999889391022273')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7881, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7797294}, controller_id=None),\n ExecutorInfo(id='B5amAVm96gZ1oiNLpP2FNmrgbgxneqbFhJ3G4L1CsAD3', timestamp=1704587460000.0, type='dca_executor', close_timestamp=1704587580000.0, close_type=, status=, config=DCAExecutorConfig(id='B5amAVm96gZ1oiNLpP2FNmrgbgxneqbFhJ3G4L1CsAD3', type='dca_executor', timestamp=1704587460000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571433'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.786615599999999793529351089'), Decimal('2.781042368799999793942292387'), Decimal('2.764322675199999795181116280'), Decimal('2.758749443999999795594057578'), Decimal('2.744816365999999796626410823'), Decimal('2.730883287999999797658764067')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7891, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7866155999999997}, controller_id=None),\n ExecutorInfo(id='6Ne6wtCHAADCszJSW54YoZfefVHuCVM4gFRyqJYhqptv', timestamp=1704587640000.0, type='dca_executor', close_timestamp=1704587760000.0, close_type=, status=, config=DCAExecutorConfig(id='6Ne6wtCHAADCszJSW54YoZfefVHuCVM4gFRyqJYhqptv', type='dca_executor', timestamp=1704587640000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.786316200000000048104036032'), Decimal('2.780743567600000048007827960'), Decimal('2.764025670400000047719203744'), Decimal('2.758453038000000047622995672'), Decimal('2.744521457000000047382475492'), Decimal('2.730589876000000047141955311')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.794, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7863162}, controller_id=None),\n ExecutorInfo(id='CjC9dY2sXAr4D8pxLq2JMiPKKU9Ptdst7uXC7Zqm7d8z', timestamp=1704587820000.0, type='dca_executor', close_timestamp=1704587940000.0, close_type=, status=, config=DCAExecutorConfig(id='CjC9dY2sXAr4D8pxLq2JMiPKKU9Ptdst7uXC7Zqm7d8z', type='dca_executor', timestamp=1704587820000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.793901000000000099160478440'), Decimal('2.788313198000000098962157483'), Decimal('2.771549792000000098367194612'), Decimal('2.765961990000000098168873656'), Decimal('2.751992485000000097673071263'), Decimal('2.738022980000000097177268871')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8089, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.793901}, controller_id=None),\n ExecutorInfo(id='CudGB7dW6yxgwWvHfjSFjczaDkXQggZD3F5SxryPw3VP', timestamp=1704576780000.0, type='dca_executor', close_timestamp=1704619920000.0, close_type=, status=, config=DCAExecutorConfig(id='CudGB7dW6yxgwWvHfjSFjczaDkXQggZD3F5SxryPw3VP', type='dca_executor', timestamp=1704576780000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('71.99999999999999999999999998'), Decimal('96.19047619047619047619047616'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.794978800000000101926958539'), Decimal('2.800568757600000102130812456'), Decimal('2.817338630400000102742374207'), Decimal('2.822928588000000102946228124'), Decimal('2.836903482000000103455862917'), Decimal('2.850878376000000103965497710')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.03133838088979633285102721629300503991544246673583984375'), net_pnl_quote=Decimal('11.29897861462347208316714386455714702606201171875'), cum_fees_quote=Decimal('0.2163285714285713978721759076506714336574077606201171875'), filled_amount_quote=Decimal('360.547619047619036791729740798473358154296875'), is_active=False, is_trading=False, custom_info={'close_price': 2.736, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.8216910305243346}, controller_id=None),\n ExecutorInfo(id='69Eky2AWhnnyEXfSHKCxJDT2qm3uqRq54gHZmP3ym53V', timestamp=1704588000000.0, type='dca_executor', close_timestamp=1704619980000.0, close_type=, status=, config=DCAExecutorConfig(id='69Eky2AWhnnyEXfSHKCxJDT2qm3uqRq54gHZmP3ym53V', type='dca_executor', timestamp=1704588000000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571433'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.806176399999999855222118650'), Decimal('2.800564047199999855511674413'), Decimal('2.783726988799999856380341701'), Decimal('2.778114635999999856669897464'), Decimal('2.764083753999999857393786870'), Decimal('2.750052871999999858117676277')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.01503634152403388046792542809271253645420074462890625'), net_pnl_quote=Decimal('-7.4240146234259665192212196416221559047698974609375'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.7262, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7711448662415004}, controller_id=None),\n ExecutorInfo(id='7YeGgdub7PvzgkMbDTx1nM7FNshVxwmadnJobGF49USu', timestamp=1704619920000.0, type='dca_executor', close_timestamp=1704620040000.0, close_type=, status=, config=DCAExecutorConfig(id='7YeGgdub7PvzgkMbDTx1nM7FNshVxwmadnJobGF49USu', type='dca_executor', timestamp=1704619920000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.741472000000000210143236144'), Decimal('2.746954944000000210563522616'), Decimal('2.763403776000000211824382033'), Decimal('2.768886720000000212244668505'), Decimal('2.782594080000000213295384686'), Decimal('2.796301440000000214346100867')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7332, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7414720000000004}, controller_id=None),\n ExecutorInfo(id='5HahyNDnu1uEMVrFZgGQG3kXqTgtns181AoVbHvsGjh7', timestamp=1704623580000.0, type='dca_executor', close_timestamp=1704623700000.0, close_type=, status=, config=DCAExecutorConfig(id='5HahyNDnu1uEMVrFZgGQG3kXqTgtns181AoVbHvsGjh7', type='dca_executor', timestamp=1704623580000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.744699599999999977902728765'), Decimal('2.739210200799999977946923307'), Decimal('2.722742003199999978079506935'), Decimal('2.717252603999999978123701477'), Decimal('2.703529105999999978234187834'), Decimal('2.689805607999999978344674190')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.75, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7446996}, controller_id=None),\n ExecutorInfo(id='4Q91agNcDPnTAyYB68iEEQARWCvb4wzEbkGfhvKM9dhs', timestamp=1704623760000.0, type='dca_executor', close_timestamp=1704623880000.0, close_type=, status=, config=DCAExecutorConfig(id='4Q91agNcDPnTAyYB68iEEQARWCvb4wzEbkGfhvKM9dhs', type='dca_executor', timestamp=1704623760000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.745198600000000144546295766'), Decimal('2.739708202800000144257203174'), Decimal('2.723237011200000143389925400'), Decimal('2.717746614000000143100832808'), Decimal('2.704020621000000142378101330'), Decimal('2.690294628000000141655369851')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7578, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7451986}, controller_id=None),\n ExecutorInfo(id='5menQYkrTsKJvEygMd4HNV6NXY1wvh1v2yKjhVkjFhgF', timestamp=1704623940000.0, type='dca_executor', close_timestamp=1704624060000.0, close_type=, status=, config=DCAExecutorConfig(id='5menQYkrTsKJvEygMd4HNV6NXY1wvh1v2yKjhVkjFhgF', type='dca_executor', timestamp=1704623940000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619048'), Decimal('139.9999999999999999999999999')], prices=[Decimal('2.751984999999999840332824685'), Decimal('2.746481029999999840652159036'), Decimal('2.729969119999999841610162088'), Decimal('2.724465149999999841929496438'), Decimal('2.710705224999999842727832315'), Decimal('2.696945299999999843526168191')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7558, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.751985}, controller_id=None),\n ExecutorInfo(id='8MPQ9j4KHxxgvy9MQixKKq4z5JSaXRvNMnag8zQspFNw', timestamp=1704624120000.0, type='dca_executor', close_timestamp=1704624240000.0, close_type=, status=, config=DCAExecutorConfig(id='8MPQ9j4KHxxgvy9MQixKKq4z5JSaXRvNMnag8zQspFNw', type='dca_executor', timestamp=1704624120000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.751386199999999906281163142'), Decimal('2.745883427599999906468600816'), Decimal('2.729375110399999907030913837'), Decimal('2.723872337999999907218351511'), Decimal('2.710115406999999907686945695'), Decimal('2.696358475999999908155539879')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7562, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7513862}, controller_id=None),\n ExecutorInfo(id='DM4t52nqhbSVALXmp9ziKUFzecokD7opt754fhDXoV6D', timestamp=1704624300000.0, type='dca_executor', close_timestamp=1704624420000.0, close_type=, status=, config=DCAExecutorConfig(id='DM4t52nqhbSVALXmp9ziKUFzecokD7opt754fhDXoV6D', type='dca_executor', timestamp=1704624300000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.748891199999999959465390997'), Decimal('2.743393417599999959546460215'), Decimal('2.726900070399999959789667869'), Decimal('2.721402287999999959870737087'), Decimal('2.707657831999999960073410132'), Decimal('2.693913375999999960276083177')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7516, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7488912}, controller_id=None),\n ExecutorInfo(id='3ywhuSNiN2td66QpHQkkCj1A9h7Cv7WgeEefW7XAeGau', timestamp=1704624480000.0, type='dca_executor', close_timestamp=1704624600000.0, close_type=, status=, config=DCAExecutorConfig(id='3ywhuSNiN2td66QpHQkkCj1A9h7Cv7WgeEefW7XAeGau', type='dca_executor', timestamp=1704624480000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.747194599999999924718500910'), Decimal('2.741700210799999924869063908'), Decimal('2.725217043199999925320752903'), Decimal('2.719722653999999925471315901'), Decimal('2.705986680999999925847723396'), Decimal('2.692250707999999926224130892')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7521, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7471946}, controller_id=None),\n ExecutorInfo(id='w2BYxQs3FhaQsUWjt58YHzFULZWWHs48kBPRdAHsr9t', timestamp=1704624660000.0, type='dca_executor', close_timestamp=1704624780000.0, close_type=, status=, config=DCAExecutorConfig(id='w2BYxQs3FhaQsUWjt58YHzFULZWWHs48kBPRdAHsr9t', type='dca_executor', timestamp=1704624660000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.741905199999999842460610133'), Decimal('2.736421389599999842775688913'), Decimal('2.719969958399999843720925252'), Decimal('2.714486147999999844036004032'), Decimal('2.700776621999999844823700981'), Decimal('2.687067095999999845611397930')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7546, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7419051999999997}, controller_id=None),\n ExecutorInfo(id='2g8yPDTEcuaz9SVM7qPWmBVV3djdTG2WsBMsgSrZSuCi', timestamp=1704624840000.0, type='dca_executor', close_timestamp=1704624960000.0, close_type=, status=, config=DCAExecutorConfig(id='2g8yPDTEcuaz9SVM7qPWmBVV3djdTG2WsBMsgSrZSuCi', type='dca_executor', timestamp=1704624840000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.750288399999999805585934598'), Decimal('2.744787823199999805974762729'), Decimal('2.728286092799999807141247121'), Decimal('2.722785515999999807530075252'), Decimal('2.709034073999999808502145579'), Decimal('2.695282631999999809474215906')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7505, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7502883999999996}, controller_id=None),\n ExecutorInfo(id='5hrTZBxS1tUCat4xZVTMBfYmpDuh58RZhhQ18eRPXEEP', timestamp=1704625020000.0, type='dca_executor', close_timestamp=1704625140000.0, close_type=, status=, config=DCAExecutorConfig(id='5hrTZBxS1tUCat4xZVTMBfYmpDuh58RZhhQ18eRPXEEP', type='dca_executor', timestamp=1704625020000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571426'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.744999000000000166529075252'), Decimal('2.739509002000000166196017101'), Decimal('2.723039008000000165196842650'), Decimal('2.717549010000000164863784499'), Decimal('2.703824015000000164031139123'), Decimal('2.690099020000000163198493747')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7528, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.744999}, controller_id=None),\n ExecutorInfo(id='DURbNwaRxyCteABi7H9xq1bArCNWrs64fwfzWjz88DtQ', timestamp=1704625200000.0, type='dca_executor', close_timestamp=1704625320000.0, close_type=, status=, config=DCAExecutorConfig(id='DURbNwaRxyCteABi7H9xq1bArCNWrs64fwfzWjz88DtQ', type='dca_executor', timestamp=1704625200000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380950'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571426'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.748991000000000170074516970'), Decimal('2.743493018000000169734367936'), Decimal('2.726999072000000168713920834'), Decimal('2.721501090000000168373771800'), Decimal('2.707756135000000167523399215'), Decimal('2.694011180000000166673026631')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7503, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.748991}, controller_id=None),\n ExecutorInfo(id='5jeGzN6ipVpBHPCDvTxK1pdot5UwodLCuoZHNCtFa8Qg', timestamp=1704625380000.0, type='dca_executor', close_timestamp=1704625500000.0, close_type=, status=, config=DCAExecutorConfig(id='5jeGzN6ipVpBHPCDvTxK1pdot5UwodLCuoZHNCtFa8Qg', type='dca_executor', timestamp=1704625380000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('139.9999999999999999999999999')], prices=[Decimal('2.744799400000000188511854737'), Decimal('2.739309801200000188134831028'), Decimal('2.722841004800000187003759899'), Decimal('2.717351406000000186626736190'), Decimal('2.703627409000000185684176916'), Decimal('2.689903412000000184741617642')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7593, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7447994000000002}, controller_id=None),\n ExecutorInfo(id='H7Gb5uop54hFVLSXKdgeHL5xTUoKpz2bycgurunEdR7E', timestamp=1704620100000.0, type='dca_executor', close_timestamp=1704646080000.0, close_type=, status=, config=DCAExecutorConfig(id='H7Gb5uop54hFVLSXKdgeHL5xTUoKpz2bycgurunEdR7E', type='dca_executor', timestamp=1704620100000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428569'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047617'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.733656400000000180952394734'), Decimal('2.739123712800000181314299523'), Decimal('2.755525651200000182400013892'), Decimal('2.760992964000000182761918681'), Decimal('2.774661246000000183666680655'), Decimal('2.788329528000000184571442629')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.033392556783727440905540362336978432722389698028564453125'), net_pnl_quote=Decimal('16.90537940219991952517375466413795948028564453125'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 2.678, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7679990593542776}, controller_id=None),\n ExecutorInfo(id='yBgTBRvyf8XmCDN2btnNnPC9DnpZVaLpTXU4AV3jjJc', timestamp=1704625560000.0, type='dca_executor', close_timestamp=1704646140000.0, close_type=, status=, config=DCAExecutorConfig(id='yBgTBRvyf8XmCDN2btnNnPC9DnpZVaLpTXU4AV3jjJc', type='dca_executor', timestamp=1704625560000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.750388200000000016195060570'), Decimal('2.744887423600000016162670449'), Decimal('2.728385094400000016065500085'), Decimal('2.722884318000000016033109964'), Decimal('2.709132377000000015952134661'), Decimal('2.695380436000000015871159359')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.0149259343217204264175901329281259677372872829437255859375'), net_pnl_quote=Decimal('-7.3695023816551543660580136929638683795928955078125'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.6731, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.71605311077422}, controller_id=None),\n ExecutorInfo(id='9vtJ6BymoC11Cgy98YfsvVcgqnr4p6nxFYGxotGtiWf3', timestamp=1704646080000.0, type='dca_executor', close_timestamp=1704646200000.0, close_type=, status=, config=DCAExecutorConfig(id='9vtJ6BymoC11Cgy98YfsvVcgqnr4p6nxFYGxotGtiWf3', type='dca_executor', timestamp=1704646080000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.683355999999999936034750235'), Decimal('2.688722711999999935906819735'), Decimal('2.704822847999999935523028237'), Decimal('2.710189559999999935395097737'), Decimal('2.723606339999999935075271489'), Decimal('2.737023119999999934755445240')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6793, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.683356}, controller_id=None),\n ExecutorInfo(id='2T22vUS5B42yfaWJx1VZ4DgdWM9BVU6Ky7QTJHqAZKVa', timestamp=1704646260000.0, type='dca_executor', close_timestamp=1704646380000.0, close_type=, status=, config=DCAExecutorConfig(id='2T22vUS5B42yfaWJx1VZ4DgdWM9BVU6Ky7QTJHqAZKVa', type='dca_executor', timestamp=1704646260000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.684458200000000037133658647'), Decimal('2.689827116400000037207925964'), Decimal('2.705933865600000037430727916'), Decimal('2.711302782000000037504995233'), Decimal('2.724725073000000037690663527'), Decimal('2.738147364000000037876331820')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6714, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.6844582}, controller_id=None),\n ExecutorInfo(id='5jfmx94fUwpCW1dqxPyf1sQKqQbwzJuQCaqBwhJi4Nhp', timestamp=1704649740000.0, type='dca_executor', close_timestamp=1704649860000.0, close_type=, status=, config=DCAExecutorConfig(id='5jfmx94fUwpCW1dqxPyf1sQKqQbwzJuQCaqBwhJi4Nhp', type='dca_executor', timestamp=1704649740000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.720148800000000022578416914'), Decimal('2.714708502400000022533260080'), Decimal('2.698387609600000022397789579'), Decimal('2.692947312000000022352632745'), Decimal('2.679346568000000022239740660'), Decimal('2.665745824000000022126848576')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7268, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7201488}, controller_id=None),\n ExecutorInfo(id='5ht6z6F8G5oesDxb84LEg6NrAs3UE6JcGVdeCFYKvqQQ', timestamp=1704649920000.0, type='dca_executor', close_timestamp=1704650040000.0, close_type=, status=, config=DCAExecutorConfig(id='5ht6z6F8G5oesDxb84LEg6NrAs3UE6JcGVdeCFYKvqQQ', type='dca_executor', timestamp=1704649920000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.712763599999999949539195021'), Decimal('2.707338072799999949640116631'), Decimal('2.691061491199999949942881461'), Decimal('2.685635963999999950043803071'), Decimal('2.672072145999999950296107096'), Decimal('2.658508327999999950548411121')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7246, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7127636}, controller_id=None),\n ExecutorInfo(id='G4PB74DBa63jB9RRTpdjxdXk1rwWsMACcaPt9PYjRHHb', timestamp=1704650100000.0, type='dca_executor', close_timestamp=1704650220000.0, close_type=, status=, config=DCAExecutorConfig(id='G4PB74DBa63jB9RRTpdjxdXk1rwWsMACcaPt9PYjRHHb', type='dca_executor', timestamp=1704650100000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('139.9999999999999999999999999')], prices=[Decimal('2.719150800000000132492314342'), Decimal('2.713712498400000132227329713'), Decimal('2.697397593600000131432375827'), Decimal('2.691959292000000131167391199'), Decimal('2.678363538000000130504929627'), Decimal('2.664767784000000129842468055')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7219, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7191508}, controller_id=None),\n ExecutorInfo(id='BXaRoVP8nuyqo9K7548BNYaTUKq4unUQSAxs5pFM6MXN', timestamp=1704650280000.0, type='dca_executor', close_timestamp=1704650400000.0, close_type=, status=, config=DCAExecutorConfig(id='BXaRoVP8nuyqo9K7548BNYaTUKq4unUQSAxs5pFM6MXN', type='dca_executor', timestamp=1704650280000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.719949200000000044561196400'), Decimal('2.714509301600000044472074007'), Decimal('2.698189606400000044204706829'), Decimal('2.692749708000000044115584436'), Decimal('2.679149962000000043892778454'), Decimal('2.665550216000000043669972472')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.728, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7199492}, controller_id=None),\n ExecutorInfo(id='CkEhHkzv6JNTnV4zh7k2ieBdRUkdTAeNmXnY7fXDmYTq', timestamp=1704650460000.0, type='dca_executor', close_timestamp=1704650580000.0, close_type=, status=, config=DCAExecutorConfig(id='CkEhHkzv6JNTnV4zh7k2ieBdRUkdTAeNmXnY7fXDmYTq', type='dca_executor', timestamp=1704650460000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.721945199999999824733401543'), Decimal('2.716501309599999825083934740'), Decimal('2.700169638399999826135534331'), Decimal('2.694725747999999826486067528'), Decimal('2.681116021999999827362400520'), Decimal('2.667506295999999828238733512')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.733, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7219452}, controller_id=None),\n ExecutorInfo(id='6cgHhF1RsS9wJhJwhDMncDVuuNT3JKdNun6ami4cTEQM', timestamp=1704650640000.0, type='dca_executor', close_timestamp=1704650760000.0, close_type=, status=, config=DCAExecutorConfig(id='6cgHhF1RsS9wJhJwhDMncDVuuNT3JKdNun6ami4cTEQM', type='dca_executor', timestamp=1704650640000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.727733600000000073634859321'), Decimal('2.722278132800000073487589602'), Decimal('2.705911731200000073045780446'), Decimal('2.700456264000000072898510728'), Decimal('2.686817596000000072530336431'), Decimal('2.673178928000000072162162135')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7341, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7277336}, controller_id=None),\n ExecutorInfo(id='EdvoB3j52pqMLh1qemSckpemHbTYFVKUAdXoqndwtu6f', timestamp=1704650820000.0, type='dca_executor', close_timestamp=1704650940000.0, close_type=, status=, config=DCAExecutorConfig(id='EdvoB3j52pqMLh1qemSckpemHbTYFVKUAdXoqndwtu6f', type='dca_executor', timestamp=1704650820000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619048'), Decimal('139.9999999999999999999999999')], prices=[Decimal('2.728631800000000196312867351'), Decimal('2.723174536400000195920241616'), Decimal('2.706802745600000194742364412'), Decimal('2.701345482000000194349738677'), Decimal('2.687702323000000193368174341'), Decimal('2.674059164000000192386610004')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7319, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7286318}, controller_id=None),\n ExecutorInfo(id='2cL7sFv79C4QejdqveYyoJN9yJfihx51nYv1cFfbnX2N', timestamp=1704651000000.0, type='dca_executor', close_timestamp=1704651120000.0, close_type=, status=, config=DCAExecutorConfig(id='2cL7sFv79C4QejdqveYyoJN9yJfihx51nYv1cFfbnX2N', type='dca_executor', timestamp=1704651000000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.730827399999999954502293009'), Decimal('2.725365745199999954593288423'), Decimal('2.708980780799999954866274665'), Decimal('2.703519125999999954957270079'), Decimal('2.689864988999999955184758614'), Decimal('2.676210851999999955412247149')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7402, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7308274}, controller_id=None),\n ExecutorInfo(id='6T19Ujy2GiwJQxLqwWvyHDNxo5UVujSZUkmxjg7zXndN', timestamp=1704651180000.0, type='dca_executor', close_timestamp=1704651300000.0, close_type=, status=, config=DCAExecutorConfig(id='6T19Ujy2GiwJQxLqwWvyHDNxo5UVujSZUkmxjg7zXndN', type='dca_executor', timestamp=1704651180000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.729529999999999875789843951'), Decimal('2.724070939999999876038264263'), Decimal('2.707693759999999876783525199'), Decimal('2.702234699999999877031945511'), Decimal('2.688587049999999877652996292'), Decimal('2.674939399999999878274047072')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7376, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.72953}, controller_id=None),\n ExecutorInfo(id='9mAt8GMnFpaRsqEk6ArH7TRaSdhn5fgPm6QqG6YM55Nn', timestamp=1704651360000.0, type='dca_executor', close_timestamp=1704651480000.0, close_type=, status=, config=DCAExecutorConfig(id='9mAt8GMnFpaRsqEk6ArH7TRaSdhn5fgPm6QqG6YM55Nn', type='dca_executor', timestamp=1704651360000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.732124800000000033214742068'), Decimal('2.726660550400000033148312584'), Decimal('2.710267801600000032949024131'), Decimal('2.704803552000000032882594647'), Decimal('2.691142928000000032716520937'), Decimal('2.677482304000000032550447227')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7361, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7321248000000002}, controller_id=None),\n ExecutorInfo(id='AQ1ojiqpo7d9boeRA2TQmMfq7gvD8ujMSnt8we78Qi5', timestamp=1704651540000.0, type='dca_executor', close_timestamp=1704651660000.0, close_type=, status=, config=DCAExecutorConfig(id='AQ1ojiqpo7d9boeRA2TQmMfq7gvD8ujMSnt8we78Qi5', type='dca_executor', timestamp=1704651540000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.730827399999999954502293009'), Decimal('2.725365745199999954593288423'), Decimal('2.708980780799999954866274665'), Decimal('2.703519125999999954957270079'), Decimal('2.689864988999999955184758614'), Decimal('2.676210851999999955412247149')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7377, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7308274}, controller_id=None),\n ExecutorInfo(id='82EiqYPSSuemEJu8oPn37fTDMM7m5TbEmRtiz7ozC2cc', timestamp=1704651720000.0, type='dca_executor', close_timestamp=1704651840000.0, close_type=, status=, config=DCAExecutorConfig(id='82EiqYPSSuemEJu8oPn37fTDMM7m5TbEmRtiz7ozC2cc', type='dca_executor', timestamp=1704651720000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.733821400000000067961632155'), Decimal('2.728353757200000067825708891'), Decimal('2.711950828800000067417939098'), Decimal('2.706483186000000067282015833'), Decimal('2.692814079000000066942207673'), Decimal('2.679144972000000066602399512')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7393, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7338214}, controller_id=None),\n ExecutorInfo(id='9Y1ywJ6eHAusfUBTUbjiKbwdGxd4AppcQDEsE6mqsRrw', timestamp=1704646440000.0, type='dca_executor', close_timestamp=1704653400000.0, close_type=, status=, config=DCAExecutorConfig(id='9Y1ywJ6eHAusfUBTUbjiKbwdGxd4AppcQDEsE6mqsRrw', type='dca_executor', timestamp=1704646440000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.680951200000000200885191813'), Decimal('2.686313102400000201286962197'), Decimal('2.702398809600000202492273348'), Decimal('2.707760712000000202894043731'), Decimal('2.721165468000000203898469690'), Decimal('2.734570224000000204902895649')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.01516875694464119538051871671768822125159204006195068359375'), net_pnl_quote=Decimal('-7.6793637836644226268845159211196005344390869140625'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 2.7582, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7146317290551663}, controller_id=None),\n ExecutorInfo(id='9tK3TeF9pZKfCkpkbagEETXCgfpHWnC2CLKPzARobL5J', timestamp=1704657000000.0, type='dca_executor', close_timestamp=1704657120000.0, close_type=, status=, config=DCAExecutorConfig(id='9tK3TeF9pZKfCkpkbagEETXCgfpHWnC2CLKPzARobL5J', type='dca_executor', timestamp=1704657000000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.758004999999999946717309239'), Decimal('2.763521009999999946610743857'), Decimal('2.780069039999999946291047713'), Decimal('2.785585049999999946184482331'), Decimal('2.799375074999999945918068878'), Decimal('2.813165099999999945651655424')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7553, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.758005}, controller_id=None),\n ExecutorInfo(id='iDsYnQHTZ6mXZAaAAZ5NkcYc4Vs6cnPXoS7aPjRk4Tc', timestamp=1704657180000.0, type='dca_executor', close_timestamp=1704657300000.0, close_type=, status=, config=DCAExecutorConfig(id='iDsYnQHTZ6mXZAaAAZ5NkcYc4Vs6cnPXoS7aPjRk4Tc', type='dca_executor', timestamp=1704657180000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.761311599999999805036646204'), Decimal('2.766834223199999804646719496'), Decimal('2.783402092799999803476939374'), Decimal('2.788924715999999803087012666'), Decimal('2.802731273999999802112195897'), Decimal('2.816537831999999801137379128')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7535, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7613116}, controller_id=None),\n ExecutorInfo(id='AsHmrG44ygQBi3tQihBoDiZnkVGu2SGVe2LRX4zR1tK6', timestamp=1704657360000.0, type='dca_executor', close_timestamp=1704657480000.0, close_type=, status=, config=DCAExecutorConfig(id='AsHmrG44ygQBi3tQihBoDiZnkVGu2SGVe2LRX4zR1tK6', type='dca_executor', timestamp=1704657360000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.758806599999999858433828713'), Decimal('2.764324213199999858150696370'), Decimal('2.780877052799999857301299343'), Decimal('2.786394665999999857018167000'), Decimal('2.800188698999999856310336144'), Decimal('2.813982731999999855602505287')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7527, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7588065999999998}, controller_id=None),\n ExecutorInfo(id='Cpg49jjpmmv5DRE9CUJu4Gk7PRTDcf62x7Rk5pkUsCpS', timestamp=1704657540000.0, type='dca_executor', close_timestamp=1704657660000.0, close_type=, status=, config=DCAExecutorConfig(id='Cpg49jjpmmv5DRE9CUJu4Gk7PRTDcf62x7Rk5pkUsCpS', type='dca_executor', timestamp=1704657540000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.758806599999999858433828713'), Decimal('2.764324213199999858150696370'), Decimal('2.780877052799999857301299343'), Decimal('2.786394665999999857018167000'), Decimal('2.800188698999999856310336144'), Decimal('2.813982731999999855602505287')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7499, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7588065999999998}, controller_id=None),\n ExecutorInfo(id='HWMrv3QmJcbcoVkncxqxp1Tkf2nZbAB7tJmBiqekVC3w', timestamp=1704657720000.0, type='dca_executor', close_timestamp=1704657840000.0, close_type=, status=, config=DCAExecutorConfig(id='HWMrv3QmJcbcoVkncxqxp1Tkf2nZbAB7tJmBiqekVC3w', type='dca_executor', timestamp=1704657720000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142858')], prices=[Decimal('2.755399799999999788661232679'), Decimal('2.760910599599999788238555144'), Decimal('2.777442998399999786970522540'), Decimal('2.782953797999999786547845006'), Decimal('2.796730796999999785491151169'), Decimal('2.810507795999999784434457333')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7534, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7553997999999997}, controller_id=None),\n ExecutorInfo(id='AcFrewj9PrX2vcyT4GsjTbt5TZthpsmCB9mGf86eguhe', timestamp=1704657900000.0, type='dca_executor', close_timestamp=1704658020000.0, close_type=, status=, config=DCAExecutorConfig(id='AcFrewj9PrX2vcyT4GsjTbt5TZthpsmCB9mGf86eguhe', type='dca_executor', timestamp=1704657900000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.758906800000000069887087782'), Decimal('2.764424613600000070026861958'), Decimal('2.780978054400000070446184484'), Decimal('2.786495868000000070585958660'), Decimal('2.800290402000000070935394099'), Decimal('2.814084936000000071284829538')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7534, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7589068}, controller_id=None),\n ExecutorInfo(id='7wbx2BtdEDXCtN2P7fWgDegEDRqsf8nCxoZiN29chei5', timestamp=1704658080000.0, type='dca_executor', close_timestamp=1704658200000.0, close_type=, status=, config=DCAExecutorConfig(id='7wbx2BtdEDXCtN2P7fWgDegEDRqsf8nCxoZiN29chei5', type='dca_executor', timestamp=1704658080000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.766020999999999953837280519'), Decimal('2.771553041999999953744955080'), Decimal('2.788149167999999953467978763'), Decimal('2.793681209999999953375653324'), Decimal('2.807511314999999953144839727'), Decimal('2.821341419999999952914026129')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7652, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.766021}, controller_id=None),\n ExecutorInfo(id='3YjYcmVzX7DQtfWgD37M4QrvNCaWZDmmnGvenc5jxHrA', timestamp=1704658260000.0, type='dca_executor', close_timestamp=1704658380000.0, close_type=, status=, config=DCAExecutorConfig(id='3YjYcmVzX7DQtfWgD37M4QrvNCaWZDmmnGvenc5jxHrA', type='dca_executor', timestamp=1704658260000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.770229399999999935326396027'), Decimal('2.775769858799999935197048819'), Decimal('2.792391235199999934809007195'), Decimal('2.797931693999999934679659987'), Decimal('2.811782840999999934356291967'), Decimal('2.825633987999999934032923948')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7655, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7702294}, controller_id=None),\n ExecutorInfo(id='EyWM9PPWQTrs1phdgH8f53Nb9qCnawjuFGYvNjXTmugK', timestamp=1704658440000.0, type='dca_executor', close_timestamp=1704658560000.0, close_type=, status=, config=DCAExecutorConfig(id='EyWM9PPWQTrs1phdgH8f53Nb9qCnawjuFGYvNjXTmugK', type='dca_executor', timestamp=1704658440000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.769728400000000212992265490'), Decimal('2.775267856800000213418250021'), Decimal('2.791886227200000214696203614'), Decimal('2.797425684000000215122188145'), Decimal('2.811274326000000216187149472'), Decimal('2.825122968000000217252110800')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7549, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7697284000000004}, controller_id=None),\n ExecutorInfo(id='8wwvZLmEJJXETCr8wfLqhKLiZwZSx3xaKkutdpDsSm1M', timestamp=1704658620000.0, type='dca_executor', close_timestamp=1704658740000.0, close_type=, status=, config=DCAExecutorConfig(id='8wwvZLmEJJXETCr8wfLqhKLiZwZSx3xaKkutdpDsSm1M', type='dca_executor', timestamp=1704658620000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428574'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142858')], prices=[Decimal('2.760409800000000126844255931'), Decimal('2.765930619600000127097944443'), Decimal('2.782493078400000127859009978'), Decimal('2.788013898000000128112698490'), Decimal('2.801815947000000128746919770'), Decimal('2.815617996000000129381141050')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.752, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7604098}, controller_id=None),\n ExecutorInfo(id='692LNSqqMFu4RQyFJJ75w45Hgq9UUAMpjzV13NCh9cVn', timestamp=1704658800000.0, type='dca_executor', close_timestamp=1704658920000.0, close_type=, status=, config=DCAExecutorConfig(id='692LNSqqMFu4RQyFJJ75w45Hgq9UUAMpjzV13NCh9cVn', type='dca_executor', timestamp=1704658800000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428571'), Decimal('71.99999999999999999999999999'), Decimal('96.19047619047619047619047616'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142856')], prices=[Decimal('2.756301599999999911831011222'), Decimal('2.761814203199999911654673244'), Decimal('2.778352012799999911125659312'), Decimal('2.783864615999999910949321334'), Decimal('2.797646123999999910508476390'), Decimal('2.811427631999999910067631446')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.756, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7563016}, controller_id=None),\n ExecutorInfo(id='CE5N9rt1rff8xgUUy6q9fTu6BprG5C1ch6BDR3rup7r6', timestamp=1704658980000.0, type='dca_executor', close_timestamp=1704659100000.0, close_type=, status=, config=DCAExecutorConfig(id='CE5N9rt1rff8xgUUy6q9fTu6BprG5C1ch6BDR3rup7r6', type='dca_executor', timestamp=1704658980000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.761511999999999782965776073'), Decimal('2.767035023999999782531707625'), Decimal('2.783604095999999781229502282'), Decimal('2.789127119999999780795433834'), Decimal('2.802934679999999779710262714'), Decimal('2.816742239999999778625091594')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7544, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7615119999999997}, controller_id=None),\n ExecutorInfo(id='FnMtYHMSUw1WY9dBatCydtmVzr6YHf9JRvfSnLYTAkTU', timestamp=1704659160000.0, type='dca_executor', close_timestamp=1704659280000.0, close_type=, status=, config=DCAExecutorConfig(id='FnMtYHMSUw1WY9dBatCydtmVzr6YHf9JRvfSnLYTAkTU', type='dca_executor', timestamp=1704659160000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.759908799999999959532737125'), Decimal('2.765428617599999959451802599'), Decimal('2.781988070399999959208999022'), Decimal('2.787507887999999959128064496'), Decimal('2.801307431999999958925728182'), Decimal('2.815106975999999958723391868')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.755, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7599088}, controller_id=None),\n ExecutorInfo(id='4DTemdWSKWC728xq8Xbb26oxLx6hGUrsmyCAS8889WVW', timestamp=1704659340000.0, type='dca_executor', close_timestamp=1704659460000.0, close_type=, status=, config=DCAExecutorConfig(id='4DTemdWSKWC728xq8Xbb26oxLx6hGUrsmyCAS8889WVW', type='dca_executor', timestamp=1704659340000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047617'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.760509999999999893320126730'), Decimal('2.766031019999999893106766983'), Decimal('2.782594079999999892466687744'), Decimal('2.788115099999999892253327997'), Decimal('2.801917649999999891719928631'), Decimal('2.815720199999999891186529265')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.755, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.76051}, controller_id=None),\n ExecutorInfo(id='9rUsuon41zpkJb2mKCZLZmFaaZMs1CLiJfrioo6rtyCg', timestamp=1704659520000.0, type='dca_executor', close_timestamp=1704659640000.0, close_type=, status=, config=DCAExecutorConfig(id='9rUsuon41zpkJb2mKCZLZmFaaZMs1CLiJfrioo6rtyCg', type='dca_executor', timestamp=1704659520000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047617'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.760509999999999893320126730'), Decimal('2.766031019999999893106766983'), Decimal('2.782594079999999892466687744'), Decimal('2.788115099999999892253327997'), Decimal('2.801917649999999891719928631'), Decimal('2.815720199999999891186529265')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.755, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.76051}, controller_id=None),\n ExecutorInfo(id='AFXLKZB4ghActtJq5ZefMgNXy8bEeURg8WYwzDzfNHwt', timestamp=1704659700000.0, type='dca_executor', close_timestamp=1704659820000.0, close_type=, status=, config=DCAExecutorConfig(id='AFXLKZB4ghActtJq5ZefMgNXy8bEeURg8WYwzDzfNHwt', type='dca_executor', timestamp=1704659700000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142858')], prices=[Decimal('2.757103199999999823547530696'), Decimal('2.762617406399999823194625757'), Decimal('2.779160025599999822135910942'), Decimal('2.784674231999999821783006003'), Decimal('2.798459747999999820900743656'), Decimal('2.812245263999999820018481310')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7442, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7571032}, controller_id=None),\n ExecutorInfo(id='71uxrmdhT3MfwTRiin3CeFJLbrEY2LUKsq23paqxHrre', timestamp=1704659880000.0, type='dca_executor', close_timestamp=1704660000000.0, close_type=, status=, config=DCAExecutorConfig(id='71uxrmdhT3MfwTRiin3CeFJLbrEY2LUKsq23paqxHrre', type='dca_executor', timestamp=1704659880000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.745880800000000169561481521'), Decimal('2.751372561600000169900604484'), Decimal('2.767847846400000170917973373'), Decimal('2.773339608000000171257096336'), Decimal('2.787069012000000172104903744'), Decimal('2.800798416000000172952711151')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7404, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7458808}, controller_id=None),\n ExecutorInfo(id='2SmyUAWEvgqvrAGDEvkhQ4Lg93TN27oCsEunfyorShrK', timestamp=1704660060000.0, type='dca_executor', close_timestamp=1704660180000.0, close_type=, status=, config=DCAExecutorConfig(id='2SmyUAWEvgqvrAGDEvkhQ4Lg93TN27oCsEunfyorShrK', type='dca_executor', timestamp=1704660060000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.745880800000000169561481521'), Decimal('2.751372561600000169900604484'), Decimal('2.767847846400000170917973373'), Decimal('2.773339608000000171257096336'), Decimal('2.787069012000000172104903744'), Decimal('2.800798416000000172952711151')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7397, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7458808}, controller_id=None),\n ExecutorInfo(id='6arfc33WaTkotJB6apt6pPSJnFmCDNagt1xV9haEGf1c', timestamp=1704660240000.0, type='dca_executor', close_timestamp=1704660360000.0, close_type=, status=, config=DCAExecutorConfig(id='6arfc33WaTkotJB6apt6pPSJnFmCDNagt1xV9haEGf1c', type='dca_executor', timestamp=1704660240000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.745179400000000024320832846'), Decimal('2.750669758800000024369474512'), Decimal('2.767140835200000024515399509'), Decimal('2.772631194000000024564041174'), Decimal('2.786357091000000024685645339'), Decimal('2.800082988000000024807249503')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.741, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7451794}, controller_id=None),\n ExecutorInfo(id='93bnYzYESnBgkJGsAYcLgNSnv95Fwt7tJq1CbH1kAQpd', timestamp=1704660420000.0, type='dca_executor', close_timestamp=1704660540000.0, close_type=, status=, config=DCAExecutorConfig(id='93bnYzYESnBgkJGsAYcLgNSnv95Fwt7tJq1CbH1kAQpd', type='dca_executor', timestamp=1704660420000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.745279599999999790796703646'), Decimal('2.750770159199999790378297053'), Decimal('2.767241836799999789123077275'), Decimal('2.772732395999999788704670682'), Decimal('2.786458793999999787658654201'), Decimal('2.800185191999999786612637719')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7381, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7452796}, controller_id=None),\n ExecutorInfo(id='96X2hDSNjLJ9tKUGehebQPkm8EmEMKA5ReGw7NQo2Wxz', timestamp=1704660600000.0, type='dca_executor', close_timestamp=1704660720000.0, close_type=, status=, config=DCAExecutorConfig(id='96X2hDSNjLJ9tKUGehebQPkm8EmEMKA5ReGw7NQo2Wxz', type='dca_executor', timestamp=1704660600000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.746882800000000059207130864'), Decimal('2.752376565600000059325545126'), Decimal('2.768857862400000059680787911'), Decimal('2.774351628000000059799202173'), Decimal('2.788086042000000060095237827'), Decimal('2.801820456000000060391273481')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7389, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7468828}, controller_id=None),\n ExecutorInfo(id='HbkQaVrgKQWBkR3cYP7YLz1MDJyqCmBai8mC1FGPc1ep', timestamp=1704660780000.0, type='dca_executor', close_timestamp=1704660900000.0, close_type=, status=, config=DCAExecutorConfig(id='HbkQaVrgKQWBkR3cYP7YLz1MDJyqCmBai8mC1FGPc1ep', type='dca_executor', timestamp=1704660780000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.744377800000000112604313373'), Decimal('2.749866555600000112829522000'), Decimal('2.766332822400000113505147880'), Decimal('2.771821578000000113730356507'), Decimal('2.785543467000000114293378074'), Decimal('2.799265356000000114856399640')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7389, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7443778}, controller_id=None),\n ExecutorInfo(id='7J1h319fSLn9TUkSfDwbC6Sqata4XcpBqqmZQs8Upve3', timestamp=1704660960000.0, type='dca_executor', close_timestamp=1704661080000.0, close_type=, status=, config=DCAExecutorConfig(id='7J1h319fSLn9TUkSfDwbC6Sqata4XcpBqqmZQs8Upve3', type='dca_executor', timestamp=1704660960000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.744377800000000112604313373'), Decimal('2.749866555600000112829522000'), Decimal('2.766332822400000113505147880'), Decimal('2.771821578000000113730356507'), Decimal('2.785543467000000114293378074'), Decimal('2.799265356000000114856399640')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.735, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7443778}, controller_id=None),\n ExecutorInfo(id='Es7ydLEMpuBkn34ZvFsYnYwAgq2bLw9BkknLVQG15rxj', timestamp=1704661140000.0, type='dca_executor', close_timestamp=1704661260000.0, close_type=, status=, config=DCAExecutorConfig(id='Es7ydLEMpuBkn34ZvFsYnYwAgq2bLw9BkknLVQG15rxj', type='dca_executor', timestamp=1704661140000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.740469999999999875520198532'), Decimal('2.745950939999999875271238929'), Decimal('2.762393759999999874524360120'), Decimal('2.767874699999999874275400517'), Decimal('2.781577049999999873653001510'), Decimal('2.795279399999999873030602503')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7296, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7404699999999997}, controller_id=None),\n ExecutorInfo(id='AVo51FLz2F6RS6asJ8fQrWYCCZefKrpYWQAxGFYW9U7k', timestamp=1704661320000.0, type='dca_executor', close_timestamp=1704661440000.0, close_type=, status=, config=DCAExecutorConfig(id='AVo51FLz2F6RS6asJ8fQrWYCCZefKrpYWQAxGFYW9U7k', type='dca_executor', timestamp=1704661320000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.738966999999999818563030384'), Decimal('2.744444933999999818200156445'), Decimal('2.760878735999999817111534627'), Decimal('2.766356669999999816748660688'), Decimal('2.780051504999999815841475840'), Decimal('2.793746339999999814934290992')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7335, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7389669999999997}, controller_id=None),\n ExecutorInfo(id='6ujk5o2pbtfdtQijgvrE9dYpruq25bpZXdqmiMNM3WP3', timestamp=1704661500000.0, type='dca_executor', close_timestamp=1704661620000.0, close_type=, status=, config=DCAExecutorConfig(id='6ujk5o2pbtfdtQijgvrE9dYpruq25bpZXdqmiMNM3WP3', type='dca_executor', timestamp=1704661500000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.738966999999999818563030384'), Decimal('2.744444933999999818200156445'), Decimal('2.760878735999999817111534627'), Decimal('2.766356669999999816748660688'), Decimal('2.780051504999999815841475840'), Decimal('2.793746339999999814934290992')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7381, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7389669999999997}, controller_id=None),\n ExecutorInfo(id='A8bBnxjpWsaZjDi8ae5DHPvaVbFn9eL3wnCBNtuTfJzM', timestamp=1704661680000.0, type='dca_executor', close_timestamp=1704661800000.0, close_type=, status=, config=DCAExecutorConfig(id='A8bBnxjpWsaZjDi8ae5DHPvaVbFn9eL3wnCBNtuTfJzM', type='dca_executor', timestamp=1704661680000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.743576200000000200887793899'), Decimal('2.749063352400000201289569487'), Decimal('2.765524809600000202494896250'), Decimal('2.771011962000000202896671838'), Decimal('2.784729843000000203901110807'), Decimal('2.798447724000000204905549777')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7428, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7435762}, controller_id=None),\n ExecutorInfo(id='13a2xWfLccv1KX9qbYbu3JMo9MpcxwxNjThQ2aSBvQ1n', timestamp=1704661860000.0, type='dca_executor', close_timestamp=1704661980000.0, close_type=, status=, config=DCAExecutorConfig(id='13a2xWfLccv1KX9qbYbu3JMo9MpcxwxNjThQ2aSBvQ1n', type='dca_executor', timestamp=1704661860000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000005'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.748285599999999904711039943'), Decimal('2.753782171199999904520462023'), Decimal('2.770271884799999903948728263'), Decimal('2.775768455999999903758150342'), Decimal('2.789509883999999903281705542'), Decimal('2.803251311999999902805260742')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7401, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7482856}, controller_id=None),\n ExecutorInfo(id='31nKe3NrnAWoL943GnWGh2W5L65xpJ6ut54HzfjNYtE4', timestamp=1704662040000.0, type='dca_executor', close_timestamp=1704662160000.0, close_type=, status=, config=DCAExecutorConfig(id='31nKe3NrnAWoL943GnWGh2W5L65xpJ6ut54HzfjNYtE4', type='dca_executor', timestamp=1704662040000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.745580199999999980179092583'), Decimal('2.751071360399999980139450768'), Decimal('2.767544841599999980020525324'), Decimal('2.773036001999999979980883509'), Decimal('2.786763902999999979881778972'), Decimal('2.800491803999999979782674435')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7411, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7455802}, controller_id=None),\n ExecutorInfo(id='HahS3Ca8ReNLaccrhzLi8UA4bU59Cfv4mQeuEYYNyXEj', timestamp=1704662220000.0, type='dca_executor', close_timestamp=1704662340000.0, close_type=, status=, config=DCAExecutorConfig(id='HahS3Ca8ReNLaccrhzLi8UA4bU59Cfv4mQeuEYYNyXEj', type='dca_executor', timestamp=1704662220000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.746582199999999869824741926'), Decimal('2.752075364399999869564391410'), Decimal('2.768554857599999868783339861'), Decimal('2.774048021999999868522989345'), Decimal('2.787780932999999867872113055'), Decimal('2.801513843999999867221236765')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7338, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7465821999999998}, controller_id=None),\n ExecutorInfo(id='H6YApyvwiQqHJdcrDN3Qq5cv8dt6AfjSGKmpHRKCUX4Z', timestamp=1704662400000.0, type='dca_executor', close_timestamp=1704662520000.0, close_type=, status=, config=DCAExecutorConfig(id='H6YApyvwiQqHJdcrDN3Qq5cv8dt6AfjSGKmpHRKCUX4Z', type='dca_executor', timestamp=1704662400000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428569'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.740269599999999897591068664'), Decimal('2.745750139199999897386250801'), Decimal('2.762191756799999896771797213'), Decimal('2.767672295999999896566979351'), Decimal('2.781373643999999896054934694'), Decimal('2.795074991999999895542890037')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7348, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7402696}, controller_id=None),\n ExecutorInfo(id='9wDCjoBo42t62Rw1rq58itiXbeEp15PiQXSVmH4kuVYu', timestamp=1704662580000.0, type='dca_executor', close_timestamp=1704662700000.0, close_type=, status=, config=DCAExecutorConfig(id='9wDCjoBo42t62Rw1rq58itiXbeEp15PiQXSVmH4kuVYu', type='dca_executor', timestamp=1704662580000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.739267600000000007945419321'), Decimal('2.744746135200000007961310160'), Decimal('2.761181740800000008008982676'), Decimal('2.766660276000000008024873514'), Decimal('2.780356614000000008064600611'), Decimal('2.794052952000000008104327707')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7317, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7392676}, controller_id=None),\n ExecutorInfo(id='332FcETfZ65CFwBox448nPtZPe1aRkbjs4Gcr85Go3sz', timestamp=1704662760000.0, type='dca_executor', close_timestamp=1704662880000.0, close_type=, status=, config=DCAExecutorConfig(id='332FcETfZ65CFwBox448nPtZPe1aRkbjs4Gcr85Go3sz', type='dca_executor', timestamp=1704662760000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('71.99999999999999999999999998'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.736061199999999916101953156'), Decimal('2.741533322399999915934157062'), Decimal('2.757949689599999915430768781'), Decimal('2.763421811999999915262972688'), Decimal('2.777102117999999914843482453'), Decimal('2.790782423999999914423992219')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7313, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7360612}, controller_id=None),\n ExecutorInfo(id='HhY9Fqqc8BAEEgNx9rY74XF2LenRyag9kWegBb2U1B2p', timestamp=1704662940000.0, type='dca_executor', close_timestamp=1704663060000.0, close_type=, status=, config=DCAExecutorConfig(id='HhY9Fqqc8BAEEgNx9rY74XF2LenRyag9kWegBb2U1B2p', type='dca_executor', timestamp=1704662940000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.736762600000000061342601830'), Decimal('2.742236125200000061465287034'), Decimal('2.758656700800000061833342645'), Decimal('2.764130226000000061956027848'), Decimal('2.777814039000000062262740857'), Decimal('2.791497852000000062569453867')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.727, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7367626}, controller_id=None),\n ExecutorInfo(id='4sqCzUN6VAmsvhdPa9RFquZ5kjxQMRXfGXSkVhBJBEkQ', timestamp=1704663120000.0, type='dca_executor', close_timestamp=1704663240000.0, close_type=, status=, config=DCAExecutorConfig(id='4sqCzUN6VAmsvhdPa9RFquZ5kjxQMRXfGXSkVhBJBEkQ', type='dca_executor', timestamp=1704663120000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428574'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.732453999999999868400227253'), Decimal('2.737918907999999868137027708'), Decimal('2.754313631999999867347429071'), Decimal('2.759778539999999867084229526'), Decimal('2.773440809999999866426230662'), Decimal('2.787103079999999865768231798')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7253, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7324539999999997}, controller_id=None),\n ExecutorInfo(id='3kmkDpdweyAmic6RMMHwWCqSoNKNPaesiMufhfBZFyzk', timestamp=1704663300000.0, type='dca_executor', close_timestamp=1704663420000.0, close_type=, status=, config=DCAExecutorConfig(id='3kmkDpdweyAmic6RMMHwWCqSoNKNPaesiMufhfBZFyzk', type='dca_executor', timestamp=1704663300000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.728947000000000032151760420'), Decimal('2.734404894000000032216063941'), Decimal('2.750778576000000032408974503'), Decimal('2.756236470000000032473278024'), Decimal('2.769881205000000032634036826'), Decimal('2.783525940000000032794795628')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7167, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7289470000000002}, controller_id=None),\n ExecutorInfo(id='QumDTYefG6n8WhLJAa7wPq52PYTfzcAnaFtrof76ErG', timestamp=1704663480000.0, type='dca_executor', close_timestamp=1704663600000.0, close_type=, status=, config=DCAExecutorConfig(id='QumDTYefG6n8WhLJAa7wPq52PYTfzcAnaFtrof76ErG', type='dca_executor', timestamp=1704663480000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142858')], prices=[Decimal('2.721331799999999980890048877'), Decimal('2.726774463599999980851828975'), Decimal('2.743102454399999980737169268'), Decimal('2.748545117999999980698949366'), Decimal('2.762151776999999980603399610'), Decimal('2.775758435999999980507849855')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7124, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7213318}, controller_id=None),\n ExecutorInfo(id='EUK4QwWePhS2GALeVxymYcL2MHYunguMunbKsiw61bAK', timestamp=1704663660000.0, type='dca_executor', close_timestamp=1704663780000.0, close_type=, status=, config=DCAExecutorConfig(id='EUK4QwWePhS2GALeVxymYcL2MHYunguMunbKsiw61bAK', type='dca_executor', timestamp=1704663660000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000005'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.713315799999999973770077598'), Decimal('2.718742431599999973717617753'), Decimal('2.735022326399999973560238219'), Decimal('2.740448957999999973507778374'), Decimal('2.754015536999999973376628762'), Decimal('2.767582115999999973245479150')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7127, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7133158}, controller_id=None),\n ExecutorInfo(id='3zuvvGN3UaZQxxj83DtK3tZtxdqPLqu6p8oG6woh8aXz', timestamp=1704663840000.0, type='dca_executor', close_timestamp=1704663960000.0, close_type=, status=, config=DCAExecutorConfig(id='3zuvvGN3UaZQxxj83DtK3tZtxdqPLqu6p8oG6woh8aXz', type='dca_executor', timestamp=1704663840000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.718125399999999889046582712'), Decimal('2.723561650799999888824675877'), Decimal('2.739870403199999888158955374'), Decimal('2.745306653999999887937048539'), Decimal('2.758897280999999887382281453'), Decimal('2.772487907999999886827514366')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.705, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7181254}, controller_id=None),\n ExecutorInfo(id='6izmHkrDjoBJtyL8aoBsPt2hnV9S6N6XXHsspSY9mUxy', timestamp=1704664020000.0, type='dca_executor', close_timestamp=1704664140000.0, close_type=, status=, config=DCAExecutorConfig(id='6izmHkrDjoBJtyL8aoBsPt2hnV9S6N6XXHsspSY9mUxy', type='dca_executor', timestamp=1704664020000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000005'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.708907000000000014351832222'), Decimal('2.714324814000000014380535886'), Decimal('2.730578256000000014466646880'), Decimal('2.735996070000000014495350544'), Decimal('2.749540605000000014567109705'), Decimal('2.763085140000000014638868866')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7035, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.708907}, controller_id=None),\n ExecutorInfo(id='CkxEPep7vJLEdx5byXcG77yFanpv2EQAdZyFHgG6UnYW', timestamp=1704664200000.0, type='dca_executor', close_timestamp=1704664320000.0, close_type=, status=, config=DCAExecutorConfig(id='CkxEPep7vJLEdx5byXcG77yFanpv2EQAdZyFHgG6UnYW', type='dca_executor', timestamp=1704664200000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047624'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.713516199999999951699207467'), Decimal('2.718943232399999951602605882'), Decimal('2.735224329599999951312801127'), Decimal('2.740651361999999951216199542'), Decimal('2.754218942999999950974695579'), Decimal('2.767786523999999950733191616')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7081, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7135162}, controller_id=None),\n ExecutorInfo(id='9KeANedw2yNnEJBTkkwAsiqB5HNy65L4rDENhTCj77KB', timestamp=1704664380000.0, type='dca_executor', close_timestamp=1704664500000.0, close_type=, status=, config=DCAExecutorConfig(id='9KeANedw2yNnEJBTkkwAsiqB5HNy65L4rDENhTCj77KB', type='dca_executor', timestamp=1704664380000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.713215600000000207294206799'), Decimal('2.718642031200000207708795213'), Decimal('2.734921324800000208952560453'), Decimal('2.740347756000000209367148867'), Decimal('2.753913834000000210403619901'), Decimal('2.767479912000000211440090935')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7093, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7132156000000003}, controller_id=None),\n ExecutorInfo(id='H7LkGLutHwurFmFLznz7KtDioYpakyGVNs6ruDkQ4Efo', timestamp=1704664560000.0, type='dca_executor', close_timestamp=1704664680000.0, close_type=, status=, config=DCAExecutorConfig(id='H7LkGLutHwurFmFLznz7KtDioYpakyGVNs6ruDkQ4Efo', type='dca_executor', timestamp=1704664560000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428571'), Decimal('71.99999999999999999999999999'), Decimal('96.19047619047619047619047617'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.715720600000000153897024290'), Decimal('2.721152041200000154204818339'), Decimal('2.737446364800000155128200484'), Decimal('2.742877806000000155435994533'), Decimal('2.756456409000000156205479654'), Decimal('2.770035012000000156974964776')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7132, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7157206}, controller_id=None),\n ExecutorInfo(id='J3ExgLQzyYCxXhx8M2DabL1qyX1eUBp4hbd7xQe33duC', timestamp=1704664740000.0, type='dca_executor', close_timestamp=1704664860000.0, close_type=, status=, config=DCAExecutorConfig(id='J3ExgLQzyYCxXhx8M2DabL1qyX1eUBp4hbd7xQe33duC', type='dca_executor', timestamp=1704664740000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.715419999999999964514635352'), Decimal('2.720850839999999964443664623'), Decimal('2.737143359999999964230752435'), Decimal('2.742574199999999964159781706'), Decimal('2.756151299999999963982354882'), Decimal('2.769728399999999963804928059')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.701, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.71542}, controller_id=None),\n ExecutorInfo(id='A6cE6eAdymGkvL9wsRuMdJjGA22gfTutjGvk6AxkTpx6', timestamp=1704664920000.0, type='dca_executor', close_timestamp=1704665040000.0, close_type=, status=, config=DCAExecutorConfig(id='A6cE6eAdymGkvL9wsRuMdJjGA22gfTutjGvk6AxkTpx6', type='dca_executor', timestamp=1704664920000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047617'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.706402000000000067749014730'), Decimal('2.711814804000000067884512759'), Decimal('2.728053216000000068291006848'), Decimal('2.733466020000000068426504877'), Decimal('2.746998030000000068765249951'), Decimal('2.760530040000000069103995025')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6977, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.706402}, controller_id=None),\n ExecutorInfo(id='8f55LoscGJ5q2VcTk9CJZTmUvJfnduNtQcTKNAGxKFaP', timestamp=1704651900000.0, type='dca_executor', close_timestamp=1704665760000.0, close_type=, status=, config=DCAExecutorConfig(id='8f55LoscGJ5q2VcTk9CJZTmUvJfnduNtQcTKNAGxKFaP', type='dca_executor', timestamp=1704651900000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.735418199999999892099396270'), Decimal('2.729947363599999892315197477'), Decimal('2.713534854399999892962601100'), Decimal('2.708064017999999893178402307'), Decimal('2.694386926999999893717905326'), Decimal('2.680709835999999894257408345')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.0157408656589923083568560713274564477615058422088623046875'), net_pnl_quote=Decimal('-7.7718650278696070898831749218516051769256591796875'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.6568, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.701269992133626}, controller_id=None),\n ExecutorInfo(id='42MribVgyfdKcXPJuUA89n8RD8fKanTZboQz3fsDEqom', timestamp=1704665100000.0, type='dca_executor', close_timestamp=1704666900000.0, close_type=, status=, config=DCAExecutorConfig(id='42MribVgyfdKcXPJuUA89n8RD8fKanTZboQz3fsDEqom', type='dca_executor', timestamp=1704665100000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428571'), Decimal('71.99999999999999999999999999'), Decimal('96.19047619047619047619047616'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.694778800000000012927317549'), Decimal('2.700168357600000012953172184'), Decimal('2.716337030400000013030736089'), Decimal('2.721726588000000013056590724'), Decimal('2.735200482000000013121227312'), Decimal('2.748674376000000013185863900')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.03149577088588839668403807081631384789943695068359375'), net_pnl_quote=Decimal('0.74989930680686656128131062359898351132869720458984375'), cum_fees_quote=Decimal('0.01428571428571428526821396332024960429407656192779541015625'), filled_amount_quote=Decimal('23.8095238095238102005168912000954151153564453125'), is_active=False, is_trading=False, custom_info={'close_price': 2.6107, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.6947788}, controller_id=None),\n ExecutorInfo(id='BWtYh8XJnXL1W77DsogFWNu8KUgygXQA1JNdPV33SjTq', timestamp=1704666900000.0, type='dca_executor', close_timestamp=1704678180000.0, close_type=, status=, config=DCAExecutorConfig(id='BWtYh8XJnXL1W77DsogFWNu8KUgygXQA1JNdPV33SjTq', type='dca_executor', timestamp=1704666900000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.615921400000000020755643037'), Decimal('2.621153242800000020797154323'), Decimal('2.636848771200000020921688181'), Decimal('2.642080614000000020963199467'), Decimal('2.655160221000000021066977683'), Decimal('2.668239828000000021170755898')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.0375307606003321136967088023084215819835662841796875'), net_pnl_quote=Decimal('13.53162637549593227959121577441692352294921875'), cum_fees_quote=Decimal('0.2163285714285713978721759076506714336574077606201171875'), filled_amount_quote=Decimal('360.547619047619036791729740798473358154296875'), is_active=False, is_trading=False, custom_info={'close_price': 2.5472, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.6409223393525063}, controller_id=None),\n ExecutorInfo(id='3PcxXJLAywAeBj8mkgBaG58vBDq1fRKaB6oRJjhSNa4t', timestamp=1704669360000.0, type='dca_executor', close_timestamp=1704678180000.0, close_type=, status=, config=DCAExecutorConfig(id='3PcxXJLAywAeBj8mkgBaG58vBDq1fRKaB6oRJjhSNa4t', type='dca_executor', timestamp=1704669360000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.630328800000000164406493974'), Decimal('2.625068142400000164077680986'), Decimal('2.609286169600000163091242022'), Decimal('2.604025512000000162762429034'), Decimal('2.590873868000000161940396564'), Decimal('2.577722224000000161118364095')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.018065381088094516204289874394817161373794078826904296875'), net_pnl_quote=Decimal('-8.9195668481860952425677169230766594409942626953125'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.5472, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.5974924992766555}, controller_id=None),\n ExecutorInfo(id='HYttT7TPfvMTi63QP5UvuKR3nku2dSeeyxomnEtpWQUU', timestamp=1704678180000.0, type='dca_executor', close_timestamp=1704681420000.0, close_type=, status=, config=DCAExecutorConfig(id='HYttT7TPfvMTi63QP5UvuKR3nku2dSeeyxomnEtpWQUU', type='dca_executor', timestamp=1704678180000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.552294400000000131107391609'), Decimal('2.557398988800000131369606392'), Decimal('2.572712755200000132156250742'), Decimal('2.577817344000000132418465525'), Decimal('2.590578816000000133074002483'), Decimal('2.603340288000000133729539441')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.031414858673586766590890562156346277333796024322509765625'), net_pnl_quote=Decimal('11.326552497479152492587672895751893520355224609375'), cum_fees_quote=Decimal('0.2163285714285713978721759076506714336574077606201171875'), filled_amount_quote=Decimal('360.547619047619036791729740798473358154296875'), is_active=False, is_trading=False, custom_info={'close_price': 2.498, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.5766872420418676}, controller_id=None),\n ExecutorInfo(id='AEvoriYoHDnW6RRaapZfhkkS7vPBwbrm1sSoJ9QMghS', timestamp=1704681780000.0, type='dca_executor', close_timestamp=1704681900000.0, close_type=, status=, config=DCAExecutorConfig(id='AEvoriYoHDnW6RRaapZfhkkS7vPBwbrm1sSoJ9QMghS', type='dca_executor', timestamp=1704681780000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571433'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.506476999999999843888674744'), Decimal('2.501464045999999844200897395'), Decimal('2.486425183999999845137565346'), Decimal('2.481412229999999845449787997'), Decimal('2.468879844999999846230344623'), Decimal('2.456347459999999847010901249')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5107, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.506477}, controller_id=None),\n ExecutorInfo(id='FSMRK3cTPBfBkkLK9KfbZAf6ZCrULVH3UEoc4LpvQYFg', timestamp=1704681960000.0, type='dca_executor', close_timestamp=1704682080000.0, close_type=, status=, config=DCAExecutorConfig(id='FSMRK3cTPBfBkkLK9KfbZAf6ZCrULVH3UEoc4LpvQYFg', type='dca_executor', timestamp=1704681960000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.483722600000000133920378953'), Decimal('2.478755154800000133652538195'), Decimal('2.463852819200000132849015921'), Decimal('2.458885374000000132581175163'), Decimal('2.446466761000000131911573269'), Decimal('2.434048148000000131241971374')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.508, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.4837226}, controller_id=None),\n ExecutorInfo(id='wyqPc111MMUc5qDnwcHV69Wck1zLZjPhBSsRqs5yk4P', timestamp=1704682140000.0, type='dca_executor', close_timestamp=1704684240000.0, close_type=, status=, config=DCAExecutorConfig(id='wyqPc111MMUc5qDnwcHV69Wck1zLZjPhBSsRqs5yk4P', type='dca_executor', timestamp=1704682140000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.506377200000000076480580202'), Decimal('2.501364445600000076327619042'), Decimal('2.486326182400000075868735560'), Decimal('2.481313428000000075715774400'), Decimal('2.468781542000000075333371499'), Decimal('2.456249656000000074950968598')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.01326318625583954198543512603691851836629211902618408203125'), net_pnl_quote=Decimal('-6.5485403187462996044132523820735514163970947265625'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.435, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.475088276932536}, controller_id=None),\n ExecutorInfo(id='2bc8JNunT5958j2Dg7DnAQmK1vDgU8r9jaSssqxxPYak', timestamp=1704681420000.0, type='dca_executor', close_timestamp=1704684300000.0, close_type=, status=, config=DCAExecutorConfig(id='2bc8JNunT5958j2Dg7DnAQmK1vDgU8r9jaSssqxxPYak', type='dca_executor', timestamp=1704681420000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.502996000000000220812784723'), Decimal('2.508001992000000221254410292'), Decimal('2.523019968000000222579287001'), Decimal('2.528025960000000223020912570'), Decimal('2.540540940000000224124976494'), Decimal('2.553055920000000225229040417')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.0379631101923998404146232132916338741779327392578125'), net_pnl_quote=Decimal('2.71526626233259804621411603875458240509033203125'), cum_fees_quote=Decimal('0.0429142857142857103713851074644480831921100616455078125'), filled_amount_quote=Decimal('71.5238095238095183958648703992366790771484375'), is_active=False, is_trading=False, custom_info={'close_price': 2.4201, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.50633554992277}, controller_id=None),\n ExecutorInfo(id='6A2P272WuqcYB46gcAsNmikjuTZFAiGFhbMSpBxR9wT8', timestamp=1704684300000.0, type='dca_executor', close_timestamp=1704685680000.0, close_type=, status=, config=DCAExecutorConfig(id='6A2P272WuqcYB46gcAsNmikjuTZFAiGFhbMSpBxR9wT8', type='dca_executor', timestamp=1704684300000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142858')], prices=[Decimal('2.424940200000000140357629684'), Decimal('2.429790080400000140638344943'), Decimal('2.444339721600000141480490721'), Decimal('2.449189602000000141761205981'), Decimal('2.461314303000000142462994129'), Decimal('2.473439004000000143164782278')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.01370487273407631871602330164705563220195472240447998046875'), net_pnl_quote=Decimal('-6.9382549748729704930383377359248697757720947265625'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 2.497, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.4554044877733623}, controller_id=None),\n ExecutorInfo(id='CF37NHAeFkCkJch1ubZfvr89NHmmsz17UfKdr9y6wSLU', timestamp=1704687840000.0, type='dca_executor', close_timestamp=1704687960000.0, close_type=, status=, config=DCAExecutorConfig(id='CF37NHAeFkCkJch1ubZfvr89NHmmsz17UfKdr9y6wSLU', type='dca_executor', timestamp=1704687840000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.503383199999999963021241056'), Decimal('2.498376433599999963095198574'), Decimal('2.483356134399999963317071128'), Decimal('2.478349367999999963391028645'), Decimal('2.465832451999999963575922440'), Decimal('2.453315535999999963760816235')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5241, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.5033832}, controller_id=None),\n ExecutorInfo(id='9XM6Hm69dBpoSp1uTjEXWbtQWb9a2fyX21o4TSJtj5HH', timestamp=1704688020000.0, type='dca_executor', close_timestamp=1704688140000.0, close_type=, status=, config=DCAExecutorConfig(id='9XM6Hm69dBpoSp1uTjEXWbtQWb9a2fyX21o4TSJtj5HH', type='dca_executor', timestamp=1704688020000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.513762400000000149519802095'), Decimal('2.508734875200000149220762491'), Decimal('2.493652300800000148323643678'), Decimal('2.488624776000000148024604074'), Decimal('2.476055964000000147277005064'), Decimal('2.463487152000000146529406053')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5267, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.5137624}, controller_id=None),\n ExecutorInfo(id='8pRsJQFqxWkcKbhRyaRxjemTnHBGBUdE8XYZrWUVWFNh', timestamp=1704688200000.0, type='dca_executor', close_timestamp=1704688320000.0, close_type=, status=, config=DCAExecutorConfig(id='8pRsJQFqxWkcKbhRyaRxjemTnHBGBUdE8XYZrWUVWFNh', type='dca_executor', timestamp=1704688200000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.524640600000000059460898705'), Decimal('2.519591318800000059341976908'), Decimal('2.504443475200000058985211515'), Decimal('2.499394194000000058866289718'), Decimal('2.486770991000000058568985224'), Decimal('2.474147788000000058271680731')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.529, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.5246406}, controller_id=None),\n ExecutorInfo(id='GkVgBVpFkJgxuLBX2691DJUDUH8qpA4uiovPcksSxiAK', timestamp=1704688380000.0, type='dca_executor', close_timestamp=1704688500000.0, close_type=, status=, config=DCAExecutorConfig(id='GkVgBVpFkJgxuLBX2691DJUDUH8qpA4uiovPcksSxiAK', type='dca_executor', timestamp=1704688380000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.525039800000000015495339734'), Decimal('2.519989720400000015464349055'), Decimal('2.504839481600000015371377016'), Decimal('2.499789402000000015340386337'), Decimal('2.487164203000000015262909638'), Decimal('2.474539004000000015185432939')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5356, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.5250398}, controller_id=None),\n ExecutorInfo(id='8LtDHQpKLjnUPqLYX1m4hvuXQugA8GjpFk9ZUXzaUD8K', timestamp=1704688560000.0, type='dca_executor', close_timestamp=1704688680000.0, close_type=, status=, config=DCAExecutorConfig(id='8LtDHQpKLjnUPqLYX1m4hvuXQugA8GjpFk9ZUXzaUD8K', type='dca_executor', timestamp=1704688560000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.533722400000000167247010685'), Decimal('2.528654955200000166912516664'), Decimal('2.513452620800000165909034600'), Decimal('2.508385176000000165574540578'), Decimal('2.495716564000000164738305525'), Decimal('2.483047952000000163902070471')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5423, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.5337224000000003}, controller_id=None),\n ExecutorInfo(id='9C6V2jA2qzuJ67HXpAqeLCgRYmozDLb1uTvgox7XcAzN', timestamp=1704688740000.0, type='dca_executor', close_timestamp=1704688860000.0, close_type=, status=, config=DCAExecutorConfig(id='9C6V2jA2qzuJ67HXpAqeLCgRYmozDLb1uTvgox7XcAzN', type='dca_executor', timestamp=1704688740000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.537215400000000004148885402'), Decimal('2.532140969200000004140587631'), Decimal('2.516917676800000004115694319'), Decimal('2.511843246000000004107396548'), Decimal('2.499157169000000004086652121'), Decimal('2.486471092000000004065907694')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5456, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.5372154}, controller_id=None),\n ExecutorInfo(id='2KxrSfbdibicBNUhXou1sVgJvLMs73FDcTFhtk3P8Pdo', timestamp=1704688920000.0, type='dca_executor', close_timestamp=1704689040000.0, close_type=, status=, config=DCAExecutorConfig(id='2KxrSfbdibicBNUhXou1sVgJvLMs73FDcTFhtk3P8Pdo', type='dca_executor', timestamp=1704688920000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.536117599999999903453656858'), Decimal('2.531045364799999903646749544'), Decimal('2.515828659199999904226027603'), Decimal('2.510756423999999904419120289'), Decimal('2.498075835999999904901852005'), Decimal('2.485395247999999905384583721')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5493, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.5361176}, controller_id=None),\n ExecutorInfo(id='5F6CvLQqZrCisWFP4gRug9XgEDHEH1MtvFrqQycTB8Tq', timestamp=1704689100000.0, type='dca_executor', close_timestamp=1704689220000.0, close_type=, status=, config=DCAExecutorConfig(id='5F6CvLQqZrCisWFP4gRug9XgEDHEH1MtvFrqQycTB8Tq', type='dca_executor', timestamp=1704689100000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.544600600000000077188107295'), Decimal('2.539511398800000077033731080'), Decimal('2.524243795200000076570602437'), Decimal('2.519154594000000076416226222'), Decimal('2.506431591000000076030285686'), Decimal('2.493708588000000075644345149')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5482, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.5446006}, controller_id=None),\n ExecutorInfo(id='71NQbivdTti6dFhA1rpZnV2CAGYXxMqpXgStr9AQe4CR', timestamp=1704689280000.0, type='dca_executor', close_timestamp=1704689400000.0, close_type=, status=, config=DCAExecutorConfig(id='71NQbivdTti6dFhA1rpZnV2CAGYXxMqpXgStr9AQe4CR', type='dca_executor', timestamp=1704689280000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428569'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047617'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.553997800000000165993689626'), Decimal('2.559105795600000166325677005'), Decimal('2.574429782400000167321639143'), Decimal('2.579537778000000167653626522'), Decimal('2.592307767000000168483594970'), Decimal('2.605077756000000169313563419')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5419, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.5539978000000003}, controller_id=None),\n ExecutorInfo(id='584xc5nzxWYdmvLGC7YkxLY1MNQMqnaPsV393RrX4S8x', timestamp=1704689460000.0, type='dca_executor', close_timestamp=1704689580000.0, close_type=, status=, config=DCAExecutorConfig(id='584xc5nzxWYdmvLGC7YkxLY1MNQMqnaPsV393RrX4S8x', type='dca_executor', timestamp=1704689460000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.545681199999999969491329409'), Decimal('2.550772562399999969430312068'), Decimal('2.566046649599999969247260044'), Decimal('2.571138011999999969186242703'), Decimal('2.583866417999999969033699350'), Decimal('2.596594823999999968881155997')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5379, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.5456811999999998}, controller_id=None),\n ExecutorInfo(id='AxwG9Ngjy1njAy74Dk1qypsyxs5qu6xhprz7ut4N4jFM', timestamp=1704689640000.0, type='dca_executor', close_timestamp=1704689760000.0, close_type=, status=, config=DCAExecutorConfig(id='AxwG9Ngjy1njAy74Dk1qypsyxs5qu6xhprz7ut4N4jFM', type='dca_executor', timestamp=1704689640000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.546883599999999837066108620'), Decimal('2.551977367199999836740240837'), Decimal('2.567258668799999835762637489'), Decimal('2.572352435999999835436769706'), Decimal('2.585086853999999834622100249'), Decimal('2.597821271999999833807430792')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5402, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.5468835999999997}, controller_id=None),\n ExecutorInfo(id='8R8K54juRqjHAAfFMAWzFJWdmFwKbrYvPSKuk3NV2KFp', timestamp=1704689280000.0, type='dca_executor', close_timestamp=1704702060000.0, close_type=, status=, config=DCAExecutorConfig(id='8R8K54juRqjHAAfFMAWzFJWdmFwKbrYvPSKuk3NV2KFp', type='dca_executor', timestamp=1704689280000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.543802200000000165119225237'), Decimal('2.538714595600000164788986787'), Decimal('2.523451782400000163798271435'), Decimal('2.518364178000000163468032985'), Decimal('2.505645167000000162642436858'), Decimal('2.492926156000000161816840732')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.03180270840338129956226254080320359207689762115478515625'), net_pnl_quote=Decimal('2.26859319944119963707862552837468683719635009765625'), cum_fees_quote=Decimal('0.042800000000000004707345624410663731396198272705078125'), filled_amount_quote=Decimal('71.333333333333342807236476801335811614990234375'), is_active=False, is_trading=False, custom_info={'close_price': 2.6193, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.5404127279097466}, controller_id=None),\n ExecutorInfo(id='GeEK5CmRaXtvtciTrB1oXgcxPVrxth9z4cQL3RHum4J', timestamp=1704689820000.0, type='dca_executor', close_timestamp=1704702060000.0, close_type=, status=, config=DCAExecutorConfig(id='GeEK5CmRaXtvtciTrB1oXgcxPVrxth9z4cQL3RHum4J', type='dca_executor', timestamp=1704689820000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.547083999999999814995238489'), Decimal('2.552178167999999814625228966'), Decimal('2.567460671999999813515200397'), Decimal('2.572554839999999813145190874'), Decimal('2.585290259999999812220167066'), Decimal('2.598025679999999811295143259')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.01393955986358939337643736422478468739427626132965087890625'), net_pnl_quote=Decimal('-7.0570681280833635895533006987534463405609130859375'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 2.6193, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.5790827684475377}, controller_id=None),\n ExecutorInfo(id='8j1xtjy3gge4RVUWPZp6hxKkxF8o7XZ1q5dQp57XBDRc', timestamp=1704705660000.0, type='dca_executor', close_timestamp=1704705780000.0, close_type=, status=, config=DCAExecutorConfig(id='8j1xtjy3gge4RVUWPZp6hxKkxF8o7XZ1q5dQp57XBDRc', type='dca_executor', timestamp=1704705660000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428574'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.593877399999999778687027884'), Decimal('2.599065154799999778244401940'), Decimal('2.614628419199999776916524107'), Decimal('2.619816173999999776473898163'), Decimal('2.632785560999999775367333302'), Decimal('2.645754947999999774260768442')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.584, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.5938773999999998}, controller_id=None),\n ExecutorInfo(id='2b1fPkxhsX12NUHBMNT3wLjSoe9s8pNd6v9bA7dqAZVs', timestamp=1704705840000.0, type='dca_executor', close_timestamp=1704705960000.0, close_type=, status=, config=DCAExecutorConfig(id='2b1fPkxhsX12NUHBMNT3wLjSoe9s8pNd6v9bA7dqAZVs', type='dca_executor', timestamp=1704705840000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.587865399999999995835743559'), Decimal('2.593041130799999995827415046'), Decimal('2.608568323199999995802429507'), Decimal('2.613744053999999995794100995'), Decimal('2.626683380999999995773279712'), Decimal('2.639622707999999995752458430')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5827, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.5878654}, controller_id=None),\n ExecutorInfo(id='HqSnX5YCHgmhwzdtJR9FNJfrYoUoAeX4bwMJt5mCWpof', timestamp=1704706020000.0, type='dca_executor', close_timestamp=1704706140000.0, close_type=, status=, config=DCAExecutorConfig(id='HqSnX5YCHgmhwzdtJR9FNJfrYoUoAeX4bwMJt5mCWpof', type='dca_executor', timestamp=1704706020000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428569'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.597684999999999804317883655'), Decimal('2.602880369999999803926519422'), Decimal('2.618466479999999802752426724'), Decimal('2.623661849999999802361062492'), Decimal('2.636650274999999801382651910'), Decimal('2.649638699999999800404241328')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5964, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.597685}, controller_id=None),\n ExecutorInfo(id='32FPS6xMYR3nw59iew4KYgbfao7Xs5XRVS1Aa6C4gw3Y', timestamp=1704706200000.0, type='dca_executor', close_timestamp=1704706320000.0, close_type=, status=, config=DCAExecutorConfig(id='32FPS6xMYR3nw59iew4KYgbfao7Xs5XRVS1Aa6C4gw3Y', type='dca_executor', timestamp=1704706200000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.599187999999999861275051803'), Decimal('2.604386375999999860997601907'), Decimal('2.619981503999999860165252217'), Decimal('2.625179879999999859887802321'), Decimal('2.638175819999999859194177580'), Decimal('2.651171759999999858500552839')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5798, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.599188}, controller_id=None),\n ExecutorInfo(id='8huNA31NKhYHdf5gsRbGDDmhn5vaTxCgEd3Z5nYnttMm', timestamp=1704706380000.0, type='dca_executor', close_timestamp=1704706500000.0, close_type=, status=, config=DCAExecutorConfig(id='8huNA31NKhYHdf5gsRbGDDmhn5vaTxCgEd3Z5nYnttMm', type='dca_executor', timestamp=1704706380000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428574'), Decimal('72.00000000000000000000000005'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.584959600000000093374666331'), Decimal('2.590129519200000093561415664'), Decimal('2.605639276800000094121663662'), Decimal('2.610809196000000094308412994'), Decimal('2.623733994000000094775286326'), Decimal('2.636658792000000095242159658')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5798, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.5849596}, controller_id=None),\n ExecutorInfo(id='De9UcR7aXprEY1KAvtegjV8T8NrwnNxULb2ob5xwYPRk', timestamp=1704706560000.0, type='dca_executor', close_timestamp=1704715260000.0, close_type=, status=, config=DCAExecutorConfig(id='De9UcR7aXprEY1KAvtegjV8T8NrwnNxULb2ob5xwYPRk', type='dca_executor', timestamp=1704706560000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.578647000000000121140993069'), Decimal('2.583804294000000121383275055'), Decimal('2.599276176000000122110121014'), Decimal('2.604433470000000122352403000'), Decimal('2.617326705000000122958107965'), Decimal('2.630219940000000123563812930')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.0142964864358016245649007913698369520716369152069091796875'), net_pnl_quote=Decimal('-7.23776645439166532725039360229857265949249267578125'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 2.6533, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.611042291345295}, controller_id=None),\n ExecutorInfo(id='EYhv3pSLBn232afgsFbAUo1wQRQXPsrK5YCXsG5Hgxsf', timestamp=1704702060000.0, type='dca_executor', close_timestamp=1704715380000.0, close_type=, status=, config=DCAExecutorConfig(id='EYhv3pSLBn232afgsFbAUo1wQRQXPsrK5YCXsG5Hgxsf', type='dca_executor', timestamp=1704702060000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571433'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.614061399999999961598380616'), Decimal('2.608833277199999961675183855'), Decimal('2.593148908799999961905593571'), Decimal('2.587920785999999961982396810'), Decimal('2.574850478999999962174404907'), Decimal('2.561780171999999962366413004')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.031266794892132181160615544968095491640269756317138671875'), net_pnl_quote=Decimal('15.4376077542415490739813321852125227451324462890625'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.6591, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.581428177020543}, controller_id=None),\n ExecutorInfo(id='8Q1WyWPbh3eu7aN3LSTYuyeenA6EYKtQ1fEVyPbiyj7p', timestamp=1704715380000.0, type='dca_executor', close_timestamp=1704715500000.0, close_type=, status=, config=DCAExecutorConfig(id='8Q1WyWPbh3eu7aN3LSTYuyeenA6EYKtQ1fEVyPbiyj7p', type='dca_executor', timestamp=1704715380000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.653781800000000019035577281'), Decimal('2.648474236400000018997506126'), Decimal('2.632551545600000018883292663'), Decimal('2.627243982000000018845221508'), Decimal('2.613975073000000018750043622'), Decimal('2.600706164000000018654865735')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6544, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6537818}, controller_id=None),\n ExecutorInfo(id='97LTY8tKkyYFV9GoQwyx2SgksNykmg3EX7YQYU959Caq', timestamp=1704715560000.0, type='dca_executor', close_timestamp=1704715680000.0, close_type=, status=, config=DCAExecutorConfig(id='97LTY8tKkyYFV9GoQwyx2SgksNykmg3EX7YQYU959Caq', type='dca_executor', timestamp=1704715560000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619047'), Decimal('139.9999999999999999999999999')], prices=[Decimal('2.643202999999999854519795728'), Decimal('2.637916593999999854810756137'), Decimal('2.622057375999999855683637362'), Decimal('2.616770969999999855974597771'), Decimal('2.603554954999999856701998792'), Decimal('2.590338939999999857429399813')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.68, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6432029999999997}, controller_id=None),\n ExecutorInfo(id='3eQbCsm5KwvXkpzvTDmeMzyUow4MbAvMDDRGZPeG31QB', timestamp=1704715740000.0, type='dca_executor', close_timestamp=1704715860000.0, close_type=, status=, config=DCAExecutorConfig(id='3eQbCsm5KwvXkpzvTDmeMzyUow4MbAvMDDRGZPeG31QB', type='dca_executor', timestamp=1704715740000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380955'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571434'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.671246800000000089947013726'), Decimal('2.665904306400000089767119699'), Decimal('2.649876825600000089227437616'), Decimal('2.644534332000000089047543589'), Decimal('2.631178098000000088597808520'), Decimal('2.617821864000000088148073451')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6752, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6712468}, controller_id=None),\n ExecutorInfo(id='5B97U9nwGaQPdTFBXNuS34mZhoXoe72k59CeCJ8VoYrT', timestamp=1704715920000.0, type='dca_executor', close_timestamp=1704716040000.0, close_type=, status=, config=DCAExecutorConfig(id='5B97U9nwGaQPdTFBXNuS34mZhoXoe72k59CeCJ8VoYrT', type='dca_executor', timestamp=1704715920000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.678332599999999974359889132'), Decimal('2.672975934799999974411169354'), Decimal('2.656905939199999974565010019'), Decimal('2.651549273999999974616290241'), Decimal('2.638157610999999974744490795'), Decimal('2.624765947999999974872691349')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6862, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6783326}, controller_id=None),\n ExecutorInfo(id='FhWZ74Bzi91g2UoE7M5jzL2teetzmCoc4gZoBMyR41Ew', timestamp=1704718860000.0, type='dca_executor', close_timestamp=1704718980000.0, close_type=, status=, config=DCAExecutorConfig(id='FhWZ74Bzi91g2UoE7M5jzL2teetzmCoc4gZoBMyR41Ew', type='dca_executor', timestamp=1704718860000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.688866999999999996551904023'), Decimal('2.694244733999999996545007831'), Decimal('2.710377935999999996524319255'), Decimal('2.715755669999999996517423063'), Decimal('2.729200004999999996500182583'), Decimal('2.742644339999999996482942103')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6852, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.688867}, controller_id=None),\n ExecutorInfo(id='3HyKvwEjujjtwWaiwioTuDTjzCUPuEhs4rjS63vXDSAC', timestamp=1704719040000.0, type='dca_executor', close_timestamp=1704719160000.0, close_type=, status=, config=DCAExecutorConfig(id='3HyKvwEjujjtwWaiwioTuDTjzCUPuEhs4rjS63vXDSAC', type='dca_executor', timestamp=1704719040000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000000'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.690570400000000031438202041'), Decimal('2.695951540800000031501078445'), Decimal('2.712094963200000031689707657'), Decimal('2.717476104000000031752584061'), Decimal('2.730928956000000031909775072'), Decimal('2.744381808000000032066966082')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6749, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.6905704}, controller_id=None),\n ExecutorInfo(id='FekwuF5EBVmzpQ9epKjtDvxqvhWoHqN83rszFotS7gq8', timestamp=1704719220000.0, type='dca_executor', close_timestamp=1704719340000.0, close_type=, status=, config=DCAExecutorConfig(id='FekwuF5EBVmzpQ9epKjtDvxqvhWoHqN83rszFotS7gq8', type='dca_executor', timestamp=1704719220000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428574'), Decimal('72.00000000000000000000000006'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.682053399999999857006711955'), Decimal('2.687417506799999856720725379'), Decimal('2.703509827199999855862765651'), Decimal('2.708873933999999855576779075'), Decimal('2.722284200999999854861812634'), Decimal('2.735694467999999854146846194')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6757, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.6820534}, controller_id=None),\n ExecutorInfo(id='5AJcoXDDKwtcgfznrRCQwBkLwnaQtNtqAuSGkA3PSSps', timestamp=1704716100000.0, type='dca_executor', close_timestamp=1704729120000.0, close_type=, status=, config=DCAExecutorConfig(id='5AJcoXDDKwtcgfznrRCQwBkLwnaQtNtqAuSGkA3PSSps', type='dca_executor', timestamp=1704716100000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.694001199999999799915309517'), Decimal('2.688613197599999800315478898'), Decimal('2.672449190399999801515987041'), Decimal('2.667061187999999801916156422'), Decimal('2.653591181999999802916579874'), Decimal('2.640121175999999803917003327')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.0371008297154550581442578049973235465586185455322265625'), net_pnl_quote=Decimal('13.1239768352979950805092812515795230865478515625'), cum_fees_quote=Decimal('0.212242857142857122010326520467060618102550506591796875'), filled_amount_quote=Decimal('353.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.7631, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.668383981212223}, controller_id=None),\n ExecutorInfo(id='52cQMids319G91TFaaraxaQTiMbDRbUWuVAX2iUUph4a', timestamp=1704719400000.0, type='dca_executor', close_timestamp=1704729120000.0, close_type=, status=, config=DCAExecutorConfig(id='52cQMids319G91TFaaraxaQTiMbDRbUWuVAX2iUUph4a', type='dca_executor', timestamp=1704719400000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047624'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.680750799999999777978673675'), Decimal('2.686112301599999777534631022'), Decimal('2.702196806399999776202503064'), Decimal('2.707558307999999775758460412'), Decimal('2.720962061999999774648353780'), Decimal('2.734365815999999773538247148')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.0160133022677683110879254257952197804115712642669677734375'), net_pnl_quote=Decimal('-8.1069249076085139193992290529422461986541748046875'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 2.7631, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.714428811449466}, controller_id=None),\n ExecutorInfo(id='FsyawCzju9JH9hK6GSm4h4b6sgHP3Mf6UUEkoxdqPcVB', timestamp=1704732720000.0, type='dca_executor', close_timestamp=1704732840000.0, close_type=, status=, config=DCAExecutorConfig(id='FsyawCzju9JH9hK6GSm4h4b6sgHP3Mf6UUEkoxdqPcVB', type='dca_executor', timestamp=1704732720000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.726341799999999874095683859'), Decimal('2.731794483599999873843875227'), Decimal('2.748152534399999873088449330'), Decimal('2.753605217999999872836640698'), Decimal('2.767236926999999872207119117'), Decimal('2.780868635999999871577597536')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7182, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7263417999999997}, controller_id=None),\n ExecutorInfo(id='GmsQQ35x3ihN7XKvFDZ6kaDDUmcSgbCubBjivx9vgWSa', timestamp=1704732900000.0, type='dca_executor', close_timestamp=1704733020000.0, close_type=, status=, config=DCAExecutorConfig(id='GmsQQ35x3ihN7XKvFDZ6kaDDUmcSgbCubBjivx9vgWSa', type='dca_executor', timestamp=1704732900000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.724538200000000072733515043'), Decimal('2.729987276400000072878982073'), Decimal('2.746334505600000073315383163'), Decimal('2.751783582000000073460850193'), Decimal('2.765406273000000073824517769'), Decimal('2.779028964000000074188185344')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7206, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7245382}, controller_id=None),\n ExecutorInfo(id='HjqjdmxRmec1vZz1C8RgWZL9HfQqN98Wku5P8uFkCRdE', timestamp=1704733080000.0, type='dca_executor', close_timestamp=1704733200000.0, close_type=, status=, config=DCAExecutorConfig(id='HjqjdmxRmec1vZz1C8RgWZL9HfQqN98Wku5P8uFkCRdE', type='dca_executor', timestamp=1704733080000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.726041200000000129690683192'), Decimal('2.731493282400000129950064558'), Decimal('2.747849529600000130728208658'), Decimal('2.753301612000000130987590024'), Decimal('2.766931818000000131636043440'), Decimal('2.780562024000000132284496856')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7163, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7260412}, controller_id=None),\n ExecutorInfo(id='6eSjkcq8M5GNyGjT31kgrqtxjJcWtX7Woao3M57tkhwH', timestamp=1704733260000.0, type='dca_executor', close_timestamp=1704733380000.0, close_type=, status=, config=DCAExecutorConfig(id='6eSjkcq8M5GNyGjT31kgrqtxjJcWtX7Woao3M57tkhwH', type='dca_executor', timestamp=1704733260000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.721732599999999936748308614'), Decimal('2.727176065199999936621805231'), Decimal('2.743506460799999936242295083'), Decimal('2.748949925999999936115791700'), Decimal('2.762558588999999935799533243'), Decimal('2.776167251999999935483274786')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7209, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7217325999999997}, controller_id=None),\n ExecutorInfo(id='Dw7PUBmAGTWX3x935UwmoQBy5niXejvyfwzNrv1VHbCa', timestamp=1704733440000.0, type='dca_executor', close_timestamp=1704733560000.0, close_type=, status=, config=DCAExecutorConfig(id='Dw7PUBmAGTWX3x935UwmoQBy5niXejvyfwzNrv1VHbCa', type='dca_executor', timestamp=1704733440000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.731953000000000146066096717'), Decimal('2.737416906000000146358228910'), Decimal('2.753808624000000147234625491'), Decimal('2.759272530000000147526757684'), Decimal('2.772932295000000148257088168'), Decimal('2.786592060000000148987418651')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7261, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7319530000000003}, controller_id=None),\n ExecutorInfo(id='4ndh1SBPoBRPEeBQ9Ri68oq2bHpP5qaSzYH67wq7EWAm', timestamp=1704733620000.0, type='dca_executor', close_timestamp=1704733740000.0, close_type=, status=, config=DCAExecutorConfig(id='4ndh1SBPoBRPEeBQ9Ri68oq2bHpP5qaSzYH67wq7EWAm', type='dca_executor', timestamp=1704733620000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.739067200000000030016289453'), Decimal('2.744545334400000030076322032'), Decimal('2.760979737600000030256419769'), Decimal('2.766457872000000030316452348'), Decimal('2.780153208000000030466533795'), Decimal('2.793848544000000030616615242')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7268, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7390672}, controller_id=None),\n ExecutorInfo(id='3YAt8KaTTqtan5LbSyKeo1AcvJTuVeMrgV9LSwYr3hvt', timestamp=1704733800000.0, type='dca_executor', close_timestamp=1704733920000.0, close_type=, status=, config=DCAExecutorConfig(id='3YAt8KaTTqtan5LbSyKeo1AcvJTuVeMrgV9LSwYr3hvt', type='dca_executor', timestamp=1704733800000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.737764599999999950988251173'), Decimal('2.743240129199999950890227675'), Decimal('2.759666716799999950596157182'), Decimal('2.765142245999999950498133685'), Decimal('2.778831068999999950253074941'), Decimal('2.792519891999999950008016196')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7303, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7377645999999998}, controller_id=None),\n ExecutorInfo(id='A1CAebyAraYN1Gyvf2vCYBRrNDQMh7H6Pw1WUwc6Lic2', timestamp=1704733980000.0, type='dca_executor', close_timestamp=1704734100000.0, close_type=, status=, config=DCAExecutorConfig(id='A1CAebyAraYN1Gyvf2vCYBRrNDQMh7H6Pw1WUwc6Lic2', type='dca_executor', timestamp=1704733980000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.747283600000000015065390601'), Decimal('2.752778167200000015095521382'), Decimal('2.769261868800000015185913726'), Decimal('2.774756436000000015216044507'), Decimal('2.788492854000000015291371460'), Decimal('2.802229272000000015366698413')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7409, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7472836}, controller_id=None),\n ExecutorInfo(id='BsDD4chiLzSMDvrCwdPQU6DwkRfdkpTghtr8VGTaDHei', timestamp=1704734160000.0, type='dca_executor', close_timestamp=1704734280000.0, close_type=, status=, config=DCAExecutorConfig(id='BsDD4chiLzSMDvrCwdPQU6DwkRfdkpTghtr8VGTaDHei', type='dca_executor', timestamp=1704734160000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.732153400000000123995226585'), Decimal('2.737617706800000124243217038'), Decimal('2.754010627200000124987188398'), Decimal('2.759474934000000125235178851'), Decimal('2.773135701000000125855154984'), Decimal('2.786796468000000126475131117')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7317, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7321534}, controller_id=None),\n ExecutorInfo(id='GyjEp5KznE7beSYpYQM9casGo4Hg4pFt6UyuLWdS9xVk', timestamp=1704734340000.0, type='dca_executor', close_timestamp=1704734460000.0, close_type=, status=, config=DCAExecutorConfig(id='GyjEp5KznE7beSYpYQM9casGo4Hg4pFt6UyuLWdS9xVk', type='dca_executor', timestamp=1704734340000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000005'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.737163400000000017200861567'), Decimal('2.742637726800000017235263290'), Decimal('2.759060707200000017338468460'), Decimal('2.764535034000000017372870183'), Decimal('2.778220851000000017458874491'), Decimal('2.791906668000000017544878798')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7322, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7371634}, controller_id=None),\n ExecutorInfo(id='A9jHkiQ4AQyxuz7Snq3oQBMDJwEhe3DeYwyAeYDhPWUa', timestamp=1704734520000.0, type='dca_executor', close_timestamp=1704738720000.0, close_type=, status=, config=DCAExecutorConfig(id='A9jHkiQ4AQyxuz7Snq3oQBMDJwEhe3DeYwyAeYDhPWUa', type='dca_executor', timestamp=1704734520000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428574'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.730349799999999877655669499'), Decimal('2.735810499599999877410980838'), Decimal('2.752192598399999876676914855'), Decimal('2.757653297999999876432226194'), Decimal('2.771305046999999875820504541'), Decimal('2.784956795999999875208782889')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.0150632936348847508434278807953887735493481159210205078125'), net_pnl_quote=Decimal('-7.62597172758462971131621088716201484203338623046875'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 2.8107, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.7646509188602266}, controller_id=None),\n ExecutorInfo(id='FK9NACu5Lhv5DWmG6p5LAEhe9o3MudixhVK9sWWcqvro', timestamp=1704729120000.0, type='dca_executor', close_timestamp=1704738900000.0, close_type=, status=, config=DCAExecutorConfig(id='FK9NACu5Lhv5DWmG6p5LAEhe9o3MudixhVK9sWWcqvro', type='dca_executor', timestamp=1704729120000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571435'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.757573800000000111217061949'), Decimal('2.752058652400000110994627825'), Decimal('2.735513209600000110327325453'), Decimal('2.729998062000000110104891330'), Decimal('2.716210193000000109548806020'), Decimal('2.702422324000000108992720710')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.0325987909926984398278904109247378073632717132568359375'), net_pnl_quote=Decimal('11.5314342328219208155815067584626376628875732421875'), cum_fees_quote=Decimal('0.212242857142857122010326520467060618102550506591796875'), filled_amount_quote=Decimal('353.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.8183, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.731352070270243}, controller_id=None),\n ExecutorInfo(id='J9gmjwwFYxjczMgFy3kuXkwdb15wLdU9HiXPs2SNBD26', timestamp=1704738900000.0, type='dca_executor', close_timestamp=1704739020000.0, close_type=, status=, config=DCAExecutorConfig(id='J9gmjwwFYxjczMgFy3kuXkwdb15wLdU9HiXPs2SNBD26', type='dca_executor', timestamp=1704738900000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380955'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571434'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000001')], prices=[Decimal('2.812663399999999805583332513'), Decimal('2.807038073199999805972165848'), Decimal('2.790162092799999807138665853'), Decimal('2.784536765999999807527499188'), Decimal('2.770473448999999808499582525'), Decimal('2.756410131999999809471665863')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8156, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.8126634}, controller_id=None),\n ExecutorInfo(id='Dq4tJruPAM5PgyQiXyVhwjyFeBWVFrPTSPbQ9TfD21KR', timestamp=1704742320000.0, type='dca_executor', close_timestamp=1704742440000.0, close_type=, status=, config=DCAExecutorConfig(id='Dq4tJruPAM5PgyQiXyVhwjyFeBWVFrPTSPbQ9TfD21KR', type='dca_executor', timestamp=1704742320000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428570'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.845780200000000069178733574'), Decimal('2.851471760400000069317091041'), Decimal('2.868546441600000069732163443'), Decimal('2.874238002000000069870520910'), Decimal('2.888466903000000070216414578'), Decimal('2.902695804000000070562308245')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.837, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.8457802}, controller_id=None),\n ExecutorInfo(id='6JWbJcQ8i7uW8wQYcicMRgUDuXew6CWguLXnyWpmv1Vc', timestamp=1704742500000.0, type='dca_executor', close_timestamp=1704742620000.0, close_type=, status=, config=DCAExecutorConfig(id='6JWbJcQ8i7uW8wQYcicMRgUDuXew6CWguLXnyWpmv1Vc', type='dca_executor', timestamp=1704742500000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.844577800000000201603954363'), Decimal('2.850266955600000202007162272'), Decimal('2.867334422400000203216785998'), Decimal('2.873023578000000203619993907'), Decimal('2.887246467000000204628013678'), Decimal('2.901469356000000205636033450')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8418, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.8445778}, controller_id=None),\n ExecutorInfo(id='AXzrWzgf6CQRToN7LyPX4zG5jgbnxQ9GirJX3fvcQwYk', timestamp=1704742680000.0, type='dca_executor', close_timestamp=1704742800000.0, close_type=, status=, config=DCAExecutorConfig(id='AXzrWzgf6CQRToN7LyPX4zG5jgbnxQ9GirJX3fvcQwYk', type='dca_executor', timestamp=1704742680000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.851291200000000129695887362'), Decimal('2.856993782400000129955279137'), Decimal('2.874101529600000130733454461'), Decimal('2.879804112000000130992846236'), Decimal('2.894060568000000131641325672'), Decimal('2.908317024000000132289805109')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8277, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.8512912}, controller_id=None),\n ExecutorInfo(id='4Q8mvfckdKqpjuaadsfBwBjQd5YUEpb5bA4k68uqFBqw', timestamp=1704742860000.0, type='dca_executor', close_timestamp=1704742980000.0, close_type=, status=, config=DCAExecutorConfig(id='4Q8mvfckdKqpjuaadsfBwBjQd5YUEpb5bA4k68uqFBqw', type='dca_executor', timestamp=1704742860000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000003'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.840970600000000153902228460'), Decimal('2.846652541200000154210032917'), Decimal('2.863698364800000155133446288'), Decimal('2.869380306000000155441250745'), Decimal('2.883585159000000156210761887'), Decimal('2.897790012000000156980273029')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.8384, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.8409706000000003}, controller_id=None),\n ExecutorInfo(id='EJxBAdHDXJd7ksisoZsioCMQJnDfReig2dCiC9q8cmZv', timestamp=1704743040000.0, type='dca_executor', close_timestamp=1704760080000.0, close_type=, status=, config=DCAExecutorConfig(id='EJxBAdHDXJd7ksisoZsioCMQJnDfReig2dCiC9q8cmZv', type='dca_executor', timestamp=1704743040000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.843876400000000056363305688'), Decimal('2.849564152800000056476032299'), Decimal('2.866627411200000056814212134'), Decimal('2.872315164000000056926938745'), Decimal('2.886534546000000057208755273'), Decimal('2.900753928000000057490571802')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.03310010250620980254421255040142568759620189666748046875'), net_pnl_quote=Decimal('7.9345674293457211234681381029076874256134033203125'), cum_fees_quote=Decimal('0.1438285714285714167459673262783326208591461181640625'), filled_amount_quote=Decimal('239.71428571428572240620269440114498138427734375'), is_active=False, is_trading=False, custom_info={'close_price': 2.7714, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.8632536269606677}, controller_id=None),\n ExecutorInfo(id='F9C3hrsEfT8BrLGJPCr2RZRJe9cTLcAeFqcRE3qFz9Uz', timestamp=1704739080000.0, type='dca_executor', close_timestamp=1704773940000.0, close_type=, status=, config=DCAExecutorConfig(id='F9C3hrsEfT8BrLGJPCr2RZRJe9cTLcAeFqcRE3qFz9Uz', type='dca_executor', timestamp=1704739080000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714285'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.817453800000000164398687719'), Decimal('2.811818892400000164069890344'), Decimal('2.794914169600000163083498217'), Decimal('2.789279262000000162754700842'), Decimal('2.775191993000000161932707403'), Decimal('2.761104724000000161110713965')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.01522397459528530838657189860896323807537555694580078125'), net_pnl_quote=Decimal('-7.5166562186293202074693908798508346080780029296875'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.734, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.782281482284082}, controller_id=None),\n ExecutorInfo(id='8erKNH4PxGxGCw1WmjCR3yrfkoJh52Vzv2RKhGF1T2Mt', timestamp=1704777540000.0, type='dca_executor', close_timestamp=1704777660000.0, close_type=, status=, config=DCAExecutorConfig(id='8erKNH4PxGxGCw1WmjCR3yrfkoJh52Vzv2RKhGF1T2Mt', type='dca_executor', timestamp=1704777540000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.758871200000000189929511008'), Decimal('2.753353457600000189549651986'), Decimal('2.736800230400000188410074920'), Decimal('2.731282488000000188030215898'), Decimal('2.717488132000000187080568343'), Decimal('2.703693776000000186130920788')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7653, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7588712}, controller_id=None),\n ExecutorInfo(id='Db2mmQaSW7peRfaR56jFfeF6rnkR2QKSJoSeQm996Uui', timestamp=1704760080000.0, type='dca_executor', close_timestamp=1704791700000.0, close_type=, status=, config=DCAExecutorConfig(id='Db2mmQaSW7peRfaR56jFfeF6rnkR2QKSJoSeQm996Uui', type='dca_executor', timestamp=1704760080000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.776942799999999863418329026'), Decimal('2.782496685599999863145165684'), Decimal('2.799158342399999862325675658'), Decimal('2.804712227999999862052512316'), Decimal('2.818596941999999861369603961'), Decimal('2.832481655999999860686695607')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.036861732644866140873318727244623005390167236328125'), net_pnl_quote=Decimal('2.6364915444089973561858641915023326873779296875'), cum_fees_quote=Decimal('0.0429142857142857103713851074644480831921100616455078125'), filled_amount_quote=Decimal('71.5238095238095183958648703992366790771484375'), is_active=False, is_trading=False, custom_info={'close_price': 2.686, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.780647855506791}, controller_id=None),\n ExecutorInfo(id='CboGuSxy9PYAfXEGh7baRVoyeNx1tSZ4GDNDGpau9rwA', timestamp=1704777720000.0, type='dca_executor', close_timestamp=1704792000000.0, close_type=, status=, config=DCAExecutorConfig(id='CboGuSxy9PYAfXEGh7baRVoyeNx1tSZ4GDNDGpau9rwA', type='dca_executor', timestamp=1704777720000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.760767400000000202693621609'), Decimal('2.755245865200000202288234366'), Decimal('2.738681260800000201072072636'), Decimal('2.733159726000000200666685393'), Decimal('2.719355889000000199653217285'), Decimal('2.705552052000000198639749177')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.0159798523983966135608714154159315512515604496002197265625'), net_pnl_quote=Decimal('-7.88986188537025245892664315761066973209381103515625'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.6789, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7263027396983652}, controller_id=None),\n ExecutorInfo(id='8To54dk9VXwfTPamAiDBLhK1WhpEZztGaU8d7eQEkyrC', timestamp=1704795600000.0, type='dca_executor', close_timestamp=1704795720000.0, close_type=, status=, config=DCAExecutorConfig(id='8To54dk9VXwfTPamAiDBLhK1WhpEZztGaU8d7eQEkyrC', type='dca_executor', timestamp=1704795600000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.692903400000000142421112404'), Decimal('2.687517593200000142136270179'), Decimal('2.671360172800000141281743505'), Decimal('2.665974366000000140996901280'), Decimal('2.652509849000000140284795718'), Decimal('2.639045332000000139572690156')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7007, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6929034}, controller_id=None),\n ExecutorInfo(id='8q4UCiPfCpewkvBfag2jQzqi5XVumvMGGuyi5pD4B8Wy', timestamp=1704795780000.0, type='dca_executor', close_timestamp=1704795900000.0, close_type=, status=, config=DCAExecutorConfig(id='8q4UCiPfCpewkvBfag2jQzqi5XVumvMGGuyi5pD4B8Wy', type='dca_executor', timestamp=1704795780000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.697793599999999825443530721'), Decimal('2.692398012799999825792643660'), Decimal('2.676211251199999826839982475'), Decimal('2.670815663999999827189095414'), Decimal('2.657326695999999828061877760'), Decimal('2.643837727999999828934660107')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.703, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6977936}, controller_id=None),\n ExecutorInfo(id='Dpdo7xPAZzdJssPVVUwHF1UDc72boCLWFwH72LCu9vxM', timestamp=1704795960000.0, type='dca_executor', close_timestamp=1704796080000.0, close_type=, status=, config=DCAExecutorConfig(id='Dpdo7xPAZzdJssPVVUwHF1UDc72boCLWFwH72LCu9vxM', type='dca_executor', timestamp=1704795960000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.700288600000000215460334296'), Decimal('2.694888022800000215029413627'), Decimal('2.678686291200000213736651622'), Decimal('2.673285714000000213305730953'), Decimal('2.659784271000000212228429282'), Decimal('2.646282828000000211151127610')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7026, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7002886000000004}, controller_id=None),\n ExecutorInfo(id='HwWrDYT95sTwy2aDUPT95u9b8kFw7VPitJmXYV9UdT3E', timestamp=1704796140000.0, type='dca_executor', close_timestamp=1704796260000.0, close_type=, status=, config=DCAExecutorConfig(id='HwWrDYT95sTwy2aDUPT95u9b8kFw7VPitJmXYV9UdT3E', type='dca_executor', timestamp=1704796140000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714291'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.694500199999999966558876519'), Decimal('2.689111199599999966625758766'), Decimal('2.672944198399999966826405507'), Decimal('2.667555197999999966893287754'), Decimal('2.654082696999999967060493371'), Decimal('2.640610195999999967227698989')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6995, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6945002}, controller_id=None),\n ExecutorInfo(id='9z1NQSNCtrXwu9s4rAT5jog6XtTAxJDnvCWitgNfR9ef', timestamp=1704796320000.0, type='dca_executor', close_timestamp=1704796440000.0, close_type=, status=, config=DCAExecutorConfig(id='9z1NQSNCtrXwu9s4rAT5jog6XtTAxJDnvCWitgNfR9ef', type='dca_executor', timestamp=1704796320000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.694101000000000010524435490'), Decimal('2.688712798000000010503386619'), Decimal('2.672548192000000010440240006'), Decimal('2.667159990000000010419191135'), Decimal('2.653689485000000010366568958'), Decimal('2.640218980000000010313946780')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6995, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.694101}, controller_id=None),\n ExecutorInfo(id='ARnd45aYRTXR8vwTCs1exrwtMj16zyRAV9qVmaoPS6oA', timestamp=1704796500000.0, type='dca_executor', close_timestamp=1704796620000.0, close_type=, status=, config=DCAExecutorConfig(id='ARnd45aYRTXR8vwTCs1exrwtMj16zyRAV9qVmaoPS6oA', type='dca_executor', timestamp=1704796500000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.694101000000000010524435490'), Decimal('2.688712798000000010503386619'), Decimal('2.672548192000000010440240006'), Decimal('2.667159990000000010419191135'), Decimal('2.653689485000000010366568958'), Decimal('2.640218980000000010313946780')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.697, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.694101}, controller_id=None),\n ExecutorInfo(id='AFYF7a4KaS1rCCXLte5DfTPPF5ad6AZfmnXApKMykH2w', timestamp=1704796680000.0, type='dca_executor', close_timestamp=1704796800000.0, close_type=, status=, config=DCAExecutorConfig(id='AFYF7a4KaS1rCCXLte5DfTPPF5ad6AZfmnXApKMykH2w', type='dca_executor', timestamp=1704796680000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.692005200000000019743104374'), Decimal('2.686621189600000019703618165'), Decimal('2.670469158400000019585159539'), Decimal('2.665085148000000019545673330'), Decimal('2.651625122000000019446957808'), Decimal('2.638165096000000019348242287')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7045, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6920052}, controller_id=None),\n ExecutorInfo(id='5NvbuRaT1sB4DmrPbDSJjeVrNuE4tdCahWTwu23k685u', timestamp=1704796860000.0, type='dca_executor', close_timestamp=1704796980000.0, close_type=, status=, config=DCAExecutorConfig(id='5NvbuRaT1sB4DmrPbDSJjeVrNuE4tdCahWTwu23k685u', type='dca_executor', timestamp=1704796860000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.699090999999999904155979780'), Decimal('2.693692817999999904347667820'), Decimal('2.677498271999999904922731942'), Decimal('2.672100089999999905114419982'), Decimal('2.658604634999999905593640083'), Decimal('2.645109179999999906072860184')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.702, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6990909999999997}, controller_id=None),\n ExecutorInfo(id='2q7EFjNpHBAhmWQHU4Dk6Afk3E3WchKNZXSBs5B6J3bw', timestamp=1704797040000.0, type='dca_executor', close_timestamp=1704797160000.0, close_type=, status=, config=DCAExecutorConfig(id='2q7EFjNpHBAhmWQHU4Dk6Afk3E3WchKNZXSBs5B6J3bw', type='dca_executor', timestamp=1704797040000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571433'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.696595999999999957340207635'), Decimal('2.691202807999999957425527220'), Decimal('2.675023231999999957681485974'), Decimal('2.669630039999999957766805559'), Decimal('2.656147059999999957980104520'), Decimal('2.642664079999999958193403482')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6982, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.696596}, controller_id=None),\n ExecutorInfo(id='FiNogpiBpB6KTXrDGWAxzwgKMgSMn5zWccajP3f2VBfi', timestamp=1704797220000.0, type='dca_executor', close_timestamp=1704797340000.0, close_type=, status=, config=DCAExecutorConfig(id='FiNogpiBpB6KTXrDGWAxzwgKMgSMn5zWccajP3f2VBfi', type='dca_executor', timestamp=1704797220000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.688611999999999950249324199'), Decimal('2.683234775999999950348825551'), Decimal('2.667103103999999950647329605'), Decimal('2.661725879999999950746830957'), Decimal('2.648282819999999950995584336'), Decimal('2.634839759999999951244337715')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6905, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.688612}, controller_id=None),\n ExecutorInfo(id='DyBQ9o5moFXHqtL58eSoLX1MUzWNcHC3i2ZquUJM7hyS', timestamp=1704797400000.0, type='dca_executor', close_timestamp=1704797520000.0, close_type=, status=, config=DCAExecutorConfig(id='DyBQ9o5moFXHqtL58eSoLX1MUzWNcHC3i2ZquUJM7hyS', type='dca_executor', timestamp=1704797400000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.681825599999999811261763849'), Decimal('2.676461948799999811639240321'), Decimal('2.660370995199999812771669738'), Decimal('2.655007343999999813149146211'), Decimal('2.641598215999999814092837391'), Decimal('2.628189087999999815036528572')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6901, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6818256}, controller_id=None),\n ExecutorInfo(id='6uQqdbMBG7TrDhai5JTVwgb6erP38DHEmzxuwwWuee8U', timestamp=1704797580000.0, type='dca_executor', close_timestamp=1704797700000.0, close_type=, status=, config=DCAExecutorConfig(id='6uQqdbMBG7TrDhai5JTVwgb6erP38DHEmzxuwwWuee8U', type='dca_executor', timestamp=1704797580000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.682424400000000188514456823'), Decimal('2.677059551200000188137427909'), Decimal('2.660965004800000187006341168'), Decimal('2.655600156000000186629312255'), Decimal('2.642188034000000185686739971'), Decimal('2.628775912000000184744167687')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6871, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6824244000000004}, controller_id=None),\n ExecutorInfo(id='FEgC3X6FRkbFH52XWQaevSdbMaB8K3TpRUSd5dTRXEuy', timestamp=1704797760000.0, type='dca_executor', close_timestamp=1704797880000.0, close_type=, status=, config=DCAExecutorConfig(id='FEgC3X6FRkbFH52XWQaevSdbMaB8K3TpRUSd5dTRXEuy', type='dca_executor', timestamp=1704797760000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380955'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571433'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.679929399999999798497653247'), Decimal('2.674569541199999798900657941'), Decimal('2.658489964799999800109672021'), Decimal('2.653130105999999800512676715'), Decimal('2.639730458999999801520188448'), Decimal('2.626330811999999802527700182')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6853, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6799294}, controller_id=None),\n ExecutorInfo(id='DmhGg1rnbt2EFzZZotGDWWxE1553Sz9C4f5JaYZxJVKC', timestamp=1704797940000.0, type='dca_executor', close_timestamp=1704798060000.0, close_type=, status=, config=DCAExecutorConfig(id='DmhGg1rnbt2EFzZZotGDWWxE1553Sz9C4f5JaYZxJVKC', type='dca_executor', timestamp=1704797940000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380950'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.680627999999999943158440763'), Decimal('2.675266743999999943272123881'), Decimal('2.659182975999999943613173237'), Decimal('2.653821719999999943726856355'), Decimal('2.640418579999999944011064152'), Decimal('2.627015439999999944295271948')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6884, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.680628}, controller_id=None),\n ExecutorInfo(id='9wHU1YQ9VPuvSidaeeCUU4uyoFqexPaVLHLRyKpV37s1', timestamp=1704798120000.0, type='dca_executor', close_timestamp=1704798240000.0, close_type=, status=, config=DCAExecutorConfig(id='9wHU1YQ9VPuvSidaeeCUU4uyoFqexPaVLHLRyKpV37s1', type='dca_executor', timestamp=1704798120000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.688013200000000016197662656'), Decimal('2.682637173600000016165267331'), Decimal('2.666509094400000016068081355'), Decimal('2.661133068000000016035686029'), Decimal('2.647693002000000015954697716'), Decimal('2.634252936000000015873709403')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6934, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6880132}, controller_id=None),\n ExecutorInfo(id='h9qFHGvxsaoBUZxjBwiC5xXTTRtzSVimVJfmXi8AzXk', timestamp=1704798300000.0, type='dca_executor', close_timestamp=1704798420000.0, close_type=, status=, config=DCAExecutorConfig(id='h9qFHGvxsaoBUZxjBwiC5xXTTRtzSVimVJfmXi8AzXk', type='dca_executor', timestamp=1704798300000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.688711800000000160858450171'), Decimal('2.683334376400000160536733271'), Decimal('2.667202105600000159571582570'), Decimal('2.661824682000000159249865669'), Decimal('2.648381123000000158445573418'), Decimal('2.634937564000000157641281168')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6915, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6887118}, controller_id=None),\n ExecutorInfo(id='HMjbk4mUj7UEGKinfDiGxu1bcVVqkSE9CKfPkAw2kgxs', timestamp=1704798480000.0, type='dca_executor', close_timestamp=1704798600000.0, close_type=, status=, config=DCAExecutorConfig(id='HMjbk4mUj7UEGKinfDiGxu1bcVVqkSE9CKfPkAw2kgxs', type='dca_executor', timestamp=1704798480000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.686715799999999937485213597'), Decimal('2.681342368399999937610243170'), Decimal('2.665222073599999937985331888'), Decimal('2.659848641999999938110361461'), Decimal('2.646415062999999938422935393'), Decimal('2.632981483999999938735509325')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6921, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6867158}, controller_id=None),\n ExecutorInfo(id='Fe8TR1jqxrrSTiW5m4pZJKZ4vVEc6UHz27YJTsMEQW5L', timestamp=1704798660000.0, type='dca_executor', close_timestamp=1704798780000.0, close_type=, status=, config=DCAExecutorConfig(id='Fe8TR1jqxrrSTiW5m4pZJKZ4vVEc6UHz27YJTsMEQW5L', type='dca_executor', timestamp=1704798660000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.686715799999999937485213597'), Decimal('2.681342368399999937610243170'), Decimal('2.665222073599999937985331888'), Decimal('2.659848641999999938110361461'), Decimal('2.646415062999999938422935393'), Decimal('2.632981483999999938735509325')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6921, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6867158}, controller_id=None),\n ExecutorInfo(id='Agi495JReE4EpfqBLEJEZjsu89GLkh9WBKmSrBX9TvTB', timestamp=1704798840000.0, type='dca_executor', close_timestamp=1704798960000.0, close_type=, status=, config=DCAExecutorConfig(id='Agi495JReE4EpfqBLEJEZjsu89GLkh9WBKmSrBX9TvTB', type='dca_executor', timestamp=1704798840000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.686715799999999937485213597'), Decimal('2.681342368399999937610243170'), Decimal('2.665222073599999937985331888'), Decimal('2.659848641999999938110361461'), Decimal('2.646415062999999938422935393'), Decimal('2.632981483999999938735509325')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6971, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6867158}, controller_id=None),\n ExecutorInfo(id='HdpzKPfS24fu4vm8otwAEnBAKgDnUChfk6Nac9fcTUyD', timestamp=1704799020000.0, type='dca_executor', close_timestamp=1704799140000.0, close_type=, status=, config=DCAExecutorConfig(id='HdpzKPfS24fu4vm8otwAEnBAKgDnUChfk6Nac9fcTUyD', type='dca_executor', timestamp=1704799020000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.696096999999999790696640634'), Decimal('2.690704805999999791115247353'), Decimal('2.674528223999999792371067509'), Decimal('2.669136029999999792789674228'), Decimal('2.655655544999999793836191024'), Decimal('2.642175059999999794882707821')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.702, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.696097}, controller_id=None),\n ExecutorInfo(id='6WqixtyNTd64qzHyrBiWH6tKxvxRF1eKBXnoLQfVqUae', timestamp=1704799200000.0, type='dca_executor', close_timestamp=1704799320000.0, close_type=, status=, config=DCAExecutorConfig(id='6WqixtyNTd64qzHyrBiWH6tKxvxRF1eKBXnoLQfVqUae', type='dca_executor', timestamp=1704799200000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.696895400000000145966554122'), Decimal('2.691501609200000145674621014'), Decimal('2.675320236800000144798821689'), Decimal('2.669926446000000144506888581'), Decimal('2.656441969000000143777055810'), Decimal('2.642957492000000143047223040')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7099, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6968954000000003}, controller_id=None),\n ExecutorInfo(id='SffP8V59qViDWk7hH6g9SoUrcoxWbGpEfUHRixhcbJZ', timestamp=1704799380000.0, type='dca_executor', close_timestamp=1704799500000.0, close_type=, status=, config=DCAExecutorConfig(id='SffP8V59qViDWk7hH6g9SoUrcoxWbGpEfUHRixhcbJZ', type='dca_executor', timestamp=1704799380000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571427'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.705777599999999832534414157'), Decimal('2.700366044799999832869345329'), Decimal('2.684131379199999833874138844'), Decimal('2.678719823999999834209070015'), Decimal('2.665190935999999835046397945'), Decimal('2.651662047999999835883725874')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7114, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7057776}, controller_id=None),\n ExecutorInfo(id='Q9vD6rEv5Bvc8P4ZaYUXPugmbk22CnenXGVT7bPBiVC', timestamp=1704799560000.0, type='dca_executor', close_timestamp=1704799680000.0, close_type=, status=, config=DCAExecutorConfig(id='Q9vD6rEv5Bvc8P4ZaYUXPugmbk22CnenXGVT7bPBiVC', type='dca_executor', timestamp=1704799560000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.707374400000000099873209702'), Decimal('2.701959651200000099673463283'), Decimal('2.685715404800000099074224024'), Decimal('2.680300656000000098874477605'), Decimal('2.666763784000000098375111556'), Decimal('2.653226912000000097875745508')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7121, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7073744}, controller_id=None),\n ExecutorInfo(id='HuMyKFrnrRPPDrib1HsrUvoPasmjmXqmpM1hV7F1md9x', timestamp=1704799740000.0, type='dca_executor', close_timestamp=1704799860000.0, close_type=, status=, config=DCAExecutorConfig(id='HuMyKFrnrRPPDrib1HsrUvoPasmjmXqmpM1hV7F1md9x', type='dca_executor', timestamp=1704799740000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.706675799999999955212422187'), Decimal('2.701262448399999955301997343'), Decimal('2.685022393599999955570722810'), Decimal('2.679609041999999955660297965'), Decimal('2.666075662999999955884235854'), Decimal('2.652542283999999956108173743')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7121, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7066757999999997}, controller_id=None),\n ExecutorInfo(id='CeuvWDiGCfu4o3e5ZD58mm7M3Li128QPuDM7yx7b9o6H', timestamp=1704799920000.0, type='dca_executor', close_timestamp=1704800040000.0, close_type=, status=, config=DCAExecutorConfig(id='CeuvWDiGCfu4o3e5ZD58mm7M3Li128QPuDM7yx7b9o6H', type='dca_executor', timestamp=1704799920000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.706675799999999955212422187'), Decimal('2.701262448399999955301997343'), Decimal('2.685022393599999955570722810'), Decimal('2.679609041999999955660297965'), Decimal('2.666075662999999955884235854'), Decimal('2.652542283999999956108173743')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.7077, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.7066757999999997}, controller_id=None),\n ExecutorInfo(id='8PqXdfAi8EGmZh99j8MyNgyq6MhPwxqGak8dBVLZdhYL', timestamp=1704791700000.0, type='dca_executor', close_timestamp=1704804960000.0, close_type=, status=, config=DCAExecutorConfig(id='8PqXdfAi8EGmZh99j8MyNgyq6MhPwxqGak8dBVLZdhYL', type='dca_executor', timestamp=1704791700000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.691371999999999943154721514'), Decimal('2.696754743999999943041030957'), Decimal('2.712902975999999942699959286'), Decimal('2.718285719999999942586268729'), Decimal('2.731742579999999942302042337'), Decimal('2.745199439999999942017815944')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.045790110121999315351271064855609438382089138031005859375'), net_pnl_quote=Decimal('3.2750831144401413297373437671922147274017333984375'), cum_fees_quote=Decimal('0.0429142857142857103713851074644480831921100616455078125'), filled_amount_quote=Decimal('71.5238095238095183958648703992366790771484375'), is_active=False, is_trading=False, custom_info={'close_price': 2.5736, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.6949628851451397}, controller_id=None),\n ExecutorInfo(id='GMvKfogWv1dDx9RvzLkSqM3iLribZBMB7PfyLa3EAazf', timestamp=1704800100000.0, type='dca_executor', close_timestamp=1704804960000.0, close_type=, status=, config=DCAExecutorConfig(id='GMvKfogWv1dDx9RvzLkSqM3iLribZBMB7PfyLa3EAazf', type='dca_executor', timestamp=1704800100000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.702384400000000206241665413'), Decimal('2.696979631200000205829182082'), Decimal('2.680765324800000204591732090'), Decimal('2.675360556000000204179248759'), Decimal('2.661848634000000203148040432'), Decimal('2.648336712000000202116832105')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.026780683021526731357742079353556619025766849517822265625'), net_pnl_quote=Decimal('-13.2226434242238060079444039729423820972442626953125'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.5736, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6686485770000483}, controller_id=None),\n ExecutorInfo(id='3n1imgepneMBt9yYv29YzYhPa97FmN9ti6RuvxE3vweU', timestamp=1704804960000.0, type='dca_executor', close_timestamp=1704806220000.0, close_type=, status=, config=DCAExecutorConfig(id='3n1imgepneMBt9yYv29YzYhPa97FmN9ti6RuvxE3vweU', type='dca_executor', timestamp=1704804960000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047623'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.578747199999999887616863868'), Decimal('2.583904694399999887392097596'), Decimal('2.599377177599999886717798779'), Decimal('2.604534671999999886493032507'), Decimal('2.617428407999999885931116826'), Decimal('2.630322143999999885369201145')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.0111603318274736788839884837898352998308837413787841796875'), net_pnl_quote=Decimal('-5.6500508487517340228123430279083549976348876953125'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 2.6521, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.6111437501481447}, controller_id=None),\n ExecutorInfo(id='GRFKuQxgZiPBu1uhsbkHMueWrWr8kZ5RMkvg8BbKmSby', timestamp=1704808560000.0, type='dca_executor', close_timestamp=1704808680000.0, close_type=, status=, config=DCAExecutorConfig(id='GRFKuQxgZiPBu1uhsbkHMueWrWr8kZ5RMkvg8BbKmSby', type='dca_executor', timestamp=1704808560000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.671646000000000045981454755'), Decimal('2.666302708000000045889491845'), Decimal('2.650272832000000045613603117'), Decimal('2.644929540000000045521640207'), Decimal('2.631571310000000045291732934'), Decimal('2.618213080000000045061825660')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6825, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.671646}, controller_id=None),\n ExecutorInfo(id='63HWTZjiQJSYxtFyC47KhmhiWvVchEdjF8osuA6qVygV', timestamp=1704808740000.0, type='dca_executor', close_timestamp=1704808860000.0, close_type=, status=, config=DCAExecutorConfig(id='63HWTZjiQJSYxtFyC47KhmhiWvVchEdjF8osuA6qVygV', type='dca_executor', timestamp=1704808740000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.676236799999999983578558016'), Decimal('2.670884326399999983611400900'), Decimal('2.654826905599999983709929552'), Decimal('2.649474431999999983742772436'), Decimal('2.636093247999999983824879646'), Decimal('2.622712063999999983906986856')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.691, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6762368}, controller_id=None),\n ExecutorInfo(id='EzmZKkPTVBFr7bCKgRzDfzK8byEVZQog2WSBkvhMG3uy', timestamp=1704809820000.0, type='dca_executor', close_timestamp=1704809940000.0, close_type=, status=, config=DCAExecutorConfig(id='EzmZKkPTVBFr7bCKgRzDfzK8byEVZQog2WSBkvhMG3uy', type='dca_executor', timestamp=1704809820000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047624'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.650991400000000163149864451'), Decimal('2.656293382800000163476164180'), Decimal('2.672199331200000164455063367'), Decimal('2.677501314000000164781363096'), Decimal('2.690756271000000165597112418'), Decimal('2.704011228000000166412861740')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6457, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.6509914}, controller_id=None),\n ExecutorInfo(id='EtGfXBjb1uNu8yvwHwKTEXBkchsK4hUJJSGcoYHqDS4D', timestamp=1704810000000.0, type='dca_executor', close_timestamp=1704810120000.0, close_type=, status=, config=DCAExecutorConfig(id='EtGfXBjb1uNu8yvwHwKTEXBkchsK4hUJJSGcoYHqDS4D', type='dca_executor', timestamp=1704810000000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000005'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.659809000000000081986355204'), Decimal('2.665128618000000082150327914'), Decimal('2.681087472000000082642246046'), Decimal('2.686407090000000082806218756'), Decimal('2.699706135000000083216150532'), Decimal('2.713005180000000083626082308')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6534, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.659809}, controller_id=None),\n ExecutorInfo(id='B83oMVk8kDd8oi5ZuNALSnJ2za4ttwuqtHbxsajEULs8', timestamp=1704810180000.0, type='dca_executor', close_timestamp=1704810300000.0, close_type=, status=, config=DCAExecutorConfig(id='B83oMVk8kDd8oi5ZuNALSnJ2za4ttwuqtHbxsajEULs8', type='dca_executor', timestamp=1704810180000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.657003399999999946001148775'), Decimal('2.662317406799999945893151073'), Decimal('2.678259427199999945569157965'), Decimal('2.683573433999999945461160263'), Decimal('2.696858450999999945191166007'), Decimal('2.710143467999999944921171750')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6452, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.6570034}, controller_id=None),\n ExecutorInfo(id='HcFZCe5fEewmutCAfD23DB8HCxr5KatWChfgUdY1GmxJ', timestamp=1704810360000.0, type='dca_executor', close_timestamp=1704810480000.0, close_type=, status=, config=DCAExecutorConfig(id='HcFZCe5fEewmutCAfD23DB8HCxr5KatWChfgUdY1GmxJ', type='dca_executor', timestamp=1704810360000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.651492399999999885483994987'), Decimal('2.656795384799999885254962977'), Decimal('2.672704339199999884567866947'), Decimal('2.678007323999999884338834937'), Decimal('2.691264785999999883766254912'), Decimal('2.704522247999999883193674887')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6471, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.6514924}, controller_id=None),\n ExecutorInfo(id='jxGpC3AKHaDKWLcnDSqioEBTKTNHYQ61hEgYzBMqW9o', timestamp=1704810540000.0, type='dca_executor', close_timestamp=1704810660000.0, close_type=, status=, config=DCAExecutorConfig(id='jxGpC3AKHaDKWLcnDSqioEBTKTNHYQ61hEgYzBMqW9o', type='dca_executor', timestamp=1704810540000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.655400200000000122568109827'), Decimal('2.660711000400000122813246047'), Decimal('2.676643401600000123548654706'), Decimal('2.681954202000000123793790925'), Decimal('2.695231203000000124406631474'), Decimal('2.708508204000000125019472024')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6284, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.6554002000000003}, controller_id=None),\n ExecutorInfo(id='6GYN9meRya8cPxAUtU8h9fbHfjVskTxGGM5Gj7zzthF5', timestamp=1704808920000.0, type='dca_executor', close_timestamp=1704812460000.0, close_type=, status=, config=DCAExecutorConfig(id='6GYN9meRya8cPxAUtU8h9fbHfjVskTxGGM5Gj7zzthF5', type='dca_executor', timestamp=1704808920000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.685617999999999836789985053'), Decimal('2.680246763999999837116405083'), Decimal('2.664133055999999838095665173'), Decimal('2.658761819999999838422085202'), Decimal('2.645333729999999839238135277'), Decimal('2.631905639999999840054185352')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.0186607559157423337492520687419528258033096790313720703125'), net_pnl_quote=Decimal('-9.21352608154163732478991732932627201080322265625'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.6007, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6520914841225824}, controller_id=None),\n ExecutorInfo(id='HFtoJosWLMDUnhyKGfARQGRAZ2AAVE1dVNvHH1wXvv3i', timestamp=1704816060000.0, type='dca_executor', close_timestamp=1704816180000.0, close_type=, status=, config=DCAExecutorConfig(id='HFtoJosWLMDUnhyKGfARQGRAZ2AAVE1dVNvHH1wXvv3i', type='dca_executor', timestamp=1704816060000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.615558400000000018328050189'), Decimal('2.610327283200000018291394089'), Decimal('2.594633932800000018181425787'), Decimal('2.589402816000000018144769687'), Decimal('2.576325024000000018053129436'), Decimal('2.563247232000000017961489185')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.6158, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.6155584}, controller_id=None),\n ExecutorInfo(id='BihDHDCMjZkxjAye1R85tS2a6zyNp6vze24Tgqkt3qK8', timestamp=1704810720000.0, type='dca_executor', close_timestamp=1704828420000.0, close_type=, status=, config=DCAExecutorConfig(id='BihDHDCMjZkxjAye1R85tS2a6zyNp6vze24Tgqkt3qK8', type='dca_executor', timestamp=1704810720000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428572'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047618'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.634759000000000170980792024'), Decimal('2.640028518000000171322753608'), Decimal('2.655837072000000172348638360'), Decimal('2.661106590000000172690599944'), Decimal('2.674280385000000173545503904'), Decimal('2.687454180000000174400407864')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.03315116640521038882116755530660157091915607452392578125'), net_pnl_quote=Decimal('2.3710977114583808855741153820417821407318115234375'), cum_fees_quote=Decimal('0.0429142857142857103713851074644480831921100616455078125'), filled_amount_quote=Decimal('71.5238095238095183958648703992366790771484375'), is_active=False, is_trading=False, custom_info={'close_price': 2.5529, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.638274350889481}, controller_id=None),\n ExecutorInfo(id='8rDwYBtJh2BExy89GgKg9G2Z8MTtmuZxNaXoWM1okVBw', timestamp=1704828420000.0, type='dca_executor', close_timestamp=1704828540000.0, close_type=, status=, config=DCAExecutorConfig(id='8rDwYBtJh2BExy89GgKg9G2Z8MTtmuZxNaXoWM1okVBw', type='dca_executor', timestamp=1704828420000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000002'), Decimal('96.19047619047619047619047622'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.558005800000000169553675266'), Decimal('2.563121811600000169892782617'), Decimal('2.578469846400000170910104668'), Decimal('2.583585858000000171249212019'), Decimal('2.596375887000000172096980395'), Decimal('2.609165916000000172944748771')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.5494, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.5580058}, controller_id=None),\n ExecutorInfo(id='71K4zGQBKMpnrX9Np4dmXrJXYbnrYznS9LhUkupkWMPS', timestamp=1704816240000.0, type='dca_executor', close_timestamp=1704828900000.0, close_type=, status=, config=DCAExecutorConfig(id='71K4zGQBKMpnrX9Np4dmXrJXYbnrYznS9LhUkupkWMPS', type='dca_executor', timestamp=1704816240000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.615059399999999851684483188'), Decimal('2.609829281199999851981114222'), Decimal('2.594138924799999852871007322'), Decimal('2.588908805999999853167638356'), Decimal('2.575833508999999853909215940'), Decimal('2.562758211999999854650793524')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('-0.0140859578389018573474356088581771473400294780731201171875'), net_pnl_quote=Decimal('-6.95477399298351972589671277091838419437408447265625'), cum_fees_quote=Decimal('0.29624285714285714110616254401975311338901519775390625'), filled_amount_quote=Decimal('493.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.5434, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.582413718263249}, controller_id=None),\n ExecutorInfo(id='D2QzdDD3b37pP26bWr6ziY5MjdzXpCy4sQ4YZAec11qF', timestamp=1704828600000.0, type='dca_executor', close_timestamp=1704831180000.0, close_type=, status=, config=DCAExecutorConfig(id='D2QzdDD3b37pP26bWr6ziY5MjdzXpCy4sQ4YZAec11qF', type='dca_executor', timestamp=1704828600000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428571'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047619'), Decimal('120.8333333333333333333333333'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.560210199999999926774103819'), Decimal('2.565330620399999926627652027'), Decimal('2.580691881599999926188296650'), Decimal('2.585812301999999926041844857'), Decimal('2.598613352999999925675715376'), Decimal('2.611414403999999925309585895')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0.0346588693957112781163232284598052501678466796875'), net_pnl_quote=Decimal('0.82521117608836380696857304428704082965850830078125'), cum_fees_quote=Decimal('0.01428571428571428526821396332024960429407656192779541015625'), filled_amount_quote=Decimal('23.8095238095238102005168912000954151153564453125'), is_active=False, is_trading=False, custom_info={'close_price': 2.4761, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.5602101999999998}, controller_id=None),\n ExecutorInfo(id='5YkSKnuRkkWK8gdjSm9mUvhd6965ri7TnmdSwBWgpdXd', timestamp=1704831180000.0, type='dca_executor', close_timestamp=1704831300000.0, close_type=, status=, config=DCAExecutorConfig(id='5YkSKnuRkkWK8gdjSm9mUvhd6965ri7TnmdSwBWgpdXd', type='dca_executor', timestamp=1704831180000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000004'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.481052200000000190197428639'), Decimal('2.486014304400000190577823496'), Decimal('2.500900617600000191719008068'), Decimal('2.505862722000000192099402925'), Decimal('2.518267983000000193050390069'), Decimal('2.530673244000000194001377212')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.4022, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.4810522}, controller_id=None),\n ExecutorInfo(id='HDJbm9oZZ1PBg996aTHwyvGVpyfrk4ZXCeFK9S6FQcsT', timestamp=1704832500000.0, type='dca_executor', close_timestamp=1704832620000.0, close_type=, status=, config=DCAExecutorConfig(id='HDJbm9oZZ1PBg996aTHwyvGVpyfrk4ZXCeFK9S6FQcsT', type='dca_executor', timestamp=1704832500000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714287'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.390210000000000017628329352'), Decimal('2.385429580000000017593072693'), Decimal('2.371088320000000017487302717'), Decimal('2.366307900000000017452046058'), Decimal('2.354356850000000017363904412'), Decimal('2.342405800000000017275762765')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.3924, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.39021}, controller_id=None),\n ExecutorInfo(id='EYEaNNAtCmPQ31YxYY9Yga2Y6KuWPppYJ9HyDhGTQ73R', timestamp=1704832680000.0, type='dca_executor', close_timestamp=1704832800000.0, close_type=, status=, config=DCAExecutorConfig(id='EYEaNNAtCmPQ31YxYY9Yga2Y6KuWPppYJ9HyDhGTQ73R', type='dca_executor', timestamp=1704832680000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714289'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.388613200000000193490565237'), Decimal('2.383835973600000193103584107'), Decimal('2.369504294400000191942640715'), Decimal('2.364727068000000191555659585'), Decimal('2.352784002000000190588206758'), Decimal('2.340840936000000189620753932')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.4014, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.3886132}, controller_id=None),\n ExecutorInfo(id='CdtnTNduSiv3C6r8wA2ueV5C8MvrXq1z8RJDAV2PqAXb', timestamp=1704832860000.0, type='dca_executor', close_timestamp=1704832980000.0, close_type=, status=, config=DCAExecutorConfig(id='CdtnTNduSiv3C6r8wA2ueV5C8MvrXq1z8RJDAV2PqAXb', type='dca_executor', timestamp=1704832860000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380952'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619047'), Decimal('139.9999999999999999999999999')], prices=[Decimal('2.396397599999999779363196728'), Decimal('2.391604804799999779804470335'), Decimal('2.377226419199999781128291154'), Decimal('2.372433623999999781569564761'), Decimal('2.360451635999999782672748777'), Decimal('2.348469647999999783775932793')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.4042, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.3963976}, controller_id=None),\n ExecutorInfo(id='Fz2Mqi4kXTiznqEDbbLfpjCmQJGt2NHYhY1cU4k4boQ2', timestamp=1704833040000.0, type='dca_executor', close_timestamp=1704833160000.0, close_type=, status=, config=DCAExecutorConfig(id='Fz2Mqi4kXTiznqEDbbLfpjCmQJGt2NHYhY1cU4k4boQ2', type='dca_executor', timestamp=1704833040000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714288'), Decimal('94.28571428571428571428571431'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.396696999999999967989543215'), Decimal('2.391903605999999968053564129'), Decimal('2.377523423999999968245626869'), Decimal('2.372730029999999968309647783'), Decimal('2.360746544999999968469700067'), Decimal('2.348763059999999968629752351')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.403, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.396697}, controller_id=None),\n ExecutorInfo(id='B6yU5k1aSxv4wrcwZqvox99M47v1f3C8d2pRYNM92Kku', timestamp=1704833220000.0, type='dca_executor', close_timestamp=1704834720000.0, close_type=, status=, config=DCAExecutorConfig(id='B6yU5k1aSxv4wrcwZqvox99M47v1f3C8d2pRYNM92Kku', type='dca_executor', timestamp=1704833220000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714286'), Decimal('94.28571428571428571428571429'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.396497399999999989972322700'), Decimal('2.391704405199999989992378055'), Decimal('2.377325420799999990052544118'), Decimal('2.372532425999999990072599473'), Decimal('2.360549938999999990122737860'), Decimal('2.348567451999999990172876246')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.034594376927727744919227603759281919337809085845947265625'), net_pnl_quote=Decimal('4.91899092886643085620335114072076976299285888671875'), cum_fees_quote=Decimal('0.08531428571428571749901692555795307271182537078857421875'), filled_amount_quote=Decimal('142.19047619047620401033782400190830230712890625'), is_active=False, is_trading=False, custom_info={'close_price': 2.4622, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.385341568164769}, controller_id=None),\n ExecutorInfo(id='GaJxTCNCCy8X7UmQuxvjBSF2PYjXm8qHVJxfHsxkm2G4', timestamp=1704831360000.0, type='dca_executor', close_timestamp=1704834840000.0, close_type=, status=, config=DCAExecutorConfig(id='GaJxTCNCCy8X7UmQuxvjBSF2PYjXm8qHVJxfHsxkm2G4', type='dca_executor', timestamp=1704831360000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952382'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000001'), Decimal('96.19047619047619047619047620'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142858')], prices=[Decimal('2.399790000000000017898807435'), Decimal('2.404589580000000017934605050'), Decimal('2.418988320000000018041997894'), Decimal('2.423787900000000018077795509'), Decimal('2.435786850000000018167289547'), Decimal('2.447785800000000018256783584')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.018034339400883760140548162098639295436441898345947265625'), net_pnl_quote=Decimal('-9.1300990162140802652857018983922898769378662109375'), cum_fees_quote=Decimal('0.3037571428571428366893769634771160781383514404296875'), filled_amount_quote=Decimal('506.26190476190475919793243519961833953857421875'), is_active=False, is_trading=False, custom_info={'close_price': 2.4793, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.429938328258007}, controller_id=None),\n ExecutorInfo(id='9gi7MJQwKkFb3htCQiksgSsJJueS5EPUPcNRcnnq4p4v', timestamp=1704834720000.0, type='dca_executor', close_timestamp=1704834840000.0, close_type=, status=, config=DCAExecutorConfig(id='9gi7MJQwKkFb3htCQiksgSsJJueS5EPUPcNRcnnq4p4v', type='dca_executor', timestamp=1704834720000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380954'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571432'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.457275600000000165831956500'), Decimal('2.452361048800000165500292587'), Decimal('2.437617395200000164505300848'), Decimal('2.432702844000000164173636935'), Decimal('2.420416466000000163344477152'), Decimal('2.408130088000000162515317370')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0'), net_pnl_quote=Decimal('0'), cum_fees_quote=Decimal('0'), filled_amount_quote=Decimal('0'), is_active=False, is_trading=False, custom_info={'close_price': 2.4793, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.4572756}, controller_id=None),\n ExecutorInfo(id='4rZaR1RGf8NpHZVgBEpVGRjAaABghXFjeKUfR9MwFSiP', timestamp=1704834900000.0, type='dca_executor', close_timestamp=1704839340000.0, close_type=, status=, config=DCAExecutorConfig(id='4rZaR1RGf8NpHZVgBEpVGRjAaABghXFjeKUfR9MwFSiP', type='dca_executor', timestamp=1704834900000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952380'), Decimal('47.52380952380952380952380951'), Decimal('70.85714285714285714285714284'), Decimal('94.28571428571428571428571428'), Decimal('117.2619047619047619047619047'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.442006199999999853109945713'), Decimal('2.437122187599999853403725822'), Decimal('2.422470150399999854285066147'), Decimal('2.417586137999999854578846256'), Decimal('2.405376106999999855313296527'), Decimal('2.393166075999999856047746799')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.03293539068315211315596258145887986756861209869384765625'), net_pnl_quote=Decimal('7.7884357205968282045205342001281678676605224609375'), cum_fees_quote=Decimal('0.14188571428571428167941803621943108737468719482421875'), filled_amount_quote=Decimal('236.4761904761904816041351296007633209228515625'), is_active=False, is_trading=False, custom_info={'close_price': 2.4991, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.4254343899033426}, controller_id=None),\n ExecutorInfo(id='CJzY1qHR8CKqZVm4sUmP55ZPXknLDcCf9UAZcTi7dcGD', timestamp=1704838440000.0, type='dca_executor', close_timestamp=1704844800000.0, close_type=, status=, config=DCAExecutorConfig(id='CJzY1qHR8CKqZVm4sUmP55ZPXknLDcCf9UAZcTi7dcGD', type='dca_executor', timestamp=1704838440000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.71428571428571428571428573'), Decimal('72.00000000000000000000000005'), Decimal('96.19047619047619047619047621'), Decimal('120.8333333333333333333333334'), Decimal('145.7142857142857142857142857')], prices=[Decimal('2.471332800000000148191159343'), Decimal('2.476275465600000148487541662'), Decimal('2.491103462400000149376688618'), Decimal('2.496046128000000149673070936'), Decimal('2.508402792000000150414026733'), Decimal('2.520759456000000151154982530')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='sell_0'), net_pnl_pct=Decimal('-0.00296554582491358360851751996278835576958954334259033203125'), net_pnl_quote=Decimal('-0.710883699172141891864384888322092592716217041015625'), cum_fees_quote=Decimal('0.1438285714285714167459673262783326208591461181640625'), filled_amount_quote=Decimal('239.71428571428572240620269440114498138427734375'), is_active=False, is_trading=False, custom_info={'close_price': 2.4976, 'level_id': 'sell_0', 'side': , 'current_position_average_price': 2.4881716389034567}, controller_id=None),\n ExecutorInfo(id='4Zwck6t3JedN37rwTm6fCEGTTkCUpQDdurLbhnvQ3kQU', timestamp=1704839340000.0, type='dca_executor', close_timestamp=1704844800000.0, close_type=, status=, config=DCAExecutorConfig(id='4Zwck6t3JedN37rwTm6fCEGTTkCUpQDdurLbhnvQ3kQU', type='dca_executor', timestamp=1704839340000.0, controller_id='main', connector_name='kucoin', trading_pair='WLD-USDT', side=, leverage=20, amounts_quote=[Decimal('23.80952380952380952380952381'), Decimal('47.52380952380952380952380953'), Decimal('70.85714285714285714285714290'), Decimal('94.28571428571428571428571430'), Decimal('117.2619047619047619047619048'), Decimal('140.0000000000000000000000000')], prices=[Decimal('2.494101799999999877217908562'), Decimal('2.489113596399999877463472745'), Decimal('2.474148985599999878200165294'), Decimal('2.469160781999999878445729476'), Decimal('2.456690272999999879059639934'), Decimal('2.444219763999999879673550391')], take_profit=Decimal('0.03'), stop_loss=Decimal('0.015'), trailing_stop=TrailingStop(activation_price=Decimal('0.008'), trailing_delta=Decimal('0.004')), time_limit=43200, mode=, activation_bounds=[Decimal('0.01')], level_id='buy_0'), net_pnl_pct=Decimal('0.0132894552408876105709101267393634770996868610382080078125'), net_pnl_quote=Decimal('4.7009865836635054137104816618375480175018310546875'), cum_fees_quote=Decimal('0.212242857142857122010326520467060618102550506591796875'), filled_amount_quote=Decimal('353.73809523809524080206756480038166046142578125'), is_active=False, is_trading=False, custom_info={'close_price': 2.4976, 'level_id': 'buy_0', 'side': , 'current_position_average_price': 2.47038542174093}, controller_id=None)]" + }, + "execution_count": 50, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# 2. The executors dataframe: this is the dataframe that contains the information of the orders that were executed\n", - "backtesting_results[\"executors_df\"]" + "backtesting_results[\"executors\"]" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 51, "metadata": { "collapsed": false, "jupyter": { "outputs_hidden": false + }, + "ExecuteTime": { + "end_time": "2024-05-21T23:53:53.160692Z", + "start_time": "2024-05-21T23:53:53.130394Z" } }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": "{'net_pnl': 0.042269981264627964,\n 'net_pnl_quote': 42.269981264627965,\n 'total_executors': 414,\n 'total_executors_with_position': 99,\n 'total_volume': 70749.14285714286,\n 'total_long': 52,\n 'total_short': 47,\n 'close_types': {'EARLY_STOP': 314,\n 'STOP_LOSS': 47,\n 'TAKE_PROFIT': 48,\n 'TIME_LIMIT': 5},\n 'accuracy_long': 0.46153846153846156,\n 'accuracy_short': 0.5531914893617021,\n 'total_positions': 99,\n 'accuracy': 0.5050505050505051,\n 'max_drawdown_usd': -52.26680777736686,\n 'max_drawdown_pct': -0.052671130099730776,\n 'sharpe_ratio': 0.479129045415411,\n 'profit_factor': 1.1213189350926154,\n 'win_signals': 50,\n 'loss_signals': 49}" + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# 3. The results dataframe: this is the dataframe that contains the information of the pnl of the strategy\n", "backtesting_results[\"results\"]" @@ -279,172 +263,35929 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 52, "metadata": { "collapsed": false, "jupyter": { "outputs_hidden": false + }, + "ExecuteTime": { + "end_time": "2024-05-21T23:53:53.332827Z", + "start_time": "2024-05-21T23:53:53.140541Z" } }, "outputs": [], "source": [ - "# Now let's analyze the results using the StrategyAnalysis class\n", - "strategy_analysis = StrategyAnalysis(\n", - " positions=backtesting_results[\"executors_df\"],\n", - " candles_df=backtesting_results[\"processed_data\"],\n", - ")" + "from frontend.visualization.backtesting import create_backtesting_figure\n", + "\n", + "fig = create_backtesting_figure(\n", + " df=backtesting_results[\"processed_data\"][\"features\"],\n", + " executors=backtesting_results[\"executors\"],\n", + " config=config.dict())" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 53, "metadata": { "collapsed": false, "jupyter": { "outputs_hidden": false + }, + "ExecuteTime": { + "end_time": "2024-05-21T23:53:53.477392Z", + "start_time": "2024-05-21T23:53:53.340118Z" } }, - "outputs": [], - "source": [ - "# let's visualize the PNL over time of the strategy\n", - "strategy_analysis.pnl_over_time()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "jupyter": { - "outputs_hidden": false + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "data": [ + { + "line": { + "color": "#00008B" + }, + "mode": "lines", + "x": [ + "2024-01-01T00:00:00", + "2024-01-01T00:01:00", + "2024-01-01T00:02:00", + "2024-01-01T00:03:00", + "2024-01-01T00:04:00", + "2024-01-01T00:05:00", + "2024-01-01T00:06:00", + "2024-01-01T00:07:00", + "2024-01-01T00:08:00", + "2024-01-01T00:09:00", + "2024-01-01T00:10:00", + "2024-01-01T00:11:00", + "2024-01-01T00:12:00", + "2024-01-01T00:13:00", + "2024-01-01T00:14:00", + "2024-01-01T00:15:00", + "2024-01-01T00:16:00", + "2024-01-01T00:17:00", + "2024-01-01T00:18:00", + "2024-01-01T00:19:00", + "2024-01-01T00:20:00", + "2024-01-01T00:21:00", + "2024-01-01T00:22:00", + "2024-01-01T00:23:00", + "2024-01-01T00:24:00", + "2024-01-01T00:25:00", + "2024-01-01T00:26:00", + "2024-01-01T00:27:00", + "2024-01-01T00:28:00", + "2024-01-01T00:29:00", + "2024-01-01T00:30:00", + "2024-01-01T00:31:00", + "2024-01-01T00:32:00", + "2024-01-01T00:33:00", + "2024-01-01T00:34:00", + "2024-01-01T00:35:00", + "2024-01-01T00:36:00", + "2024-01-01T00:37:00", + "2024-01-01T00:38:00", + "2024-01-01T00:39:00", + "2024-01-01T00:40:00", + "2024-01-01T00:41:00", + "2024-01-01T00:42:00", + "2024-01-01T00:43:00", + "2024-01-01T00:44:00", + "2024-01-01T00:45:00", + "2024-01-01T00:46:00", + "2024-01-01T00:47:00", + "2024-01-01T00:48:00", + "2024-01-01T00:49:00", + "2024-01-01T00:50:00", + "2024-01-01T00:51:00", + "2024-01-01T00:52:00", + "2024-01-01T00:53:00", + "2024-01-01T00:54:00", + "2024-01-01T00:55:00", + "2024-01-01T00:56:00", + "2024-01-01T00:57:00", + "2024-01-01T00:58:00", + "2024-01-01T00:59:00", + "2024-01-01T01:00:00", + "2024-01-01T01:01:00", + "2024-01-01T01:02:00", + "2024-01-01T01:03:00", + "2024-01-01T01:04:00", + "2024-01-01T01:05:00", + "2024-01-01T01:06:00", + "2024-01-01T01:07:00", + "2024-01-01T01:08:00", + "2024-01-01T01:09:00", + "2024-01-01T01:10:00", + "2024-01-01T01:11:00", + "2024-01-01T01:12:00", + "2024-01-01T01:13:00", + "2024-01-01T01:14:00", + "2024-01-01T01:15:00", + "2024-01-01T01:16:00", + "2024-01-01T01:17:00", + "2024-01-01T01:18:00", + "2024-01-01T01:19:00", + "2024-01-01T01:20:00", + "2024-01-01T01:21:00", + "2024-01-01T01:22:00", + "2024-01-01T01:23:00", + "2024-01-01T01:24:00", + "2024-01-01T01:25:00", + "2024-01-01T01:26:00", + "2024-01-01T01:27:00", + "2024-01-01T01:28:00", + "2024-01-01T01:29:00", + "2024-01-01T01:30:00", + "2024-01-01T01:31:00", + "2024-01-01T01:32:00", + "2024-01-01T01:33:00", + "2024-01-01T01:34:00", + "2024-01-01T01:35:00", + "2024-01-01T01:36:00", + "2024-01-01T01:37:00", + "2024-01-01T01:38:00", + "2024-01-01T01:39:00", + "2024-01-01T01:40:00", + "2024-01-01T01:41:00", + "2024-01-01T01:42:00", + "2024-01-01T01:43:00", + "2024-01-01T01:44:00", + "2024-01-01T01:45:00", + "2024-01-01T01:46:00", + "2024-01-01T01:47:00", + "2024-01-01T01:48:00", + "2024-01-01T01:49:00", + "2024-01-01T01:50:00", + "2024-01-01T01:51:00", + "2024-01-01T01:52:00", + "2024-01-01T01:53:00", + "2024-01-01T01:54:00", + "2024-01-01T01:55:00", + "2024-01-01T01:56:00", + "2024-01-01T01:57:00", + "2024-01-01T01:58:00", + "2024-01-01T01:59:00", + "2024-01-01T02:00:00", + "2024-01-01T02:01:00", + "2024-01-01T02:02:00", + "2024-01-01T02:03:00", + "2024-01-01T02:04:00", + "2024-01-01T02:05:00", + "2024-01-01T02:06:00", + "2024-01-01T02:07:00", + "2024-01-01T02:08:00", + "2024-01-01T02:09:00", + "2024-01-01T02:10:00", + "2024-01-01T02:11:00", + "2024-01-01T02:12:00", + "2024-01-01T02:13:00", + "2024-01-01T02:14:00", + "2024-01-01T02:15:00", + "2024-01-01T02:16:00", + "2024-01-01T02:17:00", + "2024-01-01T02:18:00", + "2024-01-01T02:19:00", + "2024-01-01T02:20:00", + "2024-01-01T02:21:00", + "2024-01-01T02:22:00", + "2024-01-01T02:23:00", + "2024-01-01T02:24:00", + "2024-01-01T02:25:00", + "2024-01-01T02:26:00", + "2024-01-01T02:27:00", + "2024-01-01T02:28:00", + "2024-01-01T02:29:00", + "2024-01-01T02:30:00", + "2024-01-01T02:31:00", + "2024-01-01T02:32:00", + "2024-01-01T02:33:00", + "2024-01-01T02:34:00", + "2024-01-01T02:35:00", + "2024-01-01T02:36:00", + "2024-01-01T02:37:00", + "2024-01-01T02:38:00", + "2024-01-01T02:39:00", + "2024-01-01T02:40:00", + "2024-01-01T02:41:00", + "2024-01-01T02:42:00", + "2024-01-01T02:43:00", + "2024-01-01T02:44:00", + "2024-01-01T02:45:00", + "2024-01-01T02:46:00", + "2024-01-01T02:47:00", + "2024-01-01T02:48:00", + "2024-01-01T02:49:00", + "2024-01-01T02:50:00", + "2024-01-01T02:51:00", + "2024-01-01T02:52:00", + "2024-01-01T02:53:00", + "2024-01-01T02:54:00", + "2024-01-01T02:55:00", + "2024-01-01T02:56:00", + "2024-01-01T02:57:00", + "2024-01-01T02:58:00", + "2024-01-01T02:59:00", + "2024-01-01T03:00:00", + "2024-01-01T03:01:00", + "2024-01-01T03:02:00", + "2024-01-01T03:03:00", + "2024-01-01T03:04:00", + "2024-01-01T03:05:00", + "2024-01-01T03:06:00", + "2024-01-01T03:07:00", + "2024-01-01T03:08:00", + "2024-01-01T03:09:00", + "2024-01-01T03:10:00", + "2024-01-01T03:11:00", + "2024-01-01T03:12:00", + "2024-01-01T03:13:00", + "2024-01-01T03:14:00", + "2024-01-01T03:15:00", + "2024-01-01T03:16:00", + "2024-01-01T03:17:00", + "2024-01-01T03:18:00", + "2024-01-01T03:19:00", + "2024-01-01T03:20:00", + "2024-01-01T03:21:00", + "2024-01-01T03:22:00", + "2024-01-01T03:23:00", + "2024-01-01T03:24:00", + "2024-01-01T03:25:00", + "2024-01-01T03:26:00", + "2024-01-01T03:27:00", + "2024-01-01T03:28:00", + "2024-01-01T03:29:00", + "2024-01-01T03:30:00", + "2024-01-01T03:31:00", + "2024-01-01T03:32:00", + "2024-01-01T03:33:00", + "2024-01-01T03:34:00", + "2024-01-01T03:35:00", + "2024-01-01T03:36:00", + "2024-01-01T03:37:00", + "2024-01-01T03:38:00", + "2024-01-01T03:39:00", + "2024-01-01T03:40:00", + "2024-01-01T03:41:00", + "2024-01-01T03:42:00", + "2024-01-01T03:43:00", + "2024-01-01T03:44:00", + "2024-01-01T03:45:00", + "2024-01-01T03:46:00", + "2024-01-01T03:47:00", + "2024-01-01T03:48:00", + "2024-01-01T03:49:00", + "2024-01-01T03:50:00", + "2024-01-01T03:51:00", + "2024-01-01T03:52:00", + "2024-01-01T03:53:00", + "2024-01-01T03:54:00", + "2024-01-01T03:55:00", + "2024-01-01T03:56:00", + "2024-01-01T03:57:00", + "2024-01-01T03:58:00", + "2024-01-01T03:59:00", + "2024-01-01T04:00:00", + "2024-01-01T04:01:00", + "2024-01-01T04:02:00", + "2024-01-01T04:03:00", + "2024-01-01T04:04:00", + "2024-01-01T04:05:00", + "2024-01-01T04:06:00", + "2024-01-01T04:07:00", + "2024-01-01T04:08:00", + "2024-01-01T04:09:00", + "2024-01-01T04:10:00", + "2024-01-01T04:11:00", + "2024-01-01T04:12:00", + "2024-01-01T04:13:00", + "2024-01-01T04:14:00", + "2024-01-01T04:15:00", + "2024-01-01T04:16:00", + "2024-01-01T04:17:00", + "2024-01-01T04:18:00", + "2024-01-01T04:19:00", + "2024-01-01T04:20:00", + "2024-01-01T04:21:00", + "2024-01-01T04:22:00", + "2024-01-01T04:23:00", + "2024-01-01T04:24:00", + "2024-01-01T04:25:00", + "2024-01-01T04:26:00", + "2024-01-01T04:27:00", + "2024-01-01T04:28:00", + "2024-01-01T04:29:00", + "2024-01-01T04:30:00", + "2024-01-01T04:31:00", + "2024-01-01T04:32:00", + "2024-01-01T04:33:00", + "2024-01-01T04:34:00", + "2024-01-01T04:35:00", + "2024-01-01T04:36:00", + "2024-01-01T04:37:00", + "2024-01-01T04:38:00", + "2024-01-01T04:39:00", + "2024-01-01T04:40:00", + "2024-01-01T04:41:00", + "2024-01-01T04:42:00", + "2024-01-01T04:43:00", + "2024-01-01T04:44:00", + "2024-01-01T04:45:00", + "2024-01-01T04:46:00", + "2024-01-01T04:47:00", + "2024-01-01T04:48:00", + "2024-01-01T04:49:00", + "2024-01-01T04:50:00", + "2024-01-01T04:51:00", + "2024-01-01T04:52:00", + "2024-01-01T04:53:00", + "2024-01-01T04:54:00", + "2024-01-01T04:55:00", + "2024-01-01T04:56:00", + "2024-01-01T04:57:00", + "2024-01-01T04:58:00", + "2024-01-01T04:59:00", + "2024-01-01T05:00:00", + "2024-01-01T05:01:00", + "2024-01-01T05:02:00", + "2024-01-01T05:03:00", + "2024-01-01T05:04:00", + "2024-01-01T05:05:00", + "2024-01-01T05:06:00", + "2024-01-01T05:07:00", + "2024-01-01T05:08:00", + "2024-01-01T05:09:00", + "2024-01-01T05:10:00", + "2024-01-01T05:11:00", + "2024-01-01T05:12:00", + "2024-01-01T05:13:00", + "2024-01-01T05:14:00", + "2024-01-01T05:15:00", + "2024-01-01T05:16:00", + "2024-01-01T05:17:00", + "2024-01-01T05:18:00", + "2024-01-01T05:19:00", + "2024-01-01T05:20:00", + "2024-01-01T05:21:00", + "2024-01-01T05:22:00", + "2024-01-01T05:23:00", + "2024-01-01T05:24:00", + "2024-01-01T05:25:00", + "2024-01-01T05:26:00", + "2024-01-01T05:27:00", + "2024-01-01T05:28:00", + "2024-01-01T05:29:00", + "2024-01-01T05:30:00", + "2024-01-01T05:31:00", + "2024-01-01T05:32:00", + "2024-01-01T05:33:00", + "2024-01-01T05:34:00", + "2024-01-01T05:35:00", + "2024-01-01T05:36:00", + "2024-01-01T05:37:00", + "2024-01-01T05:38:00", + "2024-01-01T05:39:00", + "2024-01-01T05:40:00", + "2024-01-01T05:41:00", + "2024-01-01T05:42:00", + "2024-01-01T05:43:00", + "2024-01-01T05:44:00", + "2024-01-01T05:45:00", + "2024-01-01T05:46:00", + "2024-01-01T05:47:00", + "2024-01-01T05:48:00", + "2024-01-01T05:49:00", + "2024-01-01T05:50:00", + "2024-01-01T05:51:00", + "2024-01-01T05:52:00", + "2024-01-01T05:53:00", + "2024-01-01T05:54:00", + "2024-01-01T05:55:00", + "2024-01-01T05:56:00", + "2024-01-01T05:57:00", + "2024-01-01T05:58:00", + "2024-01-01T05:59:00", + "2024-01-01T06:00:00", + "2024-01-01T06:01:00", + "2024-01-01T06:02:00", + "2024-01-01T06:03:00", + "2024-01-01T06:04:00", + "2024-01-01T06:05:00", + "2024-01-01T06:06:00", + "2024-01-01T06:07:00", + "2024-01-01T06:08:00", + "2024-01-01T06:09:00", + "2024-01-01T06:10:00", + "2024-01-01T06:11:00", + "2024-01-01T06:12:00", + "2024-01-01T06:13:00", + "2024-01-01T06:14:00", + "2024-01-01T06:15:00", + "2024-01-01T06:16:00", + "2024-01-01T06:17:00", + "2024-01-01T06:18:00", + "2024-01-01T06:19:00", + "2024-01-01T06:20:00", + "2024-01-01T06:21:00", + "2024-01-01T06:22:00", + "2024-01-01T06:23:00", + "2024-01-01T06:24:00", + "2024-01-01T06:25:00", + "2024-01-01T06:26:00", + "2024-01-01T06:27:00", + "2024-01-01T06:28:00", + "2024-01-01T06:29:00", + "2024-01-01T06:30:00", + "2024-01-01T06:31:00", + "2024-01-01T06:32:00", + "2024-01-01T06:33:00", + "2024-01-01T06:34:00", + "2024-01-01T06:35:00", + "2024-01-01T06:36:00", + "2024-01-01T06:37:00", + "2024-01-01T06:38:00", + "2024-01-01T06:39:00", + "2024-01-01T06:40:00", + "2024-01-01T06:41:00", + "2024-01-01T06:42:00", + "2024-01-01T06:43:00", + "2024-01-01T06:44:00", + "2024-01-01T06:45:00", + "2024-01-01T06:46:00", + "2024-01-01T06:47:00", + "2024-01-01T06:48:00", + "2024-01-01T06:49:00", + "2024-01-01T06:50:00", + "2024-01-01T06:51:00", + "2024-01-01T06:52:00", + "2024-01-01T06:53:00", + "2024-01-01T06:54:00", + "2024-01-01T06:55:00", + "2024-01-01T06:56:00", + "2024-01-01T06:57:00", + "2024-01-01T06:58:00", + "2024-01-01T06:59:00", + "2024-01-01T07:00:00", + "2024-01-01T07:01:00", + "2024-01-01T07:02:00", + "2024-01-01T07:03:00", + "2024-01-01T07:04:00", + "2024-01-01T07:05:00", + "2024-01-01T07:06:00", + "2024-01-01T07:07:00", + "2024-01-01T07:08:00", + "2024-01-01T07:09:00", + "2024-01-01T07:10:00", + "2024-01-01T07:11:00", + "2024-01-01T07:12:00", + "2024-01-01T07:13:00", + "2024-01-01T07:14:00", + "2024-01-01T07:15:00", + "2024-01-01T07:16:00", + "2024-01-01T07:17:00", + "2024-01-01T07:18:00", + "2024-01-01T07:19:00", + "2024-01-01T07:20:00", + "2024-01-01T07:21:00", + "2024-01-01T07:22:00", + "2024-01-01T07:23:00", + "2024-01-01T07:24:00", + "2024-01-01T07:25:00", + "2024-01-01T07:26:00", + "2024-01-01T07:27:00", + "2024-01-01T07:28:00", + "2024-01-01T07:29:00", + "2024-01-01T07:30:00", + "2024-01-01T07:31:00", + "2024-01-01T07:32:00", + "2024-01-01T07:33:00", + "2024-01-01T07:34:00", + "2024-01-01T07:35:00", + "2024-01-01T07:36:00", + "2024-01-01T07:37:00", + "2024-01-01T07:38:00", + "2024-01-01T07:39:00", + "2024-01-01T07:40:00", + "2024-01-01T07:41:00", + "2024-01-01T07:42:00", + "2024-01-01T07:43:00", + "2024-01-01T07:44:00", + "2024-01-01T07:45:00", + "2024-01-01T07:46:00", + "2024-01-01T07:47:00", + "2024-01-01T07:48:00", + "2024-01-01T07:49:00", + "2024-01-01T07:50:00", + "2024-01-01T07:51:00", + "2024-01-01T07:52:00", + "2024-01-01T07:53:00", + "2024-01-01T07:54:00", + "2024-01-01T07:55:00", + "2024-01-01T07:56:00", + "2024-01-01T07:57:00", + "2024-01-01T07:58:00", + "2024-01-01T07:59:00", + "2024-01-01T08:00:00", + "2024-01-01T08:01:00", + "2024-01-01T08:02:00", + "2024-01-01T08:03:00", + "2024-01-01T08:04:00", + "2024-01-01T08:05:00", + "2024-01-01T08:06:00", + "2024-01-01T08:07:00", + "2024-01-01T08:08:00", + "2024-01-01T08:09:00", + "2024-01-01T08:10:00", + "2024-01-01T08:11:00", + "2024-01-01T08:12:00", + "2024-01-01T08:13:00", + "2024-01-01T08:14:00", + "2024-01-01T08:15:00", + "2024-01-01T08:16:00", + "2024-01-01T08:17:00", + "2024-01-01T08:18:00", + "2024-01-01T08:19:00", + "2024-01-01T08:20:00", + "2024-01-01T08:21:00", + "2024-01-01T08:22:00", + "2024-01-01T08:23:00", + "2024-01-01T08:24:00", + "2024-01-01T08:25:00", + "2024-01-01T08:26:00", + "2024-01-01T08:27:00", + "2024-01-01T08:28:00", + "2024-01-01T08:29:00", + "2024-01-01T08:30:00", + "2024-01-01T08:31:00", + "2024-01-01T08:32:00", + "2024-01-01T08:33:00", + "2024-01-01T08:34:00", + "2024-01-01T08:35:00", + "2024-01-01T08:36:00", + "2024-01-01T08:37:00", + "2024-01-01T08:38:00", + "2024-01-01T08:39:00", + "2024-01-01T08:40:00", + "2024-01-01T08:41:00", + "2024-01-01T08:42:00", + "2024-01-01T08:43:00", + "2024-01-01T08:44:00", + "2024-01-01T08:45:00", + "2024-01-01T08:46:00", + "2024-01-01T08:47:00", + "2024-01-01T08:48:00", + "2024-01-01T08:49:00", + "2024-01-01T08:50:00", + "2024-01-01T08:51:00", + "2024-01-01T08:52:00", + "2024-01-01T08:53:00", + "2024-01-01T08:54:00", + "2024-01-01T08:55:00", + "2024-01-01T08:56:00", + "2024-01-01T08:57:00", + "2024-01-01T08:58:00", + "2024-01-01T08:59:00", + "2024-01-01T09:00:00", + "2024-01-01T09:01:00", + "2024-01-01T09:02:00", + "2024-01-01T09:03:00", + "2024-01-01T09:04:00", + "2024-01-01T09:05:00", + "2024-01-01T09:06:00", + "2024-01-01T09:07:00", + "2024-01-01T09:08:00", + "2024-01-01T09:09:00", + "2024-01-01T09:10:00", + "2024-01-01T09:11:00", + "2024-01-01T09:12:00", + "2024-01-01T09:13:00", + "2024-01-01T09:14:00", + "2024-01-01T09:15:00", + "2024-01-01T09:16:00", + "2024-01-01T09:17:00", + "2024-01-01T09:18:00", + "2024-01-01T09:19:00", + "2024-01-01T09:20:00", + "2024-01-01T09:21:00", + "2024-01-01T09:22:00", + "2024-01-01T09:23:00", + "2024-01-01T09:24:00", + "2024-01-01T09:25:00", + "2024-01-01T09:26:00", + "2024-01-01T09:27:00", + "2024-01-01T09:28:00", + "2024-01-01T09:29:00", + "2024-01-01T09:30:00", + "2024-01-01T09:31:00", + "2024-01-01T09:32:00", + "2024-01-01T09:33:00", + "2024-01-01T09:34:00", + "2024-01-01T09:35:00", + "2024-01-01T09:36:00", + "2024-01-01T09:37:00", + "2024-01-01T09:38:00", + "2024-01-01T09:39:00", + "2024-01-01T09:40:00", + "2024-01-01T09:41:00", + "2024-01-01T09:42:00", + "2024-01-01T09:43:00", + "2024-01-01T09:44:00", + "2024-01-01T09:45:00", + "2024-01-01T09:46:00", + "2024-01-01T09:47:00", + "2024-01-01T09:48:00", + "2024-01-01T09:49:00", + "2024-01-01T09:50:00", + "2024-01-01T09:51:00", + "2024-01-01T09:52:00", + "2024-01-01T09:53:00", + "2024-01-01T09:54:00", + "2024-01-01T09:55:00", + "2024-01-01T09:56:00", + "2024-01-01T09:57:00", + "2024-01-01T09:58:00", + "2024-01-01T09:59:00", + "2024-01-01T10:00:00", + "2024-01-01T10:01:00", + "2024-01-01T10:02:00", + "2024-01-01T10:03:00", + "2024-01-01T10:04:00", + "2024-01-01T10:05:00", + "2024-01-01T10:06:00", + "2024-01-01T10:07:00", + "2024-01-01T10:08:00", + "2024-01-01T10:09:00", + "2024-01-01T10:10:00", + "2024-01-01T10:11:00", + "2024-01-01T10:12:00", + "2024-01-01T10:13:00", + "2024-01-01T10:14:00", + "2024-01-01T10:15:00", + "2024-01-01T10:16:00", + "2024-01-01T10:17:00", + "2024-01-01T10:18:00", + "2024-01-01T10:19:00", + "2024-01-01T10:20:00", + "2024-01-01T10:21:00", + "2024-01-01T10:22:00", + "2024-01-01T10:23:00", + "2024-01-01T10:24:00", + "2024-01-01T10:25:00", + "2024-01-01T10:26:00", + "2024-01-01T10:27:00", + "2024-01-01T10:28:00", + "2024-01-01T10:29:00", + "2024-01-01T10:30:00", + "2024-01-01T10:31:00", + "2024-01-01T10:32:00", + "2024-01-01T10:33:00", + "2024-01-01T10:34:00", + "2024-01-01T10:35:00", + "2024-01-01T10:36:00", + "2024-01-01T10:37:00", + "2024-01-01T10:38:00", + "2024-01-01T10:39:00", + "2024-01-01T10:40:00", + "2024-01-01T10:41:00", + "2024-01-01T10:42:00", + "2024-01-01T10:43:00", + "2024-01-01T10:44:00", + "2024-01-01T10:45:00", + "2024-01-01T10:46:00", + "2024-01-01T10:47:00", + "2024-01-01T10:48:00", + "2024-01-01T10:49:00", + "2024-01-01T10:50:00", + "2024-01-01T10:51:00", + "2024-01-01T10:52:00", + "2024-01-01T10:53:00", + "2024-01-01T10:54:00", + "2024-01-01T10:55:00", + "2024-01-01T10:56:00", + "2024-01-01T10:57:00", + "2024-01-01T10:58:00", + "2024-01-01T10:59:00", + "2024-01-01T11:00:00", + "2024-01-01T11:01:00", + "2024-01-01T11:02:00", + "2024-01-01T11:03:00", + "2024-01-01T11:04:00", + "2024-01-01T11:05:00", + "2024-01-01T11:06:00", + "2024-01-01T11:07:00", + "2024-01-01T11:08:00", + "2024-01-01T11:09:00", + "2024-01-01T11:10:00", + "2024-01-01T11:11:00", + "2024-01-01T11:12:00", + "2024-01-01T11:13:00", + "2024-01-01T11:14:00", + "2024-01-01T11:15:00", + "2024-01-01T11:16:00", + "2024-01-01T11:17:00", + "2024-01-01T11:18:00", + "2024-01-01T11:19:00", + "2024-01-01T11:20:00", + "2024-01-01T11:21:00", + "2024-01-01T11:22:00", + "2024-01-01T11:23:00", + "2024-01-01T11:24:00", + "2024-01-01T11:25:00", + "2024-01-01T11:26:00", + "2024-01-01T11:27:00", + "2024-01-01T11:28:00", + "2024-01-01T11:29:00", + "2024-01-01T11:30:00", + "2024-01-01T11:31:00", + "2024-01-01T11:32:00", + "2024-01-01T11:33:00", + "2024-01-01T11:34:00", + "2024-01-01T11:35:00", + "2024-01-01T11:36:00", + "2024-01-01T11:37:00", + "2024-01-01T11:38:00", + "2024-01-01T11:39:00", + "2024-01-01T11:40:00", + "2024-01-01T11:41:00", + "2024-01-01T11:42:00", + "2024-01-01T11:43:00", + "2024-01-01T11:44:00", + "2024-01-01T11:45:00", + "2024-01-01T11:46:00", + "2024-01-01T11:47:00", + "2024-01-01T11:48:00", + "2024-01-01T11:49:00", + "2024-01-01T11:50:00", + "2024-01-01T11:51:00", + "2024-01-01T11:52:00", + "2024-01-01T11:53:00", + "2024-01-01T11:54:00", + "2024-01-01T11:55:00", + "2024-01-01T11:56:00", + "2024-01-01T11:57:00", + "2024-01-01T11:58:00", + "2024-01-01T11:59:00", + "2024-01-01T12:00:00", + "2024-01-01T12:01:00", + "2024-01-01T12:02:00", + "2024-01-01T12:03:00", + "2024-01-01T12:04:00", + "2024-01-01T12:05:00", + "2024-01-01T12:06:00", + "2024-01-01T12:07:00", + "2024-01-01T12:08:00", + "2024-01-01T12:09:00", + "2024-01-01T12:10:00", + "2024-01-01T12:11:00", + "2024-01-01T12:12:00", + "2024-01-01T12:13:00", + "2024-01-01T12:14:00", + "2024-01-01T12:15:00", + "2024-01-01T12:16:00", + "2024-01-01T12:17:00", + "2024-01-01T12:18:00", + "2024-01-01T12:19:00", + "2024-01-01T12:20:00", + "2024-01-01T12:21:00", + "2024-01-01T12:22:00", + "2024-01-01T12:23:00", + "2024-01-01T12:24:00", + "2024-01-01T12:25:00", + "2024-01-01T12:26:00", + "2024-01-01T12:27:00", + "2024-01-01T12:28:00", + "2024-01-01T12:29:00", + "2024-01-01T12:30:00", + "2024-01-01T12:31:00", + "2024-01-01T12:32:00", + "2024-01-01T12:33:00", + "2024-01-01T12:34:00", + "2024-01-01T12:35:00", + "2024-01-01T12:36:00", + "2024-01-01T12:37:00", + "2024-01-01T12:38:00", + "2024-01-01T12:39:00", + "2024-01-01T12:40:00", + "2024-01-01T12:41:00", + "2024-01-01T12:42:00", + "2024-01-01T12:43:00", + "2024-01-01T12:44:00", + "2024-01-01T12:45:00", + "2024-01-01T12:46:00", + "2024-01-01T12:47:00", + "2024-01-01T12:48:00", + "2024-01-01T12:49:00", + "2024-01-01T12:50:00", + "2024-01-01T12:51:00", + "2024-01-01T12:52:00", + "2024-01-01T12:53:00", + "2024-01-01T12:54:00", + "2024-01-01T12:55:00", + "2024-01-01T12:56:00", + "2024-01-01T12:57:00", + "2024-01-01T12:58:00", + "2024-01-01T12:59:00", + "2024-01-01T13:00:00", + "2024-01-01T13:01:00", + "2024-01-01T13:02:00", + "2024-01-01T13:03:00", + "2024-01-01T13:04:00", + "2024-01-01T13:05:00", + "2024-01-01T13:06:00", + "2024-01-01T13:07:00", + "2024-01-01T13:08:00", + "2024-01-01T13:09:00", + "2024-01-01T13:10:00", + "2024-01-01T13:11:00", + "2024-01-01T13:12:00", + "2024-01-01T13:13:00", + "2024-01-01T13:14:00", + "2024-01-01T13:15:00", + "2024-01-01T13:16:00", + "2024-01-01T13:17:00", + "2024-01-01T13:18:00", + "2024-01-01T13:19:00", + "2024-01-01T13:20:00", + "2024-01-01T13:21:00", + "2024-01-01T13:22:00", + "2024-01-01T13:23:00", + "2024-01-01T13:24:00", + "2024-01-01T13:25:00", + "2024-01-01T13:26:00", + "2024-01-01T13:27:00", + "2024-01-01T13:28:00", + "2024-01-01T13:29:00", + "2024-01-01T13:30:00", + "2024-01-01T13:31:00", + "2024-01-01T13:32:00", + "2024-01-01T13:33:00", + "2024-01-01T13:34:00", + "2024-01-01T13:35:00", + "2024-01-01T13:36:00", + "2024-01-01T13:37:00", + "2024-01-01T13:38:00", + "2024-01-01T13:39:00", + "2024-01-01T13:40:00", + "2024-01-01T13:41:00", + "2024-01-01T13:42:00", + "2024-01-01T13:43:00", + "2024-01-01T13:44:00", + "2024-01-01T13:45:00", + "2024-01-01T13:46:00", + "2024-01-01T13:47:00", + "2024-01-01T13:48:00", + "2024-01-01T13:49:00", + "2024-01-01T13:50:00", + "2024-01-01T13:51:00", + "2024-01-01T13:52:00", + "2024-01-01T13:53:00", + "2024-01-01T13:54:00", + "2024-01-01T13:55:00", + "2024-01-01T13:56:00", + "2024-01-01T13:57:00", + "2024-01-01T13:58:00", + "2024-01-01T13:59:00", + "2024-01-01T14:00:00", + "2024-01-01T14:01:00", + "2024-01-01T14:02:00", + "2024-01-01T14:03:00", + "2024-01-01T14:04:00", + "2024-01-01T14:05:00", + "2024-01-01T14:06:00", + "2024-01-01T14:07:00", + "2024-01-01T14:08:00", + "2024-01-01T14:09:00", + "2024-01-01T14:10:00", + "2024-01-01T14:11:00", + "2024-01-01T14:12:00", + "2024-01-01T14:13:00", + "2024-01-01T14:14:00", + "2024-01-01T14:15:00", + "2024-01-01T14:16:00", + "2024-01-01T14:17:00", + "2024-01-01T14:18:00", + "2024-01-01T14:19:00", + "2024-01-01T14:20:00", + "2024-01-01T14:21:00", + "2024-01-01T14:22:00", + "2024-01-01T14:23:00", + "2024-01-01T14:24:00", + "2024-01-01T14:25:00", + "2024-01-01T14:26:00", + "2024-01-01T14:27:00", + "2024-01-01T14:28:00", + "2024-01-01T14:29:00", + "2024-01-01T14:30:00", + "2024-01-01T14:31:00", + "2024-01-01T14:32:00", + "2024-01-01T14:33:00", + "2024-01-01T14:34:00", + "2024-01-01T14:35:00", + "2024-01-01T14:36:00", + "2024-01-01T14:37:00", + "2024-01-01T14:38:00", + "2024-01-01T14:39:00", + "2024-01-01T14:40:00", + "2024-01-01T14:41:00", + "2024-01-01T14:42:00", + "2024-01-01T14:43:00", + "2024-01-01T14:44:00", + "2024-01-01T14:45:00", + "2024-01-01T14:46:00", + "2024-01-01T14:47:00", + "2024-01-01T14:48:00", + "2024-01-01T14:49:00", + "2024-01-01T14:50:00", + "2024-01-01T14:51:00", + "2024-01-01T14:52:00", + "2024-01-01T14:53:00", + "2024-01-01T14:54:00", + "2024-01-01T14:55:00", + "2024-01-01T14:56:00", + "2024-01-01T14:57:00", + "2024-01-01T14:58:00", + "2024-01-01T14:59:00", + "2024-01-01T15:00:00", + "2024-01-01T15:01:00", + "2024-01-01T15:02:00", + "2024-01-01T15:03:00", + "2024-01-01T15:04:00", + "2024-01-01T15:05:00", + "2024-01-01T15:06:00", + "2024-01-01T15:07:00", + "2024-01-01T15:08:00", + "2024-01-01T15:09:00", + "2024-01-01T15:10:00", + "2024-01-01T15:11:00", + "2024-01-01T15:12:00", + "2024-01-01T15:13:00", + "2024-01-01T15:14:00", + "2024-01-01T15:15:00", + "2024-01-01T15:16:00", + "2024-01-01T15:17:00", + "2024-01-01T15:18:00", + "2024-01-01T15:19:00", + "2024-01-01T15:20:00", + "2024-01-01T15:21:00", + "2024-01-01T15:22:00", + "2024-01-01T15:23:00", + "2024-01-01T15:24:00", + "2024-01-01T15:25:00", + "2024-01-01T15:26:00", + "2024-01-01T15:27:00", + "2024-01-01T15:28:00", + "2024-01-01T15:29:00", + "2024-01-01T15:30:00", + "2024-01-01T15:31:00", + "2024-01-01T15:32:00", + "2024-01-01T15:33:00", + "2024-01-01T15:34:00", + "2024-01-01T15:35:00", + "2024-01-01T15:36:00", + "2024-01-01T15:37:00", + "2024-01-01T15:38:00", + "2024-01-01T15:39:00", + "2024-01-01T15:40:00", + "2024-01-01T15:41:00", + "2024-01-01T15:42:00", + "2024-01-01T15:43:00", + "2024-01-01T15:44:00", + "2024-01-01T15:45:00", + "2024-01-01T15:46:00", + "2024-01-01T15:47:00", + "2024-01-01T15:48:00", + "2024-01-01T15:49:00", + "2024-01-01T15:50:00", + "2024-01-01T15:51:00", + "2024-01-01T15:52:00", + "2024-01-01T15:53:00", + "2024-01-01T15:54:00", + "2024-01-01T15:55:00", + "2024-01-01T15:56:00", + "2024-01-01T15:57:00", + "2024-01-01T15:58:00", + "2024-01-01T15:59:00", + "2024-01-01T16:00:00", + "2024-01-01T16:01:00", + "2024-01-01T16:02:00", + "2024-01-01T16:03:00", + "2024-01-01T16:04:00", + "2024-01-01T16:05:00", + "2024-01-01T16:06:00", + "2024-01-01T16:07:00", + "2024-01-01T16:08:00", + "2024-01-01T16:09:00", + "2024-01-01T16:10:00", + "2024-01-01T16:11:00", + "2024-01-01T16:12:00", + "2024-01-01T16:13:00", + "2024-01-01T16:14:00", + "2024-01-01T16:15:00", + "2024-01-01T16:16:00", + "2024-01-01T16:17:00", + "2024-01-01T16:18:00", + "2024-01-01T16:19:00", + "2024-01-01T16:20:00", + "2024-01-01T16:21:00", + "2024-01-01T16:22:00", + "2024-01-01T16:23:00", + "2024-01-01T16:24:00", + "2024-01-01T16:25:00", + "2024-01-01T16:26:00", + "2024-01-01T16:27:00", + "2024-01-01T16:28:00", + "2024-01-01T16:29:00", + "2024-01-01T16:30:00", + "2024-01-01T16:31:00", + "2024-01-01T16:32:00", + "2024-01-01T16:33:00", + "2024-01-01T16:34:00", + "2024-01-01T16:35:00", + "2024-01-01T16:36:00", + "2024-01-01T16:37:00", + "2024-01-01T16:38:00", + "2024-01-01T16:39:00", + "2024-01-01T16:40:00", + "2024-01-01T16:41:00", + "2024-01-01T16:42:00", + "2024-01-01T16:43:00", + "2024-01-01T16:44:00", + "2024-01-01T16:45:00", + "2024-01-01T16:46:00", + "2024-01-01T16:47:00", + "2024-01-01T16:48:00", + "2024-01-01T16:49:00", + "2024-01-01T16:50:00", + "2024-01-01T16:51:00", + "2024-01-01T16:52:00", + "2024-01-01T16:53:00", + "2024-01-01T16:54:00", + "2024-01-01T16:55:00", + "2024-01-01T16:56:00", + "2024-01-01T16:57:00", + "2024-01-01T16:58:00", + "2024-01-01T16:59:00", + "2024-01-01T17:00:00", + "2024-01-01T17:01:00", + "2024-01-01T17:02:00", + "2024-01-01T17:03:00", + "2024-01-01T17:04:00", + "2024-01-01T17:05:00", + "2024-01-01T17:06:00", + "2024-01-01T17:07:00", + "2024-01-01T17:08:00", + "2024-01-01T17:09:00", + "2024-01-01T17:10:00", + "2024-01-01T17:11:00", + "2024-01-01T17:12:00", + "2024-01-01T17:13:00", + "2024-01-01T17:14:00", + "2024-01-01T17:15:00", + "2024-01-01T17:16:00", + "2024-01-01T17:17:00", + "2024-01-01T17:18:00", + "2024-01-01T17:19:00", + "2024-01-01T17:20:00", + "2024-01-01T17:21:00", + "2024-01-01T17:22:00", + "2024-01-01T17:23:00", + "2024-01-01T17:24:00", + "2024-01-01T17:25:00", + "2024-01-01T17:26:00", + "2024-01-01T17:27:00", + "2024-01-01T17:28:00", + "2024-01-01T17:29:00", + "2024-01-01T17:30:00", + "2024-01-01T17:31:00", + "2024-01-01T17:32:00", + "2024-01-01T17:33:00", + "2024-01-01T17:34:00", + "2024-01-01T17:35:00", + "2024-01-01T17:36:00", + "2024-01-01T17:37:00", + "2024-01-01T17:38:00", + "2024-01-01T17:39:00", + "2024-01-01T17:40:00", + "2024-01-01T17:41:00", + "2024-01-01T17:42:00", + "2024-01-01T17:43:00", + "2024-01-01T17:44:00", + "2024-01-01T17:45:00", + "2024-01-01T17:46:00", + "2024-01-01T17:47:00", + "2024-01-01T17:48:00", + "2024-01-01T17:49:00", + "2024-01-01T17:50:00", + "2024-01-01T17:51:00", + "2024-01-01T17:52:00", + "2024-01-01T17:53:00", + "2024-01-01T17:54:00", + "2024-01-01T17:55:00", + "2024-01-01T17:56:00", + "2024-01-01T17:57:00", + "2024-01-01T17:58:00", + "2024-01-01T17:59:00", + "2024-01-01T18:00:00", + "2024-01-01T18:01:00", + "2024-01-01T18:02:00", + "2024-01-01T18:03:00", + "2024-01-01T18:04:00", + "2024-01-01T18:05:00", + "2024-01-01T18:06:00", + "2024-01-01T18:07:00", + "2024-01-01T18:08:00", + "2024-01-01T18:09:00", + "2024-01-01T18:10:00", + "2024-01-01T18:11:00", + "2024-01-01T18:12:00", + "2024-01-01T18:13:00", + "2024-01-01T18:14:00", + "2024-01-01T18:15:00", + "2024-01-01T18:16:00", + "2024-01-01T18:17:00", + "2024-01-01T18:18:00", + "2024-01-01T18:19:00", + "2024-01-01T18:20:00", + "2024-01-01T18:21:00", + "2024-01-01T18:22:00", + "2024-01-01T18:23:00", + "2024-01-01T18:24:00", + "2024-01-01T18:25:00", + "2024-01-01T18:26:00", + "2024-01-01T18:27:00", + "2024-01-01T18:28:00", + "2024-01-01T18:29:00", + "2024-01-01T18:30:00", + "2024-01-01T18:31:00", + "2024-01-01T18:32:00", + "2024-01-01T18:33:00", + "2024-01-01T18:34:00", + "2024-01-01T18:35:00", + "2024-01-01T18:36:00", + "2024-01-01T18:37:00", + "2024-01-01T18:38:00", + "2024-01-01T18:39:00", + "2024-01-01T18:40:00", + "2024-01-01T18:41:00", + "2024-01-01T18:42:00", + "2024-01-01T18:43:00", + "2024-01-01T18:44:00", + "2024-01-01T18:45:00", + "2024-01-01T18:46:00", + "2024-01-01T18:47:00", + "2024-01-01T18:48:00", + "2024-01-01T18:49:00", + "2024-01-01T18:50:00", + "2024-01-01T18:51:00", + "2024-01-01T18:52:00", + "2024-01-01T18:53:00", + "2024-01-01T18:54:00", + "2024-01-01T18:55:00", + "2024-01-01T18:56:00", + "2024-01-01T18:57:00", + "2024-01-01T18:58:00", + "2024-01-01T18:59:00", + "2024-01-01T19:00:00", + "2024-01-01T19:01:00", + "2024-01-01T19:02:00", + "2024-01-01T19:03:00", + "2024-01-01T19:04:00", + "2024-01-01T19:05:00", + "2024-01-01T19:06:00", + "2024-01-01T19:07:00", + "2024-01-01T19:08:00", + "2024-01-01T19:09:00", + "2024-01-01T19:10:00", + "2024-01-01T19:11:00", + "2024-01-01T19:12:00", + "2024-01-01T19:13:00", + "2024-01-01T19:14:00", + "2024-01-01T19:15:00", + "2024-01-01T19:16:00", + "2024-01-01T19:17:00", + "2024-01-01T19:18:00", + "2024-01-01T19:19:00", + "2024-01-01T19:20:00", + "2024-01-01T19:21:00", + "2024-01-01T19:22:00", + "2024-01-01T19:23:00", + "2024-01-01T19:24:00", + "2024-01-01T19:25:00", + "2024-01-01T19:26:00", + "2024-01-01T19:27:00", + "2024-01-01T19:28:00", + "2024-01-01T19:29:00", + "2024-01-01T19:30:00", + "2024-01-01T19:31:00", + "2024-01-01T19:32:00", + "2024-01-01T19:33:00", + "2024-01-01T19:34:00", + "2024-01-01T19:35:00", + "2024-01-01T19:36:00", + "2024-01-01T19:37:00", + "2024-01-01T19:38:00", + "2024-01-01T19:39:00", + "2024-01-01T19:40:00", + "2024-01-01T19:41:00", + "2024-01-01T19:42:00", + "2024-01-01T19:43:00", + "2024-01-01T19:44:00", + "2024-01-01T19:45:00", + "2024-01-01T19:46:00", + "2024-01-01T19:47:00", + "2024-01-01T19:48:00", + "2024-01-01T19:49:00", + "2024-01-01T19:50:00", + "2024-01-01T19:51:00", + "2024-01-01T19:52:00", + "2024-01-01T19:53:00", + "2024-01-01T19:54:00", + "2024-01-01T19:55:00", + "2024-01-01T19:56:00", + "2024-01-01T19:57:00", + "2024-01-01T19:58:00", + "2024-01-01T19:59:00", + "2024-01-01T20:00:00", + "2024-01-01T20:01:00", + "2024-01-01T20:02:00", + "2024-01-01T20:03:00", + "2024-01-01T20:04:00", + "2024-01-01T20:05:00", + "2024-01-01T20:06:00", + "2024-01-01T20:07:00", + "2024-01-01T20:08:00", + "2024-01-01T20:09:00", + "2024-01-01T20:10:00", + "2024-01-01T20:11:00", + "2024-01-01T20:12:00", + "2024-01-01T20:13:00", + "2024-01-01T20:14:00", + "2024-01-01T20:15:00", + "2024-01-01T20:16:00", + "2024-01-01T20:17:00", + "2024-01-01T20:18:00", + "2024-01-01T20:19:00", + "2024-01-01T20:20:00", + "2024-01-01T20:21:00", + "2024-01-01T20:22:00", + "2024-01-01T20:23:00", + "2024-01-01T20:24:00", + "2024-01-01T20:25:00", + "2024-01-01T20:26:00", + "2024-01-01T20:27:00", + "2024-01-01T20:28:00", + "2024-01-01T20:29:00", + "2024-01-01T20:30:00", + "2024-01-01T20:31:00", + "2024-01-01T20:32:00", + "2024-01-01T20:33:00", + "2024-01-01T20:34:00", + "2024-01-01T20:35:00", + "2024-01-01T20:36:00", + "2024-01-01T20:37:00", + "2024-01-01T20:38:00", + "2024-01-01T20:39:00", + "2024-01-01T20:40:00", + "2024-01-01T20:41:00", + "2024-01-01T20:42:00", + "2024-01-01T20:43:00", + "2024-01-01T20:44:00", + "2024-01-01T20:45:00", + "2024-01-01T20:46:00", + "2024-01-01T20:47:00", + "2024-01-01T20:48:00", + "2024-01-01T20:49:00", + "2024-01-01T20:50:00", + "2024-01-01T20:51:00", + "2024-01-01T20:52:00", + "2024-01-01T20:53:00", + "2024-01-01T20:54:00", + "2024-01-01T20:55:00", + "2024-01-01T20:56:00", + "2024-01-01T20:57:00", + "2024-01-01T20:58:00", + "2024-01-01T20:59:00", + "2024-01-01T21:00:00", + "2024-01-01T21:01:00", + "2024-01-01T21:02:00", + "2024-01-01T21:03:00", + "2024-01-01T21:04:00", + "2024-01-01T21:05:00", + "2024-01-01T21:06:00", + "2024-01-01T21:07:00", + "2024-01-01T21:08:00", + "2024-01-01T21:09:00", + "2024-01-01T21:10:00", + "2024-01-01T21:11:00", + "2024-01-01T21:12:00", + "2024-01-01T21:13:00", + "2024-01-01T21:14:00", + "2024-01-01T21:15:00", + "2024-01-01T21:16:00", + "2024-01-01T21:17:00", + "2024-01-01T21:18:00", + "2024-01-01T21:19:00", + "2024-01-01T21:20:00", + "2024-01-01T21:21:00", + "2024-01-01T21:22:00", + "2024-01-01T21:23:00", + "2024-01-01T21:24:00", + "2024-01-01T21:25:00", + "2024-01-01T21:26:00", + "2024-01-01T21:27:00", + "2024-01-01T21:28:00", + "2024-01-01T21:29:00", + "2024-01-01T21:30:00", + "2024-01-01T21:31:00", + "2024-01-01T21:32:00", + "2024-01-01T21:33:00", + "2024-01-01T21:34:00", + "2024-01-01T21:35:00", + "2024-01-01T21:36:00", + "2024-01-01T21:37:00", + "2024-01-01T21:38:00", + "2024-01-01T21:39:00", + "2024-01-01T21:40:00", + "2024-01-01T21:41:00", + "2024-01-01T21:42:00", + "2024-01-01T21:43:00", + "2024-01-01T21:44:00", + "2024-01-01T21:45:00", + "2024-01-01T21:46:00", + "2024-01-01T21:47:00", + "2024-01-01T21:48:00", + "2024-01-01T21:49:00", + "2024-01-01T21:50:00", + "2024-01-01T21:51:00", + "2024-01-01T21:52:00", + "2024-01-01T21:53:00", + "2024-01-01T21:54:00", + "2024-01-01T21:55:00", + "2024-01-01T21:56:00", + "2024-01-01T21:57:00", + "2024-01-01T21:58:00", + "2024-01-01T21:59:00", + "2024-01-01T22:00:00", + "2024-01-01T22:01:00", + "2024-01-01T22:02:00", + "2024-01-01T22:03:00", + "2024-01-01T22:04:00", + "2024-01-01T22:05:00", + "2024-01-01T22:06:00", + "2024-01-01T22:07:00", + "2024-01-01T22:08:00", + "2024-01-01T22:09:00", + "2024-01-01T22:10:00", + "2024-01-01T22:11:00", + "2024-01-01T22:12:00", + "2024-01-01T22:13:00", + "2024-01-01T22:14:00", + "2024-01-01T22:15:00", + "2024-01-01T22:16:00", + "2024-01-01T22:17:00", + "2024-01-01T22:18:00", + "2024-01-01T22:19:00", + "2024-01-01T22:20:00", + "2024-01-01T22:21:00", + "2024-01-01T22:22:00", + "2024-01-01T22:23:00", + "2024-01-01T22:24:00", + "2024-01-01T22:25:00", + "2024-01-01T22:26:00", + "2024-01-01T22:27:00", + "2024-01-01T22:28:00", + "2024-01-01T22:29:00", + "2024-01-01T22:30:00", + "2024-01-01T22:31:00", + "2024-01-01T22:32:00", + "2024-01-01T22:33:00", + "2024-01-01T22:34:00", + "2024-01-01T22:35:00", + "2024-01-01T22:36:00", + "2024-01-01T22:37:00", + "2024-01-01T22:38:00", + "2024-01-01T22:39:00", + "2024-01-01T22:40:00", + "2024-01-01T22:41:00", + "2024-01-01T22:42:00", + "2024-01-01T22:43:00", + "2024-01-01T22:44:00", + "2024-01-01T22:45:00", + "2024-01-01T22:46:00", + "2024-01-01T22:47:00", + "2024-01-01T22:48:00", + "2024-01-01T22:49:00", + "2024-01-01T22:50:00", + "2024-01-01T22:51:00", + "2024-01-01T22:52:00", + "2024-01-01T22:53:00", + "2024-01-01T22:54:00", + "2024-01-01T22:55:00", + "2024-01-01T22:56:00", + "2024-01-01T22:57:00", + "2024-01-01T22:58:00", + "2024-01-01T22:59:00", + "2024-01-01T23:00:00", + "2024-01-01T23:01:00", + "2024-01-01T23:02:00", + "2024-01-01T23:03:00", + "2024-01-01T23:04:00", + "2024-01-01T23:05:00", + "2024-01-01T23:06:00", + "2024-01-01T23:07:00", + "2024-01-01T23:08:00", + "2024-01-01T23:09:00", + "2024-01-01T23:10:00", + "2024-01-01T23:11:00", + "2024-01-01T23:12:00", + "2024-01-01T23:13:00", + "2024-01-01T23:14:00", + "2024-01-01T23:15:00", + "2024-01-01T23:16:00", + "2024-01-01T23:17:00", + "2024-01-01T23:18:00", + "2024-01-01T23:19:00", + "2024-01-01T23:20:00", + "2024-01-01T23:21:00", + "2024-01-01T23:22:00", + "2024-01-01T23:23:00", + "2024-01-01T23:24:00", + "2024-01-01T23:25:00", + "2024-01-01T23:26:00", + "2024-01-01T23:27:00", + "2024-01-01T23:28:00", + "2024-01-01T23:29:00", + "2024-01-01T23:30:00", + "2024-01-01T23:31:00", + "2024-01-01T23:32:00", + "2024-01-01T23:33:00", + "2024-01-01T23:34:00", + "2024-01-01T23:35:00", + "2024-01-01T23:36:00", + "2024-01-01T23:37:00", + "2024-01-01T23:38:00", + "2024-01-01T23:39:00", + "2024-01-01T23:40:00", + "2024-01-01T23:41:00", + "2024-01-01T23:42:00", + "2024-01-01T23:43:00", + "2024-01-01T23:44:00", + "2024-01-01T23:45:00", + "2024-01-01T23:46:00", + "2024-01-01T23:47:00", + "2024-01-01T23:48:00", + "2024-01-01T23:49:00", + "2024-01-01T23:50:00", + "2024-01-01T23:51:00", + "2024-01-01T23:52:00", + "2024-01-01T23:53:00", + "2024-01-01T23:54:00", + "2024-01-01T23:55:00", + "2024-01-01T23:56:00", + "2024-01-01T23:57:00", + "2024-01-01T23:58:00", + "2024-01-01T23:59:00", + "2024-01-02T00:00:00", + "2024-01-02T00:01:00", + "2024-01-02T00:02:00", + "2024-01-02T00:03:00", + "2024-01-02T00:04:00", + "2024-01-02T00:05:00", + "2024-01-02T00:06:00", + "2024-01-02T00:07:00", + "2024-01-02T00:08:00", + "2024-01-02T00:09:00", + "2024-01-02T00:10:00", + "2024-01-02T00:11:00", + "2024-01-02T00:12:00", + "2024-01-02T00:13:00", + "2024-01-02T00:14:00", + "2024-01-02T00:15:00", + "2024-01-02T00:16:00", + "2024-01-02T00:17:00", + "2024-01-02T00:18:00", + "2024-01-02T00:19:00", + "2024-01-02T00:20:00", + "2024-01-02T00:21:00", + "2024-01-02T00:22:00", + "2024-01-02T00:23:00", + "2024-01-02T00:24:00", + "2024-01-02T00:25:00", + "2024-01-02T00:26:00", + "2024-01-02T00:27:00", + "2024-01-02T00:28:00", + "2024-01-02T00:29:00", + "2024-01-02T00:30:00", + "2024-01-02T00:31:00", + "2024-01-02T00:32:00", + "2024-01-02T00:33:00", + "2024-01-02T00:34:00", + "2024-01-02T00:35:00", + "2024-01-02T00:36:00", + "2024-01-02T00:37:00", + "2024-01-02T00:38:00", + "2024-01-02T00:39:00", + "2024-01-02T00:40:00", + "2024-01-02T00:41:00", + "2024-01-02T00:42:00", + "2024-01-02T00:43:00", + "2024-01-02T00:44:00", + "2024-01-02T00:45:00", + "2024-01-02T00:46:00", + "2024-01-02T00:47:00", + "2024-01-02T00:48:00", + "2024-01-02T00:49:00", + "2024-01-02T00:50:00", + "2024-01-02T00:51:00", + "2024-01-02T00:52:00", + "2024-01-02T00:53:00", + "2024-01-02T00:54:00", + "2024-01-02T00:55:00", + "2024-01-02T00:56:00", + "2024-01-02T00:57:00", + "2024-01-02T00:58:00", + "2024-01-02T00:59:00", + "2024-01-02T01:00:00", + "2024-01-02T01:01:00", + "2024-01-02T01:02:00", + "2024-01-02T01:03:00", + "2024-01-02T01:04:00", + "2024-01-02T01:05:00", + "2024-01-02T01:06:00", + "2024-01-02T01:07:00", + "2024-01-02T01:08:00", + "2024-01-02T01:09:00", + "2024-01-02T01:10:00", + "2024-01-02T01:11:00", + "2024-01-02T01:12:00", + "2024-01-02T01:13:00", + "2024-01-02T01:14:00", + "2024-01-02T01:15:00", + "2024-01-02T01:16:00", + "2024-01-02T01:17:00", + "2024-01-02T01:18:00", + "2024-01-02T01:19:00", + "2024-01-02T01:20:00", + "2024-01-02T01:21:00", + "2024-01-02T01:22:00", + "2024-01-02T01:23:00", + "2024-01-02T01:24:00", + "2024-01-02T01:25:00", + "2024-01-02T01:26:00", + "2024-01-02T01:27:00", + "2024-01-02T01:28:00", + "2024-01-02T01:29:00", + "2024-01-02T01:30:00", + "2024-01-02T01:31:00", + "2024-01-02T01:32:00", + "2024-01-02T01:33:00", + "2024-01-02T01:34:00", + "2024-01-02T01:35:00", + "2024-01-02T01:36:00", + "2024-01-02T01:37:00", + "2024-01-02T01:38:00", + "2024-01-02T01:39:00", + "2024-01-02T01:40:00", + "2024-01-02T01:41:00", + "2024-01-02T01:42:00", + "2024-01-02T01:43:00", + "2024-01-02T01:44:00", + "2024-01-02T01:45:00", + "2024-01-02T01:46:00", + "2024-01-02T01:47:00", + "2024-01-02T01:48:00", + "2024-01-02T01:49:00", + "2024-01-02T01:50:00", + "2024-01-02T01:51:00", + "2024-01-02T01:52:00", + "2024-01-02T01:53:00", + "2024-01-02T01:54:00", + "2024-01-02T01:55:00", + "2024-01-02T01:56:00", + "2024-01-02T01:57:00", + "2024-01-02T01:58:00", + "2024-01-02T01:59:00", + "2024-01-02T02:00:00", + "2024-01-02T02:01:00", + "2024-01-02T02:02:00", + "2024-01-02T02:03:00", + "2024-01-02T02:04:00", + "2024-01-02T02:05:00", + "2024-01-02T02:06:00", + "2024-01-02T02:07:00", + "2024-01-02T02:08:00", + "2024-01-02T02:09:00", + "2024-01-02T02:10:00", + "2024-01-02T02:11:00", + "2024-01-02T02:12:00", + "2024-01-02T02:13:00", + "2024-01-02T02:14:00", + "2024-01-02T02:15:00", + "2024-01-02T02:16:00", + "2024-01-02T02:17:00", + "2024-01-02T02:18:00", + "2024-01-02T02:19:00", + "2024-01-02T02:20:00", + "2024-01-02T02:21:00", + "2024-01-02T02:22:00", + "2024-01-02T02:23:00", + "2024-01-02T02:24:00", + "2024-01-02T02:25:00", + "2024-01-02T02:26:00", + "2024-01-02T02:27:00", + "2024-01-02T02:28:00", + "2024-01-02T02:29:00", + "2024-01-02T02:30:00", + "2024-01-02T02:31:00", + "2024-01-02T02:32:00", + "2024-01-02T02:33:00", + "2024-01-02T02:34:00", + "2024-01-02T02:35:00", + "2024-01-02T02:36:00", + "2024-01-02T02:37:00", + "2024-01-02T02:38:00", + "2024-01-02T02:39:00", + "2024-01-02T02:40:00", + "2024-01-02T02:41:00", + "2024-01-02T02:42:00", + "2024-01-02T02:43:00", + "2024-01-02T02:44:00", + "2024-01-02T02:45:00", + "2024-01-02T02:46:00", + "2024-01-02T02:47:00", + "2024-01-02T02:48:00", + "2024-01-02T02:49:00", + "2024-01-02T02:50:00", + "2024-01-02T02:51:00", + "2024-01-02T02:52:00", + "2024-01-02T02:53:00", + "2024-01-02T02:54:00", + "2024-01-02T02:55:00", + "2024-01-02T02:56:00", + "2024-01-02T02:57:00", + "2024-01-02T02:58:00", + "2024-01-02T02:59:00", + "2024-01-02T03:00:00", + "2024-01-02T03:01:00", + "2024-01-02T03:02:00", + "2024-01-02T03:03:00", + "2024-01-02T03:04:00", + "2024-01-02T03:05:00", + "2024-01-02T03:06:00", + "2024-01-02T03:07:00", + "2024-01-02T03:08:00", + "2024-01-02T03:09:00", + "2024-01-02T03:10:00", + "2024-01-02T03:11:00", + "2024-01-02T03:12:00", + "2024-01-02T03:13:00", + "2024-01-02T03:14:00", + "2024-01-02T03:15:00", + "2024-01-02T03:16:00", + "2024-01-02T03:17:00", + "2024-01-02T03:18:00", + "2024-01-02T03:19:00", + "2024-01-02T03:20:00", + "2024-01-02T03:21:00", + "2024-01-02T03:22:00", + "2024-01-02T03:23:00", + "2024-01-02T03:24:00", + "2024-01-02T03:25:00", + "2024-01-02T03:26:00", + "2024-01-02T03:27:00", + "2024-01-02T03:28:00", + "2024-01-02T03:29:00", + "2024-01-02T03:30:00", + "2024-01-02T03:31:00", + "2024-01-02T03:32:00", + "2024-01-02T03:33:00", + "2024-01-02T03:34:00", + "2024-01-02T03:35:00", + "2024-01-02T03:36:00", + "2024-01-02T03:37:00", + "2024-01-02T03:38:00", + "2024-01-02T03:39:00", + "2024-01-02T03:40:00", + "2024-01-02T03:41:00", + "2024-01-02T03:42:00", + "2024-01-02T03:43:00", + "2024-01-02T03:44:00", + "2024-01-02T03:45:00", + "2024-01-02T03:46:00", + "2024-01-02T03:47:00", + "2024-01-02T03:48:00", + "2024-01-02T03:49:00", + "2024-01-02T03:50:00", + "2024-01-02T03:51:00", + "2024-01-02T03:52:00", + "2024-01-02T03:53:00", + "2024-01-02T03:54:00", + "2024-01-02T03:55:00", + "2024-01-02T03:56:00", + "2024-01-02T03:57:00", + "2024-01-02T03:58:00", + "2024-01-02T03:59:00", + "2024-01-02T04:00:00", + "2024-01-02T04:01:00", + "2024-01-02T04:02:00", + "2024-01-02T04:03:00", + "2024-01-02T04:04:00", + "2024-01-02T04:05:00", + "2024-01-02T04:06:00", + "2024-01-02T04:07:00", + "2024-01-02T04:08:00", + "2024-01-02T04:09:00", + "2024-01-02T04:10:00", + "2024-01-02T04:11:00", + "2024-01-02T04:12:00", + "2024-01-02T04:13:00", + "2024-01-02T04:14:00", + "2024-01-02T04:15:00", + "2024-01-02T04:16:00", + "2024-01-02T04:17:00", + "2024-01-02T04:18:00", + "2024-01-02T04:19:00", + "2024-01-02T04:20:00", + "2024-01-02T04:21:00", + "2024-01-02T04:22:00", + "2024-01-02T04:23:00", + "2024-01-02T04:24:00", + "2024-01-02T04:25:00", + "2024-01-02T04:26:00", + "2024-01-02T04:27:00", + "2024-01-02T04:28:00", + "2024-01-02T04:29:00", + "2024-01-02T04:30:00", + "2024-01-02T04:31:00", + "2024-01-02T04:32:00", + "2024-01-02T04:33:00", + "2024-01-02T04:34:00", + "2024-01-02T04:35:00", + "2024-01-02T04:36:00", + "2024-01-02T04:37:00", + "2024-01-02T04:38:00", + "2024-01-02T04:39:00", + "2024-01-02T04:40:00", + "2024-01-02T04:41:00", + "2024-01-02T04:42:00", + "2024-01-02T04:43:00", + "2024-01-02T04:44:00", + "2024-01-02T04:45:00", + "2024-01-02T04:46:00", + "2024-01-02T04:47:00", + "2024-01-02T04:48:00", + "2024-01-02T04:49:00", + "2024-01-02T04:50:00", + "2024-01-02T04:51:00", + "2024-01-02T04:52:00", + "2024-01-02T04:53:00", + "2024-01-02T04:54:00", + "2024-01-02T04:55:00", + "2024-01-02T04:56:00", + "2024-01-02T04:57:00", + "2024-01-02T04:58:00", + "2024-01-02T04:59:00", + "2024-01-02T05:00:00", + "2024-01-02T05:01:00", + "2024-01-02T05:02:00", + "2024-01-02T05:03:00", + "2024-01-02T05:04:00", + "2024-01-02T05:05:00", + "2024-01-02T05:06:00", + "2024-01-02T05:07:00", + "2024-01-02T05:08:00", + "2024-01-02T05:09:00", + "2024-01-02T05:10:00", + "2024-01-02T05:11:00", + "2024-01-02T05:12:00", + "2024-01-02T05:13:00", + "2024-01-02T05:14:00", + "2024-01-02T05:15:00", + "2024-01-02T05:16:00", + "2024-01-02T05:17:00", + "2024-01-02T05:18:00", + "2024-01-02T05:19:00", + "2024-01-02T05:20:00", + "2024-01-02T05:21:00", + "2024-01-02T05:22:00", + "2024-01-02T05:23:00", + "2024-01-02T05:24:00", + "2024-01-02T05:25:00", + "2024-01-02T05:26:00", + "2024-01-02T05:27:00", + "2024-01-02T05:28:00", + "2024-01-02T05:29:00", + "2024-01-02T05:30:00", + "2024-01-02T05:31:00", + "2024-01-02T05:32:00", + "2024-01-02T05:33:00", + "2024-01-02T05:34:00", + "2024-01-02T05:35:00", + "2024-01-02T05:36:00", + "2024-01-02T05:37:00", + "2024-01-02T05:38:00", + "2024-01-02T05:39:00", + "2024-01-02T05:40:00", + "2024-01-02T05:41:00", + "2024-01-02T05:42:00", + "2024-01-02T05:43:00", + "2024-01-02T05:44:00", + "2024-01-02T05:45:00", + "2024-01-02T05:46:00", + "2024-01-02T05:47:00", + "2024-01-02T05:48:00", + "2024-01-02T05:49:00", + "2024-01-02T05:50:00", + "2024-01-02T05:51:00", + "2024-01-02T05:52:00", + "2024-01-02T05:53:00", + "2024-01-02T05:54:00", + "2024-01-02T05:55:00", + "2024-01-02T05:56:00", + "2024-01-02T05:57:00", + "2024-01-02T05:58:00", + "2024-01-02T05:59:00", + "2024-01-02T06:00:00", + "2024-01-02T06:01:00", + "2024-01-02T06:02:00", + "2024-01-02T06:03:00", + "2024-01-02T06:04:00", + "2024-01-02T06:05:00", + "2024-01-02T06:06:00", + "2024-01-02T06:07:00", + "2024-01-02T06:08:00", + "2024-01-02T06:09:00", + "2024-01-02T06:10:00", + "2024-01-02T06:11:00", + "2024-01-02T06:12:00", + "2024-01-02T06:13:00", + "2024-01-02T06:14:00", + "2024-01-02T06:15:00", + "2024-01-02T06:16:00", + "2024-01-02T06:17:00", + "2024-01-02T06:18:00", + "2024-01-02T06:19:00", + "2024-01-02T06:20:00", + "2024-01-02T06:21:00", + "2024-01-02T06:22:00", + "2024-01-02T06:23:00", + "2024-01-02T06:24:00", + "2024-01-02T06:25:00", + "2024-01-02T06:26:00", + "2024-01-02T06:27:00", + "2024-01-02T06:28:00", + "2024-01-02T06:29:00", + "2024-01-02T06:30:00", + "2024-01-02T06:31:00", + "2024-01-02T06:32:00", + "2024-01-02T06:33:00", + "2024-01-02T06:34:00", + "2024-01-02T06:35:00", + "2024-01-02T06:36:00", + "2024-01-02T06:37:00", + "2024-01-02T06:38:00", + "2024-01-02T06:39:00", + "2024-01-02T06:40:00", + "2024-01-02T06:41:00", + "2024-01-02T06:42:00", + "2024-01-02T06:43:00", + "2024-01-02T06:44:00", + "2024-01-02T06:45:00", + "2024-01-02T06:46:00", + "2024-01-02T06:47:00", + "2024-01-02T06:48:00", + "2024-01-02T06:49:00", + "2024-01-02T06:50:00", + "2024-01-02T06:51:00", + "2024-01-02T06:52:00", + "2024-01-02T06:53:00", + "2024-01-02T06:54:00", + "2024-01-02T06:55:00", + "2024-01-02T06:56:00", + "2024-01-02T06:57:00", + "2024-01-02T06:58:00", + "2024-01-02T06:59:00", + "2024-01-02T07:00:00", + "2024-01-02T07:01:00", + "2024-01-02T07:02:00", + "2024-01-02T07:03:00", + "2024-01-02T07:04:00", + "2024-01-02T07:05:00", + "2024-01-02T07:06:00", + "2024-01-02T07:07:00", + "2024-01-02T07:08:00", + "2024-01-02T07:09:00", + "2024-01-02T07:10:00", + "2024-01-02T07:11:00", + "2024-01-02T07:12:00", + "2024-01-02T07:13:00", + "2024-01-02T07:14:00", + "2024-01-02T07:15:00", + "2024-01-02T07:16:00", + "2024-01-02T07:17:00", + "2024-01-02T07:18:00", + "2024-01-02T07:19:00", + "2024-01-02T07:20:00", + "2024-01-02T07:21:00", + "2024-01-02T07:22:00", + "2024-01-02T07:23:00", + "2024-01-02T07:24:00", + "2024-01-02T07:25:00", + "2024-01-02T07:26:00", + "2024-01-02T07:27:00", + "2024-01-02T07:28:00", + "2024-01-02T07:29:00", + "2024-01-02T07:30:00", + "2024-01-02T07:31:00", + "2024-01-02T07:32:00", + "2024-01-02T07:33:00", + "2024-01-02T07:34:00", + "2024-01-02T07:35:00", + "2024-01-02T07:36:00", + "2024-01-02T07:37:00", + "2024-01-02T07:38:00", + "2024-01-02T07:39:00", + "2024-01-02T07:40:00", + "2024-01-02T07:41:00", + "2024-01-02T07:42:00", + "2024-01-02T07:43:00", + "2024-01-02T07:44:00", + "2024-01-02T07:45:00", + "2024-01-02T07:46:00", + "2024-01-02T07:47:00", + "2024-01-02T07:48:00", + "2024-01-02T07:49:00", + "2024-01-02T07:50:00", + "2024-01-02T07:51:00", + "2024-01-02T07:52:00", + "2024-01-02T07:53:00", + "2024-01-02T07:54:00", + "2024-01-02T07:55:00", + "2024-01-02T07:56:00", + "2024-01-02T07:57:00", + "2024-01-02T07:58:00", + "2024-01-02T07:59:00", + "2024-01-02T08:00:00", + "2024-01-02T08:01:00", + "2024-01-02T08:02:00", + "2024-01-02T08:03:00", + "2024-01-02T08:04:00", + "2024-01-02T08:05:00", + "2024-01-02T08:06:00", + "2024-01-02T08:07:00", + "2024-01-02T08:08:00", + "2024-01-02T08:09:00", + "2024-01-02T08:10:00", + "2024-01-02T08:11:00", + "2024-01-02T08:12:00", + "2024-01-02T08:13:00", + "2024-01-02T08:14:00", + "2024-01-02T08:15:00", + "2024-01-02T08:16:00", + "2024-01-02T08:17:00", + "2024-01-02T08:18:00", + "2024-01-02T08:19:00", + "2024-01-02T08:20:00", + "2024-01-02T08:21:00", + "2024-01-02T08:22:00", + "2024-01-02T08:23:00", + "2024-01-02T08:24:00", + "2024-01-02T08:25:00", + "2024-01-02T08:26:00", + "2024-01-02T08:27:00", + "2024-01-02T08:28:00", + "2024-01-02T08:29:00", + "2024-01-02T08:30:00", + "2024-01-02T08:31:00", + "2024-01-02T08:32:00", + "2024-01-02T08:33:00", + "2024-01-02T08:34:00", + "2024-01-02T08:35:00", + "2024-01-02T08:36:00", + "2024-01-02T08:37:00", + "2024-01-02T08:38:00", + "2024-01-02T08:39:00", + "2024-01-02T08:40:00", + "2024-01-02T08:41:00", + "2024-01-02T08:42:00", + "2024-01-02T08:43:00", + "2024-01-02T08:44:00", + "2024-01-02T08:45:00", + "2024-01-02T08:46:00", + "2024-01-02T08:47:00", + "2024-01-02T08:48:00", + "2024-01-02T08:49:00", + "2024-01-02T08:50:00", + "2024-01-02T08:51:00", + "2024-01-02T08:52:00", + "2024-01-02T08:53:00", + "2024-01-02T08:54:00", + "2024-01-02T08:55:00", + "2024-01-02T08:56:00", + "2024-01-02T08:57:00", + "2024-01-02T08:58:00", + "2024-01-02T08:59:00", + "2024-01-02T09:00:00", + "2024-01-02T09:01:00", + "2024-01-02T09:02:00", + "2024-01-02T09:03:00", + "2024-01-02T09:04:00", + "2024-01-02T09:05:00", + "2024-01-02T09:06:00", + "2024-01-02T09:07:00", + "2024-01-02T09:08:00", + "2024-01-02T09:09:00", + "2024-01-02T09:10:00", + "2024-01-02T09:11:00", + "2024-01-02T09:12:00", + "2024-01-02T09:13:00", + "2024-01-02T09:14:00", + "2024-01-02T09:15:00", + "2024-01-02T09:16:00", + "2024-01-02T09:17:00", + "2024-01-02T09:18:00", + "2024-01-02T09:19:00", + "2024-01-02T09:20:00", + "2024-01-02T09:21:00", + "2024-01-02T09:22:00", + "2024-01-02T09:23:00", + "2024-01-02T09:24:00", + "2024-01-02T09:25:00", + "2024-01-02T09:26:00", + "2024-01-02T09:27:00", + "2024-01-02T09:28:00", + "2024-01-02T09:29:00", + "2024-01-02T09:30:00", + "2024-01-02T09:31:00", + "2024-01-02T09:32:00", + "2024-01-02T09:33:00", + "2024-01-02T09:34:00", + "2024-01-02T09:35:00", + "2024-01-02T09:36:00", + "2024-01-02T09:37:00", + "2024-01-02T09:38:00", + "2024-01-02T09:39:00", + "2024-01-02T09:40:00", + "2024-01-02T09:41:00", + "2024-01-02T09:42:00", + "2024-01-02T09:43:00", + "2024-01-02T09:44:00", + "2024-01-02T09:45:00", + "2024-01-02T09:46:00", + "2024-01-02T09:47:00", + "2024-01-02T09:48:00", + "2024-01-02T09:49:00", + "2024-01-02T09:50:00", + "2024-01-02T09:51:00", + "2024-01-02T09:52:00", + "2024-01-02T09:53:00", + "2024-01-02T09:54:00", + "2024-01-02T09:55:00", + "2024-01-02T09:56:00", + "2024-01-02T09:57:00", + "2024-01-02T09:58:00", + "2024-01-02T09:59:00", + "2024-01-02T10:00:00", + "2024-01-02T10:01:00", + "2024-01-02T10:02:00", + "2024-01-02T10:03:00", + "2024-01-02T10:04:00", + "2024-01-02T10:05:00", + "2024-01-02T10:06:00", + "2024-01-02T10:07:00", + "2024-01-02T10:08:00", + "2024-01-02T10:09:00", + "2024-01-02T10:10:00", + "2024-01-02T10:11:00", + "2024-01-02T10:12:00", + "2024-01-02T10:13:00", + "2024-01-02T10:14:00", + "2024-01-02T10:15:00", + "2024-01-02T10:16:00", + "2024-01-02T10:17:00", + "2024-01-02T10:18:00", + "2024-01-02T10:19:00", + "2024-01-02T10:20:00", + "2024-01-02T10:21:00", + "2024-01-02T10:22:00", + "2024-01-02T10:23:00", + "2024-01-02T10:24:00", + "2024-01-02T10:25:00", + "2024-01-02T10:26:00", + "2024-01-02T10:27:00", + "2024-01-02T10:28:00", + "2024-01-02T10:29:00", + "2024-01-02T10:30:00", + "2024-01-02T10:31:00", + "2024-01-02T10:32:00", + "2024-01-02T10:33:00", + "2024-01-02T10:34:00", + "2024-01-02T10:35:00", + "2024-01-02T10:36:00", + "2024-01-02T10:37:00", + "2024-01-02T10:38:00", + "2024-01-02T10:39:00", + "2024-01-02T10:40:00", + "2024-01-02T10:41:00", + "2024-01-02T10:42:00", + "2024-01-02T10:43:00", + "2024-01-02T10:44:00", + "2024-01-02T10:45:00", + "2024-01-02T10:46:00", + "2024-01-02T10:47:00", + "2024-01-02T10:48:00", + "2024-01-02T10:49:00", + "2024-01-02T10:50:00", + "2024-01-02T10:51:00", + "2024-01-02T10:52:00", + "2024-01-02T10:53:00", + "2024-01-02T10:54:00", + "2024-01-02T10:55:00", + "2024-01-02T10:56:00", + "2024-01-02T10:57:00", + "2024-01-02T10:58:00", + "2024-01-02T10:59:00", + "2024-01-02T11:00:00", + "2024-01-02T11:01:00", + "2024-01-02T11:02:00", + "2024-01-02T11:03:00", + "2024-01-02T11:04:00", + "2024-01-02T11:05:00", + "2024-01-02T11:06:00", + "2024-01-02T11:07:00", + "2024-01-02T11:08:00", + "2024-01-02T11:09:00", + "2024-01-02T11:10:00", + "2024-01-02T11:11:00", + "2024-01-02T11:12:00", + "2024-01-02T11:13:00", + "2024-01-02T11:14:00", + "2024-01-02T11:15:00", + "2024-01-02T11:16:00", + "2024-01-02T11:17:00", + "2024-01-02T11:18:00", + "2024-01-02T11:19:00", + "2024-01-02T11:20:00", + "2024-01-02T11:21:00", + "2024-01-02T11:22:00", + "2024-01-02T11:23:00", + "2024-01-02T11:24:00", + "2024-01-02T11:25:00", + "2024-01-02T11:26:00", + "2024-01-02T11:27:00", + "2024-01-02T11:28:00", + "2024-01-02T11:29:00", + "2024-01-02T11:30:00", + "2024-01-02T11:31:00", + "2024-01-02T11:32:00", + "2024-01-02T11:33:00", + "2024-01-02T11:34:00", + "2024-01-02T11:35:00", + "2024-01-02T11:36:00", + "2024-01-02T11:37:00", + "2024-01-02T11:38:00", + "2024-01-02T11:39:00", + "2024-01-02T11:40:00", + "2024-01-02T11:41:00", + "2024-01-02T11:42:00", + "2024-01-02T11:43:00", + "2024-01-02T11:44:00", + "2024-01-02T11:45:00", + "2024-01-02T11:46:00", + "2024-01-02T11:47:00", + "2024-01-02T11:48:00", + "2024-01-02T11:49:00", + "2024-01-02T11:50:00", + "2024-01-02T11:51:00", + "2024-01-02T11:52:00", + "2024-01-02T11:53:00", + "2024-01-02T11:54:00", + "2024-01-02T11:55:00", + "2024-01-02T11:56:00", + "2024-01-02T11:57:00", + "2024-01-02T11:58:00", + "2024-01-02T11:59:00", + "2024-01-02T12:00:00", + "2024-01-02T12:01:00", + "2024-01-02T12:02:00", + "2024-01-02T12:03:00", + "2024-01-02T12:04:00", + "2024-01-02T12:05:00", + "2024-01-02T12:06:00", + "2024-01-02T12:07:00", + "2024-01-02T12:08:00", + "2024-01-02T12:09:00", + "2024-01-02T12:10:00", + "2024-01-02T12:11:00", + "2024-01-02T12:12:00", + "2024-01-02T12:13:00", + "2024-01-02T12:14:00", + "2024-01-02T12:15:00", + "2024-01-02T12:16:00", + "2024-01-02T12:17:00", + "2024-01-02T12:18:00", + "2024-01-02T12:19:00", + "2024-01-02T12:20:00", + "2024-01-02T12:21:00", + "2024-01-02T12:22:00", + "2024-01-02T12:23:00", + "2024-01-02T12:24:00", + "2024-01-02T12:25:00", + "2024-01-02T12:26:00", + "2024-01-02T12:27:00", + "2024-01-02T12:28:00", + "2024-01-02T12:29:00", + "2024-01-02T12:30:00", + "2024-01-02T12:31:00", + "2024-01-02T12:32:00", + "2024-01-02T12:33:00", + "2024-01-02T12:34:00", + "2024-01-02T12:35:00", + "2024-01-02T12:36:00", + "2024-01-02T12:37:00", + "2024-01-02T12:38:00", + "2024-01-02T12:39:00", + "2024-01-02T12:40:00", + "2024-01-02T12:41:00", + "2024-01-02T12:42:00", + "2024-01-02T12:43:00", + "2024-01-02T12:44:00", + "2024-01-02T12:45:00", + "2024-01-02T12:46:00", + "2024-01-02T12:47:00", + "2024-01-02T12:48:00", + "2024-01-02T12:49:00", + "2024-01-02T12:50:00", + "2024-01-02T12:51:00", + "2024-01-02T12:52:00", + "2024-01-02T12:53:00", + "2024-01-02T12:54:00", + "2024-01-02T12:55:00", + "2024-01-02T12:56:00", + "2024-01-02T12:57:00", + "2024-01-02T12:58:00", + "2024-01-02T12:59:00", + "2024-01-02T13:00:00", + "2024-01-02T13:01:00", + "2024-01-02T13:02:00", + "2024-01-02T13:03:00", + "2024-01-02T13:04:00", + "2024-01-02T13:05:00", + "2024-01-02T13:06:00", + "2024-01-02T13:07:00", + "2024-01-02T13:08:00", + "2024-01-02T13:09:00", + "2024-01-02T13:10:00", + "2024-01-02T13:11:00", + "2024-01-02T13:12:00", + "2024-01-02T13:13:00", + "2024-01-02T13:14:00", + "2024-01-02T13:15:00", + "2024-01-02T13:16:00", + "2024-01-02T13:17:00", + "2024-01-02T13:18:00", + "2024-01-02T13:19:00", + "2024-01-02T13:20:00", + "2024-01-02T13:21:00", + "2024-01-02T13:22:00", + "2024-01-02T13:23:00", + "2024-01-02T13:24:00", + "2024-01-02T13:25:00", + "2024-01-02T13:26:00", + "2024-01-02T13:27:00", + "2024-01-02T13:28:00", + "2024-01-02T13:29:00", + "2024-01-02T13:30:00", + "2024-01-02T13:31:00", + "2024-01-02T13:32:00", + "2024-01-02T13:33:00", + "2024-01-02T13:34:00", + "2024-01-02T13:35:00", + "2024-01-02T13:36:00", + "2024-01-02T13:37:00", + "2024-01-02T13:38:00", + "2024-01-02T13:39:00", + "2024-01-02T13:40:00", + "2024-01-02T13:41:00", + "2024-01-02T13:42:00", + "2024-01-02T13:43:00", + "2024-01-02T13:44:00", + "2024-01-02T13:45:00", + "2024-01-02T13:46:00", + "2024-01-02T13:47:00", + "2024-01-02T13:48:00", + "2024-01-02T13:49:00", + "2024-01-02T13:50:00", + "2024-01-02T13:51:00", + "2024-01-02T13:52:00", + "2024-01-02T13:53:00", + "2024-01-02T13:54:00", + "2024-01-02T13:55:00", + "2024-01-02T13:56:00", + "2024-01-02T13:57:00", + "2024-01-02T13:58:00", + "2024-01-02T13:59:00", + "2024-01-02T14:00:00", + "2024-01-02T14:01:00", + "2024-01-02T14:02:00", + "2024-01-02T14:03:00", + "2024-01-02T14:04:00", + "2024-01-02T14:05:00", + "2024-01-02T14:06:00", + "2024-01-02T14:07:00", + "2024-01-02T14:08:00", + "2024-01-02T14:09:00", + "2024-01-02T14:10:00", + "2024-01-02T14:11:00", + "2024-01-02T14:12:00", + "2024-01-02T14:13:00", + "2024-01-02T14:14:00", + "2024-01-02T14:15:00", + "2024-01-02T14:16:00", + "2024-01-02T14:17:00", + "2024-01-02T14:18:00", + "2024-01-02T14:19:00", + "2024-01-02T14:20:00", + "2024-01-02T14:21:00", + "2024-01-02T14:22:00", + "2024-01-02T14:23:00", + "2024-01-02T14:24:00", + "2024-01-02T14:25:00", + "2024-01-02T14:26:00", + "2024-01-02T14:27:00", + "2024-01-02T14:28:00", + "2024-01-02T14:29:00", + "2024-01-02T14:30:00", + "2024-01-02T14:31:00", + "2024-01-02T14:32:00", + "2024-01-02T14:33:00", + "2024-01-02T14:34:00", + "2024-01-02T14:35:00", + "2024-01-02T14:36:00", + "2024-01-02T14:37:00", + "2024-01-02T14:38:00", + "2024-01-02T14:39:00", + "2024-01-02T14:40:00", + "2024-01-02T14:41:00", + "2024-01-02T14:42:00", + "2024-01-02T14:43:00", + "2024-01-02T14:44:00", + "2024-01-02T14:45:00", + "2024-01-02T14:46:00", + "2024-01-02T14:47:00", + "2024-01-02T14:48:00", + "2024-01-02T14:49:00", + "2024-01-02T14:50:00", + "2024-01-02T14:51:00", + "2024-01-02T14:52:00", + "2024-01-02T14:53:00", + "2024-01-02T14:54:00", + "2024-01-02T14:55:00", + "2024-01-02T14:56:00", + "2024-01-02T14:57:00", + "2024-01-02T14:58:00", + "2024-01-02T14:59:00", + "2024-01-02T15:00:00", + "2024-01-02T15:01:00", + "2024-01-02T15:02:00", + "2024-01-02T15:03:00", + "2024-01-02T15:04:00", + "2024-01-02T15:05:00", + "2024-01-02T15:06:00", + "2024-01-02T15:07:00", + "2024-01-02T15:08:00", + "2024-01-02T15:09:00", + "2024-01-02T15:10:00", + "2024-01-02T15:11:00", + "2024-01-02T15:12:00", + "2024-01-02T15:13:00", + "2024-01-02T15:14:00", + "2024-01-02T15:15:00", + "2024-01-02T15:16:00", + "2024-01-02T15:17:00", + "2024-01-02T15:18:00", + "2024-01-02T15:19:00", + "2024-01-02T15:20:00", + "2024-01-02T15:21:00", + "2024-01-02T15:22:00", + "2024-01-02T15:23:00", + "2024-01-02T15:24:00", + "2024-01-02T15:25:00", + "2024-01-02T15:26:00", + "2024-01-02T15:27:00", + "2024-01-02T15:28:00", + "2024-01-02T15:29:00", + "2024-01-02T15:30:00", + "2024-01-02T15:31:00", + "2024-01-02T15:32:00", + "2024-01-02T15:33:00", + "2024-01-02T15:34:00", + "2024-01-02T15:35:00", + "2024-01-02T15:36:00", + "2024-01-02T15:37:00", + "2024-01-02T15:38:00", + "2024-01-02T15:39:00", + "2024-01-02T15:40:00", + "2024-01-02T15:41:00", + "2024-01-02T15:42:00", + "2024-01-02T15:43:00", + "2024-01-02T15:44:00", + "2024-01-02T15:45:00", + "2024-01-02T15:46:00", + "2024-01-02T15:47:00", + "2024-01-02T15:48:00", + "2024-01-02T15:49:00", + "2024-01-02T15:50:00", + "2024-01-02T15:51:00", + "2024-01-02T15:52:00", + "2024-01-02T15:53:00", + "2024-01-02T15:54:00", + "2024-01-02T15:55:00", + "2024-01-02T15:56:00", + "2024-01-02T15:57:00", + "2024-01-02T15:58:00", + "2024-01-02T15:59:00", + "2024-01-02T16:00:00", + "2024-01-02T16:01:00", + "2024-01-02T16:02:00", + "2024-01-02T16:03:00", + "2024-01-02T16:04:00", + "2024-01-02T16:05:00", + "2024-01-02T16:06:00", + "2024-01-02T16:07:00", + "2024-01-02T16:08:00", + "2024-01-02T16:09:00", + "2024-01-02T16:10:00", + "2024-01-02T16:11:00", + "2024-01-02T16:12:00", + "2024-01-02T16:13:00", + "2024-01-02T16:14:00", + "2024-01-02T16:15:00", + "2024-01-02T16:16:00", + "2024-01-02T16:17:00", + "2024-01-02T16:18:00", + "2024-01-02T16:19:00", + "2024-01-02T16:20:00", + "2024-01-02T16:21:00", + "2024-01-02T16:22:00", + "2024-01-02T16:23:00", + "2024-01-02T16:24:00", + "2024-01-02T16:25:00", + "2024-01-02T16:26:00", + "2024-01-02T16:27:00", + "2024-01-02T16:28:00", + "2024-01-02T16:29:00", + "2024-01-02T16:30:00", + "2024-01-02T16:31:00", + "2024-01-02T16:32:00", + "2024-01-02T16:33:00", + "2024-01-02T16:34:00", + "2024-01-02T16:35:00", + "2024-01-02T16:36:00", + "2024-01-02T16:37:00", + "2024-01-02T16:38:00", + "2024-01-02T16:39:00", + "2024-01-02T16:40:00", + "2024-01-02T16:41:00", + "2024-01-02T16:42:00", + "2024-01-02T16:43:00", + "2024-01-02T16:44:00", + "2024-01-02T16:45:00", + "2024-01-02T16:46:00", + "2024-01-02T16:47:00", + "2024-01-02T16:48:00", + "2024-01-02T16:49:00", + "2024-01-02T16:50:00", + "2024-01-02T16:51:00", + "2024-01-02T16:52:00", + "2024-01-02T16:53:00", + "2024-01-02T16:54:00", + "2024-01-02T16:55:00", + "2024-01-02T16:56:00", + "2024-01-02T16:57:00", + "2024-01-02T16:58:00", + "2024-01-02T16:59:00", + "2024-01-02T17:00:00", + "2024-01-02T17:01:00", + "2024-01-02T17:02:00", + "2024-01-02T17:03:00", + "2024-01-02T17:04:00", + "2024-01-02T17:05:00", + "2024-01-02T17:06:00", + "2024-01-02T17:07:00", + "2024-01-02T17:08:00", + "2024-01-02T17:09:00", + "2024-01-02T17:10:00", + "2024-01-02T17:11:00", + "2024-01-02T17:12:00", + "2024-01-02T17:13:00", + "2024-01-02T17:14:00", + "2024-01-02T17:15:00", + "2024-01-02T17:16:00", + "2024-01-02T17:17:00", + "2024-01-02T17:18:00", + "2024-01-02T17:19:00", + "2024-01-02T17:20:00", + "2024-01-02T17:21:00", + "2024-01-02T17:22:00", + "2024-01-02T17:23:00", + "2024-01-02T17:24:00", + "2024-01-02T17:25:00", + "2024-01-02T17:26:00", + "2024-01-02T17:27:00", + "2024-01-02T17:28:00", + "2024-01-02T17:29:00", + "2024-01-02T17:30:00", + "2024-01-02T17:31:00", + "2024-01-02T17:32:00", + "2024-01-02T17:33:00", + "2024-01-02T17:34:00", + "2024-01-02T17:35:00", + "2024-01-02T17:36:00", + "2024-01-02T17:37:00", + "2024-01-02T17:38:00", + "2024-01-02T17:39:00", + "2024-01-02T17:40:00", + "2024-01-02T17:41:00", + "2024-01-02T17:42:00", + "2024-01-02T17:43:00", + "2024-01-02T17:44:00", + "2024-01-02T17:45:00", + "2024-01-02T17:46:00", + "2024-01-02T17:47:00", + "2024-01-02T17:48:00", + "2024-01-02T17:49:00", + "2024-01-02T17:50:00", + "2024-01-02T17:51:00", + "2024-01-02T17:52:00", + "2024-01-02T17:53:00", + "2024-01-02T17:54:00", + "2024-01-02T17:55:00", + "2024-01-02T17:56:00", + "2024-01-02T17:57:00", + "2024-01-02T17:58:00", + "2024-01-02T17:59:00", + "2024-01-02T18:00:00", + "2024-01-02T18:01:00", + "2024-01-02T18:02:00", + "2024-01-02T18:03:00", + "2024-01-02T18:04:00", + "2024-01-02T18:05:00", + "2024-01-02T18:06:00", + "2024-01-02T18:07:00", + "2024-01-02T18:08:00", + "2024-01-02T18:09:00", + "2024-01-02T18:10:00", + "2024-01-02T18:11:00", + "2024-01-02T18:12:00", + "2024-01-02T18:13:00", + "2024-01-02T18:14:00", + "2024-01-02T18:15:00", + "2024-01-02T18:16:00", + "2024-01-02T18:17:00", + "2024-01-02T18:18:00", + "2024-01-02T18:19:00", + "2024-01-02T18:20:00", + "2024-01-02T18:21:00", + "2024-01-02T18:22:00", + "2024-01-02T18:23:00", + "2024-01-02T18:24:00", + "2024-01-02T18:25:00", + "2024-01-02T18:26:00", + "2024-01-02T18:27:00", + "2024-01-02T18:28:00", + "2024-01-02T18:29:00", + "2024-01-02T18:30:00", + "2024-01-02T18:31:00", + "2024-01-02T18:32:00", + "2024-01-02T18:33:00", + "2024-01-02T18:34:00", + "2024-01-02T18:35:00", + "2024-01-02T18:36:00", + "2024-01-02T18:37:00", + "2024-01-02T18:38:00", + "2024-01-02T18:39:00", + "2024-01-02T18:40:00", + "2024-01-02T18:41:00", + "2024-01-02T18:42:00", + "2024-01-02T18:43:00", + "2024-01-02T18:44:00", + "2024-01-02T18:45:00", + "2024-01-02T18:46:00", + "2024-01-02T18:47:00", + "2024-01-02T18:48:00", + "2024-01-02T18:49:00", + "2024-01-02T18:50:00", + "2024-01-02T18:51:00", + "2024-01-02T18:52:00", + "2024-01-02T18:53:00", + "2024-01-02T18:54:00", + "2024-01-02T18:55:00", + "2024-01-02T18:56:00", + "2024-01-02T18:57:00", + "2024-01-02T18:58:00", + "2024-01-02T18:59:00", + "2024-01-02T19:00:00", + "2024-01-02T19:01:00", + "2024-01-02T19:02:00", + "2024-01-02T19:03:00", + "2024-01-02T19:04:00", + "2024-01-02T19:05:00", + "2024-01-02T19:06:00", + "2024-01-02T19:07:00", + "2024-01-02T19:08:00", + "2024-01-02T19:09:00", + "2024-01-02T19:10:00", + "2024-01-02T19:11:00", + "2024-01-02T19:12:00", + "2024-01-02T19:13:00", + "2024-01-02T19:14:00", + "2024-01-02T19:15:00", + "2024-01-02T19:16:00", + "2024-01-02T19:17:00", + "2024-01-02T19:18:00", + "2024-01-02T19:19:00", + "2024-01-02T19:20:00", + "2024-01-02T19:21:00", + "2024-01-02T19:22:00", + "2024-01-02T19:23:00", + "2024-01-02T19:24:00", + "2024-01-02T19:25:00", + "2024-01-02T19:26:00", + "2024-01-02T19:27:00", + "2024-01-02T19:28:00", + "2024-01-02T19:29:00", + "2024-01-02T19:30:00", + "2024-01-02T19:31:00", + "2024-01-02T19:32:00", + "2024-01-02T19:33:00", + "2024-01-02T19:34:00", + "2024-01-02T19:35:00", + "2024-01-02T19:36:00", + "2024-01-02T19:37:00", + "2024-01-02T19:38:00", + "2024-01-02T19:39:00", + "2024-01-02T19:40:00", + "2024-01-02T19:41:00", + "2024-01-02T19:42:00", + "2024-01-02T19:43:00", + "2024-01-02T19:44:00", + "2024-01-02T19:45:00", + "2024-01-02T19:46:00", + "2024-01-02T19:47:00", + "2024-01-02T19:48:00", + "2024-01-02T19:49:00", + "2024-01-02T19:50:00", + "2024-01-02T19:51:00", + "2024-01-02T19:52:00", + "2024-01-02T19:53:00", + "2024-01-02T19:54:00", + "2024-01-02T19:55:00", + "2024-01-02T19:56:00", + "2024-01-02T19:57:00", + "2024-01-02T19:58:00", + "2024-01-02T19:59:00", + "2024-01-02T20:00:00", + "2024-01-02T20:01:00", + "2024-01-02T20:02:00", + "2024-01-02T20:03:00", + "2024-01-02T20:04:00", + "2024-01-02T20:05:00", + "2024-01-02T20:06:00", + "2024-01-02T20:07:00", + "2024-01-02T20:08:00", + "2024-01-02T20:09:00", + "2024-01-02T20:10:00", + "2024-01-02T20:11:00", + "2024-01-02T20:12:00", + "2024-01-02T20:13:00", + "2024-01-02T20:14:00", + "2024-01-02T20:15:00", + "2024-01-02T20:16:00", + "2024-01-02T20:17:00", + "2024-01-02T20:18:00", + "2024-01-02T20:19:00", + "2024-01-02T20:20:00", + "2024-01-02T20:21:00", + "2024-01-02T20:22:00", + "2024-01-02T20:23:00", + "2024-01-02T20:24:00", + "2024-01-02T20:25:00", + "2024-01-02T20:26:00", + "2024-01-02T20:27:00", + "2024-01-02T20:28:00", + "2024-01-02T20:29:00", + "2024-01-02T20:30:00", + "2024-01-02T20:31:00", + "2024-01-02T20:32:00", + "2024-01-02T20:33:00", + "2024-01-02T20:34:00", + "2024-01-02T20:35:00", + "2024-01-02T20:36:00", + "2024-01-02T20:37:00", + "2024-01-02T20:38:00", + "2024-01-02T20:39:00", + "2024-01-02T20:40:00", + "2024-01-02T20:41:00", + "2024-01-02T20:42:00", + "2024-01-02T20:43:00", + "2024-01-02T20:44:00", + "2024-01-02T20:45:00", + "2024-01-02T20:46:00", + "2024-01-02T20:47:00", + "2024-01-02T20:48:00", + "2024-01-02T20:49:00", + "2024-01-02T20:50:00", + "2024-01-02T20:51:00", + "2024-01-02T20:52:00", + "2024-01-02T20:53:00", + "2024-01-02T20:54:00", + "2024-01-02T20:55:00", + "2024-01-02T20:56:00", + "2024-01-02T20:57:00", + "2024-01-02T20:58:00", + "2024-01-02T20:59:00", + "2024-01-02T21:00:00", + "2024-01-02T21:01:00", + "2024-01-02T21:02:00", + "2024-01-02T21:03:00", + "2024-01-02T21:04:00", + "2024-01-02T21:05:00", + "2024-01-02T21:06:00", + "2024-01-02T21:07:00", + "2024-01-02T21:08:00", + "2024-01-02T21:09:00", + "2024-01-02T21:10:00", + "2024-01-02T21:11:00", + "2024-01-02T21:12:00", + "2024-01-02T21:13:00", + "2024-01-02T21:14:00", + "2024-01-02T21:15:00", + "2024-01-02T21:16:00", + "2024-01-02T21:17:00", + "2024-01-02T21:18:00", + "2024-01-02T21:19:00", + "2024-01-02T21:20:00", + "2024-01-02T21:21:00", + "2024-01-02T21:22:00", + "2024-01-02T21:23:00", + "2024-01-02T21:24:00", + "2024-01-02T21:25:00", + "2024-01-02T21:26:00", + "2024-01-02T21:27:00", + "2024-01-02T21:28:00", + "2024-01-02T21:29:00", + "2024-01-02T21:30:00", + "2024-01-02T21:31:00", + "2024-01-02T21:32:00", + "2024-01-02T21:33:00", + "2024-01-02T21:34:00", + "2024-01-02T21:35:00", + "2024-01-02T21:36:00", + "2024-01-02T21:37:00", + "2024-01-02T21:38:00", + "2024-01-02T21:39:00", + "2024-01-02T21:40:00", + "2024-01-02T21:41:00", + "2024-01-02T21:42:00", + "2024-01-02T21:43:00", + "2024-01-02T21:44:00", + "2024-01-02T21:45:00", + "2024-01-02T21:46:00", + "2024-01-02T21:47:00", + "2024-01-02T21:48:00", + "2024-01-02T21:49:00", + "2024-01-02T21:50:00", + "2024-01-02T21:51:00", + "2024-01-02T21:52:00", + "2024-01-02T21:53:00", + "2024-01-02T21:54:00", + "2024-01-02T21:55:00", + "2024-01-02T21:56:00", + "2024-01-02T21:57:00", + "2024-01-02T21:58:00", + "2024-01-02T21:59:00", + "2024-01-02T22:00:00", + "2024-01-02T22:01:00", + "2024-01-02T22:02:00", + "2024-01-02T22:03:00", + "2024-01-02T22:04:00", + "2024-01-02T22:05:00", + "2024-01-02T22:06:00", + "2024-01-02T22:07:00", + "2024-01-02T22:08:00", + "2024-01-02T22:09:00", + "2024-01-02T22:10:00", + "2024-01-02T22:11:00", + "2024-01-02T22:12:00", + "2024-01-02T22:13:00", + "2024-01-02T22:14:00", + "2024-01-02T22:15:00", + "2024-01-02T22:16:00", + "2024-01-02T22:17:00", + "2024-01-02T22:18:00", + "2024-01-02T22:19:00", + "2024-01-02T22:20:00", + "2024-01-02T22:21:00", + "2024-01-02T22:22:00", + "2024-01-02T22:23:00", + "2024-01-02T22:24:00", + "2024-01-02T22:25:00", + "2024-01-02T22:26:00", + "2024-01-02T22:27:00", + "2024-01-02T22:28:00", + "2024-01-02T22:29:00", + "2024-01-02T22:30:00", + "2024-01-02T22:31:00", + "2024-01-02T22:32:00", + "2024-01-02T22:33:00", + "2024-01-02T22:34:00", + "2024-01-02T22:35:00", + "2024-01-02T22:36:00", + "2024-01-02T22:37:00", + "2024-01-02T22:38:00", + "2024-01-02T22:39:00", + "2024-01-02T22:40:00", + "2024-01-02T22:41:00", + "2024-01-02T22:42:00", + "2024-01-02T22:43:00", + "2024-01-02T22:44:00", + "2024-01-02T22:45:00", + "2024-01-02T22:46:00", + "2024-01-02T22:47:00", + "2024-01-02T22:48:00", + "2024-01-02T22:49:00", + "2024-01-02T22:50:00", + "2024-01-02T22:51:00", + "2024-01-02T22:52:00", + "2024-01-02T22:53:00", + "2024-01-02T22:54:00", + "2024-01-02T22:55:00", + "2024-01-02T22:56:00", + "2024-01-02T22:57:00", + "2024-01-02T22:58:00", + "2024-01-02T22:59:00", + "2024-01-02T23:00:00", + "2024-01-02T23:01:00", + "2024-01-02T23:02:00", + "2024-01-02T23:03:00", + "2024-01-02T23:04:00", + "2024-01-02T23:05:00", + "2024-01-02T23:06:00", + "2024-01-02T23:07:00", + "2024-01-02T23:08:00", + "2024-01-02T23:09:00", + "2024-01-02T23:10:00", + "2024-01-02T23:11:00", + "2024-01-02T23:12:00", + "2024-01-02T23:13:00", + "2024-01-02T23:14:00", + "2024-01-02T23:15:00", + "2024-01-02T23:16:00", + "2024-01-02T23:17:00", + "2024-01-02T23:18:00", + "2024-01-02T23:19:00", + "2024-01-02T23:20:00", + "2024-01-02T23:21:00", + "2024-01-02T23:22:00", + "2024-01-02T23:23:00", + "2024-01-02T23:24:00", + "2024-01-02T23:25:00", + "2024-01-02T23:26:00", + "2024-01-02T23:27:00", + "2024-01-02T23:28:00", + "2024-01-02T23:29:00", + "2024-01-02T23:30:00", + "2024-01-02T23:31:00", + "2024-01-02T23:32:00", + "2024-01-02T23:33:00", + "2024-01-02T23:34:00", + "2024-01-02T23:35:00", + "2024-01-02T23:36:00", + "2024-01-02T23:37:00", + "2024-01-02T23:38:00", + "2024-01-02T23:39:00", + "2024-01-02T23:40:00", + "2024-01-02T23:41:00", + "2024-01-02T23:42:00", + "2024-01-02T23:43:00", + "2024-01-02T23:44:00", + "2024-01-02T23:45:00", + "2024-01-02T23:46:00", + "2024-01-02T23:47:00", + "2024-01-02T23:48:00", + "2024-01-02T23:49:00", + "2024-01-02T23:50:00", + "2024-01-02T23:51:00", + "2024-01-02T23:52:00", + "2024-01-02T23:53:00", + "2024-01-02T23:54:00", + "2024-01-02T23:55:00", + "2024-01-02T23:56:00", + "2024-01-02T23:57:00", + "2024-01-02T23:58:00", + "2024-01-02T23:59:00", + "2024-01-03T00:00:00", + "2024-01-03T00:01:00", + "2024-01-03T00:02:00", + "2024-01-03T00:03:00", + "2024-01-03T00:04:00", + "2024-01-03T00:05:00", + "2024-01-03T00:06:00", + "2024-01-03T00:07:00", + "2024-01-03T00:08:00", + "2024-01-03T00:09:00", + "2024-01-03T00:10:00", + "2024-01-03T00:11:00", + "2024-01-03T00:12:00", + "2024-01-03T00:13:00", + "2024-01-03T00:14:00", + "2024-01-03T00:15:00", + "2024-01-03T00:16:00", + "2024-01-03T00:17:00", + "2024-01-03T00:18:00", + "2024-01-03T00:19:00", + "2024-01-03T00:20:00", + "2024-01-03T00:21:00", + "2024-01-03T00:22:00", + "2024-01-03T00:23:00", + "2024-01-03T00:24:00", + "2024-01-03T00:25:00", + "2024-01-03T00:26:00", + "2024-01-03T00:27:00", + "2024-01-03T00:28:00", + "2024-01-03T00:29:00", + "2024-01-03T00:30:00", + "2024-01-03T00:31:00", + "2024-01-03T00:32:00", + "2024-01-03T00:33:00", + "2024-01-03T00:34:00", + "2024-01-03T00:35:00", + "2024-01-03T00:36:00", + "2024-01-03T00:37:00", + "2024-01-03T00:38:00", + "2024-01-03T00:39:00", + "2024-01-03T00:40:00", + "2024-01-03T00:41:00", + "2024-01-03T00:42:00", + "2024-01-03T00:43:00", + "2024-01-03T00:44:00", + "2024-01-03T00:45:00", + "2024-01-03T00:46:00", + "2024-01-03T00:47:00", + "2024-01-03T00:48:00", + "2024-01-03T00:49:00", + "2024-01-03T00:50:00", + "2024-01-03T00:51:00", + "2024-01-03T00:52:00", + "2024-01-03T00:53:00", + "2024-01-03T00:54:00", + "2024-01-03T00:55:00", + "2024-01-03T00:56:00", + "2024-01-03T00:57:00", + "2024-01-03T00:58:00", + "2024-01-03T00:59:00", + "2024-01-03T01:00:00", + "2024-01-03T01:01:00", + "2024-01-03T01:02:00", + "2024-01-03T01:03:00", + "2024-01-03T01:04:00", + "2024-01-03T01:05:00", + "2024-01-03T01:06:00", + "2024-01-03T01:07:00", + "2024-01-03T01:08:00", + "2024-01-03T01:09:00", + "2024-01-03T01:10:00", + "2024-01-03T01:11:00", + "2024-01-03T01:12:00", + "2024-01-03T01:13:00", + "2024-01-03T01:14:00", + "2024-01-03T01:15:00", + "2024-01-03T01:16:00", + "2024-01-03T01:17:00", + "2024-01-03T01:18:00", + "2024-01-03T01:19:00", + "2024-01-03T01:20:00", + "2024-01-03T01:21:00", + "2024-01-03T01:22:00", + "2024-01-03T01:23:00", + "2024-01-03T01:24:00", + "2024-01-03T01:25:00", + "2024-01-03T01:26:00", + "2024-01-03T01:27:00", + "2024-01-03T01:28:00", + "2024-01-03T01:29:00", + "2024-01-03T01:30:00", + "2024-01-03T01:31:00", + "2024-01-03T01:32:00", + "2024-01-03T01:33:00", + "2024-01-03T01:34:00", + "2024-01-03T01:35:00", + "2024-01-03T01:36:00", + "2024-01-03T01:37:00", + "2024-01-03T01:38:00", + "2024-01-03T01:39:00", + "2024-01-03T01:40:00", + "2024-01-03T01:41:00", + "2024-01-03T01:42:00", + "2024-01-03T01:43:00", + "2024-01-03T01:44:00", + "2024-01-03T01:45:00", + "2024-01-03T01:46:00", + "2024-01-03T01:47:00", + "2024-01-03T01:48:00", + "2024-01-03T01:49:00", + "2024-01-03T01:50:00", + "2024-01-03T01:51:00", + "2024-01-03T01:52:00", + "2024-01-03T01:53:00", + "2024-01-03T01:54:00", + "2024-01-03T01:55:00", + "2024-01-03T01:56:00", + "2024-01-03T01:57:00", + "2024-01-03T01:58:00", + "2024-01-03T01:59:00", + "2024-01-03T02:00:00", + "2024-01-03T02:01:00", + "2024-01-03T02:02:00", + "2024-01-03T02:03:00", + "2024-01-03T02:04:00", + "2024-01-03T02:05:00", + "2024-01-03T02:06:00", + "2024-01-03T02:07:00", + "2024-01-03T02:08:00", + "2024-01-03T02:09:00", + "2024-01-03T02:10:00", + "2024-01-03T02:11:00", + "2024-01-03T02:12:00", + "2024-01-03T02:13:00", + "2024-01-03T02:14:00", + "2024-01-03T02:15:00", + "2024-01-03T02:16:00", + "2024-01-03T02:17:00", + "2024-01-03T02:18:00", + "2024-01-03T02:19:00", + "2024-01-03T02:20:00", + "2024-01-03T02:21:00", + "2024-01-03T02:22:00", + "2024-01-03T02:23:00", + "2024-01-03T02:24:00", + "2024-01-03T02:25:00", + "2024-01-03T02:26:00", + "2024-01-03T02:27:00", + "2024-01-03T02:28:00", + "2024-01-03T02:29:00", + "2024-01-03T02:30:00", + "2024-01-03T02:31:00", + "2024-01-03T02:32:00", + "2024-01-03T02:33:00", + "2024-01-03T02:34:00", + "2024-01-03T02:35:00", + "2024-01-03T02:36:00", + "2024-01-03T02:37:00", + "2024-01-03T02:38:00", + "2024-01-03T02:39:00", + "2024-01-03T02:40:00", + "2024-01-03T02:41:00", + "2024-01-03T02:42:00", + "2024-01-03T02:43:00", + "2024-01-03T02:44:00", + "2024-01-03T02:45:00", + "2024-01-03T02:46:00", + "2024-01-03T02:47:00", + "2024-01-03T02:48:00", + "2024-01-03T02:49:00", + "2024-01-03T02:50:00", + "2024-01-03T02:51:00", + "2024-01-03T02:52:00", + "2024-01-03T02:53:00", + "2024-01-03T02:54:00", + "2024-01-03T02:55:00", + "2024-01-03T02:56:00", + "2024-01-03T02:57:00", + "2024-01-03T02:58:00", + "2024-01-03T02:59:00", + "2024-01-03T03:00:00", + "2024-01-03T03:01:00", + "2024-01-03T03:02:00", + "2024-01-03T03:03:00", + "2024-01-03T03:04:00", + "2024-01-03T03:05:00", + "2024-01-03T03:06:00", + "2024-01-03T03:07:00", + "2024-01-03T03:08:00", + "2024-01-03T03:09:00", + "2024-01-03T03:10:00", + "2024-01-03T03:11:00", + "2024-01-03T03:12:00", + "2024-01-03T03:13:00", + "2024-01-03T03:14:00", + "2024-01-03T03:15:00", + "2024-01-03T03:16:00", + "2024-01-03T03:17:00", + "2024-01-03T03:18:00", + "2024-01-03T03:19:00", + "2024-01-03T03:20:00", + "2024-01-03T03:21:00", + "2024-01-03T03:22:00", + "2024-01-03T03:23:00", + "2024-01-03T03:24:00", + "2024-01-03T03:25:00", + "2024-01-03T03:26:00", + "2024-01-03T03:27:00", + "2024-01-03T03:28:00", + "2024-01-03T03:29:00", + "2024-01-03T03:30:00", + "2024-01-03T03:31:00", + "2024-01-03T03:32:00", + "2024-01-03T03:33:00", + "2024-01-03T03:34:00", + "2024-01-03T03:35:00", + "2024-01-03T03:36:00", + "2024-01-03T03:37:00", + "2024-01-03T03:38:00", + "2024-01-03T03:39:00", + "2024-01-03T03:40:00", + "2024-01-03T03:41:00", + "2024-01-03T03:42:00", + "2024-01-03T03:43:00", + "2024-01-03T03:44:00", + "2024-01-03T03:45:00", + "2024-01-03T03:46:00", + "2024-01-03T03:47:00", + "2024-01-03T03:48:00", + "2024-01-03T03:49:00", + "2024-01-03T03:50:00", + "2024-01-03T03:51:00", + "2024-01-03T03:52:00", + "2024-01-03T03:53:00", + "2024-01-03T03:54:00", + "2024-01-03T03:55:00", + "2024-01-03T03:56:00", + "2024-01-03T03:57:00", + "2024-01-03T03:58:00", + "2024-01-03T03:59:00", + "2024-01-03T04:00:00", + "2024-01-03T04:01:00", + "2024-01-03T04:02:00", + "2024-01-03T04:03:00", + "2024-01-03T04:04:00", + "2024-01-03T04:05:00", + "2024-01-03T04:06:00", + "2024-01-03T04:07:00", + "2024-01-03T04:08:00", + "2024-01-03T04:09:00", + "2024-01-03T04:10:00", + "2024-01-03T04:11:00", + "2024-01-03T04:12:00", + "2024-01-03T04:13:00", + "2024-01-03T04:14:00", + "2024-01-03T04:15:00", + "2024-01-03T04:16:00", + "2024-01-03T04:17:00", + "2024-01-03T04:18:00", + "2024-01-03T04:19:00", + "2024-01-03T04:20:00", + "2024-01-03T04:21:00", + "2024-01-03T04:22:00", + "2024-01-03T04:23:00", + "2024-01-03T04:24:00", + "2024-01-03T04:25:00", + "2024-01-03T04:26:00", + "2024-01-03T04:27:00", + "2024-01-03T04:28:00", + "2024-01-03T04:29:00", + "2024-01-03T04:30:00", + "2024-01-03T04:31:00", + "2024-01-03T04:32:00", + "2024-01-03T04:33:00", + "2024-01-03T04:34:00", + "2024-01-03T04:35:00", + "2024-01-03T04:36:00", + "2024-01-03T04:37:00", + "2024-01-03T04:38:00", + "2024-01-03T04:39:00", + "2024-01-03T04:40:00", + "2024-01-03T04:41:00", + "2024-01-03T04:42:00", + "2024-01-03T04:43:00", + "2024-01-03T04:44:00", + "2024-01-03T04:45:00", + "2024-01-03T04:46:00", + "2024-01-03T04:47:00", + "2024-01-03T04:48:00", + "2024-01-03T04:49:00", + "2024-01-03T04:50:00", + "2024-01-03T04:51:00", + "2024-01-03T04:52:00", + "2024-01-03T04:53:00", + "2024-01-03T04:54:00", + "2024-01-03T04:55:00", + "2024-01-03T04:56:00", + "2024-01-03T04:57:00", + "2024-01-03T04:58:00", + "2024-01-03T04:59:00", + "2024-01-03T05:00:00", + "2024-01-03T05:01:00", + "2024-01-03T05:02:00", + "2024-01-03T05:03:00", + "2024-01-03T05:04:00", + "2024-01-03T05:05:00", + "2024-01-03T05:06:00", + "2024-01-03T05:07:00", + "2024-01-03T05:08:00", + "2024-01-03T05:09:00", + "2024-01-03T05:10:00", + "2024-01-03T05:11:00", + "2024-01-03T05:12:00", + "2024-01-03T05:13:00", + "2024-01-03T05:14:00", + "2024-01-03T05:15:00", + "2024-01-03T05:16:00", + "2024-01-03T05:17:00", + "2024-01-03T05:18:00", + "2024-01-03T05:19:00", + "2024-01-03T05:20:00", + "2024-01-03T05:21:00", + "2024-01-03T05:22:00", + "2024-01-03T05:23:00", + "2024-01-03T05:24:00", + "2024-01-03T05:25:00", + "2024-01-03T05:26:00", + "2024-01-03T05:27:00", + "2024-01-03T05:28:00", + "2024-01-03T05:29:00", + "2024-01-03T05:30:00", + "2024-01-03T05:31:00", + "2024-01-03T05:32:00", + "2024-01-03T05:33:00", + "2024-01-03T05:34:00", + "2024-01-03T05:35:00", + "2024-01-03T05:36:00", + "2024-01-03T05:37:00", + "2024-01-03T05:38:00", + "2024-01-03T05:39:00", + "2024-01-03T05:40:00", + "2024-01-03T05:41:00", + "2024-01-03T05:42:00", + "2024-01-03T05:43:00", + "2024-01-03T05:44:00", + "2024-01-03T05:45:00", + "2024-01-03T05:46:00", + "2024-01-03T05:47:00", + "2024-01-03T05:48:00", + "2024-01-03T05:49:00", + "2024-01-03T05:50:00", + "2024-01-03T05:51:00", + "2024-01-03T05:52:00", + "2024-01-03T05:53:00", + "2024-01-03T05:54:00", + "2024-01-03T05:55:00", + "2024-01-03T05:56:00", + "2024-01-03T05:57:00", + "2024-01-03T05:58:00", + "2024-01-03T05:59:00", + "2024-01-03T06:00:00", + "2024-01-03T06:01:00", + "2024-01-03T06:02:00", + "2024-01-03T06:03:00", + "2024-01-03T06:04:00", + "2024-01-03T06:05:00", + "2024-01-03T06:06:00", + "2024-01-03T06:07:00", + "2024-01-03T06:08:00", + "2024-01-03T06:09:00", + "2024-01-03T06:10:00", + "2024-01-03T06:11:00", + "2024-01-03T06:12:00", + "2024-01-03T06:13:00", + "2024-01-03T06:14:00", + "2024-01-03T06:15:00", + "2024-01-03T06:16:00", + "2024-01-03T06:17:00", + "2024-01-03T06:18:00", + "2024-01-03T06:19:00", + "2024-01-03T06:20:00", + "2024-01-03T06:21:00", + "2024-01-03T06:22:00", + "2024-01-03T06:23:00", + "2024-01-03T06:24:00", + "2024-01-03T06:25:00", + "2024-01-03T06:26:00", + "2024-01-03T06:27:00", + "2024-01-03T06:28:00", + "2024-01-03T06:29:00", + "2024-01-03T06:30:00", + "2024-01-03T06:31:00", + "2024-01-03T06:32:00", + "2024-01-03T06:33:00", + "2024-01-03T06:34:00", + "2024-01-03T06:35:00", + "2024-01-03T06:36:00", + "2024-01-03T06:37:00", + "2024-01-03T06:38:00", + "2024-01-03T06:39:00", + "2024-01-03T06:40:00", + "2024-01-03T06:41:00", + "2024-01-03T06:42:00", + "2024-01-03T06:43:00", + "2024-01-03T06:44:00", + "2024-01-03T06:45:00", + "2024-01-03T06:46:00", + "2024-01-03T06:47:00", + "2024-01-03T06:48:00", + "2024-01-03T06:49:00", + "2024-01-03T06:50:00", + "2024-01-03T06:51:00", + "2024-01-03T06:52:00", + "2024-01-03T06:53:00", + "2024-01-03T06:54:00", + "2024-01-03T06:55:00", + "2024-01-03T06:56:00", + "2024-01-03T06:57:00", + "2024-01-03T06:58:00", + "2024-01-03T06:59:00", + "2024-01-03T07:00:00", + "2024-01-03T07:01:00", + "2024-01-03T07:02:00", + "2024-01-03T07:03:00", + "2024-01-03T07:04:00", + "2024-01-03T07:05:00", + "2024-01-03T07:06:00", + "2024-01-03T07:07:00", + "2024-01-03T07:08:00", + "2024-01-03T07:09:00", + "2024-01-03T07:10:00", + "2024-01-03T07:11:00", + "2024-01-03T07:12:00", + "2024-01-03T07:13:00", + "2024-01-03T07:14:00", + "2024-01-03T07:15:00", + "2024-01-03T07:16:00", + "2024-01-03T07:17:00", + "2024-01-03T07:18:00", + "2024-01-03T07:19:00", + "2024-01-03T07:20:00", + "2024-01-03T07:21:00", + "2024-01-03T07:22:00", + "2024-01-03T07:23:00", + "2024-01-03T07:24:00", + "2024-01-03T07:25:00", + "2024-01-03T07:26:00", + "2024-01-03T07:27:00", + "2024-01-03T07:28:00", + "2024-01-03T07:29:00", + "2024-01-03T07:30:00", + "2024-01-03T07:31:00", + "2024-01-03T07:32:00", + "2024-01-03T07:33:00", + "2024-01-03T07:34:00", + "2024-01-03T07:35:00", + "2024-01-03T07:36:00", + "2024-01-03T07:37:00", + "2024-01-03T07:38:00", + "2024-01-03T07:39:00", + "2024-01-03T07:40:00", + "2024-01-03T07:41:00", + "2024-01-03T07:42:00", + "2024-01-03T07:43:00", + "2024-01-03T07:44:00", + "2024-01-03T07:45:00", + "2024-01-03T07:46:00", + "2024-01-03T07:47:00", + "2024-01-03T07:48:00", + "2024-01-03T07:49:00", + "2024-01-03T07:50:00", + "2024-01-03T07:51:00", + "2024-01-03T07:52:00", + "2024-01-03T07:53:00", + "2024-01-03T07:54:00", + "2024-01-03T07:55:00", + "2024-01-03T07:56:00", + "2024-01-03T07:57:00", + "2024-01-03T07:58:00", + "2024-01-03T07:59:00", + "2024-01-03T08:00:00", + "2024-01-03T08:01:00", + "2024-01-03T08:02:00", + "2024-01-03T08:03:00", + "2024-01-03T08:04:00", + "2024-01-03T08:05:00", + "2024-01-03T08:06:00", + "2024-01-03T08:07:00", + "2024-01-03T08:08:00", + "2024-01-03T08:09:00", + "2024-01-03T08:10:00", + "2024-01-03T08:11:00", + "2024-01-03T08:12:00", + "2024-01-03T08:13:00", + "2024-01-03T08:14:00", + "2024-01-03T08:15:00", + "2024-01-03T08:16:00", + "2024-01-03T08:17:00", + "2024-01-03T08:18:00", + "2024-01-03T08:19:00", + "2024-01-03T08:20:00", + "2024-01-03T08:21:00", + "2024-01-03T08:22:00", + "2024-01-03T08:23:00", + "2024-01-03T08:24:00", + "2024-01-03T08:25:00", + "2024-01-03T08:26:00", + "2024-01-03T08:27:00", + "2024-01-03T08:28:00", + "2024-01-03T08:29:00", + "2024-01-03T08:30:00", + "2024-01-03T08:31:00", + "2024-01-03T08:32:00", + "2024-01-03T08:33:00", + "2024-01-03T08:34:00", + "2024-01-03T08:35:00", + "2024-01-03T08:36:00", + "2024-01-03T08:37:00", + "2024-01-03T08:38:00", + "2024-01-03T08:39:00", + "2024-01-03T08:40:00", + "2024-01-03T08:41:00", + "2024-01-03T08:42:00", + "2024-01-03T08:43:00", + "2024-01-03T08:44:00", + "2024-01-03T08:45:00", + "2024-01-03T08:46:00", + "2024-01-03T08:47:00", + "2024-01-03T08:48:00", + "2024-01-03T08:49:00", + "2024-01-03T08:50:00", + "2024-01-03T08:51:00", + "2024-01-03T08:52:00", + "2024-01-03T08:53:00", + "2024-01-03T08:54:00", + "2024-01-03T08:55:00", + "2024-01-03T08:56:00", + "2024-01-03T08:57:00", + "2024-01-03T08:58:00", + "2024-01-03T08:59:00", + "2024-01-03T09:00:00", + "2024-01-03T09:01:00", + "2024-01-03T09:02:00", + "2024-01-03T09:03:00", + "2024-01-03T09:04:00", + "2024-01-03T09:05:00", + "2024-01-03T09:06:00", + "2024-01-03T09:07:00", + "2024-01-03T09:08:00", + "2024-01-03T09:09:00", + "2024-01-03T09:10:00", + "2024-01-03T09:11:00", + "2024-01-03T09:12:00", + "2024-01-03T09:13:00", + "2024-01-03T09:14:00", + "2024-01-03T09:15:00", + "2024-01-03T09:16:00", + "2024-01-03T09:17:00", + "2024-01-03T09:18:00", + "2024-01-03T09:19:00", + "2024-01-03T09:20:00", + "2024-01-03T09:21:00", + "2024-01-03T09:22:00", + "2024-01-03T09:23:00", + "2024-01-03T09:24:00", + "2024-01-03T09:25:00", + "2024-01-03T09:26:00", + "2024-01-03T09:27:00", + "2024-01-03T09:28:00", + "2024-01-03T09:29:00", + "2024-01-03T09:30:00", + "2024-01-03T09:31:00", + "2024-01-03T09:32:00", + "2024-01-03T09:33:00", + "2024-01-03T09:34:00", + "2024-01-03T09:35:00", + "2024-01-03T09:36:00", + "2024-01-03T09:37:00", + "2024-01-03T09:38:00", + "2024-01-03T09:39:00", + "2024-01-03T09:40:00", + "2024-01-03T09:41:00", + "2024-01-03T09:42:00", + "2024-01-03T09:43:00", + "2024-01-03T09:44:00", + "2024-01-03T09:45:00", + "2024-01-03T09:46:00", + "2024-01-03T09:47:00", + "2024-01-03T09:48:00", + "2024-01-03T09:49:00", + "2024-01-03T09:50:00", + "2024-01-03T09:51:00", + "2024-01-03T09:52:00", + "2024-01-03T09:53:00", + "2024-01-03T09:54:00", + "2024-01-03T09:55:00", + "2024-01-03T09:56:00", + "2024-01-03T09:57:00", + "2024-01-03T09:58:00", + "2024-01-03T09:59:00", + "2024-01-03T10:00:00", + "2024-01-03T10:01:00", + "2024-01-03T10:02:00", + "2024-01-03T10:03:00", + "2024-01-03T10:04:00", + "2024-01-03T10:05:00", + "2024-01-03T10:06:00", + "2024-01-03T10:07:00", + "2024-01-03T10:08:00", + "2024-01-03T10:09:00", + "2024-01-03T10:10:00", + "2024-01-03T10:11:00", + "2024-01-03T10:12:00", + "2024-01-03T10:13:00", + "2024-01-03T10:14:00", + "2024-01-03T10:15:00", + "2024-01-03T10:16:00", + "2024-01-03T10:17:00", + "2024-01-03T10:18:00", + "2024-01-03T10:19:00", + "2024-01-03T10:20:00", + "2024-01-03T10:21:00", + "2024-01-03T10:22:00", + "2024-01-03T10:23:00", + "2024-01-03T10:24:00", + "2024-01-03T10:25:00", + "2024-01-03T10:26:00", + "2024-01-03T10:27:00", + "2024-01-03T10:28:00", + "2024-01-03T10:29:00", + "2024-01-03T10:30:00", + "2024-01-03T10:31:00", + "2024-01-03T10:32:00", + "2024-01-03T10:33:00", + "2024-01-03T10:34:00", + "2024-01-03T10:35:00", + "2024-01-03T10:36:00", + "2024-01-03T10:37:00", + "2024-01-03T10:38:00", + "2024-01-03T10:39:00", + "2024-01-03T10:40:00", + "2024-01-03T10:41:00", + "2024-01-03T10:42:00", + "2024-01-03T10:43:00", + "2024-01-03T10:44:00", + "2024-01-03T10:45:00", + "2024-01-03T10:46:00", + "2024-01-03T10:47:00", + "2024-01-03T10:48:00", + "2024-01-03T10:49:00", + "2024-01-03T10:50:00", + "2024-01-03T10:51:00", + "2024-01-03T10:52:00", + "2024-01-03T10:53:00", + "2024-01-03T10:54:00", + "2024-01-03T10:55:00", + "2024-01-03T10:56:00", + "2024-01-03T10:57:00", + "2024-01-03T10:58:00", + "2024-01-03T10:59:00", + "2024-01-03T11:00:00", + "2024-01-03T11:01:00", + "2024-01-03T11:02:00", + "2024-01-03T11:03:00", + "2024-01-03T11:04:00", + "2024-01-03T11:05:00", + "2024-01-03T11:06:00", + "2024-01-03T11:07:00", + "2024-01-03T11:08:00", + "2024-01-03T11:09:00", + "2024-01-03T11:10:00", + "2024-01-03T11:11:00", + "2024-01-03T11:12:00", + "2024-01-03T11:13:00", + "2024-01-03T11:14:00", + "2024-01-03T11:15:00", + "2024-01-03T11:16:00", + "2024-01-03T11:17:00", + "2024-01-03T11:18:00", + "2024-01-03T11:19:00", + "2024-01-03T11:20:00", + "2024-01-03T11:21:00", + "2024-01-03T11:22:00", + "2024-01-03T11:23:00", + "2024-01-03T11:24:00", + "2024-01-03T11:25:00", + "2024-01-03T11:26:00", + "2024-01-03T11:27:00", + "2024-01-03T11:28:00", + "2024-01-03T11:29:00", + "2024-01-03T11:30:00", + "2024-01-03T11:31:00", + "2024-01-03T11:32:00", + "2024-01-03T11:33:00", + "2024-01-03T11:34:00", + "2024-01-03T11:35:00", + "2024-01-03T11:36:00", + "2024-01-03T11:37:00", + "2024-01-03T11:38:00", + "2024-01-03T11:39:00", + "2024-01-03T11:40:00", + "2024-01-03T11:41:00", + "2024-01-03T11:42:00", + "2024-01-03T11:43:00", + "2024-01-03T11:44:00", + "2024-01-03T11:45:00", + "2024-01-03T11:46:00", + "2024-01-03T11:47:00", + "2024-01-03T11:48:00", + "2024-01-03T11:49:00", + "2024-01-03T11:50:00", + "2024-01-03T11:51:00", + "2024-01-03T11:52:00", + "2024-01-03T11:53:00", + "2024-01-03T11:54:00", + "2024-01-03T11:55:00", + "2024-01-03T11:56:00", + "2024-01-03T11:57:00", + "2024-01-03T11:58:00", + "2024-01-03T11:59:00", + "2024-01-03T12:00:00", + "2024-01-03T12:01:00", + "2024-01-03T12:02:00", + "2024-01-03T12:03:00", + "2024-01-03T12:04:00", + "2024-01-03T12:05:00", + "2024-01-03T12:06:00", + "2024-01-03T12:07:00", + "2024-01-03T12:08:00", + "2024-01-03T12:09:00", + "2024-01-03T12:10:00", + "2024-01-03T12:11:00", + "2024-01-03T12:12:00", + "2024-01-03T12:13:00", + "2024-01-03T12:14:00", + "2024-01-03T12:15:00", + "2024-01-03T12:16:00", + "2024-01-03T12:17:00", + "2024-01-03T12:18:00", + "2024-01-03T12:19:00", + "2024-01-03T12:20:00", + "2024-01-03T12:21:00", + "2024-01-03T12:22:00", + "2024-01-03T12:23:00", + "2024-01-03T12:24:00", + "2024-01-03T12:25:00", + "2024-01-03T12:26:00", + "2024-01-03T12:27:00", + "2024-01-03T12:28:00", + "2024-01-03T12:29:00", + "2024-01-03T12:30:00", + "2024-01-03T12:31:00", + "2024-01-03T12:32:00", + "2024-01-03T12:33:00", + "2024-01-03T12:34:00", + "2024-01-03T12:35:00", + "2024-01-03T12:36:00", + "2024-01-03T12:37:00", + "2024-01-03T12:38:00", + "2024-01-03T12:39:00", + "2024-01-03T12:40:00", + "2024-01-03T12:41:00", + "2024-01-03T12:42:00", + "2024-01-03T12:43:00", + "2024-01-03T12:44:00", + "2024-01-03T12:45:00", + "2024-01-03T12:46:00", + "2024-01-03T12:47:00", + "2024-01-03T12:48:00", + "2024-01-03T12:49:00", + "2024-01-03T12:50:00", + "2024-01-03T12:51:00", + "2024-01-03T12:52:00", + "2024-01-03T12:53:00", + "2024-01-03T12:54:00", + "2024-01-03T12:55:00", + "2024-01-03T12:56:00", + "2024-01-03T12:57:00", + "2024-01-03T12:58:00", + "2024-01-03T12:59:00", + "2024-01-03T13:00:00", + "2024-01-03T13:01:00", + "2024-01-03T13:02:00", + "2024-01-03T13:03:00", + "2024-01-03T13:04:00", + "2024-01-03T13:05:00", + "2024-01-03T13:06:00", + "2024-01-03T13:07:00", + "2024-01-03T13:08:00", + "2024-01-03T13:09:00", + "2024-01-03T13:10:00", + "2024-01-03T13:11:00", + "2024-01-03T13:12:00", + "2024-01-03T13:13:00", + "2024-01-03T13:14:00", + "2024-01-03T13:15:00", + "2024-01-03T13:16:00", + "2024-01-03T13:17:00", + "2024-01-03T13:18:00", + "2024-01-03T13:19:00", + "2024-01-03T13:20:00", + "2024-01-03T13:21:00", + "2024-01-03T13:22:00", + "2024-01-03T13:23:00", + "2024-01-03T13:24:00", + "2024-01-03T13:25:00", + "2024-01-03T13:26:00", + "2024-01-03T13:27:00", + "2024-01-03T13:28:00", + "2024-01-03T13:29:00", + "2024-01-03T13:30:00", + "2024-01-03T13:31:00", + "2024-01-03T13:32:00", + "2024-01-03T13:33:00", + "2024-01-03T13:34:00", + "2024-01-03T13:35:00", + "2024-01-03T13:36:00", + "2024-01-03T13:37:00", + "2024-01-03T13:38:00", + "2024-01-03T13:39:00", + "2024-01-03T13:40:00", + "2024-01-03T13:41:00", + "2024-01-03T13:42:00", + "2024-01-03T13:43:00", + "2024-01-03T13:44:00", + "2024-01-03T13:45:00", + "2024-01-03T13:46:00", + "2024-01-03T13:47:00", + "2024-01-03T13:48:00", + "2024-01-03T13:49:00", + "2024-01-03T13:50:00", + "2024-01-03T13:51:00", + "2024-01-03T13:52:00", + "2024-01-03T13:53:00", + "2024-01-03T13:54:00", + "2024-01-03T13:55:00", + "2024-01-03T13:56:00", + "2024-01-03T13:57:00", + "2024-01-03T13:58:00", + "2024-01-03T13:59:00", + "2024-01-03T14:00:00", + "2024-01-03T14:01:00", + "2024-01-03T14:02:00", + "2024-01-03T14:03:00", + "2024-01-03T14:04:00", + "2024-01-03T14:05:00", + "2024-01-03T14:06:00", + "2024-01-03T14:07:00", + "2024-01-03T14:08:00", + "2024-01-03T14:09:00", + "2024-01-03T14:10:00", + "2024-01-03T14:11:00", + "2024-01-03T14:12:00", + "2024-01-03T14:13:00", + "2024-01-03T14:14:00", + "2024-01-03T14:15:00", + "2024-01-03T14:16:00", + "2024-01-03T14:17:00", + "2024-01-03T14:18:00", + "2024-01-03T14:19:00", + "2024-01-03T14:20:00", + "2024-01-03T14:21:00", + "2024-01-03T14:22:00", + "2024-01-03T14:23:00", + "2024-01-03T14:24:00", + "2024-01-03T14:25:00", + "2024-01-03T14:26:00", + "2024-01-03T14:27:00", + "2024-01-03T14:28:00", + "2024-01-03T14:29:00", + "2024-01-03T14:30:00", + "2024-01-03T14:31:00", + "2024-01-03T14:32:00", + "2024-01-03T14:33:00", + "2024-01-03T14:34:00", + "2024-01-03T14:35:00", + "2024-01-03T14:36:00", + "2024-01-03T14:37:00", + "2024-01-03T14:38:00", + "2024-01-03T14:39:00", + "2024-01-03T14:40:00", + "2024-01-03T14:41:00", + "2024-01-03T14:42:00", + "2024-01-03T14:43:00", + "2024-01-03T14:44:00", + "2024-01-03T14:45:00", + "2024-01-03T14:46:00", + "2024-01-03T14:47:00", + "2024-01-03T14:48:00", + "2024-01-03T14:49:00", + "2024-01-03T14:50:00", + "2024-01-03T14:51:00", + "2024-01-03T14:52:00", + "2024-01-03T14:53:00", + "2024-01-03T14:54:00", + "2024-01-03T14:55:00", + "2024-01-03T14:56:00", + "2024-01-03T14:57:00", + "2024-01-03T14:58:00", + "2024-01-03T14:59:00", + "2024-01-03T15:00:00", + "2024-01-03T15:01:00", + "2024-01-03T15:02:00", + "2024-01-03T15:03:00", + "2024-01-03T15:04:00", + "2024-01-03T15:05:00", + "2024-01-03T15:06:00", + "2024-01-03T15:07:00", + "2024-01-03T15:08:00", + "2024-01-03T15:09:00", + "2024-01-03T15:10:00", + "2024-01-03T15:11:00", + "2024-01-03T15:12:00", + "2024-01-03T15:13:00", + "2024-01-03T15:14:00", + "2024-01-03T15:15:00", + "2024-01-03T15:16:00", + "2024-01-03T15:17:00", + "2024-01-03T15:18:00", + "2024-01-03T15:19:00", + "2024-01-03T15:20:00", + "2024-01-03T15:21:00", + "2024-01-03T15:22:00", + "2024-01-03T15:23:00", + "2024-01-03T15:24:00", + "2024-01-03T15:25:00", + "2024-01-03T15:26:00", + "2024-01-03T15:27:00", + "2024-01-03T15:28:00", + "2024-01-03T15:29:00", + "2024-01-03T15:30:00", + "2024-01-03T15:31:00", + "2024-01-03T15:32:00", + "2024-01-03T15:33:00", + "2024-01-03T15:34:00", + "2024-01-03T15:35:00", + "2024-01-03T15:36:00", + "2024-01-03T15:37:00", + "2024-01-03T15:38:00", + "2024-01-03T15:39:00", + "2024-01-03T15:40:00", + "2024-01-03T15:41:00", + "2024-01-03T15:42:00", + "2024-01-03T15:43:00", + "2024-01-03T15:44:00", + "2024-01-03T15:45:00", + "2024-01-03T15:46:00", + "2024-01-03T15:47:00", + "2024-01-03T15:48:00", + "2024-01-03T15:49:00", + "2024-01-03T15:50:00", + "2024-01-03T15:51:00", + "2024-01-03T15:52:00", + "2024-01-03T15:53:00", + "2024-01-03T15:54:00", + "2024-01-03T15:55:00", + "2024-01-03T15:56:00", + "2024-01-03T15:57:00", + "2024-01-03T15:58:00", + "2024-01-03T15:59:00", + "2024-01-03T16:00:00", + "2024-01-03T16:01:00", + "2024-01-03T16:02:00", + "2024-01-03T16:03:00", + "2024-01-03T16:04:00", + "2024-01-03T16:05:00", + "2024-01-03T16:06:00", + "2024-01-03T16:07:00", + "2024-01-03T16:08:00", + "2024-01-03T16:09:00", + "2024-01-03T16:10:00", + "2024-01-03T16:11:00", + "2024-01-03T16:12:00", + "2024-01-03T16:13:00", + "2024-01-03T16:14:00", + "2024-01-03T16:15:00", + "2024-01-03T16:16:00", + "2024-01-03T16:17:00", + "2024-01-03T16:18:00", + "2024-01-03T16:19:00", + "2024-01-03T16:20:00", + "2024-01-03T16:21:00", + "2024-01-03T16:22:00", + "2024-01-03T16:23:00", + "2024-01-03T16:24:00", + "2024-01-03T16:25:00", + "2024-01-03T16:26:00", + "2024-01-03T16:27:00", + "2024-01-03T16:28:00", + "2024-01-03T16:29:00", + "2024-01-03T16:30:00", + "2024-01-03T16:31:00", + "2024-01-03T16:32:00", + "2024-01-03T16:33:00", + "2024-01-03T16:34:00", + "2024-01-03T16:35:00", + "2024-01-03T16:36:00", + "2024-01-03T16:37:00", + "2024-01-03T16:38:00", + "2024-01-03T16:39:00", + "2024-01-03T16:40:00", + "2024-01-03T16:41:00", + "2024-01-03T16:42:00", + "2024-01-03T16:43:00", + "2024-01-03T16:44:00", + "2024-01-03T16:45:00", + "2024-01-03T16:46:00", + "2024-01-03T16:47:00", + "2024-01-03T16:48:00", + "2024-01-03T16:49:00", + "2024-01-03T16:50:00", + "2024-01-03T16:51:00", + "2024-01-03T16:52:00", + "2024-01-03T16:53:00", + "2024-01-03T16:54:00", + "2024-01-03T16:55:00", + "2024-01-03T16:56:00", + "2024-01-03T16:57:00", + "2024-01-03T16:58:00", + "2024-01-03T16:59:00", + "2024-01-03T17:00:00", + "2024-01-03T17:01:00", + "2024-01-03T17:02:00", + "2024-01-03T17:03:00", + "2024-01-03T17:04:00", + "2024-01-03T17:05:00", + "2024-01-03T17:06:00", + "2024-01-03T17:07:00", + "2024-01-03T17:08:00", + "2024-01-03T17:09:00", + "2024-01-03T17:10:00", + "2024-01-03T17:11:00", + "2024-01-03T17:12:00", + "2024-01-03T17:13:00", + "2024-01-03T17:14:00", + "2024-01-03T17:15:00", + "2024-01-03T17:16:00", + "2024-01-03T17:17:00", + "2024-01-03T17:18:00", + "2024-01-03T17:19:00", + "2024-01-03T17:20:00", + "2024-01-03T17:21:00", + "2024-01-03T17:22:00", + "2024-01-03T17:23:00", + "2024-01-03T17:24:00", + "2024-01-03T17:25:00", + "2024-01-03T17:26:00", + "2024-01-03T17:27:00", + "2024-01-03T17:28:00", + "2024-01-03T17:29:00", + "2024-01-03T17:30:00", + "2024-01-03T17:31:00", + "2024-01-03T17:32:00", + "2024-01-03T17:33:00", + "2024-01-03T17:34:00", + "2024-01-03T17:35:00", + "2024-01-03T17:36:00", + "2024-01-03T17:37:00", + "2024-01-03T17:38:00", + "2024-01-03T17:39:00", + "2024-01-03T17:40:00", + "2024-01-03T17:41:00", + "2024-01-03T17:42:00", + "2024-01-03T17:43:00", + "2024-01-03T17:44:00", + "2024-01-03T17:45:00", + "2024-01-03T17:46:00", + "2024-01-03T17:47:00", + "2024-01-03T17:48:00", + "2024-01-03T17:49:00", + "2024-01-03T17:50:00", + "2024-01-03T17:51:00", + "2024-01-03T17:52:00", + "2024-01-03T17:53:00", + "2024-01-03T17:54:00", + "2024-01-03T17:55:00", + "2024-01-03T17:56:00", + "2024-01-03T17:57:00", + "2024-01-03T17:58:00", + "2024-01-03T17:59:00", + "2024-01-03T18:00:00", + "2024-01-03T18:01:00", + "2024-01-03T18:02:00", + "2024-01-03T18:03:00", + "2024-01-03T18:04:00", + "2024-01-03T18:05:00", + "2024-01-03T18:06:00", + "2024-01-03T18:07:00", + "2024-01-03T18:08:00", + "2024-01-03T18:09:00", + "2024-01-03T18:10:00", + "2024-01-03T18:11:00", + "2024-01-03T18:12:00", + "2024-01-03T18:13:00", + "2024-01-03T18:14:00", + "2024-01-03T18:15:00", + "2024-01-03T18:16:00", + "2024-01-03T18:17:00", + "2024-01-03T18:18:00", + "2024-01-03T18:19:00", + "2024-01-03T18:20:00", + "2024-01-03T18:21:00", + "2024-01-03T18:22:00", + "2024-01-03T18:23:00", + "2024-01-03T18:24:00", + "2024-01-03T18:25:00", + "2024-01-03T18:26:00", + "2024-01-03T18:27:00", + "2024-01-03T18:28:00", + "2024-01-03T18:29:00", + "2024-01-03T18:30:00", + "2024-01-03T18:31:00", + "2024-01-03T18:32:00", + "2024-01-03T18:33:00", + "2024-01-03T18:34:00", + "2024-01-03T18:35:00", + "2024-01-03T18:36:00", + "2024-01-03T18:37:00", + "2024-01-03T18:38:00", + "2024-01-03T18:39:00", + "2024-01-03T18:40:00", + "2024-01-03T18:41:00", + "2024-01-03T18:42:00", + "2024-01-03T18:43:00", + "2024-01-03T18:44:00", + "2024-01-03T18:45:00", + "2024-01-03T18:46:00", + "2024-01-03T18:47:00", + "2024-01-03T18:48:00", + "2024-01-03T18:49:00", + "2024-01-03T18:50:00", + "2024-01-03T18:51:00", + "2024-01-03T18:52:00", + "2024-01-03T18:53:00", + "2024-01-03T18:54:00", + "2024-01-03T18:55:00", + "2024-01-03T18:56:00", + "2024-01-03T18:57:00", + "2024-01-03T18:58:00", + "2024-01-03T18:59:00", + "2024-01-03T19:00:00", + "2024-01-03T19:01:00", + "2024-01-03T19:02:00", + "2024-01-03T19:03:00", + "2024-01-03T19:04:00", + "2024-01-03T19:05:00", + "2024-01-03T19:06:00", + "2024-01-03T19:07:00", + "2024-01-03T19:08:00", + "2024-01-03T19:09:00", + "2024-01-03T19:10:00", + "2024-01-03T19:11:00", + "2024-01-03T19:12:00", + "2024-01-03T19:13:00", + "2024-01-03T19:14:00", + "2024-01-03T19:15:00", + "2024-01-03T19:16:00", + "2024-01-03T19:17:00", + "2024-01-03T19:18:00", + "2024-01-03T19:19:00", + "2024-01-03T19:20:00", + "2024-01-03T19:21:00", + "2024-01-03T19:22:00", + "2024-01-03T19:23:00", + "2024-01-03T19:24:00", + "2024-01-03T19:25:00", + "2024-01-03T19:26:00", + "2024-01-03T19:27:00", + "2024-01-03T19:28:00", + "2024-01-03T19:29:00", + "2024-01-03T19:30:00", + "2024-01-03T19:31:00", + "2024-01-03T19:32:00", + "2024-01-03T19:33:00", + "2024-01-03T19:34:00", + "2024-01-03T19:35:00", + "2024-01-03T19:36:00", + "2024-01-03T19:37:00", + "2024-01-03T19:38:00", + "2024-01-03T19:39:00", + "2024-01-03T19:40:00", + "2024-01-03T19:41:00", + "2024-01-03T19:42:00", + "2024-01-03T19:43:00", + "2024-01-03T19:44:00", + "2024-01-03T19:45:00", + "2024-01-03T19:46:00", + "2024-01-03T19:47:00", + "2024-01-03T19:48:00", + "2024-01-03T19:49:00", + "2024-01-03T19:50:00", + "2024-01-03T19:51:00", + "2024-01-03T19:52:00", + "2024-01-03T19:53:00", + "2024-01-03T19:54:00", + "2024-01-03T19:55:00", + "2024-01-03T19:56:00", + "2024-01-03T19:57:00", + "2024-01-03T19:58:00", + "2024-01-03T19:59:00", + "2024-01-03T20:00:00", + "2024-01-03T20:01:00", + "2024-01-03T20:02:00", + "2024-01-03T20:03:00", + "2024-01-03T20:04:00", + "2024-01-03T20:05:00", + "2024-01-03T20:06:00", + "2024-01-03T20:07:00", + "2024-01-03T20:08:00", + "2024-01-03T20:09:00", + "2024-01-03T20:10:00", + "2024-01-03T20:11:00", + "2024-01-03T20:12:00", + "2024-01-03T20:13:00", + "2024-01-03T20:14:00", + "2024-01-03T20:15:00", + "2024-01-03T20:16:00", + "2024-01-03T20:17:00", + "2024-01-03T20:18:00", + "2024-01-03T20:19:00", + "2024-01-03T20:20:00", + "2024-01-03T20:21:00", + "2024-01-03T20:22:00", + "2024-01-03T20:23:00", + "2024-01-03T20:24:00", + "2024-01-03T20:25:00", + "2024-01-03T20:26:00", + "2024-01-03T20:27:00", + "2024-01-03T20:28:00", + "2024-01-03T20:29:00", + "2024-01-03T20:30:00", + "2024-01-03T20:31:00", + "2024-01-03T20:32:00", + "2024-01-03T20:33:00", + "2024-01-03T20:34:00", + "2024-01-03T20:35:00", + "2024-01-03T20:36:00", + "2024-01-03T20:37:00", + "2024-01-03T20:38:00", + "2024-01-03T20:39:00", + "2024-01-03T20:40:00", + "2024-01-03T20:41:00", + "2024-01-03T20:42:00", + "2024-01-03T20:43:00", + "2024-01-03T20:44:00", + "2024-01-03T20:45:00", + "2024-01-03T20:46:00", + "2024-01-03T20:47:00", + "2024-01-03T20:48:00", + "2024-01-03T20:49:00", + "2024-01-03T20:50:00", + "2024-01-03T20:51:00", + "2024-01-03T20:52:00", + "2024-01-03T20:53:00", + "2024-01-03T20:54:00", + "2024-01-03T20:55:00", + "2024-01-03T20:56:00", + "2024-01-03T20:57:00", + "2024-01-03T20:58:00", + "2024-01-03T20:59:00", + "2024-01-03T21:00:00", + "2024-01-03T21:01:00", + "2024-01-03T21:02:00", + "2024-01-03T21:03:00", + "2024-01-03T21:04:00", + "2024-01-03T21:05:00", + "2024-01-03T21:06:00", + "2024-01-03T21:07:00", + "2024-01-03T21:08:00", + "2024-01-03T21:09:00", + "2024-01-03T21:10:00", + "2024-01-03T21:11:00", + "2024-01-03T21:12:00", + "2024-01-03T21:13:00", + "2024-01-03T21:14:00", + "2024-01-03T21:15:00", + "2024-01-03T21:16:00", + "2024-01-03T21:17:00", + "2024-01-03T21:18:00", + "2024-01-03T21:19:00", + "2024-01-03T21:20:00", + "2024-01-03T21:21:00", + "2024-01-03T21:22:00", + "2024-01-03T21:23:00", + "2024-01-03T21:24:00", + "2024-01-03T21:25:00", + "2024-01-03T21:26:00", + "2024-01-03T21:27:00", + "2024-01-03T21:28:00", + "2024-01-03T21:29:00", + "2024-01-03T21:30:00", + "2024-01-03T21:31:00", + "2024-01-03T21:32:00", + "2024-01-03T21:33:00", + "2024-01-03T21:34:00", + "2024-01-03T21:35:00", + "2024-01-03T21:36:00", + "2024-01-03T21:37:00", + "2024-01-03T21:38:00", + "2024-01-03T21:39:00", + "2024-01-03T21:40:00", + "2024-01-03T21:41:00", + "2024-01-03T21:42:00", + "2024-01-03T21:43:00", + "2024-01-03T21:44:00", + "2024-01-03T21:45:00", + "2024-01-03T21:46:00", + "2024-01-03T21:47:00", + "2024-01-03T21:48:00", + "2024-01-03T21:49:00", + "2024-01-03T21:50:00", + "2024-01-03T21:51:00", + "2024-01-03T21:52:00", + "2024-01-03T21:53:00", + "2024-01-03T21:54:00", + "2024-01-03T21:55:00", + "2024-01-03T21:56:00", + "2024-01-03T21:57:00", + "2024-01-03T21:58:00", + "2024-01-03T21:59:00", + "2024-01-03T22:00:00", + "2024-01-03T22:01:00", + "2024-01-03T22:02:00", + "2024-01-03T22:03:00", + "2024-01-03T22:04:00", + "2024-01-03T22:05:00", + "2024-01-03T22:06:00", + "2024-01-03T22:07:00", + "2024-01-03T22:08:00", + "2024-01-03T22:09:00", + "2024-01-03T22:10:00", + "2024-01-03T22:11:00", + "2024-01-03T22:12:00", + "2024-01-03T22:13:00", + "2024-01-03T22:14:00", + "2024-01-03T22:15:00", + "2024-01-03T22:16:00", + "2024-01-03T22:17:00", + "2024-01-03T22:18:00", + "2024-01-03T22:19:00", + "2024-01-03T22:20:00", + "2024-01-03T22:21:00", + "2024-01-03T22:22:00", + "2024-01-03T22:23:00", + "2024-01-03T22:24:00", + "2024-01-03T22:25:00", + "2024-01-03T22:26:00", + "2024-01-03T22:27:00", + "2024-01-03T22:28:00", + "2024-01-03T22:29:00", + "2024-01-03T22:30:00", + "2024-01-03T22:31:00", + "2024-01-03T22:32:00", + "2024-01-03T22:33:00", + "2024-01-03T22:34:00", + "2024-01-03T22:35:00", + "2024-01-03T22:36:00", + "2024-01-03T22:37:00", + "2024-01-03T22:38:00", + "2024-01-03T22:39:00", + "2024-01-03T22:40:00", + "2024-01-03T22:41:00", + "2024-01-03T22:42:00", + "2024-01-03T22:43:00", + "2024-01-03T22:44:00", + "2024-01-03T22:45:00", + "2024-01-03T22:46:00", + "2024-01-03T22:47:00", + "2024-01-03T22:48:00", + "2024-01-03T22:49:00", + "2024-01-03T22:50:00", + "2024-01-03T22:51:00", + "2024-01-03T22:52:00", + "2024-01-03T22:53:00", + "2024-01-03T22:54:00", + "2024-01-03T22:55:00", + "2024-01-03T22:56:00", + "2024-01-03T22:57:00", + "2024-01-03T22:58:00", + "2024-01-03T22:59:00", + "2024-01-03T23:00:00", + "2024-01-03T23:01:00", + "2024-01-03T23:02:00", + "2024-01-03T23:03:00", + "2024-01-03T23:04:00", + "2024-01-03T23:05:00", + "2024-01-03T23:06:00", + "2024-01-03T23:07:00", + "2024-01-03T23:08:00", + "2024-01-03T23:09:00", + "2024-01-03T23:10:00", + "2024-01-03T23:11:00", + "2024-01-03T23:12:00", + "2024-01-03T23:13:00", + "2024-01-03T23:14:00", + "2024-01-03T23:15:00", + "2024-01-03T23:16:00", + "2024-01-03T23:17:00", + "2024-01-03T23:18:00", + "2024-01-03T23:19:00", + "2024-01-03T23:20:00", + "2024-01-03T23:21:00", + "2024-01-03T23:22:00", + "2024-01-03T23:23:00", + "2024-01-03T23:24:00", + "2024-01-03T23:25:00", + "2024-01-03T23:26:00", + "2024-01-03T23:27:00", + "2024-01-03T23:28:00", + "2024-01-03T23:29:00", + "2024-01-03T23:30:00", + "2024-01-03T23:31:00", + "2024-01-03T23:32:00", + "2024-01-03T23:33:00", + "2024-01-03T23:34:00", + "2024-01-03T23:35:00", + "2024-01-03T23:36:00", + "2024-01-03T23:37:00", + "2024-01-03T23:38:00", + "2024-01-03T23:39:00", + "2024-01-03T23:40:00", + "2024-01-03T23:41:00", + "2024-01-03T23:42:00", + "2024-01-03T23:43:00", + "2024-01-03T23:44:00", + "2024-01-03T23:45:00", + "2024-01-03T23:46:00", + "2024-01-03T23:47:00", + "2024-01-03T23:48:00", + "2024-01-03T23:49:00", + "2024-01-03T23:50:00", + "2024-01-03T23:51:00", + "2024-01-03T23:52:00", + "2024-01-03T23:53:00", + "2024-01-03T23:54:00", + "2024-01-03T23:55:00", + "2024-01-03T23:56:00", + "2024-01-03T23:57:00", + "2024-01-03T23:58:00", + "2024-01-03T23:59:00", + "2024-01-04T00:00:00", + "2024-01-04T00:01:00", + "2024-01-04T00:02:00", + "2024-01-04T00:03:00", + "2024-01-04T00:04:00", + "2024-01-04T00:05:00", + "2024-01-04T00:06:00", + "2024-01-04T00:07:00", + "2024-01-04T00:08:00", + "2024-01-04T00:09:00", + "2024-01-04T00:10:00", + "2024-01-04T00:11:00", + "2024-01-04T00:12:00", + "2024-01-04T00:13:00", + "2024-01-04T00:14:00", + "2024-01-04T00:15:00", + "2024-01-04T00:16:00", + "2024-01-04T00:17:00", + "2024-01-04T00:18:00", + "2024-01-04T00:19:00", + "2024-01-04T00:20:00", + "2024-01-04T00:21:00", + "2024-01-04T00:22:00", + "2024-01-04T00:23:00", + "2024-01-04T00:24:00", + "2024-01-04T00:25:00", + "2024-01-04T00:26:00", + "2024-01-04T00:27:00", + "2024-01-04T00:28:00", + "2024-01-04T00:29:00", + "2024-01-04T00:30:00", + "2024-01-04T00:31:00", + "2024-01-04T00:32:00", + "2024-01-04T00:33:00", + "2024-01-04T00:34:00", + "2024-01-04T00:35:00", + "2024-01-04T00:36:00", + "2024-01-04T00:37:00", + "2024-01-04T00:38:00", + "2024-01-04T00:39:00", + "2024-01-04T00:40:00", + "2024-01-04T00:41:00", + "2024-01-04T00:42:00", + "2024-01-04T00:43:00", + "2024-01-04T00:44:00", + "2024-01-04T00:45:00", + "2024-01-04T00:46:00", + "2024-01-04T00:47:00", + "2024-01-04T00:48:00", + "2024-01-04T00:49:00", + "2024-01-04T00:50:00", + "2024-01-04T00:51:00", + "2024-01-04T00:52:00", + "2024-01-04T00:53:00", + "2024-01-04T00:54:00", + "2024-01-04T00:55:00", + "2024-01-04T00:56:00", + "2024-01-04T00:57:00", + "2024-01-04T00:58:00", + "2024-01-04T00:59:00", + "2024-01-04T01:00:00", + "2024-01-04T01:01:00", + "2024-01-04T01:02:00", + "2024-01-04T01:03:00", + "2024-01-04T01:04:00", + "2024-01-04T01:05:00", + "2024-01-04T01:06:00", + "2024-01-04T01:07:00", + "2024-01-04T01:08:00", + "2024-01-04T01:09:00", + "2024-01-04T01:10:00", + "2024-01-04T01:11:00", + "2024-01-04T01:12:00", + "2024-01-04T01:13:00", + "2024-01-04T01:14:00", + "2024-01-04T01:15:00", + "2024-01-04T01:16:00", + "2024-01-04T01:17:00", + "2024-01-04T01:18:00", + "2024-01-04T01:19:00", + "2024-01-04T01:20:00", + "2024-01-04T01:21:00", + "2024-01-04T01:22:00", + "2024-01-04T01:23:00", + "2024-01-04T01:24:00", + "2024-01-04T01:25:00", + "2024-01-04T01:26:00", + "2024-01-04T01:27:00", + "2024-01-04T01:28:00", + "2024-01-04T01:29:00", + "2024-01-04T01:30:00", + "2024-01-04T01:31:00", + "2024-01-04T01:32:00", + "2024-01-04T01:33:00", + "2024-01-04T01:34:00", + "2024-01-04T01:35:00", + "2024-01-04T01:36:00", + "2024-01-04T01:37:00", + "2024-01-04T01:38:00", + "2024-01-04T01:39:00", + "2024-01-04T01:40:00", + "2024-01-04T01:41:00", + "2024-01-04T01:42:00", + "2024-01-04T01:43:00", + "2024-01-04T01:44:00", + "2024-01-04T01:45:00", + "2024-01-04T01:46:00", + "2024-01-04T01:47:00", + "2024-01-04T01:48:00", + "2024-01-04T01:49:00", + "2024-01-04T01:50:00", + "2024-01-04T01:51:00", + "2024-01-04T01:52:00", + "2024-01-04T01:53:00", + "2024-01-04T01:54:00", + "2024-01-04T01:55:00", + "2024-01-04T01:56:00", + "2024-01-04T01:57:00", + "2024-01-04T01:58:00", + "2024-01-04T01:59:00", + "2024-01-04T02:00:00", + "2024-01-04T02:01:00", + "2024-01-04T02:02:00", + "2024-01-04T02:03:00", + "2024-01-04T02:04:00", + "2024-01-04T02:05:00", + "2024-01-04T02:06:00", + "2024-01-04T02:07:00", + "2024-01-04T02:08:00", + "2024-01-04T02:09:00", + "2024-01-04T02:10:00", + "2024-01-04T02:11:00", + "2024-01-04T02:12:00", + "2024-01-04T02:13:00", + "2024-01-04T02:14:00", + "2024-01-04T02:15:00", + "2024-01-04T02:16:00", + "2024-01-04T02:17:00", + "2024-01-04T02:18:00", + "2024-01-04T02:19:00", + "2024-01-04T02:20:00", + "2024-01-04T02:21:00", + "2024-01-04T02:22:00", + "2024-01-04T02:23:00", + "2024-01-04T02:24:00", + "2024-01-04T02:25:00", + "2024-01-04T02:26:00", + "2024-01-04T02:27:00", + "2024-01-04T02:28:00", + "2024-01-04T02:29:00", + "2024-01-04T02:30:00", + "2024-01-04T02:31:00", + "2024-01-04T02:32:00", + "2024-01-04T02:33:00", + "2024-01-04T02:34:00", + "2024-01-04T02:35:00", + "2024-01-04T02:36:00", + "2024-01-04T02:37:00", + "2024-01-04T02:38:00", + "2024-01-04T02:39:00", + "2024-01-04T02:40:00", + "2024-01-04T02:41:00", + "2024-01-04T02:42:00", + "2024-01-04T02:43:00", + "2024-01-04T02:44:00", + "2024-01-04T02:45:00", + "2024-01-04T02:46:00", + "2024-01-04T02:47:00", + "2024-01-04T02:48:00", + "2024-01-04T02:49:00", + "2024-01-04T02:50:00", + "2024-01-04T02:51:00", + "2024-01-04T02:52:00", + "2024-01-04T02:53:00", + "2024-01-04T02:54:00", + "2024-01-04T02:55:00", + "2024-01-04T02:56:00", + "2024-01-04T02:57:00", + "2024-01-04T02:58:00", + "2024-01-04T02:59:00", + "2024-01-04T03:00:00", + "2024-01-04T03:01:00", + "2024-01-04T03:02:00", + "2024-01-04T03:03:00", + "2024-01-04T03:04:00", + "2024-01-04T03:05:00", + "2024-01-04T03:06:00", + "2024-01-04T03:07:00", + "2024-01-04T03:08:00", + "2024-01-04T03:09:00", + "2024-01-04T03:10:00", + "2024-01-04T03:11:00", + "2024-01-04T03:12:00", + "2024-01-04T03:13:00", + "2024-01-04T03:14:00", + "2024-01-04T03:15:00", + "2024-01-04T03:16:00", + "2024-01-04T03:17:00", + "2024-01-04T03:18:00", + "2024-01-04T03:19:00", + "2024-01-04T03:20:00", + "2024-01-04T03:21:00", + "2024-01-04T03:22:00", + "2024-01-04T03:23:00", + "2024-01-04T03:24:00", + "2024-01-04T03:25:00", + "2024-01-04T03:26:00", + "2024-01-04T03:27:00", + "2024-01-04T03:28:00", + "2024-01-04T03:29:00", + "2024-01-04T03:30:00", + "2024-01-04T03:31:00", + "2024-01-04T03:32:00", + "2024-01-04T03:33:00", + "2024-01-04T03:34:00", + "2024-01-04T03:35:00", + "2024-01-04T03:36:00", + "2024-01-04T03:37:00", + "2024-01-04T03:38:00", + "2024-01-04T03:39:00", + "2024-01-04T03:40:00", + "2024-01-04T03:41:00", + "2024-01-04T03:42:00", + "2024-01-04T03:43:00", + "2024-01-04T03:44:00", + "2024-01-04T03:45:00", + "2024-01-04T03:46:00", + "2024-01-04T03:47:00", + "2024-01-04T03:48:00", + "2024-01-04T03:49:00", + "2024-01-04T03:50:00", + "2024-01-04T03:51:00", + "2024-01-04T03:52:00", + "2024-01-04T03:53:00", + "2024-01-04T03:54:00", + "2024-01-04T03:55:00", + "2024-01-04T03:56:00", + "2024-01-04T03:57:00", + "2024-01-04T03:58:00", + "2024-01-04T03:59:00", + "2024-01-04T04:00:00", + "2024-01-04T04:01:00", + "2024-01-04T04:02:00", + "2024-01-04T04:03:00", + "2024-01-04T04:04:00", + "2024-01-04T04:05:00", + "2024-01-04T04:06:00", + "2024-01-04T04:07:00", + "2024-01-04T04:08:00", + "2024-01-04T04:09:00", + "2024-01-04T04:10:00", + "2024-01-04T04:11:00", + "2024-01-04T04:12:00", + "2024-01-04T04:13:00", + "2024-01-04T04:14:00", + "2024-01-04T04:15:00", + "2024-01-04T04:16:00", + "2024-01-04T04:17:00", + "2024-01-04T04:18:00", + "2024-01-04T04:19:00", + "2024-01-04T04:20:00", + "2024-01-04T04:21:00", + "2024-01-04T04:22:00", + "2024-01-04T04:23:00", + "2024-01-04T04:24:00", + "2024-01-04T04:25:00", + "2024-01-04T04:26:00", + "2024-01-04T04:27:00", + "2024-01-04T04:28:00", + "2024-01-04T04:29:00", + "2024-01-04T04:30:00", + "2024-01-04T04:31:00", + "2024-01-04T04:32:00", + "2024-01-04T04:33:00", + "2024-01-04T04:34:00", + "2024-01-04T04:35:00", + "2024-01-04T04:36:00", + "2024-01-04T04:37:00", + "2024-01-04T04:38:00", + "2024-01-04T04:39:00", + "2024-01-04T04:40:00", + "2024-01-04T04:41:00", + "2024-01-04T04:42:00", + "2024-01-04T04:43:00", + "2024-01-04T04:44:00", + "2024-01-04T04:45:00", + "2024-01-04T04:46:00", + "2024-01-04T04:47:00", + "2024-01-04T04:48:00", + "2024-01-04T04:49:00", + "2024-01-04T04:50:00", + "2024-01-04T04:51:00", + "2024-01-04T04:52:00", + "2024-01-04T04:53:00", + "2024-01-04T04:54:00", + "2024-01-04T04:55:00", + "2024-01-04T04:56:00", + "2024-01-04T04:57:00", + "2024-01-04T04:58:00", + "2024-01-04T04:59:00", + "2024-01-04T05:00:00", + "2024-01-04T05:01:00", + "2024-01-04T05:02:00", + "2024-01-04T05:03:00", + "2024-01-04T05:04:00", + "2024-01-04T05:05:00", + "2024-01-04T05:06:00", + "2024-01-04T05:07:00", + "2024-01-04T05:08:00", + "2024-01-04T05:09:00", + "2024-01-04T05:10:00", + "2024-01-04T05:11:00", + "2024-01-04T05:12:00", + "2024-01-04T05:13:00", + "2024-01-04T05:14:00", + "2024-01-04T05:15:00", + "2024-01-04T05:16:00", + "2024-01-04T05:17:00", + "2024-01-04T05:18:00", + "2024-01-04T05:19:00", + "2024-01-04T05:20:00", + "2024-01-04T05:21:00", + "2024-01-04T05:22:00", + "2024-01-04T05:23:00", + "2024-01-04T05:24:00", + "2024-01-04T05:25:00", + "2024-01-04T05:26:00", + "2024-01-04T05:27:00", + "2024-01-04T05:28:00", + "2024-01-04T05:29:00", + "2024-01-04T05:30:00", + "2024-01-04T05:31:00", + "2024-01-04T05:32:00", + "2024-01-04T05:33:00", + "2024-01-04T05:34:00", + "2024-01-04T05:35:00", + "2024-01-04T05:36:00", + "2024-01-04T05:37:00", + "2024-01-04T05:38:00", + "2024-01-04T05:39:00", + "2024-01-04T05:40:00", + "2024-01-04T05:41:00", + "2024-01-04T05:42:00", + "2024-01-04T05:43:00", + "2024-01-04T05:44:00", + "2024-01-04T05:45:00", + "2024-01-04T05:46:00", + "2024-01-04T05:47:00", + "2024-01-04T05:48:00", + "2024-01-04T05:49:00", + "2024-01-04T05:50:00", + "2024-01-04T05:51:00", + "2024-01-04T05:52:00", + "2024-01-04T05:53:00", + "2024-01-04T05:54:00", + "2024-01-04T05:55:00", + "2024-01-04T05:56:00", + "2024-01-04T05:57:00", + "2024-01-04T05:58:00", + "2024-01-04T05:59:00", + "2024-01-04T06:00:00", + "2024-01-04T06:01:00", + "2024-01-04T06:02:00", + "2024-01-04T06:03:00", + "2024-01-04T06:04:00", + "2024-01-04T06:05:00", + "2024-01-04T06:06:00", + "2024-01-04T06:07:00", + "2024-01-04T06:08:00", + "2024-01-04T06:09:00", + "2024-01-04T06:10:00", + "2024-01-04T06:11:00", + "2024-01-04T06:12:00", + "2024-01-04T06:13:00", + "2024-01-04T06:14:00", + "2024-01-04T06:15:00", + "2024-01-04T06:16:00", + "2024-01-04T06:17:00", + "2024-01-04T06:18:00", + "2024-01-04T06:19:00", + "2024-01-04T06:20:00", + "2024-01-04T06:21:00", + "2024-01-04T06:22:00", + "2024-01-04T06:23:00", + "2024-01-04T06:24:00", + "2024-01-04T06:25:00", + "2024-01-04T06:26:00", + "2024-01-04T06:27:00", + "2024-01-04T06:28:00", + "2024-01-04T06:29:00", + "2024-01-04T06:30:00", + "2024-01-04T06:31:00", + "2024-01-04T06:32:00", + "2024-01-04T06:33:00", + "2024-01-04T06:34:00", + "2024-01-04T06:35:00", + "2024-01-04T06:36:00", + "2024-01-04T06:37:00", + "2024-01-04T06:38:00", + "2024-01-04T06:39:00", + "2024-01-04T06:40:00", + "2024-01-04T06:41:00", + "2024-01-04T06:42:00", + "2024-01-04T06:43:00", + "2024-01-04T06:44:00", + "2024-01-04T06:45:00", + "2024-01-04T06:46:00", + "2024-01-04T06:47:00", + "2024-01-04T06:48:00", + "2024-01-04T06:49:00", + "2024-01-04T06:50:00", + "2024-01-04T06:51:00", + "2024-01-04T06:52:00", + "2024-01-04T06:53:00", + "2024-01-04T06:54:00", + "2024-01-04T06:55:00", + "2024-01-04T06:56:00", + "2024-01-04T06:57:00", + "2024-01-04T06:58:00", + "2024-01-04T06:59:00", + "2024-01-04T07:00:00", + "2024-01-04T07:01:00", + "2024-01-04T07:02:00", + "2024-01-04T07:03:00", + "2024-01-04T07:04:00", + "2024-01-04T07:05:00", + "2024-01-04T07:06:00", + "2024-01-04T07:07:00", + "2024-01-04T07:08:00", + "2024-01-04T07:09:00", + "2024-01-04T07:10:00", + "2024-01-04T07:11:00", + "2024-01-04T07:12:00", + "2024-01-04T07:13:00", + "2024-01-04T07:14:00", + "2024-01-04T07:15:00", + "2024-01-04T07:16:00", + "2024-01-04T07:17:00", + "2024-01-04T07:18:00", + "2024-01-04T07:19:00", + "2024-01-04T07:20:00", + "2024-01-04T07:21:00", + "2024-01-04T07:22:00", + "2024-01-04T07:23:00", + "2024-01-04T07:24:00", + "2024-01-04T07:25:00", + "2024-01-04T07:26:00", + "2024-01-04T07:27:00", + "2024-01-04T07:28:00", + "2024-01-04T07:29:00", + "2024-01-04T07:30:00", + "2024-01-04T07:31:00", + "2024-01-04T07:32:00", + "2024-01-04T07:33:00", + "2024-01-04T07:34:00", + "2024-01-04T07:35:00", + "2024-01-04T07:36:00", + "2024-01-04T07:37:00", + "2024-01-04T07:38:00", + "2024-01-04T07:39:00", + "2024-01-04T07:40:00", + "2024-01-04T07:41:00", + "2024-01-04T07:42:00", + "2024-01-04T07:43:00", + "2024-01-04T07:44:00", + "2024-01-04T07:45:00", + "2024-01-04T07:46:00", + "2024-01-04T07:47:00", + "2024-01-04T07:48:00", + "2024-01-04T07:49:00", + "2024-01-04T07:50:00", + "2024-01-04T07:51:00", + "2024-01-04T07:52:00", + "2024-01-04T07:53:00", + "2024-01-04T07:54:00", + "2024-01-04T07:55:00", + "2024-01-04T07:56:00", + "2024-01-04T07:57:00", + "2024-01-04T07:58:00", + "2024-01-04T07:59:00", + "2024-01-04T08:00:00", + "2024-01-04T08:01:00", + "2024-01-04T08:02:00", + "2024-01-04T08:03:00", + "2024-01-04T08:04:00", + "2024-01-04T08:05:00", + "2024-01-04T08:06:00", + "2024-01-04T08:07:00", + "2024-01-04T08:08:00", + "2024-01-04T08:09:00", + "2024-01-04T08:10:00", + "2024-01-04T08:11:00", + "2024-01-04T08:12:00", + "2024-01-04T08:13:00", + "2024-01-04T08:14:00", + "2024-01-04T08:15:00", + "2024-01-04T08:16:00", + "2024-01-04T08:17:00", + "2024-01-04T08:18:00", + "2024-01-04T08:19:00", + "2024-01-04T08:20:00", + "2024-01-04T08:21:00", + "2024-01-04T08:22:00", + "2024-01-04T08:23:00", + "2024-01-04T08:24:00", + "2024-01-04T08:25:00", + "2024-01-04T08:26:00", + "2024-01-04T08:27:00", + "2024-01-04T08:28:00", + "2024-01-04T08:29:00", + "2024-01-04T08:30:00", + "2024-01-04T08:31:00", + "2024-01-04T08:32:00", + "2024-01-04T08:33:00", + "2024-01-04T08:34:00", + "2024-01-04T08:35:00", + "2024-01-04T08:36:00", + "2024-01-04T08:37:00", + "2024-01-04T08:38:00", + "2024-01-04T08:39:00", + "2024-01-04T08:40:00", + "2024-01-04T08:41:00", + "2024-01-04T08:42:00", + "2024-01-04T08:43:00", + "2024-01-04T08:44:00", + "2024-01-04T08:45:00", + "2024-01-04T08:46:00", + "2024-01-04T08:47:00", + "2024-01-04T08:48:00", + "2024-01-04T08:49:00", + "2024-01-04T08:50:00", + "2024-01-04T08:51:00", + "2024-01-04T08:52:00", + "2024-01-04T08:53:00", + "2024-01-04T08:54:00", + "2024-01-04T08:55:00", + "2024-01-04T08:56:00", + "2024-01-04T08:57:00", + "2024-01-04T08:58:00", + "2024-01-04T08:59:00", + "2024-01-04T09:00:00", + "2024-01-04T09:01:00", + "2024-01-04T09:02:00", + "2024-01-04T09:03:00", + "2024-01-04T09:04:00", + "2024-01-04T09:05:00", + "2024-01-04T09:06:00", + "2024-01-04T09:07:00", + "2024-01-04T09:08:00", + "2024-01-04T09:09:00", + "2024-01-04T09:10:00", + "2024-01-04T09:11:00", + "2024-01-04T09:12:00", + "2024-01-04T09:13:00", + "2024-01-04T09:14:00", + "2024-01-04T09:15:00", + "2024-01-04T09:16:00", + "2024-01-04T09:17:00", + "2024-01-04T09:18:00", + "2024-01-04T09:19:00", + "2024-01-04T09:20:00", + "2024-01-04T09:21:00", + "2024-01-04T09:22:00", + "2024-01-04T09:23:00", + "2024-01-04T09:24:00", + "2024-01-04T09:25:00", + "2024-01-04T09:26:00", + "2024-01-04T09:27:00", + "2024-01-04T09:28:00", + "2024-01-04T09:29:00", + "2024-01-04T09:30:00", + "2024-01-04T09:31:00", + "2024-01-04T09:32:00", + "2024-01-04T09:33:00", + "2024-01-04T09:34:00", + "2024-01-04T09:35:00", + "2024-01-04T09:36:00", + "2024-01-04T09:37:00", + "2024-01-04T09:38:00", + "2024-01-04T09:39:00", + "2024-01-04T09:40:00", + "2024-01-04T09:41:00", + "2024-01-04T09:42:00", + "2024-01-04T09:43:00", + "2024-01-04T09:44:00", + "2024-01-04T09:45:00", + "2024-01-04T09:46:00", + "2024-01-04T09:47:00", + "2024-01-04T09:48:00", + "2024-01-04T09:49:00", + "2024-01-04T09:50:00", + "2024-01-04T09:51:00", + "2024-01-04T09:52:00", + "2024-01-04T09:53:00", + "2024-01-04T09:54:00", + "2024-01-04T09:55:00", + "2024-01-04T09:56:00", + "2024-01-04T09:57:00", + "2024-01-04T09:58:00", + "2024-01-04T09:59:00", + "2024-01-04T10:00:00", + "2024-01-04T10:01:00", + "2024-01-04T10:02:00", + "2024-01-04T10:03:00", + "2024-01-04T10:04:00", + "2024-01-04T10:05:00", + "2024-01-04T10:06:00", + "2024-01-04T10:07:00", + "2024-01-04T10:08:00", + "2024-01-04T10:09:00", + "2024-01-04T10:10:00", + "2024-01-04T10:11:00", + "2024-01-04T10:12:00", + "2024-01-04T10:13:00", + "2024-01-04T10:14:00", + "2024-01-04T10:15:00", + "2024-01-04T10:16:00", + "2024-01-04T10:17:00", + "2024-01-04T10:18:00", + "2024-01-04T10:19:00", + "2024-01-04T10:20:00", + "2024-01-04T10:21:00", + "2024-01-04T10:22:00", + "2024-01-04T10:23:00", + "2024-01-04T10:24:00", + "2024-01-04T10:25:00", + "2024-01-04T10:26:00", + "2024-01-04T10:27:00", + "2024-01-04T10:28:00", + "2024-01-04T10:29:00", + "2024-01-04T10:30:00", + "2024-01-04T10:31:00", + "2024-01-04T10:32:00", + "2024-01-04T10:33:00", + "2024-01-04T10:34:00", + "2024-01-04T10:35:00", + "2024-01-04T10:36:00", + "2024-01-04T10:37:00", + "2024-01-04T10:38:00", + "2024-01-04T10:39:00", + "2024-01-04T10:40:00", + "2024-01-04T10:41:00", + "2024-01-04T10:42:00", + "2024-01-04T10:43:00", + "2024-01-04T10:44:00", + "2024-01-04T10:45:00", + "2024-01-04T10:46:00", + "2024-01-04T10:47:00", + "2024-01-04T10:48:00", + "2024-01-04T10:49:00", + "2024-01-04T10:50:00", + "2024-01-04T10:51:00", + "2024-01-04T10:52:00", + "2024-01-04T10:53:00", + "2024-01-04T10:54:00", + "2024-01-04T10:55:00", + "2024-01-04T10:56:00", + "2024-01-04T10:57:00", + "2024-01-04T10:58:00", + "2024-01-04T10:59:00", + "2024-01-04T11:00:00", + "2024-01-04T11:01:00", + "2024-01-04T11:02:00", + "2024-01-04T11:03:00", + "2024-01-04T11:04:00", + "2024-01-04T11:05:00", + "2024-01-04T11:06:00", + "2024-01-04T11:07:00", + "2024-01-04T11:08:00", + "2024-01-04T11:09:00", + "2024-01-04T11:10:00", + "2024-01-04T11:11:00", + "2024-01-04T11:12:00", + "2024-01-04T11:13:00", + "2024-01-04T11:14:00", + "2024-01-04T11:15:00", + "2024-01-04T11:16:00", + "2024-01-04T11:17:00", + "2024-01-04T11:18:00", + "2024-01-04T11:19:00", + "2024-01-04T11:20:00", + "2024-01-04T11:21:00", + "2024-01-04T11:22:00", + "2024-01-04T11:23:00", + "2024-01-04T11:24:00", + "2024-01-04T11:25:00", + "2024-01-04T11:26:00", + "2024-01-04T11:27:00", + "2024-01-04T11:28:00", + "2024-01-04T11:29:00", + "2024-01-04T11:30:00", + "2024-01-04T11:31:00", + "2024-01-04T11:32:00", + "2024-01-04T11:33:00", + "2024-01-04T11:34:00", + "2024-01-04T11:35:00", + "2024-01-04T11:36:00", + "2024-01-04T11:37:00", + "2024-01-04T11:38:00", + "2024-01-04T11:39:00", + "2024-01-04T11:40:00", + "2024-01-04T11:41:00", + "2024-01-04T11:42:00", + "2024-01-04T11:43:00", + "2024-01-04T11:44:00", + "2024-01-04T11:45:00", + "2024-01-04T11:46:00", + "2024-01-04T11:47:00", + "2024-01-04T11:48:00", + "2024-01-04T11:49:00", + "2024-01-04T11:50:00", + "2024-01-04T11:51:00", + "2024-01-04T11:52:00", + "2024-01-04T11:53:00", + "2024-01-04T11:54:00", + "2024-01-04T11:55:00", + "2024-01-04T11:56:00", + "2024-01-04T11:57:00", + "2024-01-04T11:58:00", + "2024-01-04T11:59:00", + "2024-01-04T12:00:00", + "2024-01-04T12:01:00", + "2024-01-04T12:02:00", + "2024-01-04T12:03:00", + "2024-01-04T12:04:00", + "2024-01-04T12:05:00", + "2024-01-04T12:06:00", + "2024-01-04T12:07:00", + "2024-01-04T12:08:00", + "2024-01-04T12:09:00", + "2024-01-04T12:10:00", + "2024-01-04T12:11:00", + "2024-01-04T12:12:00", + "2024-01-04T12:13:00", + "2024-01-04T12:14:00", + "2024-01-04T12:15:00", + "2024-01-04T12:16:00", + "2024-01-04T12:17:00", + "2024-01-04T12:18:00", + "2024-01-04T12:19:00", + "2024-01-04T12:20:00", + "2024-01-04T12:21:00", + "2024-01-04T12:22:00", + "2024-01-04T12:23:00", + "2024-01-04T12:24:00", + "2024-01-04T12:25:00", + "2024-01-04T12:26:00", + "2024-01-04T12:27:00", + "2024-01-04T12:28:00", + "2024-01-04T12:29:00", + "2024-01-04T12:30:00", + "2024-01-04T12:31:00", + "2024-01-04T12:32:00", + "2024-01-04T12:33:00", + "2024-01-04T12:34:00", + "2024-01-04T12:35:00", + "2024-01-04T12:36:00", + "2024-01-04T12:37:00", + "2024-01-04T12:38:00", + "2024-01-04T12:39:00", + "2024-01-04T12:40:00", + "2024-01-04T12:41:00", + "2024-01-04T12:42:00", + "2024-01-04T12:43:00", + "2024-01-04T12:44:00", + "2024-01-04T12:45:00", + "2024-01-04T12:46:00", + "2024-01-04T12:47:00", + "2024-01-04T12:48:00", + "2024-01-04T12:49:00", + "2024-01-04T12:50:00", + "2024-01-04T12:51:00", + "2024-01-04T12:52:00", + "2024-01-04T12:53:00", + "2024-01-04T12:54:00", + "2024-01-04T12:55:00", + "2024-01-04T12:56:00", + "2024-01-04T12:57:00", + "2024-01-04T12:58:00", + "2024-01-04T12:59:00", + "2024-01-04T13:00:00", + "2024-01-04T13:01:00", + "2024-01-04T13:02:00", + "2024-01-04T13:03:00", + "2024-01-04T13:04:00", + "2024-01-04T13:05:00", + "2024-01-04T13:06:00", + "2024-01-04T13:07:00", + "2024-01-04T13:08:00", + "2024-01-04T13:09:00", + "2024-01-04T13:10:00", + "2024-01-04T13:11:00", + "2024-01-04T13:12:00", + "2024-01-04T13:13:00", + "2024-01-04T13:14:00", + "2024-01-04T13:15:00", + "2024-01-04T13:16:00", + "2024-01-04T13:17:00", + "2024-01-04T13:18:00", + "2024-01-04T13:19:00", + "2024-01-04T13:20:00", + "2024-01-04T13:21:00", + "2024-01-04T13:22:00", + "2024-01-04T13:23:00", + "2024-01-04T13:24:00", + "2024-01-04T13:25:00", + "2024-01-04T13:26:00", + "2024-01-04T13:27:00", + "2024-01-04T13:28:00", + "2024-01-04T13:29:00", + "2024-01-04T13:30:00", + "2024-01-04T13:31:00", + "2024-01-04T13:32:00", + "2024-01-04T13:33:00", + "2024-01-04T13:34:00", + "2024-01-04T13:35:00", + "2024-01-04T13:36:00", + "2024-01-04T13:37:00", + "2024-01-04T13:38:00", + "2024-01-04T13:39:00", + "2024-01-04T13:40:00", + "2024-01-04T13:41:00", + "2024-01-04T13:42:00", + "2024-01-04T13:43:00", + "2024-01-04T13:44:00", + "2024-01-04T13:45:00", + "2024-01-04T13:46:00", + "2024-01-04T13:47:00", + "2024-01-04T13:48:00", + "2024-01-04T13:49:00", + "2024-01-04T13:50:00", + "2024-01-04T13:51:00", + "2024-01-04T13:52:00", + "2024-01-04T13:53:00", + "2024-01-04T13:54:00", + "2024-01-04T13:55:00", + "2024-01-04T13:56:00", + "2024-01-04T13:57:00", + "2024-01-04T13:58:00", + "2024-01-04T13:59:00", + "2024-01-04T14:00:00", + "2024-01-04T14:01:00", + "2024-01-04T14:02:00", + "2024-01-04T14:03:00", + "2024-01-04T14:04:00", + "2024-01-04T14:05:00", + "2024-01-04T14:06:00", + "2024-01-04T14:07:00", + "2024-01-04T14:08:00", + "2024-01-04T14:09:00", + "2024-01-04T14:10:00", + "2024-01-04T14:11:00", + "2024-01-04T14:12:00", + "2024-01-04T14:13:00", + "2024-01-04T14:14:00", + "2024-01-04T14:15:00", + "2024-01-04T14:16:00", + "2024-01-04T14:17:00", + "2024-01-04T14:18:00", + "2024-01-04T14:19:00", + "2024-01-04T14:20:00", + "2024-01-04T14:21:00", + "2024-01-04T14:22:00", + "2024-01-04T14:23:00", + "2024-01-04T14:24:00", + "2024-01-04T14:25:00", + "2024-01-04T14:26:00", + "2024-01-04T14:27:00", + "2024-01-04T14:28:00", + "2024-01-04T14:29:00", + "2024-01-04T14:30:00", + "2024-01-04T14:31:00", + "2024-01-04T14:32:00", + "2024-01-04T14:33:00", + "2024-01-04T14:34:00", + "2024-01-04T14:35:00", + "2024-01-04T14:36:00", + "2024-01-04T14:37:00", + "2024-01-04T14:38:00", + "2024-01-04T14:39:00", + "2024-01-04T14:40:00", + "2024-01-04T14:41:00", + "2024-01-04T14:42:00", + "2024-01-04T14:43:00", + "2024-01-04T14:44:00", + "2024-01-04T14:45:00", + "2024-01-04T14:46:00", + "2024-01-04T14:47:00", + "2024-01-04T14:48:00", + "2024-01-04T14:49:00", + "2024-01-04T14:50:00", + "2024-01-04T14:51:00", + "2024-01-04T14:52:00", + "2024-01-04T14:53:00", + "2024-01-04T14:54:00", + "2024-01-04T14:55:00", + "2024-01-04T14:56:00", + "2024-01-04T14:57:00", + "2024-01-04T14:58:00", + "2024-01-04T14:59:00", + "2024-01-04T15:00:00", + "2024-01-04T15:01:00", + "2024-01-04T15:02:00", + "2024-01-04T15:03:00", + "2024-01-04T15:04:00", + "2024-01-04T15:05:00", + "2024-01-04T15:06:00", + "2024-01-04T15:07:00", + "2024-01-04T15:08:00", + "2024-01-04T15:09:00", + "2024-01-04T15:10:00", + "2024-01-04T15:11:00", + "2024-01-04T15:12:00", + "2024-01-04T15:13:00", + "2024-01-04T15:14:00", + "2024-01-04T15:15:00", + "2024-01-04T15:16:00", + "2024-01-04T15:17:00", + "2024-01-04T15:18:00", + "2024-01-04T15:19:00", + "2024-01-04T15:20:00", + "2024-01-04T15:21:00", + "2024-01-04T15:22:00", + "2024-01-04T15:23:00", + "2024-01-04T15:24:00", + "2024-01-04T15:25:00", + "2024-01-04T15:26:00", + "2024-01-04T15:27:00", + "2024-01-04T15:28:00", + "2024-01-04T15:29:00", + "2024-01-04T15:30:00", + "2024-01-04T15:31:00", + "2024-01-04T15:32:00", + "2024-01-04T15:33:00", + "2024-01-04T15:34:00", + "2024-01-04T15:35:00", + "2024-01-04T15:36:00", + "2024-01-04T15:37:00", + "2024-01-04T15:38:00", + "2024-01-04T15:39:00", + "2024-01-04T15:40:00", + "2024-01-04T15:41:00", + "2024-01-04T15:42:00", + "2024-01-04T15:43:00", + "2024-01-04T15:44:00", + "2024-01-04T15:45:00", + "2024-01-04T15:46:00", + "2024-01-04T15:47:00", + "2024-01-04T15:48:00", + "2024-01-04T15:49:00", + "2024-01-04T15:50:00", + "2024-01-04T15:51:00", + "2024-01-04T15:52:00", + "2024-01-04T15:53:00", + "2024-01-04T15:54:00", + "2024-01-04T15:55:00", + "2024-01-04T15:56:00", + "2024-01-04T15:57:00", + "2024-01-04T15:58:00", + "2024-01-04T15:59:00", + "2024-01-04T16:00:00", + "2024-01-04T16:01:00", + "2024-01-04T16:02:00", + "2024-01-04T16:03:00", + "2024-01-04T16:04:00", + "2024-01-04T16:05:00", + "2024-01-04T16:06:00", + "2024-01-04T16:07:00", + "2024-01-04T16:08:00", + "2024-01-04T16:09:00", + "2024-01-04T16:10:00", + "2024-01-04T16:11:00", + "2024-01-04T16:12:00", + "2024-01-04T16:13:00", + "2024-01-04T16:14:00", + "2024-01-04T16:15:00", + "2024-01-04T16:16:00", + "2024-01-04T16:17:00", + "2024-01-04T16:18:00", + "2024-01-04T16:19:00", + "2024-01-04T16:20:00", + "2024-01-04T16:21:00", + "2024-01-04T16:22:00", + "2024-01-04T16:23:00", + "2024-01-04T16:24:00", + "2024-01-04T16:25:00", + "2024-01-04T16:26:00", + "2024-01-04T16:27:00", + "2024-01-04T16:28:00", + "2024-01-04T16:29:00", + "2024-01-04T16:30:00", + "2024-01-04T16:31:00", + "2024-01-04T16:32:00", + "2024-01-04T16:33:00", + "2024-01-04T16:34:00", + "2024-01-04T16:35:00", + "2024-01-04T16:36:00", + "2024-01-04T16:37:00", + "2024-01-04T16:38:00", + "2024-01-04T16:39:00", + "2024-01-04T16:40:00", + "2024-01-04T16:41:00", + "2024-01-04T16:42:00", + "2024-01-04T16:43:00", + "2024-01-04T16:44:00", + "2024-01-04T16:45:00", + "2024-01-04T16:46:00", + "2024-01-04T16:47:00", + "2024-01-04T16:48:00", + "2024-01-04T16:49:00", + "2024-01-04T16:50:00", + "2024-01-04T16:51:00", + "2024-01-04T16:52:00", + "2024-01-04T16:53:00", + "2024-01-04T16:54:00", + "2024-01-04T16:55:00", + "2024-01-04T16:56:00", + "2024-01-04T16:57:00", + "2024-01-04T16:58:00", + "2024-01-04T16:59:00", + "2024-01-04T17:00:00", + "2024-01-04T17:01:00", + "2024-01-04T17:02:00", + "2024-01-04T17:03:00", + "2024-01-04T17:04:00", + "2024-01-04T17:05:00", + "2024-01-04T17:06:00", + "2024-01-04T17:07:00", + "2024-01-04T17:08:00", + "2024-01-04T17:09:00", + "2024-01-04T17:10:00", + "2024-01-04T17:11:00", + "2024-01-04T17:12:00", + "2024-01-04T17:13:00", + "2024-01-04T17:14:00", + "2024-01-04T17:15:00", + "2024-01-04T17:16:00", + "2024-01-04T17:17:00", + "2024-01-04T17:18:00", + "2024-01-04T17:19:00", + "2024-01-04T17:20:00", + "2024-01-04T17:21:00", + "2024-01-04T17:22:00", + "2024-01-04T17:23:00", + "2024-01-04T17:24:00", + "2024-01-04T17:25:00", + "2024-01-04T17:26:00", + "2024-01-04T17:27:00", + "2024-01-04T17:28:00", + "2024-01-04T17:29:00", + "2024-01-04T17:30:00", + "2024-01-04T17:31:00", + "2024-01-04T17:32:00", + "2024-01-04T17:33:00", + "2024-01-04T17:34:00", + "2024-01-04T17:35:00", + "2024-01-04T17:36:00", + "2024-01-04T17:37:00", + "2024-01-04T17:38:00", + "2024-01-04T17:39:00", + "2024-01-04T17:40:00", + "2024-01-04T17:41:00", + "2024-01-04T17:42:00", + "2024-01-04T17:43:00", + "2024-01-04T17:44:00", + "2024-01-04T17:45:00", + "2024-01-04T17:46:00", + "2024-01-04T17:47:00", + "2024-01-04T17:48:00", + "2024-01-04T17:49:00", + "2024-01-04T17:50:00", + "2024-01-04T17:51:00", + "2024-01-04T17:52:00", + "2024-01-04T17:53:00", + "2024-01-04T17:54:00", + "2024-01-04T17:55:00", + "2024-01-04T17:56:00", + "2024-01-04T17:57:00", + "2024-01-04T17:58:00", + "2024-01-04T17:59:00", + "2024-01-04T18:00:00", + "2024-01-04T18:01:00", + "2024-01-04T18:02:00", + "2024-01-04T18:03:00", + "2024-01-04T18:04:00", + "2024-01-04T18:05:00", + "2024-01-04T18:06:00", + "2024-01-04T18:07:00", + "2024-01-04T18:08:00", + "2024-01-04T18:09:00", + "2024-01-04T18:10:00", + "2024-01-04T18:11:00", + "2024-01-04T18:12:00", + "2024-01-04T18:13:00", + "2024-01-04T18:14:00", + "2024-01-04T18:15:00", + "2024-01-04T18:16:00", + "2024-01-04T18:17:00", + "2024-01-04T18:18:00", + "2024-01-04T18:19:00", + "2024-01-04T18:20:00", + "2024-01-04T18:21:00", + "2024-01-04T18:22:00", + "2024-01-04T18:23:00", + "2024-01-04T18:24:00", + "2024-01-04T18:25:00", + "2024-01-04T18:26:00", + "2024-01-04T18:27:00", + "2024-01-04T18:28:00", + "2024-01-04T18:29:00", + "2024-01-04T18:30:00", + "2024-01-04T18:31:00", + "2024-01-04T18:32:00", + "2024-01-04T18:33:00", + "2024-01-04T18:34:00", + "2024-01-04T18:35:00", + "2024-01-04T18:36:00", + "2024-01-04T18:37:00", + "2024-01-04T18:38:00", + "2024-01-04T18:39:00", + "2024-01-04T18:40:00", + "2024-01-04T18:41:00", + "2024-01-04T18:42:00", + "2024-01-04T18:43:00", + "2024-01-04T18:44:00", + "2024-01-04T18:45:00", + "2024-01-04T18:46:00", + "2024-01-04T18:47:00", + "2024-01-04T18:48:00", + "2024-01-04T18:49:00", + "2024-01-04T18:50:00", + "2024-01-04T18:51:00", + "2024-01-04T18:52:00", + "2024-01-04T18:53:00", + "2024-01-04T18:54:00", + "2024-01-04T18:55:00", + "2024-01-04T18:56:00", + "2024-01-04T18:57:00", + "2024-01-04T18:58:00", + "2024-01-04T18:59:00", + "2024-01-04T19:00:00", + "2024-01-04T19:01:00", + "2024-01-04T19:02:00", + "2024-01-04T19:03:00", + "2024-01-04T19:04:00", + "2024-01-04T19:05:00", + "2024-01-04T19:06:00", + "2024-01-04T19:07:00", + "2024-01-04T19:08:00", + "2024-01-04T19:09:00", + "2024-01-04T19:10:00", + "2024-01-04T19:11:00", + "2024-01-04T19:12:00", + "2024-01-04T19:13:00", + "2024-01-04T19:14:00", + "2024-01-04T19:15:00", + "2024-01-04T19:16:00", + "2024-01-04T19:17:00", + "2024-01-04T19:18:00", + "2024-01-04T19:19:00", + "2024-01-04T19:20:00", + "2024-01-04T19:21:00", + "2024-01-04T19:22:00", + "2024-01-04T19:23:00", + "2024-01-04T19:24:00", + "2024-01-04T19:25:00", + "2024-01-04T19:26:00", + "2024-01-04T19:27:00", + "2024-01-04T19:28:00", + "2024-01-04T19:29:00", + "2024-01-04T19:30:00", + "2024-01-04T19:31:00", + "2024-01-04T19:32:00", + "2024-01-04T19:33:00", + "2024-01-04T19:34:00", + "2024-01-04T19:35:00", + "2024-01-04T19:36:00", + "2024-01-04T19:37:00", + "2024-01-04T19:38:00", + "2024-01-04T19:39:00", + "2024-01-04T19:40:00", + "2024-01-04T19:41:00", + "2024-01-04T19:42:00", + "2024-01-04T19:43:00", + "2024-01-04T19:44:00", + "2024-01-04T19:45:00", + "2024-01-04T19:46:00", + "2024-01-04T19:47:00", + "2024-01-04T19:48:00", + "2024-01-04T19:49:00", + "2024-01-04T19:50:00", + "2024-01-04T19:51:00", + "2024-01-04T19:52:00", + "2024-01-04T19:53:00", + "2024-01-04T19:54:00", + "2024-01-04T19:55:00", + "2024-01-04T19:56:00", + "2024-01-04T19:57:00", + "2024-01-04T19:58:00", + "2024-01-04T19:59:00", + "2024-01-04T20:00:00", + "2024-01-04T20:01:00", + "2024-01-04T20:02:00", + "2024-01-04T20:03:00", + "2024-01-04T20:04:00", + "2024-01-04T20:05:00", + "2024-01-04T20:06:00", + "2024-01-04T20:07:00", + "2024-01-04T20:08:00", + "2024-01-04T20:09:00", + "2024-01-04T20:10:00", + "2024-01-04T20:11:00", + "2024-01-04T20:12:00", + "2024-01-04T20:13:00", + "2024-01-04T20:14:00", + "2024-01-04T20:15:00", + "2024-01-04T20:16:00", + "2024-01-04T20:17:00", + "2024-01-04T20:18:00", + "2024-01-04T20:19:00", + "2024-01-04T20:20:00", + "2024-01-04T20:21:00", + "2024-01-04T20:22:00", + "2024-01-04T20:23:00", + "2024-01-04T20:24:00", + "2024-01-04T20:25:00", + "2024-01-04T20:26:00", + "2024-01-04T20:27:00", + "2024-01-04T20:28:00", + "2024-01-04T20:29:00", + "2024-01-04T20:30:00", + "2024-01-04T20:31:00", + "2024-01-04T20:32:00", + "2024-01-04T20:33:00", + "2024-01-04T20:34:00", + "2024-01-04T20:35:00", + "2024-01-04T20:36:00", + "2024-01-04T20:37:00", + "2024-01-04T20:38:00", + "2024-01-04T20:39:00", + "2024-01-04T20:40:00", + "2024-01-04T20:41:00", + "2024-01-04T20:42:00", + "2024-01-04T20:43:00", + "2024-01-04T20:44:00", + "2024-01-04T20:45:00", + "2024-01-04T20:46:00", + "2024-01-04T20:47:00", + "2024-01-04T20:48:00", + "2024-01-04T20:49:00", + "2024-01-04T20:50:00", + "2024-01-04T20:51:00", + "2024-01-04T20:52:00", + "2024-01-04T20:53:00", + "2024-01-04T20:54:00", + "2024-01-04T20:55:00", + "2024-01-04T20:56:00", + "2024-01-04T20:57:00", + "2024-01-04T20:58:00", + "2024-01-04T20:59:00", + "2024-01-04T21:00:00", + "2024-01-04T21:01:00", + "2024-01-04T21:02:00", + "2024-01-04T21:03:00", + "2024-01-04T21:04:00", + "2024-01-04T21:05:00", + "2024-01-04T21:06:00", + "2024-01-04T21:07:00", + "2024-01-04T21:08:00", + "2024-01-04T21:09:00", + "2024-01-04T21:10:00", + "2024-01-04T21:11:00", + "2024-01-04T21:12:00", + "2024-01-04T21:13:00", + "2024-01-04T21:14:00", + "2024-01-04T21:15:00", + "2024-01-04T21:16:00", + "2024-01-04T21:17:00", + "2024-01-04T21:18:00", + "2024-01-04T21:19:00", + "2024-01-04T21:20:00", + "2024-01-04T21:21:00", + "2024-01-04T21:22:00", + "2024-01-04T21:23:00", + "2024-01-04T21:24:00", + "2024-01-04T21:25:00", + "2024-01-04T21:26:00", + "2024-01-04T21:27:00", + "2024-01-04T21:28:00", + "2024-01-04T21:29:00", + "2024-01-04T21:30:00", + "2024-01-04T21:31:00", + "2024-01-04T21:32:00", + "2024-01-04T21:33:00", + "2024-01-04T21:34:00", + "2024-01-04T21:35:00", + "2024-01-04T21:36:00", + "2024-01-04T21:37:00", + "2024-01-04T21:38:00", + "2024-01-04T21:39:00", + "2024-01-04T21:40:00", + "2024-01-04T21:41:00", + "2024-01-04T21:42:00", + "2024-01-04T21:43:00", + "2024-01-04T21:44:00", + "2024-01-04T21:45:00", + "2024-01-04T21:46:00", + "2024-01-04T21:47:00", + "2024-01-04T21:48:00", + "2024-01-04T21:49:00", + "2024-01-04T21:50:00", + "2024-01-04T21:51:00", + "2024-01-04T21:52:00", + "2024-01-04T21:53:00", + "2024-01-04T21:54:00", + "2024-01-04T21:55:00", + "2024-01-04T21:56:00", + "2024-01-04T21:57:00", + "2024-01-04T21:58:00", + "2024-01-04T21:59:00", + "2024-01-04T22:00:00", + "2024-01-04T22:01:00", + "2024-01-04T22:02:00", + "2024-01-04T22:03:00", + "2024-01-04T22:04:00", + "2024-01-04T22:05:00", + "2024-01-04T22:06:00", + "2024-01-04T22:07:00", + "2024-01-04T22:08:00", + "2024-01-04T22:09:00", + "2024-01-04T22:10:00", + "2024-01-04T22:11:00", + "2024-01-04T22:12:00", + "2024-01-04T22:13:00", + "2024-01-04T22:14:00", + "2024-01-04T22:15:00", + "2024-01-04T22:16:00", + "2024-01-04T22:17:00", + "2024-01-04T22:18:00", + "2024-01-04T22:19:00", + "2024-01-04T22:20:00", + "2024-01-04T22:21:00", + "2024-01-04T22:22:00", + "2024-01-04T22:23:00", + "2024-01-04T22:24:00", + "2024-01-04T22:25:00", + "2024-01-04T22:26:00", + "2024-01-04T22:27:00", + "2024-01-04T22:28:00", + "2024-01-04T22:29:00", + "2024-01-04T22:30:00", + "2024-01-04T22:31:00", + "2024-01-04T22:32:00", + "2024-01-04T22:33:00", + "2024-01-04T22:34:00", + "2024-01-04T22:35:00", + "2024-01-04T22:36:00", + "2024-01-04T22:37:00", + "2024-01-04T22:38:00", + "2024-01-04T22:39:00", + "2024-01-04T22:40:00", + "2024-01-04T22:41:00", + "2024-01-04T22:42:00", + "2024-01-04T22:43:00", + "2024-01-04T22:44:00", + "2024-01-04T22:45:00", + "2024-01-04T22:46:00", + "2024-01-04T22:47:00", + "2024-01-04T22:48:00", + "2024-01-04T22:49:00", + "2024-01-04T22:50:00", + "2024-01-04T22:51:00", + "2024-01-04T22:52:00", + "2024-01-04T22:53:00", + "2024-01-04T22:54:00", + "2024-01-04T22:55:00", + "2024-01-04T22:56:00", + "2024-01-04T22:57:00", + "2024-01-04T22:58:00", + "2024-01-04T22:59:00", + "2024-01-04T23:00:00", + "2024-01-04T23:01:00", + "2024-01-04T23:02:00", + "2024-01-04T23:03:00", + "2024-01-04T23:04:00", + "2024-01-04T23:05:00", + "2024-01-04T23:06:00", + "2024-01-04T23:07:00", + "2024-01-04T23:08:00", + "2024-01-04T23:09:00", + "2024-01-04T23:10:00", + "2024-01-04T23:11:00", + "2024-01-04T23:12:00", + "2024-01-04T23:13:00", + "2024-01-04T23:14:00", + "2024-01-04T23:15:00", + "2024-01-04T23:16:00", + "2024-01-04T23:17:00", + "2024-01-04T23:18:00", + "2024-01-04T23:19:00", + "2024-01-04T23:20:00", + "2024-01-04T23:21:00", + "2024-01-04T23:22:00", + "2024-01-04T23:23:00", + "2024-01-04T23:24:00", + "2024-01-04T23:25:00", + "2024-01-04T23:26:00", + "2024-01-04T23:27:00", + "2024-01-04T23:28:00", + "2024-01-04T23:29:00", + "2024-01-04T23:30:00", + "2024-01-04T23:31:00", + "2024-01-04T23:32:00", + "2024-01-04T23:33:00", + "2024-01-04T23:34:00", + "2024-01-04T23:35:00", + "2024-01-04T23:36:00", + "2024-01-04T23:37:00", + "2024-01-04T23:38:00", + "2024-01-04T23:39:00", + "2024-01-04T23:40:00", + "2024-01-04T23:41:00", + "2024-01-04T23:42:00", + "2024-01-04T23:43:00", + "2024-01-04T23:44:00", + "2024-01-04T23:45:00", + "2024-01-04T23:46:00", + "2024-01-04T23:47:00", + "2024-01-04T23:48:00", + "2024-01-04T23:49:00", + "2024-01-04T23:50:00", + "2024-01-04T23:51:00", + "2024-01-04T23:52:00", + "2024-01-04T23:53:00", + "2024-01-04T23:54:00", + "2024-01-04T23:55:00", + "2024-01-04T23:56:00", + "2024-01-04T23:57:00", + "2024-01-04T23:58:00", + "2024-01-04T23:59:00", + "2024-01-05T00:00:00", + "2024-01-05T00:01:00", + "2024-01-05T00:02:00", + "2024-01-05T00:03:00", + "2024-01-05T00:04:00", + "2024-01-05T00:05:00", + "2024-01-05T00:06:00", + "2024-01-05T00:07:00", + "2024-01-05T00:08:00", + "2024-01-05T00:09:00", + "2024-01-05T00:10:00", + "2024-01-05T00:11:00", + "2024-01-05T00:12:00", + "2024-01-05T00:13:00", + "2024-01-05T00:14:00", + "2024-01-05T00:15:00", + "2024-01-05T00:16:00", + "2024-01-05T00:17:00", + "2024-01-05T00:18:00", + "2024-01-05T00:19:00", + "2024-01-05T00:20:00", + "2024-01-05T00:21:00", + "2024-01-05T00:22:00", + "2024-01-05T00:23:00", + "2024-01-05T00:24:00", + "2024-01-05T00:25:00", + "2024-01-05T00:26:00", + "2024-01-05T00:27:00", + "2024-01-05T00:28:00", + "2024-01-05T00:29:00", + "2024-01-05T00:30:00", + "2024-01-05T00:31:00", + "2024-01-05T00:32:00", + "2024-01-05T00:33:00", + "2024-01-05T00:34:00", + "2024-01-05T00:35:00", + "2024-01-05T00:36:00", + "2024-01-05T00:37:00", + "2024-01-05T00:38:00", + "2024-01-05T00:39:00", + "2024-01-05T00:40:00", + "2024-01-05T00:41:00", + "2024-01-05T00:42:00", + "2024-01-05T00:43:00", + "2024-01-05T00:44:00", + "2024-01-05T00:45:00", + "2024-01-05T00:46:00", + "2024-01-05T00:47:00", + "2024-01-05T00:48:00", + "2024-01-05T00:49:00", + "2024-01-05T00:50:00", + "2024-01-05T00:51:00", + "2024-01-05T00:52:00", + "2024-01-05T00:53:00", + "2024-01-05T00:54:00", + "2024-01-05T00:55:00", + "2024-01-05T00:56:00", + "2024-01-05T00:57:00", + "2024-01-05T00:58:00", + "2024-01-05T00:59:00", + "2024-01-05T01:00:00", + "2024-01-05T01:01:00", + "2024-01-05T01:02:00", + "2024-01-05T01:03:00", + "2024-01-05T01:04:00", + "2024-01-05T01:05:00", + "2024-01-05T01:06:00", + "2024-01-05T01:07:00", + "2024-01-05T01:08:00", + "2024-01-05T01:09:00", + "2024-01-05T01:10:00", + "2024-01-05T01:11:00", + "2024-01-05T01:12:00", + "2024-01-05T01:13:00", + "2024-01-05T01:14:00", + "2024-01-05T01:15:00", + "2024-01-05T01:16:00", + "2024-01-05T01:17:00", + "2024-01-05T01:18:00", + "2024-01-05T01:19:00", + "2024-01-05T01:20:00", + "2024-01-05T01:21:00", + "2024-01-05T01:22:00", + "2024-01-05T01:23:00", + "2024-01-05T01:24:00", + "2024-01-05T01:25:00", + "2024-01-05T01:26:00", + "2024-01-05T01:27:00", + "2024-01-05T01:28:00", + "2024-01-05T01:29:00", + "2024-01-05T01:30:00", + "2024-01-05T01:31:00", + "2024-01-05T01:32:00", + "2024-01-05T01:33:00", + "2024-01-05T01:34:00", + "2024-01-05T01:35:00", + "2024-01-05T01:36:00", + "2024-01-05T01:37:00", + "2024-01-05T01:38:00", + "2024-01-05T01:39:00", + "2024-01-05T01:40:00", + "2024-01-05T01:41:00", + "2024-01-05T01:42:00", + "2024-01-05T01:43:00", + "2024-01-05T01:44:00", + "2024-01-05T01:45:00", + "2024-01-05T01:46:00", + "2024-01-05T01:47:00", + "2024-01-05T01:48:00", + "2024-01-05T01:49:00", + "2024-01-05T01:50:00", + "2024-01-05T01:51:00", + "2024-01-05T01:52:00", + "2024-01-05T01:53:00", + "2024-01-05T01:54:00", + "2024-01-05T01:55:00", + "2024-01-05T01:56:00", + "2024-01-05T01:57:00", + "2024-01-05T01:58:00", + "2024-01-05T01:59:00", + "2024-01-05T02:00:00", + "2024-01-05T02:01:00", + "2024-01-05T02:02:00", + "2024-01-05T02:03:00", + "2024-01-05T02:04:00", + "2024-01-05T02:05:00", + "2024-01-05T02:06:00", + "2024-01-05T02:07:00", + "2024-01-05T02:08:00", + "2024-01-05T02:09:00", + "2024-01-05T02:10:00", + "2024-01-05T02:11:00", + "2024-01-05T02:12:00", + "2024-01-05T02:13:00", + "2024-01-05T02:14:00", + "2024-01-05T02:15:00", + "2024-01-05T02:16:00", + "2024-01-05T02:17:00", + "2024-01-05T02:18:00", + "2024-01-05T02:19:00", + "2024-01-05T02:20:00", + "2024-01-05T02:21:00", + "2024-01-05T02:22:00", + "2024-01-05T02:23:00", + "2024-01-05T02:24:00", + "2024-01-05T02:25:00", + "2024-01-05T02:26:00", + "2024-01-05T02:27:00", + "2024-01-05T02:28:00", + "2024-01-05T02:29:00", + "2024-01-05T02:30:00", + "2024-01-05T02:31:00", + "2024-01-05T02:32:00", + "2024-01-05T02:33:00", + "2024-01-05T02:34:00", + "2024-01-05T02:35:00", + "2024-01-05T02:36:00", + "2024-01-05T02:37:00", + "2024-01-05T02:38:00", + "2024-01-05T02:39:00", + "2024-01-05T02:40:00", + "2024-01-05T02:41:00", + "2024-01-05T02:42:00", + "2024-01-05T02:43:00", + "2024-01-05T02:44:00", + "2024-01-05T02:45:00", + "2024-01-05T02:46:00", + "2024-01-05T02:47:00", + "2024-01-05T02:48:00", + "2024-01-05T02:49:00", + "2024-01-05T02:50:00", + "2024-01-05T02:51:00", + "2024-01-05T02:52:00", + "2024-01-05T02:53:00", + "2024-01-05T02:54:00", + "2024-01-05T02:55:00", + "2024-01-05T02:56:00", + "2024-01-05T02:57:00", + "2024-01-05T02:58:00", + "2024-01-05T02:59:00", + "2024-01-05T03:00:00", + "2024-01-05T03:01:00", + "2024-01-05T03:02:00", + "2024-01-05T03:03:00", + "2024-01-05T03:04:00", + "2024-01-05T03:05:00", + "2024-01-05T03:06:00", + "2024-01-05T03:07:00", + "2024-01-05T03:08:00", + "2024-01-05T03:09:00", + "2024-01-05T03:10:00", + "2024-01-05T03:11:00", + "2024-01-05T03:12:00", + "2024-01-05T03:13:00", + "2024-01-05T03:14:00", + "2024-01-05T03:15:00", + "2024-01-05T03:16:00", + "2024-01-05T03:17:00", + "2024-01-05T03:18:00", + "2024-01-05T03:19:00", + "2024-01-05T03:20:00", + "2024-01-05T03:21:00", + "2024-01-05T03:22:00", + "2024-01-05T03:23:00", + "2024-01-05T03:24:00", + "2024-01-05T03:25:00", + "2024-01-05T03:26:00", + "2024-01-05T03:27:00", + "2024-01-05T03:28:00", + "2024-01-05T03:29:00", + "2024-01-05T03:30:00", + "2024-01-05T03:31:00", + "2024-01-05T03:32:00", + "2024-01-05T03:33:00", + "2024-01-05T03:34:00", + "2024-01-05T03:35:00", + "2024-01-05T03:36:00", + "2024-01-05T03:37:00", + "2024-01-05T03:38:00", + "2024-01-05T03:39:00", + "2024-01-05T03:40:00", + "2024-01-05T03:41:00", + "2024-01-05T03:42:00", + "2024-01-05T03:43:00", + "2024-01-05T03:44:00", + "2024-01-05T03:45:00", + "2024-01-05T03:46:00", + "2024-01-05T03:47:00", + "2024-01-05T03:48:00", + "2024-01-05T03:49:00", + "2024-01-05T03:50:00", + "2024-01-05T03:51:00", + "2024-01-05T03:52:00", + "2024-01-05T03:53:00", + "2024-01-05T03:54:00", + "2024-01-05T03:55:00", + "2024-01-05T03:56:00", + "2024-01-05T03:57:00", + "2024-01-05T03:58:00", + "2024-01-05T03:59:00", + "2024-01-05T04:00:00", + "2024-01-05T04:01:00", + "2024-01-05T04:02:00", + "2024-01-05T04:03:00", + "2024-01-05T04:04:00", + "2024-01-05T04:05:00", + "2024-01-05T04:06:00", + "2024-01-05T04:07:00", + "2024-01-05T04:08:00", + "2024-01-05T04:09:00", + "2024-01-05T04:10:00", + "2024-01-05T04:11:00", + "2024-01-05T04:12:00", + "2024-01-05T04:13:00", + "2024-01-05T04:14:00", + "2024-01-05T04:15:00", + "2024-01-05T04:16:00", + "2024-01-05T04:17:00", + "2024-01-05T04:18:00", + "2024-01-05T04:19:00", + "2024-01-05T04:20:00", + "2024-01-05T04:21:00", + "2024-01-05T04:22:00", + "2024-01-05T04:23:00", + "2024-01-05T04:24:00", + "2024-01-05T04:25:00", + "2024-01-05T04:26:00", + "2024-01-05T04:27:00", + "2024-01-05T04:28:00", + "2024-01-05T04:29:00", + "2024-01-05T04:30:00", + "2024-01-05T04:31:00", + "2024-01-05T04:32:00", + "2024-01-05T04:33:00", + "2024-01-05T04:34:00", + "2024-01-05T04:35:00", + "2024-01-05T04:36:00", + "2024-01-05T04:37:00", + "2024-01-05T04:38:00", + "2024-01-05T04:39:00", + "2024-01-05T04:40:00", + "2024-01-05T04:41:00", + "2024-01-05T04:42:00", + "2024-01-05T04:43:00", + "2024-01-05T04:44:00", + "2024-01-05T04:45:00", + "2024-01-05T04:46:00", + "2024-01-05T04:47:00", + "2024-01-05T04:48:00", + "2024-01-05T04:49:00", + "2024-01-05T04:50:00", + "2024-01-05T04:51:00", + "2024-01-05T04:52:00", + "2024-01-05T04:53:00", + "2024-01-05T04:54:00", + "2024-01-05T04:55:00", + "2024-01-05T04:56:00", + "2024-01-05T04:57:00", + "2024-01-05T04:58:00", + "2024-01-05T04:59:00", + "2024-01-05T05:00:00", + "2024-01-05T05:01:00", + "2024-01-05T05:02:00", + "2024-01-05T05:03:00", + "2024-01-05T05:04:00", + "2024-01-05T05:05:00", + "2024-01-05T05:06:00", + "2024-01-05T05:07:00", + "2024-01-05T05:08:00", + "2024-01-05T05:09:00", + "2024-01-05T05:10:00", + "2024-01-05T05:11:00", + "2024-01-05T05:12:00", + "2024-01-05T05:13:00", + "2024-01-05T05:14:00", + "2024-01-05T05:15:00", + "2024-01-05T05:16:00", + "2024-01-05T05:17:00", + "2024-01-05T05:18:00", + "2024-01-05T05:19:00", + "2024-01-05T05:20:00", + "2024-01-05T05:21:00", + "2024-01-05T05:22:00", + "2024-01-05T05:23:00", + "2024-01-05T05:24:00", + "2024-01-05T05:25:00", + "2024-01-05T05:26:00", + "2024-01-05T05:27:00", + "2024-01-05T05:28:00", + "2024-01-05T05:29:00", + "2024-01-05T05:30:00", + "2024-01-05T05:31:00", + "2024-01-05T05:32:00", + "2024-01-05T05:33:00", + "2024-01-05T05:34:00", + "2024-01-05T05:35:00", + "2024-01-05T05:36:00", + "2024-01-05T05:37:00", + "2024-01-05T05:38:00", + "2024-01-05T05:39:00", + "2024-01-05T05:40:00", + "2024-01-05T05:41:00", + "2024-01-05T05:42:00", + "2024-01-05T05:43:00", + "2024-01-05T05:44:00", + "2024-01-05T05:45:00", + "2024-01-05T05:46:00", + "2024-01-05T05:47:00", + "2024-01-05T05:48:00", + "2024-01-05T05:49:00", + "2024-01-05T05:50:00", + "2024-01-05T05:51:00", + "2024-01-05T05:52:00", + "2024-01-05T05:53:00", + "2024-01-05T05:54:00", + "2024-01-05T05:55:00", + "2024-01-05T05:56:00", + "2024-01-05T05:57:00", + "2024-01-05T05:58:00", + "2024-01-05T05:59:00", + "2024-01-05T06:00:00", + "2024-01-05T06:01:00", + "2024-01-05T06:02:00", + "2024-01-05T06:03:00", + "2024-01-05T06:04:00", + "2024-01-05T06:05:00", + "2024-01-05T06:06:00", + "2024-01-05T06:07:00", + "2024-01-05T06:08:00", + "2024-01-05T06:09:00", + "2024-01-05T06:10:00", + "2024-01-05T06:11:00", + "2024-01-05T06:12:00", + "2024-01-05T06:13:00", + "2024-01-05T06:14:00", + "2024-01-05T06:15:00", + "2024-01-05T06:16:00", + "2024-01-05T06:17:00", + "2024-01-05T06:18:00", + "2024-01-05T06:19:00", + "2024-01-05T06:20:00", + "2024-01-05T06:21:00", + "2024-01-05T06:22:00", + "2024-01-05T06:23:00", + "2024-01-05T06:24:00", + "2024-01-05T06:25:00", + "2024-01-05T06:26:00", + "2024-01-05T06:27:00", + "2024-01-05T06:28:00", + "2024-01-05T06:29:00", + "2024-01-05T06:30:00", + "2024-01-05T06:31:00", + "2024-01-05T06:32:00", + "2024-01-05T06:33:00", + "2024-01-05T06:34:00", + "2024-01-05T06:35:00", + "2024-01-05T06:36:00", + "2024-01-05T06:37:00", + "2024-01-05T06:38:00", + "2024-01-05T06:39:00", + "2024-01-05T06:40:00", + "2024-01-05T06:41:00", + "2024-01-05T06:42:00", + "2024-01-05T06:43:00", + "2024-01-05T06:44:00", + "2024-01-05T06:45:00", + "2024-01-05T06:46:00", + "2024-01-05T06:47:00", + "2024-01-05T06:48:00", + "2024-01-05T06:49:00", + "2024-01-05T06:50:00", + "2024-01-05T06:51:00", + "2024-01-05T06:52:00", + "2024-01-05T06:53:00", + "2024-01-05T06:54:00", + "2024-01-05T06:55:00", + "2024-01-05T06:56:00", + "2024-01-05T06:57:00", + "2024-01-05T06:58:00", + "2024-01-05T06:59:00", + "2024-01-05T07:00:00", + "2024-01-05T07:01:00", + "2024-01-05T07:02:00", + "2024-01-05T07:03:00", + "2024-01-05T07:04:00", + "2024-01-05T07:05:00", + "2024-01-05T07:06:00", + "2024-01-05T07:07:00", + "2024-01-05T07:08:00", + "2024-01-05T07:09:00", + "2024-01-05T07:10:00", + "2024-01-05T07:11:00", + "2024-01-05T07:12:00", + "2024-01-05T07:13:00", + "2024-01-05T07:14:00", + "2024-01-05T07:15:00", + "2024-01-05T07:16:00", + "2024-01-05T07:17:00", + "2024-01-05T07:18:00", + "2024-01-05T07:19:00", + "2024-01-05T07:20:00", + "2024-01-05T07:21:00", + "2024-01-05T07:22:00", + "2024-01-05T07:23:00", + "2024-01-05T07:24:00", + "2024-01-05T07:25:00", + "2024-01-05T07:26:00", + "2024-01-05T07:27:00", + "2024-01-05T07:28:00", + "2024-01-05T07:29:00", + "2024-01-05T07:30:00", + "2024-01-05T07:31:00", + "2024-01-05T07:32:00", + "2024-01-05T07:33:00", + "2024-01-05T07:34:00", + "2024-01-05T07:35:00", + "2024-01-05T07:36:00", + "2024-01-05T07:37:00", + "2024-01-05T07:38:00", + "2024-01-05T07:39:00", + "2024-01-05T07:40:00", + "2024-01-05T07:41:00", + "2024-01-05T07:42:00", + "2024-01-05T07:43:00", + "2024-01-05T07:44:00", + "2024-01-05T07:45:00", + "2024-01-05T07:46:00", + "2024-01-05T07:47:00", + "2024-01-05T07:48:00", + "2024-01-05T07:49:00", + "2024-01-05T07:50:00", + "2024-01-05T07:51:00", + "2024-01-05T07:52:00", + "2024-01-05T07:53:00", + "2024-01-05T07:54:00", + "2024-01-05T07:55:00", + "2024-01-05T07:56:00", + "2024-01-05T07:57:00", + "2024-01-05T07:58:00", + "2024-01-05T07:59:00", + "2024-01-05T08:00:00", + "2024-01-05T08:01:00", + "2024-01-05T08:02:00", + "2024-01-05T08:03:00", + "2024-01-05T08:04:00", + "2024-01-05T08:05:00", + "2024-01-05T08:06:00", + "2024-01-05T08:07:00", + "2024-01-05T08:08:00", + "2024-01-05T08:09:00", + "2024-01-05T08:10:00", + "2024-01-05T08:11:00", + "2024-01-05T08:12:00", + "2024-01-05T08:13:00", + "2024-01-05T08:14:00", + "2024-01-05T08:15:00", + "2024-01-05T08:16:00", + "2024-01-05T08:17:00", + "2024-01-05T08:18:00", + "2024-01-05T08:19:00", + "2024-01-05T08:20:00", + "2024-01-05T08:21:00", + "2024-01-05T08:22:00", + "2024-01-05T08:23:00", + "2024-01-05T08:24:00", + "2024-01-05T08:25:00", + "2024-01-05T08:26:00", + "2024-01-05T08:27:00", + "2024-01-05T08:28:00", + "2024-01-05T08:29:00", + "2024-01-05T08:30:00", + "2024-01-05T08:31:00", + "2024-01-05T08:32:00", + "2024-01-05T08:33:00", + "2024-01-05T08:34:00", + "2024-01-05T08:35:00", + "2024-01-05T08:36:00", + "2024-01-05T08:37:00", + "2024-01-05T08:38:00", + "2024-01-05T08:39:00", + "2024-01-05T08:40:00", + "2024-01-05T08:41:00", + "2024-01-05T08:42:00", + "2024-01-05T08:43:00", + "2024-01-05T08:44:00", + "2024-01-05T08:45:00", + "2024-01-05T08:46:00", + "2024-01-05T08:47:00", + "2024-01-05T08:48:00", + "2024-01-05T08:49:00", + "2024-01-05T08:50:00", + "2024-01-05T08:51:00", + "2024-01-05T08:52:00", + "2024-01-05T08:53:00", + "2024-01-05T08:54:00", + "2024-01-05T08:55:00", + "2024-01-05T08:56:00", + "2024-01-05T08:57:00", + "2024-01-05T08:58:00", + "2024-01-05T08:59:00", + "2024-01-05T09:00:00", + "2024-01-05T09:01:00", + "2024-01-05T09:02:00", + "2024-01-05T09:03:00", + "2024-01-05T09:04:00", + "2024-01-05T09:05:00", + "2024-01-05T09:06:00", + "2024-01-05T09:07:00", + "2024-01-05T09:08:00", + "2024-01-05T09:09:00", + "2024-01-05T09:10:00", + "2024-01-05T09:11:00", + "2024-01-05T09:12:00", + "2024-01-05T09:13:00", + "2024-01-05T09:14:00", + "2024-01-05T09:15:00", + "2024-01-05T09:16:00", + "2024-01-05T09:17:00", + "2024-01-05T09:18:00", + "2024-01-05T09:19:00", + "2024-01-05T09:20:00", + "2024-01-05T09:21:00", + "2024-01-05T09:22:00", + "2024-01-05T09:23:00", + "2024-01-05T09:24:00", + "2024-01-05T09:25:00", + "2024-01-05T09:26:00", + "2024-01-05T09:27:00", + "2024-01-05T09:28:00", + "2024-01-05T09:29:00", + "2024-01-05T09:30:00", + "2024-01-05T09:31:00", + "2024-01-05T09:32:00", + "2024-01-05T09:33:00", + "2024-01-05T09:34:00", + "2024-01-05T09:35:00", + "2024-01-05T09:36:00", + "2024-01-05T09:37:00", + "2024-01-05T09:38:00", + "2024-01-05T09:39:00", + "2024-01-05T09:40:00", + "2024-01-05T09:41:00", + "2024-01-05T09:42:00", + "2024-01-05T09:43:00", + "2024-01-05T09:44:00", + "2024-01-05T09:45:00", + "2024-01-05T09:46:00", + "2024-01-05T09:47:00", + "2024-01-05T09:48:00", + "2024-01-05T09:49:00", + "2024-01-05T09:50:00", + "2024-01-05T09:51:00", + "2024-01-05T09:52:00", + "2024-01-05T09:53:00", + "2024-01-05T09:54:00", + "2024-01-05T09:55:00", + "2024-01-05T09:56:00", + "2024-01-05T09:57:00", + "2024-01-05T09:58:00", + "2024-01-05T09:59:00", + "2024-01-05T10:00:00", + "2024-01-05T10:01:00", + "2024-01-05T10:02:00", + "2024-01-05T10:03:00", + "2024-01-05T10:04:00", + "2024-01-05T10:05:00", + "2024-01-05T10:06:00", + "2024-01-05T10:07:00", + "2024-01-05T10:08:00", + "2024-01-05T10:09:00", + "2024-01-05T10:10:00", + "2024-01-05T10:11:00", + "2024-01-05T10:12:00", + "2024-01-05T10:13:00", + "2024-01-05T10:14:00", + "2024-01-05T10:15:00", + "2024-01-05T10:16:00", + "2024-01-05T10:17:00", + "2024-01-05T10:18:00", + "2024-01-05T10:19:00", + "2024-01-05T10:20:00", + "2024-01-05T10:21:00", + "2024-01-05T10:22:00", + "2024-01-05T10:23:00", + "2024-01-05T10:24:00", + "2024-01-05T10:25:00", + "2024-01-05T10:26:00", + "2024-01-05T10:27:00", + "2024-01-05T10:28:00", + "2024-01-05T10:29:00", + "2024-01-05T10:30:00", + "2024-01-05T10:31:00", + "2024-01-05T10:32:00", + "2024-01-05T10:33:00", + "2024-01-05T10:34:00", + "2024-01-05T10:35:00", + "2024-01-05T10:36:00", + "2024-01-05T10:37:00", + "2024-01-05T10:38:00", + "2024-01-05T10:39:00", + "2024-01-05T10:40:00", + "2024-01-05T10:41:00", + "2024-01-05T10:42:00", + "2024-01-05T10:43:00", + "2024-01-05T10:44:00", + "2024-01-05T10:45:00", + "2024-01-05T10:46:00", + "2024-01-05T10:47:00", + "2024-01-05T10:48:00", + "2024-01-05T10:49:00", + "2024-01-05T10:50:00", + "2024-01-05T10:51:00", + "2024-01-05T10:52:00", + "2024-01-05T10:53:00", + "2024-01-05T10:54:00", + "2024-01-05T10:55:00", + "2024-01-05T10:56:00", + "2024-01-05T10:57:00", + "2024-01-05T10:58:00", + "2024-01-05T10:59:00", + "2024-01-05T11:00:00", + "2024-01-05T11:01:00", + "2024-01-05T11:02:00", + "2024-01-05T11:03:00", + "2024-01-05T11:04:00", + "2024-01-05T11:05:00", + "2024-01-05T11:06:00", + "2024-01-05T11:07:00", + "2024-01-05T11:08:00", + "2024-01-05T11:09:00", + "2024-01-05T11:10:00", + "2024-01-05T11:11:00", + "2024-01-05T11:12:00", + "2024-01-05T11:13:00", + "2024-01-05T11:14:00", + "2024-01-05T11:15:00", + "2024-01-05T11:16:00", + "2024-01-05T11:17:00", + "2024-01-05T11:18:00", + "2024-01-05T11:19:00", + "2024-01-05T11:20:00", + "2024-01-05T11:21:00", + "2024-01-05T11:22:00", + "2024-01-05T11:23:00", + "2024-01-05T11:24:00", + "2024-01-05T11:25:00", + "2024-01-05T11:26:00", + "2024-01-05T11:27:00", + "2024-01-05T11:28:00", + "2024-01-05T11:29:00", + "2024-01-05T11:30:00", + "2024-01-05T11:31:00", + "2024-01-05T11:32:00", + "2024-01-05T11:33:00", + "2024-01-05T11:34:00", + "2024-01-05T11:35:00", + "2024-01-05T11:36:00", + "2024-01-05T11:37:00", + "2024-01-05T11:38:00", + "2024-01-05T11:39:00", + "2024-01-05T11:40:00", + "2024-01-05T11:41:00", + "2024-01-05T11:42:00", + "2024-01-05T11:43:00", + "2024-01-05T11:44:00", + "2024-01-05T11:45:00", + "2024-01-05T11:46:00", + "2024-01-05T11:47:00", + "2024-01-05T11:48:00", + "2024-01-05T11:49:00", + "2024-01-05T11:50:00", + "2024-01-05T11:51:00", + "2024-01-05T11:52:00", + "2024-01-05T11:53:00", + "2024-01-05T11:54:00", + "2024-01-05T11:55:00", + "2024-01-05T11:56:00", + "2024-01-05T11:57:00", + "2024-01-05T11:58:00", + "2024-01-05T11:59:00", + "2024-01-05T12:00:00", + "2024-01-05T12:01:00", + "2024-01-05T12:02:00", + "2024-01-05T12:03:00", + "2024-01-05T12:04:00", + "2024-01-05T12:05:00", + "2024-01-05T12:06:00", + "2024-01-05T12:07:00", + "2024-01-05T12:08:00", + "2024-01-05T12:09:00", + "2024-01-05T12:10:00", + "2024-01-05T12:11:00", + "2024-01-05T12:12:00", + "2024-01-05T12:13:00", + "2024-01-05T12:14:00", + "2024-01-05T12:15:00", + "2024-01-05T12:16:00", + "2024-01-05T12:17:00", + "2024-01-05T12:18:00", + "2024-01-05T12:19:00", + "2024-01-05T12:20:00", + "2024-01-05T12:21:00", + "2024-01-05T12:22:00", + "2024-01-05T12:23:00", + "2024-01-05T12:24:00", + "2024-01-05T12:25:00", + "2024-01-05T12:26:00", + "2024-01-05T12:27:00", + "2024-01-05T12:28:00", + "2024-01-05T12:29:00", + "2024-01-05T12:30:00", + "2024-01-05T12:31:00", + "2024-01-05T12:32:00", + "2024-01-05T12:33:00", + "2024-01-05T12:34:00", + "2024-01-05T12:35:00", + "2024-01-05T12:36:00", + "2024-01-05T12:37:00", + "2024-01-05T12:38:00", + "2024-01-05T12:39:00", + "2024-01-05T12:40:00", + "2024-01-05T12:41:00", + "2024-01-05T12:42:00", + "2024-01-05T12:43:00", + "2024-01-05T12:44:00", + "2024-01-05T12:45:00", + "2024-01-05T12:46:00", + "2024-01-05T12:47:00", + "2024-01-05T12:48:00", + "2024-01-05T12:49:00", + "2024-01-05T12:50:00", + "2024-01-05T12:51:00", + "2024-01-05T12:52:00", + "2024-01-05T12:53:00", + "2024-01-05T12:54:00", + "2024-01-05T12:55:00", + "2024-01-05T12:56:00", + "2024-01-05T12:57:00", + "2024-01-05T12:58:00", + "2024-01-05T12:59:00", + "2024-01-05T13:00:00", + "2024-01-05T13:01:00", + "2024-01-05T13:02:00", + "2024-01-05T13:03:00", + "2024-01-05T13:04:00", + "2024-01-05T13:05:00", + "2024-01-05T13:06:00", + "2024-01-05T13:07:00", + "2024-01-05T13:08:00", + "2024-01-05T13:09:00", + "2024-01-05T13:10:00", + "2024-01-05T13:11:00", + "2024-01-05T13:12:00", + "2024-01-05T13:13:00", + "2024-01-05T13:14:00", + "2024-01-05T13:15:00", + "2024-01-05T13:16:00", + "2024-01-05T13:17:00", + "2024-01-05T13:18:00", + "2024-01-05T13:19:00", + "2024-01-05T13:20:00", + "2024-01-05T13:21:00", + "2024-01-05T13:22:00", + "2024-01-05T13:23:00", + "2024-01-05T13:24:00", + "2024-01-05T13:25:00", + "2024-01-05T13:26:00", + "2024-01-05T13:27:00", + "2024-01-05T13:28:00", + "2024-01-05T13:29:00", + "2024-01-05T13:30:00", + "2024-01-05T13:31:00", + "2024-01-05T13:32:00", + "2024-01-05T13:33:00", + "2024-01-05T13:34:00", + "2024-01-05T13:35:00", + "2024-01-05T13:36:00", + "2024-01-05T13:37:00", + "2024-01-05T13:38:00", + "2024-01-05T13:39:00", + "2024-01-05T13:40:00", + "2024-01-05T13:41:00", + "2024-01-05T13:42:00", + "2024-01-05T13:43:00", + "2024-01-05T13:44:00", + "2024-01-05T13:45:00", + "2024-01-05T13:46:00", + "2024-01-05T13:47:00", + "2024-01-05T13:48:00", + "2024-01-05T13:49:00", + "2024-01-05T13:50:00", + "2024-01-05T13:51:00", + "2024-01-05T13:52:00", + "2024-01-05T13:53:00", + "2024-01-05T13:54:00", + "2024-01-05T13:55:00", + "2024-01-05T13:56:00", + "2024-01-05T13:57:00", + "2024-01-05T13:58:00", + "2024-01-05T13:59:00", + "2024-01-05T14:00:00", + "2024-01-05T14:01:00", + "2024-01-05T14:02:00", + "2024-01-05T14:03:00", + "2024-01-05T14:04:00", + "2024-01-05T14:05:00", + "2024-01-05T14:06:00", + "2024-01-05T14:07:00", + "2024-01-05T14:08:00", + "2024-01-05T14:09:00", + "2024-01-05T14:10:00", + "2024-01-05T14:11:00", + "2024-01-05T14:12:00", + "2024-01-05T14:13:00", + "2024-01-05T14:14:00", + "2024-01-05T14:15:00", + "2024-01-05T14:16:00", + "2024-01-05T14:17:00", + "2024-01-05T14:18:00", + "2024-01-05T14:19:00", + "2024-01-05T14:20:00", + "2024-01-05T14:21:00", + "2024-01-05T14:22:00", + "2024-01-05T14:23:00", + "2024-01-05T14:24:00", + "2024-01-05T14:25:00", + "2024-01-05T14:26:00", + "2024-01-05T14:27:00", + "2024-01-05T14:28:00", + "2024-01-05T14:29:00", + "2024-01-05T14:30:00", + "2024-01-05T14:31:00", + "2024-01-05T14:32:00", + "2024-01-05T14:33:00", + "2024-01-05T14:34:00", + "2024-01-05T14:35:00", + "2024-01-05T14:36:00", + "2024-01-05T14:37:00", + "2024-01-05T14:38:00", + "2024-01-05T14:39:00", + "2024-01-05T14:40:00", + "2024-01-05T14:41:00", + "2024-01-05T14:42:00", + "2024-01-05T14:43:00", + "2024-01-05T14:44:00", + "2024-01-05T14:45:00", + "2024-01-05T14:46:00", + "2024-01-05T14:47:00", + "2024-01-05T14:48:00", + "2024-01-05T14:49:00", + "2024-01-05T14:50:00", + "2024-01-05T14:51:00", + "2024-01-05T14:52:00", + "2024-01-05T14:53:00", + "2024-01-05T14:54:00", + "2024-01-05T14:55:00", + "2024-01-05T14:56:00", + "2024-01-05T14:57:00", + "2024-01-05T14:58:00", + "2024-01-05T14:59:00", + "2024-01-05T15:00:00", + "2024-01-05T15:01:00", + "2024-01-05T15:02:00", + "2024-01-05T15:03:00", + "2024-01-05T15:04:00", + "2024-01-05T15:05:00", + "2024-01-05T15:06:00", + "2024-01-05T15:07:00", + "2024-01-05T15:08:00", + "2024-01-05T15:09:00", + "2024-01-05T15:10:00", + "2024-01-05T15:11:00", + "2024-01-05T15:12:00", + "2024-01-05T15:13:00", + "2024-01-05T15:14:00", + "2024-01-05T15:15:00", + "2024-01-05T15:16:00", + "2024-01-05T15:17:00", + "2024-01-05T15:18:00", + "2024-01-05T15:19:00", + "2024-01-05T15:20:00", + "2024-01-05T15:21:00", + "2024-01-05T15:22:00", + "2024-01-05T15:23:00", + "2024-01-05T15:24:00", + "2024-01-05T15:25:00", + "2024-01-05T15:26:00", + "2024-01-05T15:27:00", + "2024-01-05T15:28:00", + "2024-01-05T15:29:00", + "2024-01-05T15:30:00", + "2024-01-05T15:31:00", + "2024-01-05T15:32:00", + "2024-01-05T15:33:00", + "2024-01-05T15:34:00", + "2024-01-05T15:35:00", + "2024-01-05T15:36:00", + "2024-01-05T15:37:00", + "2024-01-05T15:38:00", + "2024-01-05T15:39:00", + "2024-01-05T15:40:00", + "2024-01-05T15:41:00", + "2024-01-05T15:42:00", + "2024-01-05T15:43:00", + "2024-01-05T15:44:00", + "2024-01-05T15:45:00", + "2024-01-05T15:46:00", + "2024-01-05T15:47:00", + "2024-01-05T15:48:00", + "2024-01-05T15:49:00", + "2024-01-05T15:50:00", + "2024-01-05T15:51:00", + "2024-01-05T15:52:00", + "2024-01-05T15:53:00", + "2024-01-05T15:54:00", + "2024-01-05T15:55:00", + "2024-01-05T15:56:00", + "2024-01-05T15:57:00", + "2024-01-05T15:58:00", + "2024-01-05T15:59:00", + "2024-01-05T16:00:00", + "2024-01-05T16:01:00", + "2024-01-05T16:02:00", + "2024-01-05T16:03:00", + "2024-01-05T16:04:00", + "2024-01-05T16:05:00", + "2024-01-05T16:06:00", + "2024-01-05T16:07:00", + "2024-01-05T16:08:00", + "2024-01-05T16:09:00", + "2024-01-05T16:10:00", + "2024-01-05T16:11:00", + "2024-01-05T16:12:00", + "2024-01-05T16:13:00", + "2024-01-05T16:14:00", + "2024-01-05T16:15:00", + "2024-01-05T16:16:00", + "2024-01-05T16:17:00", + "2024-01-05T16:18:00", + "2024-01-05T16:19:00", + "2024-01-05T16:20:00", + "2024-01-05T16:21:00", + "2024-01-05T16:22:00", + "2024-01-05T16:23:00", + "2024-01-05T16:24:00", + "2024-01-05T16:25:00", + "2024-01-05T16:26:00", + "2024-01-05T16:27:00", + "2024-01-05T16:28:00", + "2024-01-05T16:29:00", + "2024-01-05T16:30:00", + "2024-01-05T16:31:00", + "2024-01-05T16:32:00", + "2024-01-05T16:33:00", + "2024-01-05T16:34:00", + "2024-01-05T16:35:00", + "2024-01-05T16:36:00", + "2024-01-05T16:37:00", + "2024-01-05T16:38:00", + "2024-01-05T16:39:00", + "2024-01-05T16:40:00", + "2024-01-05T16:41:00", + "2024-01-05T16:42:00", + "2024-01-05T16:43:00", + "2024-01-05T16:44:00", + "2024-01-05T16:45:00", + "2024-01-05T16:46:00", + "2024-01-05T16:47:00", + "2024-01-05T16:48:00", + "2024-01-05T16:49:00", + "2024-01-05T16:50:00", + "2024-01-05T16:51:00", + "2024-01-05T16:52:00", + "2024-01-05T16:53:00", + "2024-01-05T16:54:00", + "2024-01-05T16:55:00", + "2024-01-05T16:56:00", + "2024-01-05T16:57:00", + "2024-01-05T16:58:00", + "2024-01-05T16:59:00", + "2024-01-05T17:00:00", + "2024-01-05T17:01:00", + "2024-01-05T17:02:00", + "2024-01-05T17:03:00", + "2024-01-05T17:04:00", + "2024-01-05T17:05:00", + "2024-01-05T17:06:00", + "2024-01-05T17:07:00", + "2024-01-05T17:08:00", + "2024-01-05T17:09:00", + "2024-01-05T17:10:00", + "2024-01-05T17:11:00", + "2024-01-05T17:12:00", + "2024-01-05T17:13:00", + "2024-01-05T17:14:00", + "2024-01-05T17:15:00", + "2024-01-05T17:16:00", + "2024-01-05T17:17:00", + "2024-01-05T17:18:00", + "2024-01-05T17:19:00", + "2024-01-05T17:20:00", + "2024-01-05T17:21:00", + "2024-01-05T17:22:00", + "2024-01-05T17:23:00", + "2024-01-05T17:24:00", + "2024-01-05T17:25:00", + "2024-01-05T17:26:00", + "2024-01-05T17:27:00", + "2024-01-05T17:28:00", + "2024-01-05T17:29:00", + "2024-01-05T17:30:00", + "2024-01-05T17:31:00", + "2024-01-05T17:32:00", + "2024-01-05T17:33:00", + "2024-01-05T17:34:00", + "2024-01-05T17:35:00", + "2024-01-05T17:36:00", + "2024-01-05T17:37:00", + "2024-01-05T17:38:00", + "2024-01-05T17:39:00", + "2024-01-05T17:40:00", + "2024-01-05T17:41:00", + "2024-01-05T17:42:00", + "2024-01-05T17:43:00", + "2024-01-05T17:44:00", + "2024-01-05T17:45:00", + "2024-01-05T17:46:00", + "2024-01-05T17:47:00", + "2024-01-05T17:48:00", + "2024-01-05T17:49:00", + "2024-01-05T17:50:00", + "2024-01-05T17:51:00", + "2024-01-05T17:52:00", + "2024-01-05T17:53:00", + "2024-01-05T17:54:00", + "2024-01-05T17:55:00", + "2024-01-05T17:56:00", + "2024-01-05T17:57:00", + "2024-01-05T17:58:00", + "2024-01-05T17:59:00", + "2024-01-05T18:00:00", + "2024-01-05T18:01:00", + "2024-01-05T18:02:00", + "2024-01-05T18:03:00", + "2024-01-05T18:04:00", + "2024-01-05T18:05:00", + "2024-01-05T18:06:00", + "2024-01-05T18:07:00", + "2024-01-05T18:08:00", + "2024-01-05T18:09:00", + "2024-01-05T18:10:00", + "2024-01-05T18:11:00", + "2024-01-05T18:12:00", + "2024-01-05T18:13:00", + "2024-01-05T18:14:00", + "2024-01-05T18:15:00", + "2024-01-05T18:16:00", + "2024-01-05T18:17:00", + "2024-01-05T18:18:00", + "2024-01-05T18:19:00", + "2024-01-05T18:20:00", + "2024-01-05T18:21:00", + "2024-01-05T18:22:00", + "2024-01-05T18:23:00", + "2024-01-05T18:24:00", + "2024-01-05T18:25:00", + "2024-01-05T18:26:00", + "2024-01-05T18:27:00", + "2024-01-05T18:28:00", + "2024-01-05T18:29:00", + "2024-01-05T18:30:00", + "2024-01-05T18:31:00", + "2024-01-05T18:32:00", + "2024-01-05T18:33:00", + "2024-01-05T18:34:00", + "2024-01-05T18:35:00", + "2024-01-05T18:36:00", + "2024-01-05T18:37:00", + "2024-01-05T18:38:00", + "2024-01-05T18:39:00", + "2024-01-05T18:40:00", + "2024-01-05T18:41:00", + "2024-01-05T18:42:00", + "2024-01-05T18:43:00", + "2024-01-05T18:44:00", + "2024-01-05T18:45:00", + "2024-01-05T18:46:00", + "2024-01-05T18:47:00", + "2024-01-05T18:48:00", + "2024-01-05T18:49:00", + "2024-01-05T18:50:00", + "2024-01-05T18:51:00", + "2024-01-05T18:52:00", + "2024-01-05T18:53:00", + "2024-01-05T18:54:00", + "2024-01-05T18:55:00", + "2024-01-05T18:56:00", + "2024-01-05T18:57:00", + "2024-01-05T18:58:00", + "2024-01-05T18:59:00", + "2024-01-05T19:00:00", + "2024-01-05T19:01:00", + "2024-01-05T19:02:00", + "2024-01-05T19:03:00", + "2024-01-05T19:04:00", + "2024-01-05T19:05:00", + "2024-01-05T19:06:00", + "2024-01-05T19:07:00", + "2024-01-05T19:08:00", + "2024-01-05T19:09:00", + "2024-01-05T19:10:00", + "2024-01-05T19:11:00", + "2024-01-05T19:12:00", + "2024-01-05T19:13:00", + "2024-01-05T19:14:00", + "2024-01-05T19:15:00", + "2024-01-05T19:16:00", + "2024-01-05T19:17:00", + "2024-01-05T19:18:00", + "2024-01-05T19:19:00", + "2024-01-05T19:20:00", + "2024-01-05T19:21:00", + "2024-01-05T19:22:00", + "2024-01-05T19:23:00", + "2024-01-05T19:24:00", + "2024-01-05T19:25:00", + "2024-01-05T19:26:00", + "2024-01-05T19:27:00", + "2024-01-05T19:28:00", + "2024-01-05T19:29:00", + "2024-01-05T19:30:00", + "2024-01-05T19:31:00", + "2024-01-05T19:32:00", + "2024-01-05T19:33:00", + "2024-01-05T19:34:00", + "2024-01-05T19:35:00", + "2024-01-05T19:36:00", + "2024-01-05T19:37:00", + "2024-01-05T19:38:00", + "2024-01-05T19:39:00", + "2024-01-05T19:40:00", + "2024-01-05T19:41:00", + "2024-01-05T19:42:00", + "2024-01-05T19:43:00", + "2024-01-05T19:44:00", + "2024-01-05T19:45:00", + "2024-01-05T19:46:00", + "2024-01-05T19:47:00", + "2024-01-05T19:48:00", + "2024-01-05T19:49:00", + "2024-01-05T19:50:00", + "2024-01-05T19:51:00", + "2024-01-05T19:52:00", + "2024-01-05T19:53:00", + "2024-01-05T19:54:00", + "2024-01-05T19:55:00", + "2024-01-05T19:56:00", + "2024-01-05T19:57:00", + "2024-01-05T19:58:00", + "2024-01-05T19:59:00", + "2024-01-05T20:00:00", + "2024-01-05T20:01:00", + "2024-01-05T20:02:00", + "2024-01-05T20:03:00", + "2024-01-05T20:04:00", + "2024-01-05T20:05:00", + "2024-01-05T20:06:00", + "2024-01-05T20:07:00", + "2024-01-05T20:08:00", + "2024-01-05T20:09:00", + "2024-01-05T20:10:00", + "2024-01-05T20:11:00", + "2024-01-05T20:12:00", + "2024-01-05T20:13:00", + "2024-01-05T20:14:00", + "2024-01-05T20:15:00", + "2024-01-05T20:16:00", + "2024-01-05T20:17:00", + "2024-01-05T20:18:00", + "2024-01-05T20:19:00", + "2024-01-05T20:20:00", + "2024-01-05T20:21:00", + "2024-01-05T20:22:00", + "2024-01-05T20:23:00", + "2024-01-05T20:24:00", + "2024-01-05T20:25:00", + "2024-01-05T20:26:00", + "2024-01-05T20:27:00", + "2024-01-05T20:28:00", + "2024-01-05T20:29:00", + "2024-01-05T20:30:00", + "2024-01-05T20:31:00", + "2024-01-05T20:32:00", + "2024-01-05T20:33:00", + "2024-01-05T20:34:00", + "2024-01-05T20:35:00", + "2024-01-05T20:36:00", + "2024-01-05T20:37:00", + "2024-01-05T20:38:00", + "2024-01-05T20:39:00", + "2024-01-05T20:40:00", + "2024-01-05T20:41:00", + "2024-01-05T20:42:00", + "2024-01-05T20:43:00", + "2024-01-05T20:44:00", + "2024-01-05T20:45:00", + "2024-01-05T20:46:00", + "2024-01-05T20:47:00", + "2024-01-05T20:48:00", + "2024-01-05T20:49:00", + "2024-01-05T20:50:00", + "2024-01-05T20:51:00", + "2024-01-05T20:52:00", + "2024-01-05T20:53:00", + "2024-01-05T20:54:00", + "2024-01-05T20:55:00", + "2024-01-05T20:56:00", + "2024-01-05T20:57:00", + "2024-01-05T20:58:00", + "2024-01-05T20:59:00", + "2024-01-05T21:00:00", + "2024-01-05T21:01:00", + "2024-01-05T21:02:00", + "2024-01-05T21:03:00", + "2024-01-05T21:04:00", + "2024-01-05T21:05:00", + "2024-01-05T21:06:00", + "2024-01-05T21:07:00", + "2024-01-05T21:08:00", + "2024-01-05T21:09:00", + "2024-01-05T21:10:00", + "2024-01-05T21:11:00", + "2024-01-05T21:12:00", + "2024-01-05T21:13:00", + "2024-01-05T21:14:00", + "2024-01-05T21:15:00", + "2024-01-05T21:16:00", + "2024-01-05T21:17:00", + "2024-01-05T21:18:00", + "2024-01-05T21:19:00", + "2024-01-05T21:20:00", + "2024-01-05T21:21:00", + "2024-01-05T21:22:00", + "2024-01-05T21:23:00", + "2024-01-05T21:24:00", + "2024-01-05T21:25:00", + "2024-01-05T21:26:00", + "2024-01-05T21:27:00", + "2024-01-05T21:28:00", + "2024-01-05T21:29:00", + "2024-01-05T21:30:00", + "2024-01-05T21:31:00", + "2024-01-05T21:32:00", + "2024-01-05T21:33:00", + "2024-01-05T21:34:00", + "2024-01-05T21:35:00", + "2024-01-05T21:36:00", + "2024-01-05T21:37:00", + "2024-01-05T21:38:00", + "2024-01-05T21:39:00", + "2024-01-05T21:40:00", + "2024-01-05T21:41:00", + "2024-01-05T21:42:00", + "2024-01-05T21:43:00", + "2024-01-05T21:44:00", + "2024-01-05T21:45:00", + "2024-01-05T21:46:00", + "2024-01-05T21:47:00", + "2024-01-05T21:48:00", + "2024-01-05T21:49:00", + "2024-01-05T21:50:00", + "2024-01-05T21:51:00", + "2024-01-05T21:52:00", + "2024-01-05T21:53:00", + "2024-01-05T21:54:00", + "2024-01-05T21:55:00", + "2024-01-05T21:56:00", + "2024-01-05T21:57:00", + "2024-01-05T21:58:00", + "2024-01-05T21:59:00", + "2024-01-05T22:00:00", + "2024-01-05T22:01:00", + "2024-01-05T22:02:00", + "2024-01-05T22:03:00", + "2024-01-05T22:04:00", + "2024-01-05T22:05:00", + "2024-01-05T22:06:00", + "2024-01-05T22:07:00", + "2024-01-05T22:08:00", + "2024-01-05T22:09:00", + "2024-01-05T22:10:00", + "2024-01-05T22:11:00", + "2024-01-05T22:12:00", + "2024-01-05T22:13:00", + "2024-01-05T22:14:00", + "2024-01-05T22:15:00", + "2024-01-05T22:16:00", + "2024-01-05T22:17:00", + "2024-01-05T22:18:00", + "2024-01-05T22:19:00", + "2024-01-05T22:20:00", + "2024-01-05T22:21:00", + "2024-01-05T22:22:00", + "2024-01-05T22:23:00", + "2024-01-05T22:24:00", + "2024-01-05T22:25:00", + "2024-01-05T22:26:00", + "2024-01-05T22:27:00", + "2024-01-05T22:28:00", + "2024-01-05T22:29:00", + "2024-01-05T22:30:00", + "2024-01-05T22:31:00", + "2024-01-05T22:32:00", + "2024-01-05T22:33:00", + "2024-01-05T22:34:00", + "2024-01-05T22:35:00", + "2024-01-05T22:36:00", + "2024-01-05T22:37:00", + "2024-01-05T22:38:00", + "2024-01-05T22:39:00", + "2024-01-05T22:40:00", + "2024-01-05T22:41:00", + "2024-01-05T22:42:00", + "2024-01-05T22:43:00", + "2024-01-05T22:44:00", + "2024-01-05T22:45:00", + "2024-01-05T22:46:00", + "2024-01-05T22:47:00", + "2024-01-05T22:48:00", + "2024-01-05T22:49:00", + "2024-01-05T22:50:00", + "2024-01-05T22:51:00", + "2024-01-05T22:52:00", + "2024-01-05T22:53:00", + "2024-01-05T22:54:00", + "2024-01-05T22:55:00", + "2024-01-05T22:56:00", + "2024-01-05T22:57:00", + "2024-01-05T22:58:00", + "2024-01-05T22:59:00", + "2024-01-05T23:00:00", + "2024-01-05T23:01:00", + "2024-01-05T23:02:00", + "2024-01-05T23:03:00", + "2024-01-05T23:04:00", + "2024-01-05T23:05:00", + "2024-01-05T23:06:00", + "2024-01-05T23:07:00", + "2024-01-05T23:08:00", + "2024-01-05T23:09:00", + "2024-01-05T23:10:00", + "2024-01-05T23:11:00", + "2024-01-05T23:12:00", + "2024-01-05T23:13:00", + "2024-01-05T23:14:00", + "2024-01-05T23:15:00", + "2024-01-05T23:16:00", + "2024-01-05T23:17:00", + "2024-01-05T23:18:00", + "2024-01-05T23:19:00", + "2024-01-05T23:20:00", + "2024-01-05T23:21:00", + "2024-01-05T23:22:00", + "2024-01-05T23:23:00", + "2024-01-05T23:24:00", + "2024-01-05T23:25:00", + "2024-01-05T23:26:00", + "2024-01-05T23:27:00", + "2024-01-05T23:28:00", + "2024-01-05T23:29:00", + "2024-01-05T23:30:00", + "2024-01-05T23:31:00", + "2024-01-05T23:32:00", + "2024-01-05T23:33:00", + "2024-01-05T23:34:00", + "2024-01-05T23:35:00", + "2024-01-05T23:36:00", + "2024-01-05T23:37:00", + "2024-01-05T23:38:00", + "2024-01-05T23:39:00", + "2024-01-05T23:40:00", + "2024-01-05T23:41:00", + "2024-01-05T23:42:00", + "2024-01-05T23:43:00", + "2024-01-05T23:44:00", + "2024-01-05T23:45:00", + "2024-01-05T23:46:00", + "2024-01-05T23:47:00", + "2024-01-05T23:48:00", + "2024-01-05T23:49:00", + "2024-01-05T23:50:00", + "2024-01-05T23:51:00", + "2024-01-05T23:52:00", + "2024-01-05T23:53:00", + "2024-01-05T23:54:00", + "2024-01-05T23:55:00", + "2024-01-05T23:56:00", + "2024-01-05T23:57:00", + "2024-01-05T23:58:00", + "2024-01-05T23:59:00", + "2024-01-06T00:00:00", + "2024-01-06T00:01:00", + "2024-01-06T00:02:00", + "2024-01-06T00:03:00", + "2024-01-06T00:04:00", + "2024-01-06T00:05:00", + "2024-01-06T00:06:00", + "2024-01-06T00:07:00", + "2024-01-06T00:08:00", + "2024-01-06T00:09:00", + "2024-01-06T00:10:00", + "2024-01-06T00:11:00", + "2024-01-06T00:12:00", + "2024-01-06T00:13:00", + "2024-01-06T00:14:00", + "2024-01-06T00:15:00", + "2024-01-06T00:16:00", + "2024-01-06T00:17:00", + "2024-01-06T00:18:00", + "2024-01-06T00:19:00", + "2024-01-06T00:20:00", + "2024-01-06T00:21:00", + "2024-01-06T00:22:00", + "2024-01-06T00:23:00", + "2024-01-06T00:24:00", + "2024-01-06T00:25:00", + "2024-01-06T00:26:00", + "2024-01-06T00:27:00", + "2024-01-06T00:28:00", + "2024-01-06T00:29:00", + "2024-01-06T00:30:00", + "2024-01-06T00:31:00", + "2024-01-06T00:32:00", + "2024-01-06T00:33:00", + "2024-01-06T00:34:00", + "2024-01-06T00:35:00", + "2024-01-06T00:36:00", + "2024-01-06T00:37:00", + "2024-01-06T00:38:00", + "2024-01-06T00:39:00", + "2024-01-06T00:40:00", + "2024-01-06T00:41:00", + "2024-01-06T00:42:00", + "2024-01-06T00:43:00", + "2024-01-06T00:44:00", + "2024-01-06T00:45:00", + "2024-01-06T00:46:00", + "2024-01-06T00:47:00", + "2024-01-06T00:48:00", + "2024-01-06T00:49:00", + "2024-01-06T00:50:00", + "2024-01-06T00:51:00", + "2024-01-06T00:52:00", + "2024-01-06T00:53:00", + "2024-01-06T00:54:00", + "2024-01-06T00:55:00", + "2024-01-06T00:56:00", + "2024-01-06T00:57:00", + "2024-01-06T00:58:00", + "2024-01-06T00:59:00", + "2024-01-06T01:00:00", + "2024-01-06T01:01:00", + "2024-01-06T01:02:00", + "2024-01-06T01:03:00", + "2024-01-06T01:04:00", + "2024-01-06T01:05:00", + "2024-01-06T01:06:00", + "2024-01-06T01:07:00", + "2024-01-06T01:08:00", + "2024-01-06T01:09:00", + "2024-01-06T01:10:00", + "2024-01-06T01:11:00", + "2024-01-06T01:12:00", + "2024-01-06T01:13:00", + "2024-01-06T01:14:00", + "2024-01-06T01:15:00", + "2024-01-06T01:16:00", + "2024-01-06T01:17:00", + "2024-01-06T01:18:00", + "2024-01-06T01:19:00", + "2024-01-06T01:20:00", + "2024-01-06T01:21:00", + "2024-01-06T01:22:00", + "2024-01-06T01:23:00", + "2024-01-06T01:24:00", + "2024-01-06T01:25:00", + "2024-01-06T01:26:00", + "2024-01-06T01:27:00", + "2024-01-06T01:28:00", + "2024-01-06T01:29:00", + "2024-01-06T01:30:00", + "2024-01-06T01:31:00", + "2024-01-06T01:32:00", + "2024-01-06T01:33:00", + "2024-01-06T01:34:00", + "2024-01-06T01:35:00", + "2024-01-06T01:36:00", + "2024-01-06T01:37:00", + "2024-01-06T01:38:00", + "2024-01-06T01:39:00", + "2024-01-06T01:40:00", + "2024-01-06T01:41:00", + "2024-01-06T01:42:00", + "2024-01-06T01:43:00", + "2024-01-06T01:44:00", + "2024-01-06T01:45:00", + "2024-01-06T01:46:00", + "2024-01-06T01:47:00", + "2024-01-06T01:48:00", + "2024-01-06T01:49:00", + "2024-01-06T01:50:00", + "2024-01-06T01:51:00", + "2024-01-06T01:52:00", + "2024-01-06T01:53:00", + "2024-01-06T01:54:00", + "2024-01-06T01:55:00", + "2024-01-06T01:56:00", + "2024-01-06T01:57:00", + "2024-01-06T01:58:00", + "2024-01-06T01:59:00", + "2024-01-06T02:00:00", + "2024-01-06T02:01:00", + "2024-01-06T02:02:00", + "2024-01-06T02:03:00", + "2024-01-06T02:04:00", + "2024-01-06T02:05:00", + "2024-01-06T02:06:00", + "2024-01-06T02:07:00", + "2024-01-06T02:08:00", + "2024-01-06T02:09:00", + "2024-01-06T02:10:00", + "2024-01-06T02:11:00", + "2024-01-06T02:12:00", + "2024-01-06T02:13:00", + "2024-01-06T02:14:00", + "2024-01-06T02:15:00", + "2024-01-06T02:16:00", + "2024-01-06T02:17:00", + "2024-01-06T02:18:00", + "2024-01-06T02:19:00", + "2024-01-06T02:20:00", + "2024-01-06T02:21:00", + "2024-01-06T02:22:00", + "2024-01-06T02:23:00", + "2024-01-06T02:24:00", + "2024-01-06T02:25:00", + "2024-01-06T02:26:00", + "2024-01-06T02:27:00", + "2024-01-06T02:28:00", + "2024-01-06T02:29:00", + "2024-01-06T02:30:00", + "2024-01-06T02:31:00", + "2024-01-06T02:32:00", + "2024-01-06T02:33:00", + "2024-01-06T02:34:00", + "2024-01-06T02:35:00", + "2024-01-06T02:36:00", + "2024-01-06T02:37:00", + "2024-01-06T02:38:00", + "2024-01-06T02:39:00", + "2024-01-06T02:40:00", + "2024-01-06T02:41:00", + "2024-01-06T02:42:00", + "2024-01-06T02:43:00", + "2024-01-06T02:44:00", + "2024-01-06T02:45:00", + "2024-01-06T02:46:00", + "2024-01-06T02:47:00", + "2024-01-06T02:48:00", + "2024-01-06T02:49:00", + "2024-01-06T02:50:00", + "2024-01-06T02:51:00", + "2024-01-06T02:52:00", + "2024-01-06T02:53:00", + "2024-01-06T02:54:00", + "2024-01-06T02:55:00", + "2024-01-06T02:56:00", + "2024-01-06T02:57:00", + "2024-01-06T02:58:00", + "2024-01-06T02:59:00", + "2024-01-06T03:00:00", + "2024-01-06T03:01:00", + "2024-01-06T03:02:00", + "2024-01-06T03:03:00", + "2024-01-06T03:04:00", + "2024-01-06T03:05:00", + "2024-01-06T03:06:00", + "2024-01-06T03:07:00", + "2024-01-06T03:08:00", + "2024-01-06T03:09:00", + "2024-01-06T03:10:00", + "2024-01-06T03:11:00", + "2024-01-06T03:12:00", + "2024-01-06T03:13:00", + "2024-01-06T03:14:00", + "2024-01-06T03:15:00", + "2024-01-06T03:16:00", + "2024-01-06T03:17:00", + "2024-01-06T03:18:00", + "2024-01-06T03:19:00", + "2024-01-06T03:20:00", + "2024-01-06T03:21:00", + "2024-01-06T03:22:00", + "2024-01-06T03:23:00", + "2024-01-06T03:24:00", + "2024-01-06T03:25:00", + "2024-01-06T03:26:00", + "2024-01-06T03:27:00", + "2024-01-06T03:28:00", + "2024-01-06T03:29:00", + "2024-01-06T03:30:00", + "2024-01-06T03:31:00", + "2024-01-06T03:32:00", + "2024-01-06T03:33:00", + "2024-01-06T03:34:00", + "2024-01-06T03:35:00", + "2024-01-06T03:36:00", + "2024-01-06T03:37:00", + "2024-01-06T03:38:00", + "2024-01-06T03:39:00", + "2024-01-06T03:40:00", + "2024-01-06T03:41:00", + "2024-01-06T03:42:00", + "2024-01-06T03:43:00", + "2024-01-06T03:44:00", + "2024-01-06T03:45:00", + "2024-01-06T03:46:00", + "2024-01-06T03:47:00", + "2024-01-06T03:48:00", + "2024-01-06T03:49:00", + "2024-01-06T03:50:00", + "2024-01-06T03:51:00", + "2024-01-06T03:52:00", + "2024-01-06T03:53:00", + "2024-01-06T03:54:00", + "2024-01-06T03:55:00", + "2024-01-06T03:56:00", + "2024-01-06T03:57:00", + "2024-01-06T03:58:00", + "2024-01-06T03:59:00", + "2024-01-06T04:00:00", + "2024-01-06T04:01:00", + "2024-01-06T04:02:00", + "2024-01-06T04:03:00", + "2024-01-06T04:04:00", + "2024-01-06T04:05:00", + "2024-01-06T04:06:00", + "2024-01-06T04:07:00", + "2024-01-06T04:08:00", + "2024-01-06T04:09:00", + "2024-01-06T04:10:00", + "2024-01-06T04:11:00", + "2024-01-06T04:12:00", + "2024-01-06T04:13:00", + "2024-01-06T04:14:00", + "2024-01-06T04:15:00", + "2024-01-06T04:16:00", + "2024-01-06T04:17:00", + "2024-01-06T04:18:00", + "2024-01-06T04:19:00", + "2024-01-06T04:20:00", + "2024-01-06T04:21:00", + "2024-01-06T04:22:00", + "2024-01-06T04:23:00", + "2024-01-06T04:24:00", + "2024-01-06T04:25:00", + "2024-01-06T04:26:00", + "2024-01-06T04:27:00", + "2024-01-06T04:28:00", + "2024-01-06T04:29:00", + "2024-01-06T04:30:00", + "2024-01-06T04:31:00", + "2024-01-06T04:32:00", + "2024-01-06T04:33:00", + "2024-01-06T04:34:00", + "2024-01-06T04:35:00", + "2024-01-06T04:36:00", + "2024-01-06T04:37:00", + "2024-01-06T04:38:00", + "2024-01-06T04:39:00", + "2024-01-06T04:40:00", + "2024-01-06T04:41:00", + "2024-01-06T04:42:00", + "2024-01-06T04:43:00", + "2024-01-06T04:44:00", + "2024-01-06T04:45:00", + "2024-01-06T04:46:00", + "2024-01-06T04:47:00", + "2024-01-06T04:48:00", + "2024-01-06T04:49:00", + "2024-01-06T04:50:00", + "2024-01-06T04:51:00", + "2024-01-06T04:52:00", + "2024-01-06T04:53:00", + "2024-01-06T04:54:00", + "2024-01-06T04:55:00", + "2024-01-06T04:56:00", + "2024-01-06T04:57:00", + "2024-01-06T04:58:00", + "2024-01-06T04:59:00", + "2024-01-06T05:00:00", + "2024-01-06T05:01:00", + "2024-01-06T05:02:00", + "2024-01-06T05:03:00", + "2024-01-06T05:04:00", + "2024-01-06T05:05:00", + "2024-01-06T05:06:00", + "2024-01-06T05:07:00", + "2024-01-06T05:08:00", + "2024-01-06T05:09:00", + "2024-01-06T05:10:00", + "2024-01-06T05:11:00", + "2024-01-06T05:12:00", + "2024-01-06T05:13:00", + "2024-01-06T05:14:00", + "2024-01-06T05:15:00", + "2024-01-06T05:16:00", + "2024-01-06T05:17:00", + "2024-01-06T05:18:00", + "2024-01-06T05:19:00", + "2024-01-06T05:20:00", + "2024-01-06T05:21:00", + "2024-01-06T05:22:00", + "2024-01-06T05:23:00", + "2024-01-06T05:24:00", + "2024-01-06T05:25:00", + "2024-01-06T05:26:00", + "2024-01-06T05:27:00", + "2024-01-06T05:28:00", + "2024-01-06T05:29:00", + "2024-01-06T05:30:00", + "2024-01-06T05:31:00", + "2024-01-06T05:32:00", + "2024-01-06T05:33:00", + "2024-01-06T05:34:00", + "2024-01-06T05:35:00", + "2024-01-06T05:36:00", + "2024-01-06T05:37:00", + "2024-01-06T05:38:00", + "2024-01-06T05:39:00", + "2024-01-06T05:40:00", + "2024-01-06T05:41:00", + "2024-01-06T05:42:00", + "2024-01-06T05:43:00", + "2024-01-06T05:44:00", + "2024-01-06T05:45:00", + "2024-01-06T05:46:00", + "2024-01-06T05:47:00", + "2024-01-06T05:48:00", + "2024-01-06T05:49:00", + "2024-01-06T05:50:00", + "2024-01-06T05:51:00", + "2024-01-06T05:52:00", + "2024-01-06T05:53:00", + "2024-01-06T05:54:00", + "2024-01-06T05:55:00", + "2024-01-06T05:56:00", + "2024-01-06T05:57:00", + "2024-01-06T05:58:00", + "2024-01-06T05:59:00", + "2024-01-06T06:00:00", + "2024-01-06T06:01:00", + "2024-01-06T06:02:00", + "2024-01-06T06:03:00", + "2024-01-06T06:04:00", + "2024-01-06T06:05:00", + "2024-01-06T06:06:00", + "2024-01-06T06:07:00", + "2024-01-06T06:08:00", + "2024-01-06T06:09:00", + "2024-01-06T06:10:00", + "2024-01-06T06:11:00", + "2024-01-06T06:12:00", + "2024-01-06T06:13:00", + "2024-01-06T06:14:00", + "2024-01-06T06:15:00", + "2024-01-06T06:16:00", + "2024-01-06T06:17:00", + "2024-01-06T06:18:00", + "2024-01-06T06:19:00", + "2024-01-06T06:20:00", + "2024-01-06T06:21:00", + "2024-01-06T06:22:00", + "2024-01-06T06:23:00", + "2024-01-06T06:24:00", + "2024-01-06T06:25:00", + "2024-01-06T06:26:00", + "2024-01-06T06:27:00", + "2024-01-06T06:28:00", + "2024-01-06T06:29:00", + "2024-01-06T06:30:00", + "2024-01-06T06:31:00", + "2024-01-06T06:32:00", + "2024-01-06T06:33:00", + "2024-01-06T06:34:00", + "2024-01-06T06:35:00", + "2024-01-06T06:36:00", + "2024-01-06T06:37:00", + "2024-01-06T06:38:00", + "2024-01-06T06:39:00", + "2024-01-06T06:40:00", + "2024-01-06T06:41:00", + "2024-01-06T06:42:00", + "2024-01-06T06:43:00", + "2024-01-06T06:44:00", + "2024-01-06T06:45:00", + "2024-01-06T06:46:00", + "2024-01-06T06:47:00", + "2024-01-06T06:48:00", + "2024-01-06T06:49:00", + "2024-01-06T06:50:00", + "2024-01-06T06:51:00", + "2024-01-06T06:52:00", + "2024-01-06T06:53:00", + "2024-01-06T06:54:00", + "2024-01-06T06:55:00", + "2024-01-06T06:56:00", + "2024-01-06T06:57:00", + "2024-01-06T06:58:00", + "2024-01-06T06:59:00", + "2024-01-06T07:00:00", + "2024-01-06T07:01:00", + "2024-01-06T07:02:00", + "2024-01-06T07:03:00", + "2024-01-06T07:04:00", + "2024-01-06T07:05:00", + "2024-01-06T07:06:00", + "2024-01-06T07:07:00", + "2024-01-06T07:08:00", + "2024-01-06T07:09:00", + "2024-01-06T07:10:00", + "2024-01-06T07:11:00", + "2024-01-06T07:12:00", + "2024-01-06T07:13:00", + "2024-01-06T07:14:00", + "2024-01-06T07:15:00", + "2024-01-06T07:16:00", + "2024-01-06T07:17:00", + "2024-01-06T07:18:00", + "2024-01-06T07:19:00", + "2024-01-06T07:20:00", + "2024-01-06T07:21:00", + "2024-01-06T07:22:00", + "2024-01-06T07:23:00", + "2024-01-06T07:24:00", + "2024-01-06T07:25:00", + "2024-01-06T07:26:00", + "2024-01-06T07:27:00", + "2024-01-06T07:28:00", + "2024-01-06T07:29:00", + "2024-01-06T07:30:00", + "2024-01-06T07:31:00", + "2024-01-06T07:32:00", + "2024-01-06T07:33:00", + "2024-01-06T07:34:00", + "2024-01-06T07:35:00", + "2024-01-06T07:36:00", + "2024-01-06T07:37:00", + "2024-01-06T07:38:00", + "2024-01-06T07:39:00", + "2024-01-06T07:40:00", + "2024-01-06T07:41:00", + "2024-01-06T07:42:00", + "2024-01-06T07:43:00", + "2024-01-06T07:44:00", + "2024-01-06T07:45:00", + "2024-01-06T07:46:00", + "2024-01-06T07:47:00", + "2024-01-06T07:48:00", + "2024-01-06T07:49:00", + "2024-01-06T07:50:00", + "2024-01-06T07:51:00", + "2024-01-06T07:52:00", + "2024-01-06T07:53:00", + "2024-01-06T07:54:00", + "2024-01-06T07:55:00", + "2024-01-06T07:56:00", + "2024-01-06T07:57:00", + "2024-01-06T07:58:00", + "2024-01-06T07:59:00", + "2024-01-06T08:00:00", + "2024-01-06T08:01:00", + "2024-01-06T08:02:00", + "2024-01-06T08:03:00", + "2024-01-06T08:04:00", + "2024-01-06T08:05:00", + "2024-01-06T08:06:00", + "2024-01-06T08:07:00", + "2024-01-06T08:08:00", + "2024-01-06T08:09:00", + "2024-01-06T08:10:00", + "2024-01-06T08:11:00", + "2024-01-06T08:12:00", + "2024-01-06T08:13:00", + "2024-01-06T08:14:00", + "2024-01-06T08:15:00", + "2024-01-06T08:16:00", + "2024-01-06T08:17:00", + "2024-01-06T08:18:00", + "2024-01-06T08:19:00", + "2024-01-06T08:20:00", + "2024-01-06T08:21:00", + "2024-01-06T08:22:00", + "2024-01-06T08:23:00", + "2024-01-06T08:24:00", + "2024-01-06T08:25:00", + "2024-01-06T08:26:00", + "2024-01-06T08:27:00", + "2024-01-06T08:28:00", + "2024-01-06T08:29:00", + "2024-01-06T08:30:00", + "2024-01-06T08:31:00", + "2024-01-06T08:32:00", + "2024-01-06T08:33:00", + "2024-01-06T08:34:00", + "2024-01-06T08:35:00", + "2024-01-06T08:36:00", + "2024-01-06T08:37:00", + "2024-01-06T08:38:00", + "2024-01-06T08:39:00", + "2024-01-06T08:40:00", + "2024-01-06T08:41:00", + "2024-01-06T08:42:00", + "2024-01-06T08:43:00", + "2024-01-06T08:44:00", + "2024-01-06T08:45:00", + "2024-01-06T08:46:00", + "2024-01-06T08:47:00", + "2024-01-06T08:48:00", + "2024-01-06T08:49:00", + "2024-01-06T08:50:00", + "2024-01-06T08:51:00", + "2024-01-06T08:52:00", + "2024-01-06T08:53:00", + "2024-01-06T08:54:00", + "2024-01-06T08:55:00", + "2024-01-06T08:56:00", + "2024-01-06T08:57:00", + "2024-01-06T08:58:00", + "2024-01-06T08:59:00", + "2024-01-06T09:00:00", + "2024-01-06T09:01:00", + "2024-01-06T09:02:00", + "2024-01-06T09:03:00", + "2024-01-06T09:04:00", + "2024-01-06T09:05:00", + "2024-01-06T09:06:00", + "2024-01-06T09:07:00", + "2024-01-06T09:08:00", + "2024-01-06T09:09:00", + "2024-01-06T09:10:00", + "2024-01-06T09:11:00", + "2024-01-06T09:12:00", + "2024-01-06T09:13:00", + "2024-01-06T09:14:00", + "2024-01-06T09:15:00", + "2024-01-06T09:16:00", + "2024-01-06T09:17:00", + "2024-01-06T09:18:00", + "2024-01-06T09:19:00", + "2024-01-06T09:20:00", + "2024-01-06T09:21:00", + "2024-01-06T09:22:00", + "2024-01-06T09:23:00", + "2024-01-06T09:24:00", + "2024-01-06T09:25:00", + "2024-01-06T09:26:00", + "2024-01-06T09:27:00", + "2024-01-06T09:28:00", + "2024-01-06T09:29:00", + "2024-01-06T09:30:00", + "2024-01-06T09:31:00", + "2024-01-06T09:32:00", + "2024-01-06T09:33:00", + "2024-01-06T09:34:00", + "2024-01-06T09:35:00", + "2024-01-06T09:36:00", + "2024-01-06T09:37:00", + "2024-01-06T09:38:00", + "2024-01-06T09:39:00", + "2024-01-06T09:40:00", + "2024-01-06T09:41:00", + "2024-01-06T09:42:00", + "2024-01-06T09:43:00", + "2024-01-06T09:44:00", + "2024-01-06T09:45:00", + "2024-01-06T09:46:00", + "2024-01-06T09:47:00", + "2024-01-06T09:48:00", + "2024-01-06T09:49:00", + "2024-01-06T09:50:00", + "2024-01-06T09:51:00", + "2024-01-06T09:52:00", + "2024-01-06T09:53:00", + "2024-01-06T09:54:00", + "2024-01-06T09:55:00", + "2024-01-06T09:56:00", + "2024-01-06T09:57:00", + "2024-01-06T09:58:00", + "2024-01-06T09:59:00", + "2024-01-06T10:00:00", + "2024-01-06T10:01:00", + "2024-01-06T10:02:00", + "2024-01-06T10:03:00", + "2024-01-06T10:04:00", + "2024-01-06T10:05:00", + "2024-01-06T10:06:00", + "2024-01-06T10:07:00", + "2024-01-06T10:08:00", + "2024-01-06T10:09:00", + "2024-01-06T10:10:00", + "2024-01-06T10:11:00", + "2024-01-06T10:12:00", + "2024-01-06T10:13:00", + "2024-01-06T10:14:00", + "2024-01-06T10:15:00", + "2024-01-06T10:16:00", + "2024-01-06T10:17:00", + "2024-01-06T10:18:00", + "2024-01-06T10:19:00", + "2024-01-06T10:20:00", + "2024-01-06T10:21:00", + "2024-01-06T10:22:00", + "2024-01-06T10:23:00", + "2024-01-06T10:24:00", + "2024-01-06T10:25:00", + "2024-01-06T10:26:00", + "2024-01-06T10:27:00", + "2024-01-06T10:28:00", + "2024-01-06T10:29:00", + "2024-01-06T10:30:00", + "2024-01-06T10:31:00", + "2024-01-06T10:32:00", + "2024-01-06T10:33:00", + "2024-01-06T10:34:00", + "2024-01-06T10:35:00", + "2024-01-06T10:36:00", + "2024-01-06T10:37:00", + "2024-01-06T10:38:00", + "2024-01-06T10:39:00", + "2024-01-06T10:40:00", + "2024-01-06T10:41:00", + "2024-01-06T10:42:00", + "2024-01-06T10:43:00", + "2024-01-06T10:44:00", + "2024-01-06T10:45:00", + "2024-01-06T10:46:00", + "2024-01-06T10:47:00", + "2024-01-06T10:48:00", + "2024-01-06T10:49:00", + "2024-01-06T10:50:00", + "2024-01-06T10:51:00", + "2024-01-06T10:52:00", + "2024-01-06T10:53:00", + "2024-01-06T10:54:00", + "2024-01-06T10:55:00", + "2024-01-06T10:56:00", + "2024-01-06T10:57:00", + "2024-01-06T10:58:00", + "2024-01-06T10:59:00", + "2024-01-06T11:00:00", + "2024-01-06T11:01:00", + "2024-01-06T11:02:00", + "2024-01-06T11:03:00", + "2024-01-06T11:04:00", + "2024-01-06T11:05:00", + "2024-01-06T11:06:00", + "2024-01-06T11:07:00", + "2024-01-06T11:08:00", + "2024-01-06T11:09:00", + "2024-01-06T11:10:00", + "2024-01-06T11:11:00", + "2024-01-06T11:12:00", + "2024-01-06T11:13:00", + "2024-01-06T11:14:00", + "2024-01-06T11:15:00", + "2024-01-06T11:16:00", + "2024-01-06T11:17:00", + "2024-01-06T11:18:00", + "2024-01-06T11:19:00", + "2024-01-06T11:20:00", + "2024-01-06T11:21:00", + "2024-01-06T11:22:00", + "2024-01-06T11:23:00", + "2024-01-06T11:24:00", + "2024-01-06T11:25:00", + "2024-01-06T11:26:00", + "2024-01-06T11:27:00", + "2024-01-06T11:28:00", + "2024-01-06T11:29:00", + "2024-01-06T11:30:00", + "2024-01-06T11:31:00", + "2024-01-06T11:32:00", + "2024-01-06T11:33:00", + "2024-01-06T11:34:00", + "2024-01-06T11:35:00", + "2024-01-06T11:36:00", + "2024-01-06T11:37:00", + "2024-01-06T11:38:00", + "2024-01-06T11:39:00", + "2024-01-06T11:40:00", + "2024-01-06T11:41:00", + "2024-01-06T11:42:00", + "2024-01-06T11:43:00", + "2024-01-06T11:44:00", + "2024-01-06T11:45:00", + "2024-01-06T11:46:00", + "2024-01-06T11:47:00", + "2024-01-06T11:48:00", + "2024-01-06T11:49:00", + "2024-01-06T11:50:00", + "2024-01-06T11:51:00", + "2024-01-06T11:52:00", + "2024-01-06T11:53:00", + "2024-01-06T11:54:00", + "2024-01-06T11:55:00", + "2024-01-06T11:56:00", + "2024-01-06T11:57:00", + "2024-01-06T11:58:00", + "2024-01-06T11:59:00", + "2024-01-06T12:00:00", + "2024-01-06T12:01:00", + "2024-01-06T12:02:00", + "2024-01-06T12:03:00", + "2024-01-06T12:04:00", + "2024-01-06T12:05:00", + "2024-01-06T12:06:00", + "2024-01-06T12:07:00", + "2024-01-06T12:08:00", + "2024-01-06T12:09:00", + "2024-01-06T12:10:00", + "2024-01-06T12:11:00", + "2024-01-06T12:12:00", + "2024-01-06T12:13:00", + "2024-01-06T12:14:00", + "2024-01-06T12:15:00", + "2024-01-06T12:16:00", + "2024-01-06T12:17:00", + "2024-01-06T12:18:00", + "2024-01-06T12:19:00", + "2024-01-06T12:20:00", + "2024-01-06T12:21:00", + "2024-01-06T12:22:00", + "2024-01-06T12:23:00", + "2024-01-06T12:24:00", + "2024-01-06T12:25:00", + "2024-01-06T12:26:00", + "2024-01-06T12:27:00", + "2024-01-06T12:28:00", + "2024-01-06T12:29:00", + "2024-01-06T12:30:00", + "2024-01-06T12:31:00", + "2024-01-06T12:32:00", + "2024-01-06T12:33:00", + "2024-01-06T12:34:00", + "2024-01-06T12:35:00", + "2024-01-06T12:36:00", + "2024-01-06T12:37:00", + "2024-01-06T12:38:00", + "2024-01-06T12:39:00", + "2024-01-06T12:40:00", + "2024-01-06T12:41:00", + "2024-01-06T12:42:00", + "2024-01-06T12:43:00", + "2024-01-06T12:44:00", + "2024-01-06T12:45:00", + "2024-01-06T12:46:00", + "2024-01-06T12:47:00", + "2024-01-06T12:48:00", + "2024-01-06T12:49:00", + "2024-01-06T12:50:00", + "2024-01-06T12:51:00", + "2024-01-06T12:52:00", + "2024-01-06T12:53:00", + "2024-01-06T12:54:00", + "2024-01-06T12:55:00", + "2024-01-06T12:56:00", + "2024-01-06T12:57:00", + "2024-01-06T12:58:00", + "2024-01-06T12:59:00", + "2024-01-06T13:00:00", + "2024-01-06T13:01:00", + "2024-01-06T13:02:00", + "2024-01-06T13:03:00", + "2024-01-06T13:04:00", + "2024-01-06T13:05:00", + "2024-01-06T13:06:00", + "2024-01-06T13:07:00", + "2024-01-06T13:08:00", + "2024-01-06T13:09:00", + "2024-01-06T13:10:00", + "2024-01-06T13:11:00", + "2024-01-06T13:12:00", + "2024-01-06T13:13:00", + "2024-01-06T13:14:00", + "2024-01-06T13:15:00", + "2024-01-06T13:16:00", + "2024-01-06T13:17:00", + "2024-01-06T13:18:00", + "2024-01-06T13:19:00", + "2024-01-06T13:20:00", + "2024-01-06T13:21:00", + "2024-01-06T13:22:00", + "2024-01-06T13:23:00", + "2024-01-06T13:24:00", + "2024-01-06T13:25:00", + "2024-01-06T13:26:00", + "2024-01-06T13:27:00", + "2024-01-06T13:28:00", + "2024-01-06T13:29:00", + "2024-01-06T13:30:00", + "2024-01-06T13:31:00", + "2024-01-06T13:32:00", + "2024-01-06T13:33:00", + "2024-01-06T13:34:00", + "2024-01-06T13:35:00", + "2024-01-06T13:36:00", + "2024-01-06T13:37:00", + "2024-01-06T13:38:00", + "2024-01-06T13:39:00", + "2024-01-06T13:40:00", + "2024-01-06T13:41:00", + "2024-01-06T13:42:00", + "2024-01-06T13:43:00", + "2024-01-06T13:44:00", + "2024-01-06T13:45:00", + "2024-01-06T13:46:00", + "2024-01-06T13:47:00", + "2024-01-06T13:48:00", + "2024-01-06T13:49:00", + "2024-01-06T13:50:00", + "2024-01-06T13:51:00", + "2024-01-06T13:52:00", + "2024-01-06T13:53:00", + "2024-01-06T13:54:00", + "2024-01-06T13:55:00", + "2024-01-06T13:56:00", + "2024-01-06T13:57:00", + "2024-01-06T13:58:00", + "2024-01-06T13:59:00", + "2024-01-06T14:00:00", + "2024-01-06T14:01:00", + "2024-01-06T14:02:00", + "2024-01-06T14:03:00", + "2024-01-06T14:04:00", + "2024-01-06T14:05:00", + "2024-01-06T14:06:00", + "2024-01-06T14:07:00", + "2024-01-06T14:08:00", + "2024-01-06T14:09:00", + "2024-01-06T14:10:00", + "2024-01-06T14:11:00", + "2024-01-06T14:12:00", + "2024-01-06T14:13:00", + "2024-01-06T14:14:00", + "2024-01-06T14:15:00", + "2024-01-06T14:16:00", + "2024-01-06T14:17:00", + "2024-01-06T14:18:00", + "2024-01-06T14:19:00", + "2024-01-06T14:20:00", + "2024-01-06T14:21:00", + "2024-01-06T14:22:00", + "2024-01-06T14:23:00", + "2024-01-06T14:24:00", + "2024-01-06T14:25:00", + "2024-01-06T14:26:00", + "2024-01-06T14:27:00", + "2024-01-06T14:28:00", + "2024-01-06T14:29:00", + "2024-01-06T14:30:00", + "2024-01-06T14:31:00", + "2024-01-06T14:32:00", + "2024-01-06T14:33:00", + "2024-01-06T14:34:00", + "2024-01-06T14:35:00", + "2024-01-06T14:36:00", + "2024-01-06T14:37:00", + "2024-01-06T14:38:00", + "2024-01-06T14:39:00", + "2024-01-06T14:40:00", + "2024-01-06T14:41:00", + "2024-01-06T14:42:00", + "2024-01-06T14:43:00", + "2024-01-06T14:44:00", + "2024-01-06T14:45:00", + "2024-01-06T14:46:00", + "2024-01-06T14:47:00", + "2024-01-06T14:48:00", + "2024-01-06T14:49:00", + "2024-01-06T14:50:00", + "2024-01-06T14:51:00", + "2024-01-06T14:52:00", + "2024-01-06T14:53:00", + "2024-01-06T14:54:00", + "2024-01-06T14:55:00", + "2024-01-06T14:56:00", + "2024-01-06T14:57:00", + "2024-01-06T14:58:00", + "2024-01-06T14:59:00", + "2024-01-06T15:00:00", + "2024-01-06T15:01:00", + "2024-01-06T15:02:00", + "2024-01-06T15:03:00", + "2024-01-06T15:04:00", + "2024-01-06T15:05:00", + "2024-01-06T15:06:00", + "2024-01-06T15:07:00", + "2024-01-06T15:08:00", + "2024-01-06T15:09:00", + "2024-01-06T15:10:00", + "2024-01-06T15:11:00", + "2024-01-06T15:12:00", + "2024-01-06T15:13:00", + "2024-01-06T15:14:00", + "2024-01-06T15:15:00", + "2024-01-06T15:16:00", + "2024-01-06T15:17:00", + "2024-01-06T15:18:00", + "2024-01-06T15:19:00", + "2024-01-06T15:20:00", + "2024-01-06T15:21:00", + "2024-01-06T15:22:00", + "2024-01-06T15:23:00", + "2024-01-06T15:24:00", + "2024-01-06T15:25:00", + "2024-01-06T15:26:00", + "2024-01-06T15:27:00", + "2024-01-06T15:28:00", + "2024-01-06T15:29:00", + "2024-01-06T15:30:00", + "2024-01-06T15:31:00", + "2024-01-06T15:32:00", + "2024-01-06T15:33:00", + "2024-01-06T15:34:00", + "2024-01-06T15:35:00", + "2024-01-06T15:36:00", + "2024-01-06T15:37:00", + "2024-01-06T15:38:00", + "2024-01-06T15:39:00", + "2024-01-06T15:40:00", + "2024-01-06T15:41:00", + "2024-01-06T15:42:00", + "2024-01-06T15:43:00", + "2024-01-06T15:44:00", + "2024-01-06T15:45:00", + "2024-01-06T15:46:00", + "2024-01-06T15:47:00", + "2024-01-06T15:48:00", + "2024-01-06T15:49:00", + "2024-01-06T15:50:00", + "2024-01-06T15:51:00", + "2024-01-06T15:52:00", + "2024-01-06T15:53:00", + "2024-01-06T15:54:00", + "2024-01-06T15:55:00", + "2024-01-06T15:56:00", + "2024-01-06T15:57:00", + "2024-01-06T15:58:00", + "2024-01-06T15:59:00", + "2024-01-06T16:00:00", + "2024-01-06T16:01:00", + "2024-01-06T16:02:00", + "2024-01-06T16:03:00", + "2024-01-06T16:04:00", + "2024-01-06T16:05:00", + "2024-01-06T16:06:00", + "2024-01-06T16:07:00", + "2024-01-06T16:08:00", + "2024-01-06T16:09:00", + "2024-01-06T16:10:00", + "2024-01-06T16:11:00", + "2024-01-06T16:12:00", + "2024-01-06T16:13:00", + "2024-01-06T16:14:00", + "2024-01-06T16:15:00", + "2024-01-06T16:16:00", + "2024-01-06T16:17:00", + "2024-01-06T16:18:00", + "2024-01-06T16:19:00", + "2024-01-06T16:20:00", + "2024-01-06T16:21:00", + "2024-01-06T16:22:00", + "2024-01-06T16:23:00", + "2024-01-06T16:24:00", + "2024-01-06T16:25:00", + "2024-01-06T16:26:00", + "2024-01-06T16:27:00", + "2024-01-06T16:28:00", + "2024-01-06T16:29:00", + "2024-01-06T16:30:00", + "2024-01-06T16:31:00", + "2024-01-06T16:32:00", + "2024-01-06T16:33:00", + "2024-01-06T16:34:00", + "2024-01-06T16:35:00", + "2024-01-06T16:36:00", + "2024-01-06T16:37:00", + "2024-01-06T16:38:00", + "2024-01-06T16:39:00", + "2024-01-06T16:40:00", + "2024-01-06T16:41:00", + "2024-01-06T16:42:00", + "2024-01-06T16:43:00", + "2024-01-06T16:44:00", + "2024-01-06T16:45:00", + "2024-01-06T16:46:00", + "2024-01-06T16:47:00", + "2024-01-06T16:48:00", + "2024-01-06T16:49:00", + "2024-01-06T16:50:00", + "2024-01-06T16:51:00", + "2024-01-06T16:52:00", + "2024-01-06T16:53:00", + "2024-01-06T16:54:00", + "2024-01-06T16:55:00", + "2024-01-06T16:56:00", + "2024-01-06T16:57:00", + "2024-01-06T16:58:00", + "2024-01-06T16:59:00", + "2024-01-06T17:00:00", + "2024-01-06T17:01:00", + "2024-01-06T17:02:00", + "2024-01-06T17:03:00", + "2024-01-06T17:04:00", + "2024-01-06T17:05:00", + "2024-01-06T17:06:00", + "2024-01-06T17:07:00", + "2024-01-06T17:08:00", + "2024-01-06T17:09:00", + "2024-01-06T17:10:00", + "2024-01-06T17:11:00", + "2024-01-06T17:12:00", + "2024-01-06T17:13:00", + "2024-01-06T17:14:00", + "2024-01-06T17:15:00", + "2024-01-06T17:16:00", + "2024-01-06T17:17:00", + "2024-01-06T17:18:00", + "2024-01-06T17:19:00", + "2024-01-06T17:20:00", + "2024-01-06T17:21:00", + "2024-01-06T17:22:00", + "2024-01-06T17:23:00", + "2024-01-06T17:24:00", + "2024-01-06T17:25:00", + "2024-01-06T17:26:00", + "2024-01-06T17:27:00", + "2024-01-06T17:28:00", + "2024-01-06T17:29:00", + "2024-01-06T17:30:00", + "2024-01-06T17:31:00", + "2024-01-06T17:32:00", + "2024-01-06T17:33:00", + "2024-01-06T17:34:00", + "2024-01-06T17:35:00", + "2024-01-06T17:36:00", + "2024-01-06T17:37:00", + "2024-01-06T17:38:00", + "2024-01-06T17:39:00", + "2024-01-06T17:40:00", + "2024-01-06T17:41:00", + "2024-01-06T17:42:00", + "2024-01-06T17:43:00", + "2024-01-06T17:44:00", + "2024-01-06T17:45:00", + "2024-01-06T17:46:00", + "2024-01-06T17:47:00", + "2024-01-06T17:48:00", + "2024-01-06T17:49:00", + "2024-01-06T17:50:00", + "2024-01-06T17:51:00", + "2024-01-06T17:52:00", + "2024-01-06T17:53:00", + "2024-01-06T17:54:00", + "2024-01-06T17:55:00", + "2024-01-06T17:56:00", + "2024-01-06T17:57:00", + "2024-01-06T17:58:00", + "2024-01-06T17:59:00", + "2024-01-06T18:00:00", + "2024-01-06T18:01:00", + "2024-01-06T18:02:00", + "2024-01-06T18:03:00", + "2024-01-06T18:04:00", + "2024-01-06T18:05:00", + "2024-01-06T18:06:00", + "2024-01-06T18:07:00", + "2024-01-06T18:08:00", + "2024-01-06T18:09:00", + "2024-01-06T18:10:00", + "2024-01-06T18:11:00", + "2024-01-06T18:12:00", + "2024-01-06T18:13:00", + "2024-01-06T18:14:00", + "2024-01-06T18:15:00", + "2024-01-06T18:16:00", + "2024-01-06T18:17:00", + "2024-01-06T18:18:00", + "2024-01-06T18:19:00", + "2024-01-06T18:20:00", + "2024-01-06T18:21:00", + "2024-01-06T18:22:00", + "2024-01-06T18:23:00", + "2024-01-06T18:24:00", + "2024-01-06T18:25:00", + "2024-01-06T18:26:00", + "2024-01-06T18:27:00", + "2024-01-06T18:28:00", + "2024-01-06T18:29:00", + "2024-01-06T18:30:00", + "2024-01-06T18:31:00", + "2024-01-06T18:32:00", + "2024-01-06T18:33:00", + "2024-01-06T18:34:00", + "2024-01-06T18:35:00", + "2024-01-06T18:36:00", + "2024-01-06T18:37:00", + "2024-01-06T18:38:00", + "2024-01-06T18:39:00", + "2024-01-06T18:40:00", + "2024-01-06T18:41:00", + "2024-01-06T18:42:00", + "2024-01-06T18:43:00", + "2024-01-06T18:44:00", + "2024-01-06T18:45:00", + "2024-01-06T18:46:00", + "2024-01-06T18:47:00", + "2024-01-06T18:48:00", + "2024-01-06T18:49:00", + "2024-01-06T18:50:00", + "2024-01-06T18:51:00", + "2024-01-06T18:52:00", + "2024-01-06T18:53:00", + "2024-01-06T18:54:00", + "2024-01-06T18:55:00", + "2024-01-06T18:56:00", + "2024-01-06T18:57:00", + "2024-01-06T18:58:00", + "2024-01-06T18:59:00", + "2024-01-06T19:00:00", + "2024-01-06T19:01:00", + "2024-01-06T19:02:00", + "2024-01-06T19:03:00", + "2024-01-06T19:04:00", + "2024-01-06T19:05:00", + "2024-01-06T19:06:00", + "2024-01-06T19:07:00", + "2024-01-06T19:08:00", + "2024-01-06T19:09:00", + "2024-01-06T19:10:00", + "2024-01-06T19:11:00", + "2024-01-06T19:12:00", + "2024-01-06T19:13:00", + "2024-01-06T19:14:00", + "2024-01-06T19:15:00", + "2024-01-06T19:16:00", + "2024-01-06T19:17:00", + "2024-01-06T19:18:00", + "2024-01-06T19:19:00", + "2024-01-06T19:20:00", + "2024-01-06T19:21:00", + "2024-01-06T19:22:00", + "2024-01-06T19:23:00", + "2024-01-06T19:24:00", + "2024-01-06T19:25:00", + "2024-01-06T19:26:00", + "2024-01-06T19:27:00", + "2024-01-06T19:28:00", + "2024-01-06T19:29:00", + "2024-01-06T19:30:00", + "2024-01-06T19:31:00", + "2024-01-06T19:32:00", + "2024-01-06T19:33:00", + "2024-01-06T19:34:00", + "2024-01-06T19:35:00", + "2024-01-06T19:36:00", + "2024-01-06T19:37:00", + "2024-01-06T19:38:00", + "2024-01-06T19:39:00", + "2024-01-06T19:40:00", + "2024-01-06T19:41:00", + "2024-01-06T19:42:00", + "2024-01-06T19:43:00", + "2024-01-06T19:44:00", + "2024-01-06T19:45:00", + "2024-01-06T19:46:00", + "2024-01-06T19:47:00", + "2024-01-06T19:48:00", + "2024-01-06T19:49:00", + "2024-01-06T19:50:00", + "2024-01-06T19:51:00", + "2024-01-06T19:52:00", + "2024-01-06T19:53:00", + "2024-01-06T19:54:00", + "2024-01-06T19:55:00", + "2024-01-06T19:56:00", + "2024-01-06T19:57:00", + "2024-01-06T19:58:00", + "2024-01-06T19:59:00", + "2024-01-06T20:00:00", + "2024-01-06T20:01:00", + "2024-01-06T20:02:00", + "2024-01-06T20:03:00", + "2024-01-06T20:04:00", + "2024-01-06T20:05:00", + "2024-01-06T20:06:00", + "2024-01-06T20:07:00", + "2024-01-06T20:08:00", + "2024-01-06T20:09:00", + "2024-01-06T20:10:00", + "2024-01-06T20:11:00", + "2024-01-06T20:12:00", + "2024-01-06T20:13:00", + "2024-01-06T20:14:00", + "2024-01-06T20:15:00", + "2024-01-06T20:16:00", + "2024-01-06T20:17:00", + "2024-01-06T20:18:00", + "2024-01-06T20:19:00", + "2024-01-06T20:20:00", + "2024-01-06T20:21:00", + "2024-01-06T20:22:00", + "2024-01-06T20:23:00", + "2024-01-06T20:24:00", + "2024-01-06T20:25:00", + "2024-01-06T20:26:00", + "2024-01-06T20:27:00", + "2024-01-06T20:28:00", + "2024-01-06T20:29:00", + "2024-01-06T20:30:00", + "2024-01-06T20:31:00", + "2024-01-06T20:32:00", + "2024-01-06T20:33:00", + "2024-01-06T20:34:00", + "2024-01-06T20:35:00", + "2024-01-06T20:36:00", + "2024-01-06T20:37:00", + "2024-01-06T20:38:00", + "2024-01-06T20:39:00", + "2024-01-06T20:40:00", + "2024-01-06T20:41:00", + "2024-01-06T20:42:00", + "2024-01-06T20:43:00", + "2024-01-06T20:44:00", + "2024-01-06T20:45:00", + "2024-01-06T20:46:00", + "2024-01-06T20:47:00", + "2024-01-06T20:48:00", + "2024-01-06T20:49:00", + "2024-01-06T20:50:00", + "2024-01-06T20:51:00", + "2024-01-06T20:52:00", + "2024-01-06T20:53:00", + "2024-01-06T20:54:00", + "2024-01-06T20:55:00", + "2024-01-06T20:56:00", + "2024-01-06T20:57:00", + "2024-01-06T20:58:00", + "2024-01-06T20:59:00", + "2024-01-06T21:00:00", + "2024-01-06T21:01:00", + "2024-01-06T21:02:00", + "2024-01-06T21:03:00", + "2024-01-06T21:04:00", + "2024-01-06T21:05:00", + "2024-01-06T21:06:00", + "2024-01-06T21:07:00", + "2024-01-06T21:08:00", + "2024-01-06T21:09:00", + "2024-01-06T21:10:00", + "2024-01-06T21:11:00", + "2024-01-06T21:12:00", + "2024-01-06T21:13:00", + "2024-01-06T21:14:00", + "2024-01-06T21:15:00", + "2024-01-06T21:16:00", + "2024-01-06T21:17:00", + "2024-01-06T21:18:00", + "2024-01-06T21:19:00", + "2024-01-06T21:20:00", + "2024-01-06T21:21:00", + "2024-01-06T21:22:00", + "2024-01-06T21:23:00", + "2024-01-06T21:24:00", + "2024-01-06T21:25:00", + "2024-01-06T21:26:00", + "2024-01-06T21:27:00", + "2024-01-06T21:28:00", + "2024-01-06T21:29:00", + "2024-01-06T21:30:00", + "2024-01-06T21:31:00", + "2024-01-06T21:32:00", + "2024-01-06T21:33:00", + "2024-01-06T21:34:00", + "2024-01-06T21:35:00", + "2024-01-06T21:36:00", + "2024-01-06T21:37:00", + "2024-01-06T21:38:00", + "2024-01-06T21:39:00", + "2024-01-06T21:40:00", + "2024-01-06T21:41:00", + "2024-01-06T21:42:00", + "2024-01-06T21:43:00", + "2024-01-06T21:44:00", + "2024-01-06T21:45:00", + "2024-01-06T21:46:00", + "2024-01-06T21:47:00", + "2024-01-06T21:48:00", + "2024-01-06T21:49:00", + "2024-01-06T21:50:00", + "2024-01-06T21:51:00", + "2024-01-06T21:52:00", + "2024-01-06T21:53:00", + "2024-01-06T21:54:00", + "2024-01-06T21:55:00", + "2024-01-06T21:56:00", + "2024-01-06T21:57:00", + "2024-01-06T21:58:00", + "2024-01-06T21:59:00", + "2024-01-06T22:00:00", + "2024-01-06T22:01:00", + "2024-01-06T22:02:00", + "2024-01-06T22:03:00", + "2024-01-06T22:04:00", + "2024-01-06T22:05:00", + "2024-01-06T22:06:00", + "2024-01-06T22:07:00", + "2024-01-06T22:08:00", + "2024-01-06T22:09:00", + "2024-01-06T22:10:00", + "2024-01-06T22:11:00", + "2024-01-06T22:12:00", + "2024-01-06T22:13:00", + "2024-01-06T22:14:00", + "2024-01-06T22:15:00", + "2024-01-06T22:16:00", + "2024-01-06T22:17:00", + "2024-01-06T22:18:00", + "2024-01-06T22:19:00", + "2024-01-06T22:20:00", + "2024-01-06T22:21:00", + "2024-01-06T22:22:00", + "2024-01-06T22:23:00", + "2024-01-06T22:24:00", + "2024-01-06T22:25:00", + "2024-01-06T22:26:00", + "2024-01-06T22:27:00", + "2024-01-06T22:28:00", + "2024-01-06T22:29:00", + "2024-01-06T22:30:00", + "2024-01-06T22:31:00", + "2024-01-06T22:32:00", + "2024-01-06T22:33:00", + "2024-01-06T22:34:00", + "2024-01-06T22:35:00", + "2024-01-06T22:36:00", + "2024-01-06T22:37:00", + "2024-01-06T22:38:00", + "2024-01-06T22:39:00", + "2024-01-06T22:40:00", + "2024-01-06T22:41:00", + "2024-01-06T22:42:00", + "2024-01-06T22:43:00", + "2024-01-06T22:44:00", + "2024-01-06T22:45:00", + "2024-01-06T22:46:00", + "2024-01-06T22:47:00", + "2024-01-06T22:48:00", + "2024-01-06T22:49:00", + "2024-01-06T22:50:00", + "2024-01-06T22:51:00", + "2024-01-06T22:52:00", + "2024-01-06T22:53:00", + "2024-01-06T22:54:00", + "2024-01-06T22:55:00", + "2024-01-06T22:56:00", + "2024-01-06T22:57:00", + "2024-01-06T22:58:00", + "2024-01-06T22:59:00", + "2024-01-06T23:00:00", + "2024-01-06T23:01:00", + "2024-01-06T23:02:00", + "2024-01-06T23:03:00", + "2024-01-06T23:04:00", + "2024-01-06T23:05:00", + "2024-01-06T23:06:00", + "2024-01-06T23:07:00", + "2024-01-06T23:08:00", + "2024-01-06T23:09:00", + "2024-01-06T23:10:00", + "2024-01-06T23:11:00", + "2024-01-06T23:12:00", + "2024-01-06T23:13:00", + "2024-01-06T23:14:00", + "2024-01-06T23:15:00", + "2024-01-06T23:16:00", + "2024-01-06T23:17:00", + "2024-01-06T23:18:00", + "2024-01-06T23:19:00", + "2024-01-06T23:20:00", + "2024-01-06T23:21:00", + "2024-01-06T23:22:00", + "2024-01-06T23:23:00", + "2024-01-06T23:24:00", + "2024-01-06T23:25:00", + "2024-01-06T23:26:00", + "2024-01-06T23:27:00", + "2024-01-06T23:28:00", + "2024-01-06T23:29:00", + "2024-01-06T23:30:00", + "2024-01-06T23:31:00", + "2024-01-06T23:32:00", + "2024-01-06T23:33:00", + "2024-01-06T23:34:00", + "2024-01-06T23:35:00", + "2024-01-06T23:36:00", + "2024-01-06T23:37:00", + "2024-01-06T23:38:00", + "2024-01-06T23:39:00", + "2024-01-06T23:40:00", + "2024-01-06T23:41:00", + "2024-01-06T23:42:00", + "2024-01-06T23:43:00", + "2024-01-06T23:44:00", + "2024-01-06T23:45:00", + "2024-01-06T23:46:00", + "2024-01-06T23:47:00", + "2024-01-06T23:48:00", + "2024-01-06T23:49:00", + "2024-01-06T23:50:00", + "2024-01-06T23:51:00", + "2024-01-06T23:52:00", + "2024-01-06T23:53:00", + "2024-01-06T23:54:00", + "2024-01-06T23:55:00", + "2024-01-06T23:56:00", + "2024-01-06T23:57:00", + "2024-01-06T23:58:00", + "2024-01-06T23:59:00", + "2024-01-07T00:00:00", + "2024-01-07T00:01:00", + "2024-01-07T00:02:00", + "2024-01-07T00:03:00", + "2024-01-07T00:04:00", + "2024-01-07T00:05:00", + "2024-01-07T00:06:00", + "2024-01-07T00:07:00", + "2024-01-07T00:08:00", + "2024-01-07T00:09:00", + "2024-01-07T00:10:00", + "2024-01-07T00:11:00", + "2024-01-07T00:12:00", + "2024-01-07T00:13:00", + "2024-01-07T00:14:00", + "2024-01-07T00:15:00", + "2024-01-07T00:16:00", + "2024-01-07T00:17:00", + "2024-01-07T00:18:00", + "2024-01-07T00:19:00", + "2024-01-07T00:20:00", + "2024-01-07T00:21:00", + "2024-01-07T00:22:00", + "2024-01-07T00:23:00", + "2024-01-07T00:24:00", + "2024-01-07T00:25:00", + "2024-01-07T00:26:00", + "2024-01-07T00:27:00", + "2024-01-07T00:28:00", + "2024-01-07T00:29:00", + "2024-01-07T00:30:00", + "2024-01-07T00:31:00", + "2024-01-07T00:32:00", + "2024-01-07T00:33:00", + "2024-01-07T00:34:00", + "2024-01-07T00:35:00", + "2024-01-07T00:36:00", + "2024-01-07T00:37:00", + "2024-01-07T00:38:00", + "2024-01-07T00:39:00", + "2024-01-07T00:40:00", + "2024-01-07T00:41:00", + "2024-01-07T00:42:00", + "2024-01-07T00:43:00", + "2024-01-07T00:44:00", + "2024-01-07T00:45:00", + "2024-01-07T00:46:00", + "2024-01-07T00:47:00", + "2024-01-07T00:48:00", + "2024-01-07T00:49:00", + "2024-01-07T00:50:00", + "2024-01-07T00:51:00", + "2024-01-07T00:52:00", + "2024-01-07T00:53:00", + "2024-01-07T00:54:00", + "2024-01-07T00:55:00", + "2024-01-07T00:56:00", + "2024-01-07T00:57:00", + "2024-01-07T00:58:00", + "2024-01-07T00:59:00", + "2024-01-07T01:00:00", + "2024-01-07T01:01:00", + "2024-01-07T01:02:00", + "2024-01-07T01:03:00", + "2024-01-07T01:04:00", + "2024-01-07T01:05:00", + "2024-01-07T01:06:00", + "2024-01-07T01:07:00", + "2024-01-07T01:08:00", + "2024-01-07T01:09:00", + "2024-01-07T01:10:00", + "2024-01-07T01:11:00", + "2024-01-07T01:12:00", + "2024-01-07T01:13:00", + "2024-01-07T01:14:00", + "2024-01-07T01:15:00", + "2024-01-07T01:16:00", + "2024-01-07T01:17:00", + "2024-01-07T01:18:00", + "2024-01-07T01:19:00", + "2024-01-07T01:20:00", + "2024-01-07T01:21:00", + "2024-01-07T01:22:00", + "2024-01-07T01:23:00", + "2024-01-07T01:24:00", + "2024-01-07T01:25:00", + "2024-01-07T01:26:00", + "2024-01-07T01:27:00", + "2024-01-07T01:28:00", + "2024-01-07T01:29:00", + "2024-01-07T01:30:00", + "2024-01-07T01:31:00", + "2024-01-07T01:32:00", + "2024-01-07T01:33:00", + "2024-01-07T01:34:00", + "2024-01-07T01:35:00", + "2024-01-07T01:36:00", + "2024-01-07T01:37:00", + "2024-01-07T01:38:00", + "2024-01-07T01:39:00", + "2024-01-07T01:40:00", + "2024-01-07T01:41:00", + "2024-01-07T01:42:00", + "2024-01-07T01:43:00", + "2024-01-07T01:44:00", + "2024-01-07T01:45:00", + "2024-01-07T01:46:00", + "2024-01-07T01:47:00", + "2024-01-07T01:48:00", + "2024-01-07T01:49:00", + "2024-01-07T01:50:00", + "2024-01-07T01:51:00", + "2024-01-07T01:52:00", + "2024-01-07T01:53:00", + "2024-01-07T01:54:00", + "2024-01-07T01:55:00", + "2024-01-07T01:56:00", + "2024-01-07T01:57:00", + "2024-01-07T01:58:00", + "2024-01-07T01:59:00", + "2024-01-07T02:00:00", + "2024-01-07T02:01:00", + "2024-01-07T02:02:00", + "2024-01-07T02:03:00", + "2024-01-07T02:04:00", + "2024-01-07T02:05:00", + "2024-01-07T02:06:00", + "2024-01-07T02:07:00", + "2024-01-07T02:08:00", + "2024-01-07T02:09:00", + "2024-01-07T02:10:00", + "2024-01-07T02:11:00", + "2024-01-07T02:12:00", + "2024-01-07T02:13:00", + "2024-01-07T02:14:00", + "2024-01-07T02:15:00", + "2024-01-07T02:16:00", + "2024-01-07T02:17:00", + "2024-01-07T02:18:00", + "2024-01-07T02:19:00", + "2024-01-07T02:20:00", + "2024-01-07T02:21:00", + "2024-01-07T02:22:00", + "2024-01-07T02:23:00", + "2024-01-07T02:24:00", + "2024-01-07T02:25:00", + "2024-01-07T02:26:00", + "2024-01-07T02:27:00", + "2024-01-07T02:28:00", + "2024-01-07T02:29:00", + "2024-01-07T02:30:00", + "2024-01-07T02:31:00", + "2024-01-07T02:32:00", + "2024-01-07T02:33:00", + "2024-01-07T02:34:00", + "2024-01-07T02:35:00", + "2024-01-07T02:36:00", + "2024-01-07T02:37:00", + "2024-01-07T02:38:00", + "2024-01-07T02:39:00", + "2024-01-07T02:40:00", + "2024-01-07T02:41:00", + "2024-01-07T02:42:00", + "2024-01-07T02:43:00", + "2024-01-07T02:44:00", + "2024-01-07T02:45:00", + "2024-01-07T02:46:00", + "2024-01-07T02:47:00", + "2024-01-07T02:48:00", + "2024-01-07T02:49:00", + "2024-01-07T02:50:00", + "2024-01-07T02:51:00", + "2024-01-07T02:52:00", + "2024-01-07T02:53:00", + "2024-01-07T02:54:00", + "2024-01-07T02:55:00", + "2024-01-07T02:56:00", + "2024-01-07T02:57:00", + "2024-01-07T02:58:00", + "2024-01-07T02:59:00", + "2024-01-07T03:00:00", + "2024-01-07T03:01:00", + "2024-01-07T03:02:00", + "2024-01-07T03:03:00", + "2024-01-07T03:04:00", + "2024-01-07T03:05:00", + "2024-01-07T03:06:00", + "2024-01-07T03:07:00", + "2024-01-07T03:08:00", + "2024-01-07T03:09:00", + "2024-01-07T03:10:00", + "2024-01-07T03:11:00", + "2024-01-07T03:12:00", + "2024-01-07T03:13:00", + "2024-01-07T03:14:00", + "2024-01-07T03:15:00", + "2024-01-07T03:16:00", + "2024-01-07T03:17:00", + "2024-01-07T03:18:00", + "2024-01-07T03:19:00", + "2024-01-07T03:20:00", + "2024-01-07T03:21:00", + "2024-01-07T03:22:00", + "2024-01-07T03:23:00", + "2024-01-07T03:24:00", + "2024-01-07T03:25:00", + "2024-01-07T03:26:00", + "2024-01-07T03:27:00", + "2024-01-07T03:28:00", + "2024-01-07T03:29:00", + "2024-01-07T03:30:00", + "2024-01-07T03:31:00", + "2024-01-07T03:32:00", + "2024-01-07T03:33:00", + "2024-01-07T03:34:00", + "2024-01-07T03:35:00", + "2024-01-07T03:36:00", + "2024-01-07T03:37:00", + "2024-01-07T03:38:00", + "2024-01-07T03:39:00", + "2024-01-07T03:40:00", + "2024-01-07T03:41:00", + "2024-01-07T03:42:00", + "2024-01-07T03:43:00", + "2024-01-07T03:44:00", + "2024-01-07T03:45:00", + "2024-01-07T03:46:00", + "2024-01-07T03:47:00", + "2024-01-07T03:48:00", + "2024-01-07T03:49:00", + "2024-01-07T03:50:00", + "2024-01-07T03:51:00", + "2024-01-07T03:52:00", + "2024-01-07T03:53:00", + "2024-01-07T03:54:00", + "2024-01-07T03:55:00", + "2024-01-07T03:56:00", + "2024-01-07T03:57:00", + "2024-01-07T03:58:00", + "2024-01-07T03:59:00", + "2024-01-07T04:00:00", + "2024-01-07T04:01:00", + "2024-01-07T04:02:00", + "2024-01-07T04:03:00", + "2024-01-07T04:04:00", + "2024-01-07T04:05:00", + "2024-01-07T04:06:00", + "2024-01-07T04:07:00", + "2024-01-07T04:08:00", + "2024-01-07T04:09:00", + "2024-01-07T04:10:00", + "2024-01-07T04:11:00", + "2024-01-07T04:12:00", + "2024-01-07T04:13:00", + "2024-01-07T04:14:00", + "2024-01-07T04:15:00", + "2024-01-07T04:16:00", + "2024-01-07T04:17:00", + "2024-01-07T04:18:00", + "2024-01-07T04:19:00", + "2024-01-07T04:20:00", + "2024-01-07T04:21:00", + "2024-01-07T04:22:00", + "2024-01-07T04:23:00", + "2024-01-07T04:24:00", + "2024-01-07T04:25:00", + "2024-01-07T04:26:00", + "2024-01-07T04:27:00", + "2024-01-07T04:28:00", + "2024-01-07T04:29:00", + "2024-01-07T04:30:00", + "2024-01-07T04:31:00", + "2024-01-07T04:32:00", + "2024-01-07T04:33:00", + "2024-01-07T04:34:00", + "2024-01-07T04:35:00", + "2024-01-07T04:36:00", + "2024-01-07T04:37:00", + "2024-01-07T04:38:00", + "2024-01-07T04:39:00", + "2024-01-07T04:40:00", + "2024-01-07T04:41:00", + "2024-01-07T04:42:00", + "2024-01-07T04:43:00", + "2024-01-07T04:44:00", + "2024-01-07T04:45:00", + "2024-01-07T04:46:00", + "2024-01-07T04:47:00", + "2024-01-07T04:48:00", + "2024-01-07T04:49:00", + "2024-01-07T04:50:00", + "2024-01-07T04:51:00", + "2024-01-07T04:52:00", + "2024-01-07T04:53:00", + "2024-01-07T04:54:00", + "2024-01-07T04:55:00", + "2024-01-07T04:56:00", + "2024-01-07T04:57:00", + "2024-01-07T04:58:00", + "2024-01-07T04:59:00", + "2024-01-07T05:00:00", + "2024-01-07T05:01:00", + "2024-01-07T05:02:00", + "2024-01-07T05:03:00", + "2024-01-07T05:04:00", + "2024-01-07T05:05:00", + "2024-01-07T05:06:00", + "2024-01-07T05:07:00", + "2024-01-07T05:08:00", + "2024-01-07T05:09:00", + "2024-01-07T05:10:00", + "2024-01-07T05:11:00", + "2024-01-07T05:12:00", + "2024-01-07T05:13:00", + "2024-01-07T05:14:00", + "2024-01-07T05:15:00", + "2024-01-07T05:16:00", + "2024-01-07T05:17:00", + "2024-01-07T05:18:00", + "2024-01-07T05:19:00", + "2024-01-07T05:20:00", + "2024-01-07T05:21:00", + "2024-01-07T05:22:00", + "2024-01-07T05:23:00", + "2024-01-07T05:24:00", + "2024-01-07T05:25:00", + "2024-01-07T05:26:00", + "2024-01-07T05:27:00", + "2024-01-07T05:28:00", + "2024-01-07T05:29:00", + "2024-01-07T05:30:00", + "2024-01-07T05:31:00", + "2024-01-07T05:32:00", + "2024-01-07T05:33:00", + "2024-01-07T05:34:00", + "2024-01-07T05:35:00", + "2024-01-07T05:36:00", + "2024-01-07T05:37:00", + "2024-01-07T05:38:00", + "2024-01-07T05:39:00", + "2024-01-07T05:40:00", + "2024-01-07T05:41:00", + "2024-01-07T05:42:00", + "2024-01-07T05:43:00", + "2024-01-07T05:44:00", + "2024-01-07T05:45:00", + "2024-01-07T05:46:00", + "2024-01-07T05:47:00", + "2024-01-07T05:48:00", + "2024-01-07T05:49:00", + "2024-01-07T05:50:00", + "2024-01-07T05:51:00", + "2024-01-07T05:52:00", + "2024-01-07T05:53:00", + "2024-01-07T05:54:00", + "2024-01-07T05:55:00", + "2024-01-07T05:56:00", + "2024-01-07T05:57:00", + "2024-01-07T05:58:00", + "2024-01-07T05:59:00", + "2024-01-07T06:00:00", + "2024-01-07T06:01:00", + "2024-01-07T06:02:00", + "2024-01-07T06:03:00", + "2024-01-07T06:04:00", + "2024-01-07T06:05:00", + "2024-01-07T06:06:00", + "2024-01-07T06:07:00", + "2024-01-07T06:08:00", + "2024-01-07T06:09:00", + "2024-01-07T06:10:00", + "2024-01-07T06:11:00", + "2024-01-07T06:12:00", + "2024-01-07T06:13:00", + "2024-01-07T06:14:00", + "2024-01-07T06:15:00", + "2024-01-07T06:16:00", + "2024-01-07T06:17:00", + "2024-01-07T06:18:00", + "2024-01-07T06:19:00", + "2024-01-07T06:20:00", + "2024-01-07T06:21:00", + "2024-01-07T06:22:00", + "2024-01-07T06:23:00", + "2024-01-07T06:24:00", + "2024-01-07T06:25:00", + "2024-01-07T06:26:00", + "2024-01-07T06:27:00", + "2024-01-07T06:28:00", + "2024-01-07T06:29:00", + "2024-01-07T06:30:00", + "2024-01-07T06:31:00", + "2024-01-07T06:32:00", + "2024-01-07T06:33:00", + "2024-01-07T06:34:00", + "2024-01-07T06:35:00", + "2024-01-07T06:36:00", + "2024-01-07T06:37:00", + "2024-01-07T06:38:00", + "2024-01-07T06:39:00", + "2024-01-07T06:40:00", + "2024-01-07T06:41:00", + "2024-01-07T06:42:00", + "2024-01-07T06:43:00", + "2024-01-07T06:44:00", + "2024-01-07T06:45:00", + "2024-01-07T06:46:00", + "2024-01-07T06:47:00", + "2024-01-07T06:48:00", + "2024-01-07T06:49:00", + "2024-01-07T06:50:00", + "2024-01-07T06:51:00", + "2024-01-07T06:52:00", + "2024-01-07T06:53:00", + "2024-01-07T06:54:00", + "2024-01-07T06:55:00", + "2024-01-07T06:56:00", + "2024-01-07T06:57:00", + "2024-01-07T06:58:00", + "2024-01-07T06:59:00", + "2024-01-07T07:00:00", + "2024-01-07T07:01:00", + "2024-01-07T07:02:00", + "2024-01-07T07:03:00", + "2024-01-07T07:04:00", + "2024-01-07T07:05:00", + "2024-01-07T07:06:00", + "2024-01-07T07:07:00", + "2024-01-07T07:08:00", + "2024-01-07T07:09:00", + "2024-01-07T07:10:00", + "2024-01-07T07:11:00", + "2024-01-07T07:12:00", + "2024-01-07T07:13:00", + "2024-01-07T07:14:00", + "2024-01-07T07:15:00", + "2024-01-07T07:16:00", + "2024-01-07T07:17:00", + "2024-01-07T07:18:00", + "2024-01-07T07:19:00", + "2024-01-07T07:20:00", + "2024-01-07T07:21:00", + "2024-01-07T07:22:00", + "2024-01-07T07:23:00", + "2024-01-07T07:24:00", + "2024-01-07T07:25:00", + "2024-01-07T07:26:00", + "2024-01-07T07:27:00", + "2024-01-07T07:28:00", + "2024-01-07T07:29:00", + "2024-01-07T07:30:00", + "2024-01-07T07:31:00", + "2024-01-07T07:32:00", + "2024-01-07T07:33:00", + "2024-01-07T07:34:00", + "2024-01-07T07:35:00", + "2024-01-07T07:36:00", + "2024-01-07T07:37:00", + "2024-01-07T07:38:00", + "2024-01-07T07:39:00", + "2024-01-07T07:40:00", + "2024-01-07T07:41:00", + "2024-01-07T07:42:00", + "2024-01-07T07:43:00", + "2024-01-07T07:44:00", + "2024-01-07T07:45:00", + "2024-01-07T07:46:00", + "2024-01-07T07:47:00", + "2024-01-07T07:48:00", + "2024-01-07T07:49:00", + "2024-01-07T07:50:00", + "2024-01-07T07:51:00", + "2024-01-07T07:52:00", + "2024-01-07T07:53:00", + "2024-01-07T07:54:00", + "2024-01-07T07:55:00", + "2024-01-07T07:56:00", + "2024-01-07T07:57:00", + "2024-01-07T07:58:00", + "2024-01-07T07:59:00", + "2024-01-07T08:00:00", + "2024-01-07T08:01:00", + "2024-01-07T08:02:00", + "2024-01-07T08:03:00", + "2024-01-07T08:04:00", + "2024-01-07T08:05:00", + "2024-01-07T08:06:00", + "2024-01-07T08:07:00", + "2024-01-07T08:08:00", + "2024-01-07T08:09:00", + "2024-01-07T08:10:00", + "2024-01-07T08:11:00", + "2024-01-07T08:12:00", + "2024-01-07T08:13:00", + "2024-01-07T08:14:00", + "2024-01-07T08:15:00", + "2024-01-07T08:16:00", + "2024-01-07T08:17:00", + "2024-01-07T08:18:00", + "2024-01-07T08:19:00", + "2024-01-07T08:20:00", + "2024-01-07T08:21:00", + "2024-01-07T08:22:00", + "2024-01-07T08:23:00", + "2024-01-07T08:24:00", + "2024-01-07T08:25:00", + "2024-01-07T08:26:00", + "2024-01-07T08:27:00", + "2024-01-07T08:28:00", + "2024-01-07T08:29:00", + "2024-01-07T08:30:00", + "2024-01-07T08:31:00", + "2024-01-07T08:32:00", + "2024-01-07T08:33:00", + "2024-01-07T08:34:00", + "2024-01-07T08:35:00", + "2024-01-07T08:36:00", + "2024-01-07T08:37:00", + "2024-01-07T08:38:00", + "2024-01-07T08:39:00", + "2024-01-07T08:40:00", + "2024-01-07T08:41:00", + "2024-01-07T08:42:00", + "2024-01-07T08:43:00", + "2024-01-07T08:44:00", + "2024-01-07T08:45:00", + "2024-01-07T08:46:00", + "2024-01-07T08:47:00", + "2024-01-07T08:48:00", + "2024-01-07T08:49:00", + "2024-01-07T08:50:00", + "2024-01-07T08:51:00", + "2024-01-07T08:52:00", + "2024-01-07T08:53:00", + "2024-01-07T08:54:00", + "2024-01-07T08:55:00", + "2024-01-07T08:56:00", + "2024-01-07T08:57:00", + "2024-01-07T08:58:00", + "2024-01-07T08:59:00", + "2024-01-07T09:00:00", + "2024-01-07T09:01:00", + "2024-01-07T09:02:00", + "2024-01-07T09:03:00", + "2024-01-07T09:04:00", + "2024-01-07T09:05:00", + "2024-01-07T09:06:00", + "2024-01-07T09:07:00", + "2024-01-07T09:08:00", + "2024-01-07T09:09:00", + "2024-01-07T09:10:00", + "2024-01-07T09:11:00", + "2024-01-07T09:12:00", + "2024-01-07T09:13:00", + "2024-01-07T09:14:00", + "2024-01-07T09:15:00", + "2024-01-07T09:16:00", + "2024-01-07T09:17:00", + "2024-01-07T09:18:00", + "2024-01-07T09:19:00", + "2024-01-07T09:20:00", + "2024-01-07T09:21:00", + "2024-01-07T09:22:00", + "2024-01-07T09:23:00", + "2024-01-07T09:24:00", + "2024-01-07T09:25:00", + "2024-01-07T09:26:00", + "2024-01-07T09:27:00", + "2024-01-07T09:28:00", + "2024-01-07T09:29:00", + "2024-01-07T09:30:00", + "2024-01-07T09:31:00", + "2024-01-07T09:32:00", + "2024-01-07T09:33:00", + "2024-01-07T09:34:00", + "2024-01-07T09:35:00", + "2024-01-07T09:36:00", + "2024-01-07T09:37:00", + "2024-01-07T09:38:00", + "2024-01-07T09:39:00", + "2024-01-07T09:40:00", + "2024-01-07T09:41:00", + "2024-01-07T09:42:00", + "2024-01-07T09:43:00", + "2024-01-07T09:44:00", + "2024-01-07T09:45:00", + "2024-01-07T09:46:00", + "2024-01-07T09:47:00", + "2024-01-07T09:48:00", + "2024-01-07T09:49:00", + "2024-01-07T09:50:00", + "2024-01-07T09:51:00", + "2024-01-07T09:52:00", + "2024-01-07T09:53:00", + "2024-01-07T09:54:00", + "2024-01-07T09:55:00", + "2024-01-07T09:56:00", + "2024-01-07T09:57:00", + "2024-01-07T09:58:00", + "2024-01-07T09:59:00", + "2024-01-07T10:00:00", + "2024-01-07T10:01:00", + "2024-01-07T10:02:00", + "2024-01-07T10:03:00", + "2024-01-07T10:04:00", + "2024-01-07T10:05:00", + "2024-01-07T10:06:00", + "2024-01-07T10:07:00", + "2024-01-07T10:08:00", + "2024-01-07T10:09:00", + "2024-01-07T10:10:00", + "2024-01-07T10:11:00", + "2024-01-07T10:12:00", + "2024-01-07T10:13:00", + "2024-01-07T10:14:00", + "2024-01-07T10:15:00", + "2024-01-07T10:16:00", + "2024-01-07T10:17:00", + "2024-01-07T10:18:00", + "2024-01-07T10:19:00", + "2024-01-07T10:20:00", + "2024-01-07T10:21:00", + "2024-01-07T10:22:00", + "2024-01-07T10:23:00", + "2024-01-07T10:24:00", + "2024-01-07T10:25:00", + "2024-01-07T10:26:00", + "2024-01-07T10:27:00", + "2024-01-07T10:28:00", + "2024-01-07T10:29:00", + "2024-01-07T10:30:00", + "2024-01-07T10:31:00", + "2024-01-07T10:32:00", + "2024-01-07T10:33:00", + "2024-01-07T10:34:00", + "2024-01-07T10:35:00", + "2024-01-07T10:36:00", + "2024-01-07T10:37:00", + "2024-01-07T10:38:00", + "2024-01-07T10:39:00", + "2024-01-07T10:40:00", + "2024-01-07T10:41:00", + "2024-01-07T10:42:00", + "2024-01-07T10:43:00", + "2024-01-07T10:44:00", + "2024-01-07T10:45:00", + "2024-01-07T10:46:00", + "2024-01-07T10:47:00", + "2024-01-07T10:48:00", + "2024-01-07T10:49:00", + "2024-01-07T10:50:00", + "2024-01-07T10:51:00", + "2024-01-07T10:52:00", + "2024-01-07T10:53:00", + "2024-01-07T10:54:00", + "2024-01-07T10:55:00", + "2024-01-07T10:56:00", + "2024-01-07T10:57:00", + "2024-01-07T10:58:00", + "2024-01-07T10:59:00", + "2024-01-07T11:00:00", + "2024-01-07T11:01:00", + "2024-01-07T11:02:00", + "2024-01-07T11:03:00", + "2024-01-07T11:04:00", + "2024-01-07T11:05:00", + "2024-01-07T11:06:00", + "2024-01-07T11:07:00", + "2024-01-07T11:08:00", + "2024-01-07T11:09:00", + "2024-01-07T11:10:00", + "2024-01-07T11:11:00", + "2024-01-07T11:12:00", + "2024-01-07T11:13:00", + "2024-01-07T11:14:00", + "2024-01-07T11:15:00", + "2024-01-07T11:16:00", + "2024-01-07T11:17:00", + "2024-01-07T11:18:00", + "2024-01-07T11:19:00", + "2024-01-07T11:20:00", + "2024-01-07T11:21:00", + "2024-01-07T11:22:00", + "2024-01-07T11:23:00", + "2024-01-07T11:24:00", + "2024-01-07T11:25:00", + "2024-01-07T11:26:00", + "2024-01-07T11:27:00", + "2024-01-07T11:28:00", + "2024-01-07T11:29:00", + "2024-01-07T11:30:00", + "2024-01-07T11:31:00", + "2024-01-07T11:32:00", + "2024-01-07T11:33:00", + "2024-01-07T11:34:00", + "2024-01-07T11:35:00", + "2024-01-07T11:36:00", + "2024-01-07T11:37:00", + "2024-01-07T11:38:00", + "2024-01-07T11:39:00", + "2024-01-07T11:40:00", + "2024-01-07T11:41:00", + "2024-01-07T11:42:00", + "2024-01-07T11:43:00", + "2024-01-07T11:44:00", + "2024-01-07T11:45:00", + "2024-01-07T11:46:00", + "2024-01-07T11:47:00", + "2024-01-07T11:48:00", + "2024-01-07T11:49:00", + "2024-01-07T11:50:00", + "2024-01-07T11:51:00", + "2024-01-07T11:52:00", + "2024-01-07T11:53:00", + "2024-01-07T11:54:00", + "2024-01-07T11:55:00", + "2024-01-07T11:56:00", + "2024-01-07T11:57:00", + "2024-01-07T11:58:00", + "2024-01-07T11:59:00", + "2024-01-07T12:00:00", + "2024-01-07T12:01:00", + "2024-01-07T12:02:00", + "2024-01-07T12:03:00", + "2024-01-07T12:04:00", + "2024-01-07T12:05:00", + "2024-01-07T12:06:00", + "2024-01-07T12:07:00", + "2024-01-07T12:08:00", + "2024-01-07T12:09:00", + "2024-01-07T12:10:00", + "2024-01-07T12:11:00", + "2024-01-07T12:12:00", + "2024-01-07T12:13:00", + "2024-01-07T12:14:00", + "2024-01-07T12:15:00", + "2024-01-07T12:16:00", + "2024-01-07T12:17:00", + "2024-01-07T12:18:00", + "2024-01-07T12:19:00", + "2024-01-07T12:20:00", + "2024-01-07T12:21:00", + "2024-01-07T12:22:00", + "2024-01-07T12:23:00", + "2024-01-07T12:24:00", + "2024-01-07T12:25:00", + "2024-01-07T12:26:00", + "2024-01-07T12:27:00", + "2024-01-07T12:28:00", + "2024-01-07T12:29:00", + "2024-01-07T12:30:00", + "2024-01-07T12:31:00", + "2024-01-07T12:32:00", + "2024-01-07T12:33:00", + "2024-01-07T12:34:00", + "2024-01-07T12:35:00", + "2024-01-07T12:36:00", + "2024-01-07T12:37:00", + "2024-01-07T12:38:00", + "2024-01-07T12:39:00", + "2024-01-07T12:40:00", + "2024-01-07T12:41:00", + "2024-01-07T12:42:00", + "2024-01-07T12:43:00", + "2024-01-07T12:44:00", + "2024-01-07T12:45:00", + "2024-01-07T12:46:00", + "2024-01-07T12:47:00", + "2024-01-07T12:48:00", + "2024-01-07T12:49:00", + "2024-01-07T12:50:00", + "2024-01-07T12:51:00", + "2024-01-07T12:52:00", + "2024-01-07T12:53:00", + "2024-01-07T12:54:00", + "2024-01-07T12:55:00", + "2024-01-07T12:56:00", + "2024-01-07T12:57:00", + "2024-01-07T12:58:00", + "2024-01-07T12:59:00", + "2024-01-07T13:00:00", + "2024-01-07T13:01:00", + "2024-01-07T13:02:00", + "2024-01-07T13:03:00", + "2024-01-07T13:04:00", + "2024-01-07T13:05:00", + "2024-01-07T13:06:00", + "2024-01-07T13:07:00", + "2024-01-07T13:08:00", + "2024-01-07T13:09:00", + "2024-01-07T13:10:00", + "2024-01-07T13:11:00", + "2024-01-07T13:12:00", + "2024-01-07T13:13:00", + "2024-01-07T13:14:00", + "2024-01-07T13:15:00", + "2024-01-07T13:16:00", + "2024-01-07T13:17:00", + "2024-01-07T13:18:00", + "2024-01-07T13:19:00", + "2024-01-07T13:20:00", + "2024-01-07T13:21:00", + "2024-01-07T13:22:00", + "2024-01-07T13:23:00", + "2024-01-07T13:24:00", + "2024-01-07T13:25:00", + "2024-01-07T13:26:00", + "2024-01-07T13:27:00", + "2024-01-07T13:28:00", + "2024-01-07T13:29:00", + "2024-01-07T13:30:00", + "2024-01-07T13:31:00", + "2024-01-07T13:32:00", + "2024-01-07T13:33:00", + "2024-01-07T13:34:00", + "2024-01-07T13:35:00", + "2024-01-07T13:36:00", + "2024-01-07T13:37:00", + "2024-01-07T13:38:00", + "2024-01-07T13:39:00", + "2024-01-07T13:40:00", + "2024-01-07T13:41:00", + "2024-01-07T13:42:00", + "2024-01-07T13:43:00", + "2024-01-07T13:44:00", + "2024-01-07T13:45:00", + "2024-01-07T13:46:00", + "2024-01-07T13:47:00", + "2024-01-07T13:48:00", + "2024-01-07T13:49:00", + "2024-01-07T13:50:00", + "2024-01-07T13:51:00", + "2024-01-07T13:52:00", + "2024-01-07T13:53:00", + "2024-01-07T13:54:00", + "2024-01-07T13:55:00", + "2024-01-07T13:56:00", + "2024-01-07T13:57:00", + "2024-01-07T13:58:00", + "2024-01-07T13:59:00", + "2024-01-07T14:00:00", + "2024-01-07T14:01:00", + "2024-01-07T14:02:00", + "2024-01-07T14:03:00", + "2024-01-07T14:04:00", + "2024-01-07T14:05:00", + "2024-01-07T14:06:00", + "2024-01-07T14:07:00", + "2024-01-07T14:08:00", + "2024-01-07T14:09:00", + "2024-01-07T14:10:00", + "2024-01-07T14:11:00", + "2024-01-07T14:12:00", + "2024-01-07T14:13:00", + "2024-01-07T14:14:00", + "2024-01-07T14:15:00", + "2024-01-07T14:16:00", + "2024-01-07T14:17:00", + "2024-01-07T14:18:00", + "2024-01-07T14:19:00", + "2024-01-07T14:20:00", + "2024-01-07T14:21:00", + "2024-01-07T14:22:00", + "2024-01-07T14:23:00", + "2024-01-07T14:24:00", + "2024-01-07T14:25:00", + "2024-01-07T14:26:00", + "2024-01-07T14:27:00", + "2024-01-07T14:28:00", + "2024-01-07T14:29:00", + "2024-01-07T14:30:00", + "2024-01-07T14:31:00", + "2024-01-07T14:32:00", + "2024-01-07T14:33:00", + "2024-01-07T14:34:00", + "2024-01-07T14:35:00", + "2024-01-07T14:36:00", + "2024-01-07T14:37:00", + "2024-01-07T14:38:00", + "2024-01-07T14:39:00", + "2024-01-07T14:40:00", + "2024-01-07T14:41:00", + "2024-01-07T14:42:00", + "2024-01-07T14:43:00", + "2024-01-07T14:44:00", + "2024-01-07T14:45:00", + "2024-01-07T14:46:00", + "2024-01-07T14:47:00", + "2024-01-07T14:48:00", + "2024-01-07T14:49:00", + "2024-01-07T14:50:00", + "2024-01-07T14:51:00", + "2024-01-07T14:52:00", + "2024-01-07T14:53:00", + "2024-01-07T14:54:00", + "2024-01-07T14:55:00", + "2024-01-07T14:56:00", + "2024-01-07T14:57:00", + "2024-01-07T14:58:00", + "2024-01-07T14:59:00", + "2024-01-07T15:00:00", + "2024-01-07T15:01:00", + "2024-01-07T15:02:00", + "2024-01-07T15:03:00", + "2024-01-07T15:04:00", + "2024-01-07T15:05:00", + "2024-01-07T15:06:00", + "2024-01-07T15:07:00", + "2024-01-07T15:08:00", + "2024-01-07T15:09:00", + "2024-01-07T15:10:00", + "2024-01-07T15:11:00", + "2024-01-07T15:12:00", + "2024-01-07T15:13:00", + "2024-01-07T15:14:00", + "2024-01-07T15:15:00", + "2024-01-07T15:16:00", + "2024-01-07T15:17:00", + "2024-01-07T15:18:00", + "2024-01-07T15:19:00", + "2024-01-07T15:20:00", + "2024-01-07T15:21:00", + "2024-01-07T15:22:00", + "2024-01-07T15:23:00", + "2024-01-07T15:24:00", + "2024-01-07T15:25:00", + "2024-01-07T15:26:00", + "2024-01-07T15:27:00", + "2024-01-07T15:28:00", + "2024-01-07T15:29:00", + "2024-01-07T15:30:00", + "2024-01-07T15:31:00", + "2024-01-07T15:32:00", + "2024-01-07T15:33:00", + "2024-01-07T15:34:00", + "2024-01-07T15:35:00", + "2024-01-07T15:36:00", + "2024-01-07T15:37:00", + "2024-01-07T15:38:00", + "2024-01-07T15:39:00", + "2024-01-07T15:40:00", + "2024-01-07T15:41:00", + "2024-01-07T15:42:00", + "2024-01-07T15:43:00", + "2024-01-07T15:44:00", + "2024-01-07T15:45:00", + "2024-01-07T15:46:00", + "2024-01-07T15:47:00", + "2024-01-07T15:48:00", + "2024-01-07T15:49:00", + "2024-01-07T15:50:00", + "2024-01-07T15:51:00", + "2024-01-07T15:52:00", + "2024-01-07T15:53:00", + "2024-01-07T15:54:00", + "2024-01-07T15:55:00", + "2024-01-07T15:56:00", + "2024-01-07T15:57:00", + "2024-01-07T15:58:00", + "2024-01-07T15:59:00", + "2024-01-07T16:00:00", + "2024-01-07T16:01:00", + "2024-01-07T16:02:00", + "2024-01-07T16:03:00", + "2024-01-07T16:04:00", + "2024-01-07T16:05:00", + "2024-01-07T16:06:00", + "2024-01-07T16:07:00", + "2024-01-07T16:08:00", + "2024-01-07T16:09:00", + "2024-01-07T16:10:00", + "2024-01-07T16:11:00", + "2024-01-07T16:12:00", + "2024-01-07T16:13:00", + "2024-01-07T16:14:00", + "2024-01-07T16:15:00", + "2024-01-07T16:16:00", + "2024-01-07T16:17:00", + "2024-01-07T16:18:00", + "2024-01-07T16:19:00", + "2024-01-07T16:20:00", + "2024-01-07T16:21:00", + "2024-01-07T16:22:00", + "2024-01-07T16:23:00", + "2024-01-07T16:24:00", + "2024-01-07T16:25:00", + "2024-01-07T16:26:00", + "2024-01-07T16:27:00", + "2024-01-07T16:28:00", + "2024-01-07T16:29:00", + "2024-01-07T16:30:00", + "2024-01-07T16:31:00", + "2024-01-07T16:32:00", + "2024-01-07T16:33:00", + "2024-01-07T16:34:00", + "2024-01-07T16:35:00", + "2024-01-07T16:36:00", + "2024-01-07T16:37:00", + "2024-01-07T16:38:00", + "2024-01-07T16:39:00", + "2024-01-07T16:40:00", + "2024-01-07T16:41:00", + "2024-01-07T16:42:00", + "2024-01-07T16:43:00", + "2024-01-07T16:44:00", + "2024-01-07T16:45:00", + "2024-01-07T16:46:00", + "2024-01-07T16:47:00", + "2024-01-07T16:48:00", + "2024-01-07T16:49:00", + "2024-01-07T16:50:00", + "2024-01-07T16:51:00", + "2024-01-07T16:52:00", + "2024-01-07T16:53:00", + "2024-01-07T16:54:00", + "2024-01-07T16:55:00", + "2024-01-07T16:56:00", + "2024-01-07T16:57:00", + "2024-01-07T16:58:00", + "2024-01-07T16:59:00", + "2024-01-07T17:00:00", + "2024-01-07T17:01:00", + "2024-01-07T17:02:00", + "2024-01-07T17:03:00", + "2024-01-07T17:04:00", + "2024-01-07T17:05:00", + "2024-01-07T17:06:00", + "2024-01-07T17:07:00", + "2024-01-07T17:08:00", + "2024-01-07T17:09:00", + "2024-01-07T17:10:00", + "2024-01-07T17:11:00", + "2024-01-07T17:12:00", + "2024-01-07T17:13:00", + "2024-01-07T17:14:00", + "2024-01-07T17:15:00", + "2024-01-07T17:16:00", + "2024-01-07T17:17:00", + "2024-01-07T17:18:00", + "2024-01-07T17:19:00", + "2024-01-07T17:20:00", + "2024-01-07T17:21:00", + "2024-01-07T17:22:00", + "2024-01-07T17:23:00", + "2024-01-07T17:24:00", + "2024-01-07T17:25:00", + "2024-01-07T17:26:00", + "2024-01-07T17:27:00", + "2024-01-07T17:28:00", + "2024-01-07T17:29:00", + "2024-01-07T17:30:00", + "2024-01-07T17:31:00", + "2024-01-07T17:32:00", + "2024-01-07T17:33:00", + "2024-01-07T17:34:00", + "2024-01-07T17:35:00", + "2024-01-07T17:36:00", + "2024-01-07T17:37:00", + "2024-01-07T17:38:00", + "2024-01-07T17:39:00", + "2024-01-07T17:40:00", + "2024-01-07T17:41:00", + "2024-01-07T17:42:00", + "2024-01-07T17:43:00", + "2024-01-07T17:44:00", + "2024-01-07T17:45:00", + "2024-01-07T17:46:00", + "2024-01-07T17:47:00", + "2024-01-07T17:48:00", + "2024-01-07T17:49:00", + "2024-01-07T17:50:00", + "2024-01-07T17:51:00", + "2024-01-07T17:52:00", + "2024-01-07T17:53:00", + "2024-01-07T17:54:00", + "2024-01-07T17:55:00", + "2024-01-07T17:56:00", + "2024-01-07T17:57:00", + "2024-01-07T17:58:00", + "2024-01-07T17:59:00", + "2024-01-07T18:00:00", + "2024-01-07T18:01:00", + "2024-01-07T18:02:00", + "2024-01-07T18:03:00", + "2024-01-07T18:04:00", + "2024-01-07T18:05:00", + "2024-01-07T18:06:00", + "2024-01-07T18:07:00", + "2024-01-07T18:08:00", + "2024-01-07T18:09:00", + "2024-01-07T18:10:00", + "2024-01-07T18:11:00", + "2024-01-07T18:12:00", + "2024-01-07T18:13:00", + "2024-01-07T18:14:00", + "2024-01-07T18:15:00", + "2024-01-07T18:16:00", + "2024-01-07T18:17:00", + "2024-01-07T18:18:00", + "2024-01-07T18:19:00", + "2024-01-07T18:20:00", + "2024-01-07T18:21:00", + "2024-01-07T18:22:00", + "2024-01-07T18:23:00", + "2024-01-07T18:24:00", + "2024-01-07T18:25:00", + "2024-01-07T18:26:00", + "2024-01-07T18:27:00", + "2024-01-07T18:28:00", + "2024-01-07T18:29:00", + "2024-01-07T18:30:00", + "2024-01-07T18:31:00", + "2024-01-07T18:32:00", + "2024-01-07T18:33:00", + "2024-01-07T18:34:00", + "2024-01-07T18:35:00", + "2024-01-07T18:36:00", + "2024-01-07T18:37:00", + "2024-01-07T18:38:00", + "2024-01-07T18:39:00", + "2024-01-07T18:40:00", + "2024-01-07T18:41:00", + "2024-01-07T18:42:00", + "2024-01-07T18:43:00", + "2024-01-07T18:44:00", + "2024-01-07T18:45:00", + "2024-01-07T18:46:00", + "2024-01-07T18:47:00", + "2024-01-07T18:48:00", + "2024-01-07T18:49:00", + "2024-01-07T18:50:00", + "2024-01-07T18:51:00", + "2024-01-07T18:52:00", + "2024-01-07T18:53:00", + "2024-01-07T18:54:00", + "2024-01-07T18:55:00", + "2024-01-07T18:56:00", + "2024-01-07T18:57:00", + "2024-01-07T18:58:00", + "2024-01-07T18:59:00", + "2024-01-07T19:00:00", + "2024-01-07T19:01:00", + "2024-01-07T19:02:00", + "2024-01-07T19:03:00", + "2024-01-07T19:04:00", + "2024-01-07T19:05:00", + "2024-01-07T19:06:00", + "2024-01-07T19:07:00", + "2024-01-07T19:08:00", + "2024-01-07T19:09:00", + "2024-01-07T19:10:00", + "2024-01-07T19:11:00", + "2024-01-07T19:12:00", + "2024-01-07T19:13:00", + "2024-01-07T19:14:00", + "2024-01-07T19:15:00", + "2024-01-07T19:16:00", + "2024-01-07T19:17:00", + "2024-01-07T19:18:00", + "2024-01-07T19:19:00", + "2024-01-07T19:20:00", + "2024-01-07T19:21:00", + "2024-01-07T19:22:00", + "2024-01-07T19:23:00", + "2024-01-07T19:24:00", + "2024-01-07T19:25:00", + "2024-01-07T19:26:00", + "2024-01-07T19:27:00", + "2024-01-07T19:28:00", + "2024-01-07T19:29:00", + "2024-01-07T19:30:00", + "2024-01-07T19:31:00", + "2024-01-07T19:32:00", + "2024-01-07T19:33:00", + "2024-01-07T19:34:00", + "2024-01-07T19:35:00", + "2024-01-07T19:36:00", + "2024-01-07T19:37:00", + "2024-01-07T19:38:00", + "2024-01-07T19:39:00", + "2024-01-07T19:40:00", + "2024-01-07T19:41:00", + "2024-01-07T19:42:00", + "2024-01-07T19:43:00", + "2024-01-07T19:44:00", + "2024-01-07T19:45:00", + "2024-01-07T19:46:00", + "2024-01-07T19:47:00", + "2024-01-07T19:48:00", + "2024-01-07T19:49:00", + "2024-01-07T19:50:00", + "2024-01-07T19:51:00", + "2024-01-07T19:52:00", + "2024-01-07T19:53:00", + "2024-01-07T19:54:00", + "2024-01-07T19:55:00", + "2024-01-07T19:56:00", + "2024-01-07T19:57:00", + "2024-01-07T19:58:00", + "2024-01-07T19:59:00", + "2024-01-07T20:00:00", + "2024-01-07T20:01:00", + "2024-01-07T20:02:00", + "2024-01-07T20:03:00", + "2024-01-07T20:04:00", + "2024-01-07T20:05:00", + "2024-01-07T20:06:00", + "2024-01-07T20:07:00", + "2024-01-07T20:08:00", + "2024-01-07T20:09:00", + "2024-01-07T20:10:00", + "2024-01-07T20:11:00", + "2024-01-07T20:12:00", + "2024-01-07T20:13:00", + "2024-01-07T20:14:00", + "2024-01-07T20:15:00", + "2024-01-07T20:16:00", + "2024-01-07T20:17:00", + "2024-01-07T20:18:00", + "2024-01-07T20:19:00", + "2024-01-07T20:20:00", + "2024-01-07T20:21:00", + "2024-01-07T20:22:00", + "2024-01-07T20:23:00", + "2024-01-07T20:24:00", + "2024-01-07T20:25:00", + "2024-01-07T20:26:00", + "2024-01-07T20:27:00", + "2024-01-07T20:28:00", + "2024-01-07T20:29:00", + "2024-01-07T20:30:00", + "2024-01-07T20:31:00", + "2024-01-07T20:32:00", + "2024-01-07T20:33:00", + "2024-01-07T20:34:00", + "2024-01-07T20:35:00", + "2024-01-07T20:36:00", + "2024-01-07T20:37:00", + "2024-01-07T20:38:00", + "2024-01-07T20:39:00", + "2024-01-07T20:40:00", + "2024-01-07T20:41:00", + "2024-01-07T20:42:00", + "2024-01-07T20:43:00", + "2024-01-07T20:44:00", + "2024-01-07T20:45:00", + "2024-01-07T20:46:00", + "2024-01-07T20:47:00", + "2024-01-07T20:48:00", + "2024-01-07T20:49:00", + "2024-01-07T20:50:00", + "2024-01-07T20:51:00", + "2024-01-07T20:52:00", + "2024-01-07T20:53:00", + "2024-01-07T20:54:00", + "2024-01-07T20:55:00", + "2024-01-07T20:56:00", + "2024-01-07T20:57:00", + "2024-01-07T20:58:00", + "2024-01-07T20:59:00", + "2024-01-07T21:00:00", + "2024-01-07T21:01:00", + "2024-01-07T21:02:00", + "2024-01-07T21:03:00", + "2024-01-07T21:04:00", + "2024-01-07T21:05:00", + "2024-01-07T21:06:00", + "2024-01-07T21:07:00", + "2024-01-07T21:08:00", + "2024-01-07T21:09:00", + "2024-01-07T21:10:00", + "2024-01-07T21:11:00", + "2024-01-07T21:12:00", + "2024-01-07T21:13:00", + "2024-01-07T21:14:00", + "2024-01-07T21:15:00", + "2024-01-07T21:16:00", + "2024-01-07T21:17:00", + "2024-01-07T21:18:00", + "2024-01-07T21:19:00", + "2024-01-07T21:20:00", + "2024-01-07T21:21:00", + "2024-01-07T21:22:00", + "2024-01-07T21:23:00", + "2024-01-07T21:24:00", + "2024-01-07T21:25:00", + "2024-01-07T21:26:00", + "2024-01-07T21:27:00", + "2024-01-07T21:28:00", + "2024-01-07T21:29:00", + "2024-01-07T21:30:00", + "2024-01-07T21:31:00", + "2024-01-07T21:32:00", + "2024-01-07T21:33:00", + "2024-01-07T21:34:00", + "2024-01-07T21:35:00", + "2024-01-07T21:36:00", + "2024-01-07T21:37:00", + "2024-01-07T21:38:00", + "2024-01-07T21:39:00", + "2024-01-07T21:40:00", + "2024-01-07T21:41:00", + "2024-01-07T21:42:00", + "2024-01-07T21:43:00", + "2024-01-07T21:44:00", + "2024-01-07T21:45:00", + "2024-01-07T21:46:00", + "2024-01-07T21:47:00", + "2024-01-07T21:48:00", + "2024-01-07T21:49:00", + "2024-01-07T21:50:00", + "2024-01-07T21:51:00", + "2024-01-07T21:52:00", + "2024-01-07T21:53:00", + "2024-01-07T21:54:00", + "2024-01-07T21:55:00", + "2024-01-07T21:56:00", + "2024-01-07T21:57:00", + "2024-01-07T21:58:00", + "2024-01-07T21:59:00", + "2024-01-07T22:00:00", + "2024-01-07T22:01:00", + "2024-01-07T22:02:00", + "2024-01-07T22:03:00", + "2024-01-07T22:04:00", + "2024-01-07T22:05:00", + "2024-01-07T22:06:00", + "2024-01-07T22:07:00", + "2024-01-07T22:08:00", + "2024-01-07T22:09:00", + "2024-01-07T22:10:00", + "2024-01-07T22:11:00", + "2024-01-07T22:12:00", + "2024-01-07T22:13:00", + "2024-01-07T22:14:00", + "2024-01-07T22:15:00", + "2024-01-07T22:16:00", + "2024-01-07T22:17:00", + "2024-01-07T22:18:00", + "2024-01-07T22:19:00", + "2024-01-07T22:20:00", + "2024-01-07T22:21:00", + "2024-01-07T22:22:00", + "2024-01-07T22:23:00", + "2024-01-07T22:24:00", + "2024-01-07T22:25:00", + "2024-01-07T22:26:00", + "2024-01-07T22:27:00", + "2024-01-07T22:28:00", + "2024-01-07T22:29:00", + "2024-01-07T22:30:00", + "2024-01-07T22:31:00", + "2024-01-07T22:32:00", + "2024-01-07T22:33:00", + "2024-01-07T22:34:00", + "2024-01-07T22:35:00", + "2024-01-07T22:36:00", + "2024-01-07T22:37:00", + "2024-01-07T22:38:00", + "2024-01-07T22:39:00", + "2024-01-07T22:40:00", + "2024-01-07T22:41:00", + "2024-01-07T22:42:00", + "2024-01-07T22:43:00", + "2024-01-07T22:44:00", + "2024-01-07T22:45:00", + "2024-01-07T22:46:00", + "2024-01-07T22:47:00", + "2024-01-07T22:48:00", + "2024-01-07T22:49:00", + "2024-01-07T22:50:00", + "2024-01-07T22:51:00", + "2024-01-07T22:52:00", + "2024-01-07T22:53:00", + "2024-01-07T22:54:00", + "2024-01-07T22:55:00", + "2024-01-07T22:56:00", + "2024-01-07T22:57:00", + "2024-01-07T22:58:00", + "2024-01-07T22:59:00", + "2024-01-07T23:00:00", + "2024-01-07T23:01:00", + "2024-01-07T23:02:00", + "2024-01-07T23:03:00", + "2024-01-07T23:04:00", + "2024-01-07T23:05:00", + "2024-01-07T23:06:00", + "2024-01-07T23:07:00", + "2024-01-07T23:08:00", + "2024-01-07T23:09:00", + "2024-01-07T23:10:00", + "2024-01-07T23:11:00", + "2024-01-07T23:12:00", + "2024-01-07T23:13:00", + "2024-01-07T23:14:00", + "2024-01-07T23:15:00", + "2024-01-07T23:16:00", + "2024-01-07T23:17:00", + "2024-01-07T23:18:00", + "2024-01-07T23:19:00", + "2024-01-07T23:20:00", + "2024-01-07T23:21:00", + "2024-01-07T23:22:00", + "2024-01-07T23:23:00", + "2024-01-07T23:24:00", + "2024-01-07T23:25:00", + "2024-01-07T23:26:00", + "2024-01-07T23:27:00", + "2024-01-07T23:28:00", + "2024-01-07T23:29:00", + "2024-01-07T23:30:00", + "2024-01-07T23:31:00", + "2024-01-07T23:32:00", + "2024-01-07T23:33:00", + "2024-01-07T23:34:00", + "2024-01-07T23:35:00", + "2024-01-07T23:36:00", + "2024-01-07T23:37:00", + "2024-01-07T23:38:00", + "2024-01-07T23:39:00", + "2024-01-07T23:40:00", + "2024-01-07T23:41:00", + "2024-01-07T23:42:00", + "2024-01-07T23:43:00", + "2024-01-07T23:44:00", + "2024-01-07T23:45:00", + "2024-01-07T23:46:00", + "2024-01-07T23:47:00", + "2024-01-07T23:48:00", + "2024-01-07T23:49:00", + "2024-01-07T23:50:00", + "2024-01-07T23:51:00", + "2024-01-07T23:52:00", + "2024-01-07T23:53:00", + "2024-01-07T23:54:00", + "2024-01-07T23:55:00", + "2024-01-07T23:56:00", + "2024-01-07T23:57:00", + "2024-01-07T23:58:00", + "2024-01-07T23:59:00", + "2024-01-08T00:00:00", + "2024-01-08T00:01:00", + "2024-01-08T00:02:00", + "2024-01-08T00:03:00", + "2024-01-08T00:04:00", + "2024-01-08T00:05:00", + "2024-01-08T00:06:00", + "2024-01-08T00:07:00", + "2024-01-08T00:08:00", + "2024-01-08T00:09:00", + "2024-01-08T00:10:00", + "2024-01-08T00:11:00", + "2024-01-08T00:12:00", + "2024-01-08T00:13:00", + "2024-01-08T00:14:00", + "2024-01-08T00:15:00", + "2024-01-08T00:16:00", + "2024-01-08T00:17:00", + "2024-01-08T00:18:00", + "2024-01-08T00:19:00", + "2024-01-08T00:20:00", + "2024-01-08T00:21:00", + "2024-01-08T00:22:00", + "2024-01-08T00:23:00", + "2024-01-08T00:24:00", + "2024-01-08T00:25:00", + "2024-01-08T00:26:00", + "2024-01-08T00:27:00", + "2024-01-08T00:28:00", + "2024-01-08T00:29:00", + "2024-01-08T00:30:00", + "2024-01-08T00:31:00", + "2024-01-08T00:32:00", + "2024-01-08T00:33:00", + "2024-01-08T00:34:00", + "2024-01-08T00:35:00", + "2024-01-08T00:36:00", + "2024-01-08T00:37:00", + "2024-01-08T00:38:00", + "2024-01-08T00:39:00", + "2024-01-08T00:40:00", + "2024-01-08T00:41:00", + "2024-01-08T00:42:00", + "2024-01-08T00:43:00", + "2024-01-08T00:44:00", + "2024-01-08T00:45:00", + "2024-01-08T00:46:00", + "2024-01-08T00:47:00", + "2024-01-08T00:48:00", + "2024-01-08T00:49:00", + "2024-01-08T00:50:00", + "2024-01-08T00:51:00", + "2024-01-08T00:52:00", + "2024-01-08T00:53:00", + "2024-01-08T00:54:00", + "2024-01-08T00:55:00", + "2024-01-08T00:56:00", + "2024-01-08T00:57:00", + "2024-01-08T00:58:00", + "2024-01-08T00:59:00", + "2024-01-08T01:00:00", + "2024-01-08T01:01:00", + "2024-01-08T01:02:00", + "2024-01-08T01:03:00", + "2024-01-08T01:04:00", + "2024-01-08T01:05:00", + "2024-01-08T01:06:00", + "2024-01-08T01:07:00", + "2024-01-08T01:08:00", + "2024-01-08T01:09:00", + "2024-01-08T01:10:00", + "2024-01-08T01:11:00", + "2024-01-08T01:12:00", + "2024-01-08T01:13:00", + "2024-01-08T01:14:00", + "2024-01-08T01:15:00", + "2024-01-08T01:16:00", + "2024-01-08T01:17:00", + "2024-01-08T01:18:00", + "2024-01-08T01:19:00", + "2024-01-08T01:20:00", + "2024-01-08T01:21:00", + "2024-01-08T01:22:00", + "2024-01-08T01:23:00", + "2024-01-08T01:24:00", + "2024-01-08T01:25:00", + "2024-01-08T01:26:00", + "2024-01-08T01:27:00", + "2024-01-08T01:28:00", + "2024-01-08T01:29:00", + "2024-01-08T01:30:00", + "2024-01-08T01:31:00", + "2024-01-08T01:32:00", + "2024-01-08T01:33:00", + "2024-01-08T01:34:00", + "2024-01-08T01:35:00", + "2024-01-08T01:36:00", + "2024-01-08T01:37:00", + "2024-01-08T01:38:00", + "2024-01-08T01:39:00", + "2024-01-08T01:40:00", + "2024-01-08T01:41:00", + "2024-01-08T01:42:00", + "2024-01-08T01:43:00", + "2024-01-08T01:44:00", + "2024-01-08T01:45:00", + "2024-01-08T01:46:00", + "2024-01-08T01:47:00", + "2024-01-08T01:48:00", + "2024-01-08T01:49:00", + "2024-01-08T01:50:00", + "2024-01-08T01:51:00", + "2024-01-08T01:52:00", + "2024-01-08T01:53:00", + "2024-01-08T01:54:00", + "2024-01-08T01:55:00", + "2024-01-08T01:56:00", + "2024-01-08T01:57:00", + "2024-01-08T01:58:00", + "2024-01-08T01:59:00", + "2024-01-08T02:00:00", + "2024-01-08T02:01:00", + "2024-01-08T02:02:00", + "2024-01-08T02:03:00", + "2024-01-08T02:04:00", + "2024-01-08T02:05:00", + "2024-01-08T02:06:00", + "2024-01-08T02:07:00", + "2024-01-08T02:08:00", + "2024-01-08T02:09:00", + "2024-01-08T02:10:00", + "2024-01-08T02:11:00", + "2024-01-08T02:12:00", + "2024-01-08T02:13:00", + "2024-01-08T02:14:00", + "2024-01-08T02:15:00", + "2024-01-08T02:16:00", + "2024-01-08T02:17:00", + "2024-01-08T02:18:00", + "2024-01-08T02:19:00", + "2024-01-08T02:20:00", + "2024-01-08T02:21:00", + "2024-01-08T02:22:00", + "2024-01-08T02:23:00", + "2024-01-08T02:24:00", + "2024-01-08T02:25:00", + "2024-01-08T02:26:00", + "2024-01-08T02:27:00", + "2024-01-08T02:28:00", + "2024-01-08T02:29:00", + "2024-01-08T02:30:00", + "2024-01-08T02:31:00", + "2024-01-08T02:32:00", + "2024-01-08T02:33:00", + "2024-01-08T02:34:00", + "2024-01-08T02:35:00", + "2024-01-08T02:36:00", + "2024-01-08T02:37:00", + "2024-01-08T02:38:00", + "2024-01-08T02:39:00", + "2024-01-08T02:40:00", + "2024-01-08T02:41:00", + "2024-01-08T02:42:00", + "2024-01-08T02:43:00", + "2024-01-08T02:44:00", + "2024-01-08T02:45:00", + "2024-01-08T02:46:00", + "2024-01-08T02:47:00", + "2024-01-08T02:48:00", + "2024-01-08T02:49:00", + "2024-01-08T02:50:00", + "2024-01-08T02:51:00", + "2024-01-08T02:52:00", + "2024-01-08T02:53:00", + "2024-01-08T02:54:00", + "2024-01-08T02:55:00", + "2024-01-08T02:56:00", + "2024-01-08T02:57:00", + "2024-01-08T02:58:00", + "2024-01-08T02:59:00", + "2024-01-08T03:00:00", + "2024-01-08T03:01:00", + "2024-01-08T03:02:00", + "2024-01-08T03:03:00", + "2024-01-08T03:04:00", + "2024-01-08T03:05:00", + "2024-01-08T03:06:00", + "2024-01-08T03:07:00", + "2024-01-08T03:08:00", + "2024-01-08T03:09:00", + "2024-01-08T03:10:00", + "2024-01-08T03:11:00", + "2024-01-08T03:12:00", + "2024-01-08T03:13:00", + "2024-01-08T03:14:00", + "2024-01-08T03:15:00", + "2024-01-08T03:16:00", + "2024-01-08T03:17:00", + "2024-01-08T03:18:00", + "2024-01-08T03:19:00", + "2024-01-08T03:20:00", + "2024-01-08T03:21:00", + "2024-01-08T03:22:00", + "2024-01-08T03:23:00", + "2024-01-08T03:24:00", + "2024-01-08T03:25:00", + "2024-01-08T03:26:00", + "2024-01-08T03:27:00", + "2024-01-08T03:28:00", + "2024-01-08T03:29:00", + "2024-01-08T03:30:00", + "2024-01-08T03:31:00", + "2024-01-08T03:32:00", + "2024-01-08T03:33:00", + "2024-01-08T03:34:00", + "2024-01-08T03:35:00", + "2024-01-08T03:36:00", + "2024-01-08T03:37:00", + "2024-01-08T03:38:00", + "2024-01-08T03:39:00", + "2024-01-08T03:40:00", + "2024-01-08T03:41:00", + "2024-01-08T03:42:00", + "2024-01-08T03:43:00", + "2024-01-08T03:44:00", + "2024-01-08T03:45:00", + "2024-01-08T03:46:00", + "2024-01-08T03:47:00", + "2024-01-08T03:48:00", + "2024-01-08T03:49:00", + "2024-01-08T03:50:00", + "2024-01-08T03:51:00", + "2024-01-08T03:52:00", + "2024-01-08T03:53:00", + "2024-01-08T03:54:00", + "2024-01-08T03:55:00", + "2024-01-08T03:56:00", + "2024-01-08T03:57:00", + "2024-01-08T03:58:00", + "2024-01-08T03:59:00", + "2024-01-08T04:00:00", + "2024-01-08T04:01:00", + "2024-01-08T04:02:00", + "2024-01-08T04:03:00", + "2024-01-08T04:04:00", + "2024-01-08T04:05:00", + "2024-01-08T04:06:00", + "2024-01-08T04:07:00", + "2024-01-08T04:08:00", + "2024-01-08T04:09:00", + "2024-01-08T04:10:00", + "2024-01-08T04:11:00", + "2024-01-08T04:12:00", + "2024-01-08T04:13:00", + "2024-01-08T04:14:00", + "2024-01-08T04:15:00", + "2024-01-08T04:16:00", + "2024-01-08T04:17:00", + "2024-01-08T04:18:00", + "2024-01-08T04:19:00", + "2024-01-08T04:20:00", + "2024-01-08T04:21:00", + "2024-01-08T04:22:00", + "2024-01-08T04:23:00", + "2024-01-08T04:24:00", + "2024-01-08T04:25:00", + "2024-01-08T04:26:00", + "2024-01-08T04:27:00", + "2024-01-08T04:28:00", + "2024-01-08T04:29:00", + "2024-01-08T04:30:00", + "2024-01-08T04:31:00", + "2024-01-08T04:32:00", + "2024-01-08T04:33:00", + "2024-01-08T04:34:00", + "2024-01-08T04:35:00", + "2024-01-08T04:36:00", + "2024-01-08T04:37:00", + "2024-01-08T04:38:00", + "2024-01-08T04:39:00", + "2024-01-08T04:40:00", + "2024-01-08T04:41:00", + "2024-01-08T04:42:00", + "2024-01-08T04:43:00", + "2024-01-08T04:44:00", + "2024-01-08T04:45:00", + "2024-01-08T04:46:00", + "2024-01-08T04:47:00", + "2024-01-08T04:48:00", + "2024-01-08T04:49:00", + "2024-01-08T04:50:00", + "2024-01-08T04:51:00", + "2024-01-08T04:52:00", + "2024-01-08T04:53:00", + "2024-01-08T04:54:00", + "2024-01-08T04:55:00", + "2024-01-08T04:56:00", + "2024-01-08T04:57:00", + "2024-01-08T04:58:00", + "2024-01-08T04:59:00", + "2024-01-08T05:00:00", + "2024-01-08T05:01:00", + "2024-01-08T05:02:00", + "2024-01-08T05:03:00", + "2024-01-08T05:04:00", + "2024-01-08T05:05:00", + "2024-01-08T05:06:00", + "2024-01-08T05:07:00", + "2024-01-08T05:08:00", + "2024-01-08T05:09:00", + "2024-01-08T05:10:00", + "2024-01-08T05:11:00", + "2024-01-08T05:12:00", + "2024-01-08T05:13:00", + "2024-01-08T05:14:00", + "2024-01-08T05:15:00", + "2024-01-08T05:16:00", + "2024-01-08T05:17:00", + "2024-01-08T05:18:00", + "2024-01-08T05:19:00", + "2024-01-08T05:20:00", + "2024-01-08T05:21:00", + "2024-01-08T05:22:00", + "2024-01-08T05:23:00", + "2024-01-08T05:24:00", + "2024-01-08T05:25:00", + "2024-01-08T05:26:00", + "2024-01-08T05:27:00", + "2024-01-08T05:28:00", + "2024-01-08T05:29:00", + "2024-01-08T05:30:00", + "2024-01-08T05:31:00", + "2024-01-08T05:32:00", + "2024-01-08T05:33:00", + "2024-01-08T05:34:00", + "2024-01-08T05:35:00", + "2024-01-08T05:36:00", + "2024-01-08T05:37:00", + "2024-01-08T05:38:00", + "2024-01-08T05:39:00", + "2024-01-08T05:40:00", + "2024-01-08T05:41:00", + "2024-01-08T05:42:00", + "2024-01-08T05:43:00", + "2024-01-08T05:44:00", + "2024-01-08T05:45:00", + "2024-01-08T05:46:00", + "2024-01-08T05:47:00", + "2024-01-08T05:48:00", + "2024-01-08T05:49:00", + "2024-01-08T05:50:00", + "2024-01-08T05:51:00", + "2024-01-08T05:52:00", + "2024-01-08T05:53:00", + "2024-01-08T05:54:00", + "2024-01-08T05:55:00", + "2024-01-08T05:56:00", + "2024-01-08T05:57:00", + "2024-01-08T05:58:00", + "2024-01-08T05:59:00", + "2024-01-08T06:00:00", + "2024-01-08T06:01:00", + "2024-01-08T06:02:00", + "2024-01-08T06:03:00", + "2024-01-08T06:04:00", + "2024-01-08T06:05:00", + "2024-01-08T06:06:00", + "2024-01-08T06:07:00", + "2024-01-08T06:08:00", + "2024-01-08T06:09:00", + "2024-01-08T06:10:00", + "2024-01-08T06:11:00", + "2024-01-08T06:12:00", + "2024-01-08T06:13:00", + "2024-01-08T06:14:00", + "2024-01-08T06:15:00", + "2024-01-08T06:16:00", + "2024-01-08T06:17:00", + "2024-01-08T06:18:00", + "2024-01-08T06:19:00", + "2024-01-08T06:20:00", + "2024-01-08T06:21:00", + "2024-01-08T06:22:00", + "2024-01-08T06:23:00", + "2024-01-08T06:24:00", + "2024-01-08T06:25:00", + "2024-01-08T06:26:00", + "2024-01-08T06:27:00", + "2024-01-08T06:28:00", + "2024-01-08T06:29:00", + "2024-01-08T06:30:00", + "2024-01-08T06:31:00", + "2024-01-08T06:32:00", + "2024-01-08T06:33:00", + "2024-01-08T06:34:00", + "2024-01-08T06:35:00", + "2024-01-08T06:36:00", + "2024-01-08T06:37:00", + "2024-01-08T06:38:00", + "2024-01-08T06:39:00", + "2024-01-08T06:40:00", + "2024-01-08T06:41:00", + "2024-01-08T06:42:00", + "2024-01-08T06:43:00", + "2024-01-08T06:44:00", + "2024-01-08T06:45:00", + "2024-01-08T06:46:00", + "2024-01-08T06:47:00", + "2024-01-08T06:48:00", + "2024-01-08T06:49:00", + "2024-01-08T06:50:00", + "2024-01-08T06:51:00", + "2024-01-08T06:52:00", + "2024-01-08T06:53:00", + "2024-01-08T06:54:00", + "2024-01-08T06:55:00", + "2024-01-08T06:56:00", + "2024-01-08T06:57:00", + "2024-01-08T06:58:00", + "2024-01-08T06:59:00", + "2024-01-08T07:00:00", + "2024-01-08T07:01:00", + "2024-01-08T07:02:00", + "2024-01-08T07:03:00", + "2024-01-08T07:04:00", + "2024-01-08T07:05:00", + "2024-01-08T07:06:00", + "2024-01-08T07:07:00", + "2024-01-08T07:08:00", + "2024-01-08T07:09:00", + "2024-01-08T07:10:00", + "2024-01-08T07:11:00", + "2024-01-08T07:12:00", + "2024-01-08T07:13:00", + "2024-01-08T07:14:00", + "2024-01-08T07:15:00", + "2024-01-08T07:16:00", + "2024-01-08T07:17:00", + "2024-01-08T07:18:00", + "2024-01-08T07:19:00", + "2024-01-08T07:20:00", + "2024-01-08T07:21:00", + "2024-01-08T07:22:00", + "2024-01-08T07:23:00", + "2024-01-08T07:24:00", + "2024-01-08T07:25:00", + "2024-01-08T07:26:00", + "2024-01-08T07:27:00", + "2024-01-08T07:28:00", + "2024-01-08T07:29:00", + "2024-01-08T07:30:00", + "2024-01-08T07:31:00", + "2024-01-08T07:32:00", + "2024-01-08T07:33:00", + "2024-01-08T07:34:00", + "2024-01-08T07:35:00", + "2024-01-08T07:36:00", + "2024-01-08T07:37:00", + "2024-01-08T07:38:00", + "2024-01-08T07:39:00", + "2024-01-08T07:40:00", + "2024-01-08T07:41:00", + "2024-01-08T07:42:00", + "2024-01-08T07:43:00", + "2024-01-08T07:44:00", + "2024-01-08T07:45:00", + "2024-01-08T07:46:00", + "2024-01-08T07:47:00", + "2024-01-08T07:48:00", + "2024-01-08T07:49:00", + "2024-01-08T07:50:00", + "2024-01-08T07:51:00", + "2024-01-08T07:52:00", + "2024-01-08T07:53:00", + "2024-01-08T07:54:00", + "2024-01-08T07:55:00", + "2024-01-08T07:56:00", + "2024-01-08T07:57:00", + "2024-01-08T07:58:00", + "2024-01-08T07:59:00", + "2024-01-08T08:00:00", + "2024-01-08T08:01:00", + "2024-01-08T08:02:00", + "2024-01-08T08:03:00", + "2024-01-08T08:04:00", + "2024-01-08T08:05:00", + "2024-01-08T08:06:00", + "2024-01-08T08:07:00", + "2024-01-08T08:08:00", + "2024-01-08T08:09:00", + "2024-01-08T08:10:00", + "2024-01-08T08:11:00", + "2024-01-08T08:12:00", + "2024-01-08T08:13:00", + "2024-01-08T08:14:00", + "2024-01-08T08:15:00", + "2024-01-08T08:16:00", + "2024-01-08T08:17:00", + "2024-01-08T08:18:00", + "2024-01-08T08:19:00", + "2024-01-08T08:20:00", + "2024-01-08T08:21:00", + "2024-01-08T08:22:00", + "2024-01-08T08:23:00", + "2024-01-08T08:24:00", + "2024-01-08T08:25:00", + "2024-01-08T08:26:00", + "2024-01-08T08:27:00", + "2024-01-08T08:28:00", + "2024-01-08T08:29:00", + "2024-01-08T08:30:00", + "2024-01-08T08:31:00", + "2024-01-08T08:32:00", + "2024-01-08T08:33:00", + "2024-01-08T08:34:00", + "2024-01-08T08:35:00", + "2024-01-08T08:36:00", + "2024-01-08T08:37:00", + "2024-01-08T08:38:00", + "2024-01-08T08:39:00", + "2024-01-08T08:40:00", + "2024-01-08T08:41:00", + "2024-01-08T08:42:00", + "2024-01-08T08:43:00", + "2024-01-08T08:44:00", + "2024-01-08T08:45:00", + "2024-01-08T08:46:00", + "2024-01-08T08:47:00", + "2024-01-08T08:48:00", + "2024-01-08T08:49:00", + "2024-01-08T08:50:00", + "2024-01-08T08:51:00", + "2024-01-08T08:52:00", + "2024-01-08T08:53:00", + "2024-01-08T08:54:00", + "2024-01-08T08:55:00", + "2024-01-08T08:56:00", + "2024-01-08T08:57:00", + "2024-01-08T08:58:00", + "2024-01-08T08:59:00", + "2024-01-08T09:00:00", + "2024-01-08T09:01:00", + "2024-01-08T09:02:00", + "2024-01-08T09:03:00", + "2024-01-08T09:04:00", + "2024-01-08T09:05:00", + "2024-01-08T09:06:00", + "2024-01-08T09:07:00", + "2024-01-08T09:08:00", + "2024-01-08T09:09:00", + "2024-01-08T09:10:00", + "2024-01-08T09:11:00", + "2024-01-08T09:12:00", + "2024-01-08T09:13:00", + "2024-01-08T09:14:00", + "2024-01-08T09:15:00", + "2024-01-08T09:16:00", + "2024-01-08T09:17:00", + "2024-01-08T09:18:00", + "2024-01-08T09:19:00", + "2024-01-08T09:20:00", + "2024-01-08T09:21:00", + "2024-01-08T09:22:00", + "2024-01-08T09:23:00", + "2024-01-08T09:24:00", + "2024-01-08T09:25:00", + "2024-01-08T09:26:00", + "2024-01-08T09:27:00", + "2024-01-08T09:28:00", + "2024-01-08T09:29:00", + "2024-01-08T09:30:00", + "2024-01-08T09:31:00", + "2024-01-08T09:32:00", + "2024-01-08T09:33:00", + "2024-01-08T09:34:00", + "2024-01-08T09:35:00", + "2024-01-08T09:36:00", + "2024-01-08T09:37:00", + "2024-01-08T09:38:00", + "2024-01-08T09:39:00", + "2024-01-08T09:40:00", + "2024-01-08T09:41:00", + "2024-01-08T09:42:00", + "2024-01-08T09:43:00", + "2024-01-08T09:44:00", + "2024-01-08T09:45:00", + "2024-01-08T09:46:00", + "2024-01-08T09:47:00", + "2024-01-08T09:48:00", + "2024-01-08T09:49:00", + "2024-01-08T09:50:00", + "2024-01-08T09:51:00", + "2024-01-08T09:52:00", + "2024-01-08T09:53:00", + "2024-01-08T09:54:00", + "2024-01-08T09:55:00", + "2024-01-08T09:56:00", + "2024-01-08T09:57:00", + "2024-01-08T09:58:00", + "2024-01-08T09:59:00", + "2024-01-08T10:00:00", + "2024-01-08T10:01:00", + "2024-01-08T10:02:00", + "2024-01-08T10:03:00", + "2024-01-08T10:04:00", + "2024-01-08T10:05:00", + "2024-01-08T10:06:00", + "2024-01-08T10:07:00", + "2024-01-08T10:08:00", + "2024-01-08T10:09:00", + "2024-01-08T10:10:00", + "2024-01-08T10:11:00", + "2024-01-08T10:12:00", + "2024-01-08T10:13:00", + "2024-01-08T10:14:00", + "2024-01-08T10:15:00", + "2024-01-08T10:16:00", + "2024-01-08T10:17:00", + "2024-01-08T10:18:00", + "2024-01-08T10:19:00", + "2024-01-08T10:20:00", + "2024-01-08T10:21:00", + "2024-01-08T10:22:00", + "2024-01-08T10:23:00", + "2024-01-08T10:24:00", + "2024-01-08T10:25:00", + "2024-01-08T10:26:00", + "2024-01-08T10:27:00", + "2024-01-08T10:28:00", + "2024-01-08T10:29:00", + "2024-01-08T10:30:00", + "2024-01-08T10:31:00", + "2024-01-08T10:32:00", + "2024-01-08T10:33:00", + "2024-01-08T10:34:00", + "2024-01-08T10:35:00", + "2024-01-08T10:36:00", + "2024-01-08T10:37:00", + "2024-01-08T10:38:00", + "2024-01-08T10:39:00", + "2024-01-08T10:40:00", + "2024-01-08T10:41:00", + "2024-01-08T10:42:00", + "2024-01-08T10:43:00", + "2024-01-08T10:44:00", + "2024-01-08T10:45:00", + "2024-01-08T10:46:00", + "2024-01-08T10:47:00", + "2024-01-08T10:48:00", + "2024-01-08T10:49:00", + "2024-01-08T10:50:00", + "2024-01-08T10:51:00", + "2024-01-08T10:52:00", + "2024-01-08T10:53:00", + "2024-01-08T10:54:00", + "2024-01-08T10:55:00", + "2024-01-08T10:56:00", + "2024-01-08T10:57:00", + "2024-01-08T10:58:00", + "2024-01-08T10:59:00", + "2024-01-08T11:00:00", + "2024-01-08T11:01:00", + "2024-01-08T11:02:00", + "2024-01-08T11:03:00", + "2024-01-08T11:04:00", + "2024-01-08T11:05:00", + "2024-01-08T11:06:00", + "2024-01-08T11:07:00", + "2024-01-08T11:08:00", + "2024-01-08T11:09:00", + "2024-01-08T11:10:00", + "2024-01-08T11:11:00", + "2024-01-08T11:12:00", + "2024-01-08T11:13:00", + "2024-01-08T11:14:00", + "2024-01-08T11:15:00", + "2024-01-08T11:16:00", + "2024-01-08T11:17:00", + "2024-01-08T11:18:00", + "2024-01-08T11:19:00", + "2024-01-08T11:20:00", + "2024-01-08T11:21:00", + "2024-01-08T11:22:00", + "2024-01-08T11:23:00", + "2024-01-08T11:24:00", + "2024-01-08T11:25:00", + "2024-01-08T11:26:00", + "2024-01-08T11:27:00", + "2024-01-08T11:28:00", + "2024-01-08T11:29:00", + "2024-01-08T11:30:00", + "2024-01-08T11:31:00", + "2024-01-08T11:32:00", + "2024-01-08T11:33:00", + "2024-01-08T11:34:00", + "2024-01-08T11:35:00", + "2024-01-08T11:36:00", + "2024-01-08T11:37:00", + "2024-01-08T11:38:00", + "2024-01-08T11:39:00", + "2024-01-08T11:40:00", + "2024-01-08T11:41:00", + "2024-01-08T11:42:00", + "2024-01-08T11:43:00", + "2024-01-08T11:44:00", + "2024-01-08T11:45:00", + "2024-01-08T11:46:00", + "2024-01-08T11:47:00", + "2024-01-08T11:48:00", + "2024-01-08T11:49:00", + "2024-01-08T11:50:00", + "2024-01-08T11:51:00", + "2024-01-08T11:52:00", + "2024-01-08T11:53:00", + "2024-01-08T11:54:00", + "2024-01-08T11:55:00", + "2024-01-08T11:56:00", + "2024-01-08T11:57:00", + "2024-01-08T11:58:00", + "2024-01-08T11:59:00", + "2024-01-08T12:00:00", + "2024-01-08T12:01:00", + "2024-01-08T12:02:00", + "2024-01-08T12:03:00", + "2024-01-08T12:04:00", + "2024-01-08T12:05:00", + "2024-01-08T12:06:00", + "2024-01-08T12:07:00", + "2024-01-08T12:08:00", + "2024-01-08T12:09:00", + "2024-01-08T12:10:00", + "2024-01-08T12:11:00", + "2024-01-08T12:12:00", + "2024-01-08T12:13:00", + "2024-01-08T12:14:00", + "2024-01-08T12:15:00", + "2024-01-08T12:16:00", + "2024-01-08T12:17:00", + "2024-01-08T12:18:00", + "2024-01-08T12:19:00", + "2024-01-08T12:20:00", + "2024-01-08T12:21:00", + "2024-01-08T12:22:00", + "2024-01-08T12:23:00", + "2024-01-08T12:24:00", + "2024-01-08T12:25:00", + "2024-01-08T12:26:00", + "2024-01-08T12:27:00", + "2024-01-08T12:28:00", + "2024-01-08T12:29:00", + "2024-01-08T12:30:00", + "2024-01-08T12:31:00", + "2024-01-08T12:32:00", + "2024-01-08T12:33:00", + "2024-01-08T12:34:00", + "2024-01-08T12:35:00", + "2024-01-08T12:36:00", + "2024-01-08T12:37:00", + "2024-01-08T12:38:00", + "2024-01-08T12:39:00", + "2024-01-08T12:40:00", + "2024-01-08T12:41:00", + "2024-01-08T12:42:00", + "2024-01-08T12:43:00", + "2024-01-08T12:44:00", + "2024-01-08T12:45:00", + "2024-01-08T12:46:00", + "2024-01-08T12:47:00", + "2024-01-08T12:48:00", + "2024-01-08T12:49:00", + "2024-01-08T12:50:00", + "2024-01-08T12:51:00", + "2024-01-08T12:52:00", + "2024-01-08T12:53:00", + "2024-01-08T12:54:00", + "2024-01-08T12:55:00", + "2024-01-08T12:56:00", + "2024-01-08T12:57:00", + "2024-01-08T12:58:00", + "2024-01-08T12:59:00", + "2024-01-08T13:00:00", + "2024-01-08T13:01:00", + "2024-01-08T13:02:00", + "2024-01-08T13:03:00", + "2024-01-08T13:04:00", + "2024-01-08T13:05:00", + "2024-01-08T13:06:00", + "2024-01-08T13:07:00", + "2024-01-08T13:08:00", + "2024-01-08T13:09:00", + "2024-01-08T13:10:00", + "2024-01-08T13:11:00", + "2024-01-08T13:12:00", + "2024-01-08T13:13:00", + "2024-01-08T13:14:00", + "2024-01-08T13:15:00", + "2024-01-08T13:16:00", + "2024-01-08T13:17:00", + "2024-01-08T13:18:00", + "2024-01-08T13:19:00", + "2024-01-08T13:20:00", + "2024-01-08T13:21:00", + "2024-01-08T13:22:00", + "2024-01-08T13:23:00", + "2024-01-08T13:24:00", + "2024-01-08T13:25:00", + "2024-01-08T13:26:00", + "2024-01-08T13:27:00", + "2024-01-08T13:28:00", + "2024-01-08T13:29:00", + "2024-01-08T13:30:00", + "2024-01-08T13:31:00", + "2024-01-08T13:32:00", + "2024-01-08T13:33:00", + "2024-01-08T13:34:00", + "2024-01-08T13:35:00", + "2024-01-08T13:36:00", + "2024-01-08T13:37:00", + "2024-01-08T13:38:00", + "2024-01-08T13:39:00", + "2024-01-08T13:40:00", + "2024-01-08T13:41:00", + "2024-01-08T13:42:00", + "2024-01-08T13:43:00", + "2024-01-08T13:44:00", + "2024-01-08T13:45:00", + "2024-01-08T13:46:00", + "2024-01-08T13:47:00", + "2024-01-08T13:48:00", + "2024-01-08T13:49:00", + "2024-01-08T13:50:00", + "2024-01-08T13:51:00", + "2024-01-08T13:52:00", + "2024-01-08T13:53:00", + "2024-01-08T13:54:00", + "2024-01-08T13:55:00", + "2024-01-08T13:56:00", + "2024-01-08T13:57:00", + "2024-01-08T13:58:00", + "2024-01-08T13:59:00", + "2024-01-08T14:00:00", + "2024-01-08T14:01:00", + "2024-01-08T14:02:00", + "2024-01-08T14:03:00", + "2024-01-08T14:04:00", + "2024-01-08T14:05:00", + "2024-01-08T14:06:00", + "2024-01-08T14:07:00", + "2024-01-08T14:08:00", + "2024-01-08T14:09:00", + "2024-01-08T14:10:00", + "2024-01-08T14:11:00", + "2024-01-08T14:12:00", + "2024-01-08T14:13:00", + "2024-01-08T14:14:00", + "2024-01-08T14:15:00", + "2024-01-08T14:16:00", + "2024-01-08T14:17:00", + "2024-01-08T14:18:00", + "2024-01-08T14:19:00", + "2024-01-08T14:20:00", + "2024-01-08T14:21:00", + "2024-01-08T14:22:00", + "2024-01-08T14:23:00", + "2024-01-08T14:24:00", + "2024-01-08T14:25:00", + "2024-01-08T14:26:00", + "2024-01-08T14:27:00", + "2024-01-08T14:28:00", + "2024-01-08T14:29:00", + "2024-01-08T14:30:00", + "2024-01-08T14:31:00", + "2024-01-08T14:32:00", + "2024-01-08T14:33:00", + "2024-01-08T14:34:00", + "2024-01-08T14:35:00", + "2024-01-08T14:36:00", + "2024-01-08T14:37:00", + "2024-01-08T14:38:00", + "2024-01-08T14:39:00", + "2024-01-08T14:40:00", + "2024-01-08T14:41:00", + "2024-01-08T14:42:00", + "2024-01-08T14:43:00", + "2024-01-08T14:44:00", + "2024-01-08T14:45:00", + "2024-01-08T14:46:00", + "2024-01-08T14:47:00", + "2024-01-08T14:48:00", + "2024-01-08T14:49:00", + "2024-01-08T14:50:00", + "2024-01-08T14:51:00", + "2024-01-08T14:52:00", + "2024-01-08T14:53:00", + "2024-01-08T14:54:00", + "2024-01-08T14:55:00", + "2024-01-08T14:56:00", + "2024-01-08T14:57:00", + "2024-01-08T14:58:00", + "2024-01-08T14:59:00", + "2024-01-08T15:00:00", + "2024-01-08T15:01:00", + "2024-01-08T15:02:00", + "2024-01-08T15:03:00", + "2024-01-08T15:04:00", + "2024-01-08T15:05:00", + "2024-01-08T15:06:00", + "2024-01-08T15:07:00", + "2024-01-08T15:08:00", + "2024-01-08T15:09:00", + "2024-01-08T15:10:00", + "2024-01-08T15:11:00", + "2024-01-08T15:12:00", + "2024-01-08T15:13:00", + "2024-01-08T15:14:00", + "2024-01-08T15:15:00", + "2024-01-08T15:16:00", + "2024-01-08T15:17:00", + "2024-01-08T15:18:00", + "2024-01-08T15:19:00", + "2024-01-08T15:20:00", + "2024-01-08T15:21:00", + "2024-01-08T15:22:00", + "2024-01-08T15:23:00", + "2024-01-08T15:24:00", + "2024-01-08T15:25:00", + "2024-01-08T15:26:00", + "2024-01-08T15:27:00", + "2024-01-08T15:28:00", + "2024-01-08T15:29:00", + "2024-01-08T15:30:00", + "2024-01-08T15:31:00", + "2024-01-08T15:32:00", + "2024-01-08T15:33:00", + "2024-01-08T15:34:00", + "2024-01-08T15:35:00", + "2024-01-08T15:36:00", + "2024-01-08T15:37:00", + "2024-01-08T15:38:00", + "2024-01-08T15:39:00", + "2024-01-08T15:40:00", + "2024-01-08T15:41:00", + "2024-01-08T15:42:00", + "2024-01-08T15:43:00", + "2024-01-08T15:44:00", + "2024-01-08T15:45:00", + "2024-01-08T15:46:00", + "2024-01-08T15:47:00", + "2024-01-08T15:48:00", + "2024-01-08T15:49:00", + "2024-01-08T15:50:00", + "2024-01-08T15:51:00", + "2024-01-08T15:52:00", + "2024-01-08T15:53:00", + "2024-01-08T15:54:00", + "2024-01-08T15:55:00", + "2024-01-08T15:56:00", + "2024-01-08T15:57:00", + "2024-01-08T15:58:00", + "2024-01-08T15:59:00", + "2024-01-08T16:00:00", + "2024-01-08T16:01:00", + "2024-01-08T16:02:00", + "2024-01-08T16:03:00", + "2024-01-08T16:04:00", + "2024-01-08T16:05:00", + "2024-01-08T16:06:00", + "2024-01-08T16:07:00", + "2024-01-08T16:08:00", + "2024-01-08T16:09:00", + "2024-01-08T16:10:00", + "2024-01-08T16:11:00", + "2024-01-08T16:12:00", + "2024-01-08T16:13:00", + "2024-01-08T16:14:00", + "2024-01-08T16:15:00", + "2024-01-08T16:16:00", + "2024-01-08T16:17:00", + "2024-01-08T16:18:00", + "2024-01-08T16:19:00", + "2024-01-08T16:20:00", + "2024-01-08T16:21:00", + "2024-01-08T16:22:00", + "2024-01-08T16:23:00", + "2024-01-08T16:24:00", + "2024-01-08T16:25:00", + "2024-01-08T16:26:00", + "2024-01-08T16:27:00", + "2024-01-08T16:28:00", + "2024-01-08T16:29:00", + "2024-01-08T16:30:00", + "2024-01-08T16:31:00", + "2024-01-08T16:32:00", + "2024-01-08T16:33:00", + "2024-01-08T16:34:00", + "2024-01-08T16:35:00", + "2024-01-08T16:36:00", + "2024-01-08T16:37:00", + "2024-01-08T16:38:00", + "2024-01-08T16:39:00", + "2024-01-08T16:40:00", + "2024-01-08T16:41:00", + "2024-01-08T16:42:00", + "2024-01-08T16:43:00", + "2024-01-08T16:44:00", + "2024-01-08T16:45:00", + "2024-01-08T16:46:00", + "2024-01-08T16:47:00", + "2024-01-08T16:48:00", + "2024-01-08T16:49:00", + "2024-01-08T16:50:00", + "2024-01-08T16:51:00", + "2024-01-08T16:52:00", + "2024-01-08T16:53:00", + "2024-01-08T16:54:00", + "2024-01-08T16:55:00", + "2024-01-08T16:56:00", + "2024-01-08T16:57:00", + "2024-01-08T16:58:00", + "2024-01-08T16:59:00", + "2024-01-08T17:00:00", + "2024-01-08T17:01:00", + "2024-01-08T17:02:00", + "2024-01-08T17:03:00", + "2024-01-08T17:04:00", + "2024-01-08T17:05:00", + "2024-01-08T17:06:00", + "2024-01-08T17:07:00", + "2024-01-08T17:08:00", + "2024-01-08T17:09:00", + "2024-01-08T17:10:00", + "2024-01-08T17:11:00", + "2024-01-08T17:12:00", + "2024-01-08T17:13:00", + "2024-01-08T17:14:00", + "2024-01-08T17:15:00", + "2024-01-08T17:16:00", + "2024-01-08T17:17:00", + "2024-01-08T17:18:00", + "2024-01-08T17:19:00", + "2024-01-08T17:20:00", + "2024-01-08T17:21:00", + "2024-01-08T17:22:00", + "2024-01-08T17:23:00", + "2024-01-08T17:24:00", + "2024-01-08T17:25:00", + "2024-01-08T17:26:00", + "2024-01-08T17:27:00", + "2024-01-08T17:28:00", + "2024-01-08T17:29:00", + "2024-01-08T17:30:00", + "2024-01-08T17:31:00", + "2024-01-08T17:32:00", + "2024-01-08T17:33:00", + "2024-01-08T17:34:00", + "2024-01-08T17:35:00", + "2024-01-08T17:36:00", + "2024-01-08T17:37:00", + "2024-01-08T17:38:00", + "2024-01-08T17:39:00", + "2024-01-08T17:40:00", + "2024-01-08T17:41:00", + "2024-01-08T17:42:00", + "2024-01-08T17:43:00", + "2024-01-08T17:44:00", + "2024-01-08T17:45:00", + "2024-01-08T17:46:00", + "2024-01-08T17:47:00", + "2024-01-08T17:48:00", + "2024-01-08T17:49:00", + "2024-01-08T17:50:00", + "2024-01-08T17:51:00", + "2024-01-08T17:52:00", + "2024-01-08T17:53:00", + "2024-01-08T17:54:00", + "2024-01-08T17:55:00", + "2024-01-08T17:56:00", + "2024-01-08T17:57:00", + "2024-01-08T17:58:00", + "2024-01-08T17:59:00", + "2024-01-08T18:00:00", + "2024-01-08T18:01:00", + "2024-01-08T18:02:00", + "2024-01-08T18:03:00", + "2024-01-08T18:04:00", + "2024-01-08T18:05:00", + "2024-01-08T18:06:00", + "2024-01-08T18:07:00", + "2024-01-08T18:08:00", + "2024-01-08T18:09:00", + "2024-01-08T18:10:00", + "2024-01-08T18:11:00", + "2024-01-08T18:12:00", + "2024-01-08T18:13:00", + "2024-01-08T18:14:00", + "2024-01-08T18:15:00", + "2024-01-08T18:16:00", + "2024-01-08T18:17:00", + "2024-01-08T18:18:00", + "2024-01-08T18:19:00", + "2024-01-08T18:20:00", + "2024-01-08T18:21:00", + "2024-01-08T18:22:00", + "2024-01-08T18:23:00", + "2024-01-08T18:24:00", + "2024-01-08T18:25:00", + "2024-01-08T18:26:00", + "2024-01-08T18:27:00", + "2024-01-08T18:28:00", + "2024-01-08T18:29:00", + "2024-01-08T18:30:00", + "2024-01-08T18:31:00", + "2024-01-08T18:32:00", + "2024-01-08T18:33:00", + "2024-01-08T18:34:00", + "2024-01-08T18:35:00", + "2024-01-08T18:36:00", + "2024-01-08T18:37:00", + "2024-01-08T18:38:00", + "2024-01-08T18:39:00", + "2024-01-08T18:40:00", + "2024-01-08T18:41:00", + "2024-01-08T18:42:00", + "2024-01-08T18:43:00", + "2024-01-08T18:44:00", + "2024-01-08T18:45:00", + "2024-01-08T18:46:00", + "2024-01-08T18:47:00", + "2024-01-08T18:48:00", + "2024-01-08T18:49:00", + "2024-01-08T18:50:00", + "2024-01-08T18:51:00", + "2024-01-08T18:52:00", + "2024-01-08T18:53:00", + "2024-01-08T18:54:00", + "2024-01-08T18:55:00", + "2024-01-08T18:56:00", + "2024-01-08T18:57:00", + "2024-01-08T18:58:00", + "2024-01-08T18:59:00", + "2024-01-08T19:00:00", + "2024-01-08T19:01:00", + "2024-01-08T19:02:00", + "2024-01-08T19:03:00", + "2024-01-08T19:04:00", + "2024-01-08T19:05:00", + "2024-01-08T19:06:00", + "2024-01-08T19:07:00", + "2024-01-08T19:08:00", + "2024-01-08T19:09:00", + "2024-01-08T19:10:00", + "2024-01-08T19:11:00", + "2024-01-08T19:12:00", + "2024-01-08T19:13:00", + "2024-01-08T19:14:00", + "2024-01-08T19:15:00", + "2024-01-08T19:16:00", + "2024-01-08T19:17:00", + "2024-01-08T19:18:00", + "2024-01-08T19:19:00", + "2024-01-08T19:20:00", + "2024-01-08T19:21:00", + "2024-01-08T19:22:00", + "2024-01-08T19:23:00", + "2024-01-08T19:24:00", + "2024-01-08T19:25:00", + "2024-01-08T19:26:00", + "2024-01-08T19:27:00", + "2024-01-08T19:28:00", + "2024-01-08T19:29:00", + "2024-01-08T19:30:00", + "2024-01-08T19:31:00", + "2024-01-08T19:32:00", + "2024-01-08T19:33:00", + "2024-01-08T19:34:00", + "2024-01-08T19:35:00", + "2024-01-08T19:36:00", + "2024-01-08T19:37:00", + "2024-01-08T19:38:00", + "2024-01-08T19:39:00", + "2024-01-08T19:40:00", + "2024-01-08T19:41:00", + "2024-01-08T19:42:00", + "2024-01-08T19:43:00", + "2024-01-08T19:44:00", + "2024-01-08T19:45:00", + "2024-01-08T19:46:00", + "2024-01-08T19:47:00", + "2024-01-08T19:48:00", + "2024-01-08T19:49:00", + "2024-01-08T19:50:00", + "2024-01-08T19:51:00", + "2024-01-08T19:52:00", + "2024-01-08T19:53:00", + "2024-01-08T19:54:00", + "2024-01-08T19:55:00", + "2024-01-08T19:56:00", + "2024-01-08T19:57:00", + "2024-01-08T19:58:00", + "2024-01-08T19:59:00", + "2024-01-08T20:00:00", + "2024-01-08T20:01:00", + "2024-01-08T20:02:00", + "2024-01-08T20:03:00", + "2024-01-08T20:04:00", + "2024-01-08T20:05:00", + "2024-01-08T20:06:00", + "2024-01-08T20:07:00", + "2024-01-08T20:08:00", + "2024-01-08T20:09:00", + "2024-01-08T20:10:00", + "2024-01-08T20:11:00", + "2024-01-08T20:12:00", + "2024-01-08T20:13:00", + "2024-01-08T20:14:00", + "2024-01-08T20:15:00", + "2024-01-08T20:16:00", + "2024-01-08T20:17:00", + "2024-01-08T20:18:00", + "2024-01-08T20:19:00", + "2024-01-08T20:20:00", + "2024-01-08T20:21:00", + "2024-01-08T20:22:00", + "2024-01-08T20:23:00", + "2024-01-08T20:24:00", + "2024-01-08T20:25:00", + "2024-01-08T20:26:00", + "2024-01-08T20:27:00", + "2024-01-08T20:28:00", + "2024-01-08T20:29:00", + "2024-01-08T20:30:00", + "2024-01-08T20:31:00", + "2024-01-08T20:32:00", + "2024-01-08T20:33:00", + "2024-01-08T20:34:00", + "2024-01-08T20:35:00", + "2024-01-08T20:36:00", + "2024-01-08T20:37:00", + "2024-01-08T20:38:00", + "2024-01-08T20:39:00", + "2024-01-08T20:40:00", + "2024-01-08T20:41:00", + "2024-01-08T20:42:00", + "2024-01-08T20:43:00", + "2024-01-08T20:44:00", + "2024-01-08T20:45:00", + "2024-01-08T20:46:00", + "2024-01-08T20:47:00", + "2024-01-08T20:48:00", + "2024-01-08T20:49:00", + "2024-01-08T20:50:00", + "2024-01-08T20:51:00", + "2024-01-08T20:52:00", + "2024-01-08T20:53:00", + "2024-01-08T20:54:00", + "2024-01-08T20:55:00", + "2024-01-08T20:56:00", + "2024-01-08T20:57:00", + "2024-01-08T20:58:00", + "2024-01-08T20:59:00", + "2024-01-08T21:00:00", + "2024-01-08T21:01:00", + "2024-01-08T21:02:00", + "2024-01-08T21:03:00", + "2024-01-08T21:04:00", + "2024-01-08T21:05:00", + "2024-01-08T21:06:00", + "2024-01-08T21:07:00", + "2024-01-08T21:08:00", + "2024-01-08T21:09:00", + "2024-01-08T21:10:00", + "2024-01-08T21:11:00", + "2024-01-08T21:12:00", + "2024-01-08T21:13:00", + "2024-01-08T21:14:00", + "2024-01-08T21:15:00", + "2024-01-08T21:16:00", + "2024-01-08T21:17:00", + "2024-01-08T21:18:00", + "2024-01-08T21:19:00", + "2024-01-08T21:20:00", + "2024-01-08T21:21:00", + "2024-01-08T21:22:00", + "2024-01-08T21:23:00", + "2024-01-08T21:24:00", + "2024-01-08T21:25:00", + "2024-01-08T21:26:00", + "2024-01-08T21:27:00", + "2024-01-08T21:28:00", + "2024-01-08T21:29:00", + "2024-01-08T21:30:00", + "2024-01-08T21:31:00", + "2024-01-08T21:32:00", + "2024-01-08T21:33:00", + "2024-01-08T21:34:00", + "2024-01-08T21:35:00", + "2024-01-08T21:36:00", + "2024-01-08T21:37:00", + "2024-01-08T21:38:00", + "2024-01-08T21:39:00", + "2024-01-08T21:40:00", + "2024-01-08T21:41:00", + "2024-01-08T21:42:00", + "2024-01-08T21:43:00", + "2024-01-08T21:44:00", + "2024-01-08T21:45:00", + "2024-01-08T21:46:00", + "2024-01-08T21:47:00", + "2024-01-08T21:48:00", + "2024-01-08T21:49:00", + "2024-01-08T21:50:00", + "2024-01-08T21:51:00", + "2024-01-08T21:52:00", + "2024-01-08T21:53:00", + "2024-01-08T21:54:00", + "2024-01-08T21:55:00", + "2024-01-08T21:56:00", + "2024-01-08T21:57:00", + "2024-01-08T21:58:00", + "2024-01-08T21:59:00", + "2024-01-08T22:00:00", + "2024-01-08T22:01:00", + "2024-01-08T22:02:00", + "2024-01-08T22:03:00", + "2024-01-08T22:04:00", + "2024-01-08T22:05:00", + "2024-01-08T22:06:00", + "2024-01-08T22:07:00", + "2024-01-08T22:08:00", + "2024-01-08T22:09:00", + "2024-01-08T22:10:00", + "2024-01-08T22:11:00", + "2024-01-08T22:12:00", + "2024-01-08T22:13:00", + "2024-01-08T22:14:00", + "2024-01-08T22:15:00", + "2024-01-08T22:16:00", + "2024-01-08T22:17:00", + "2024-01-08T22:18:00", + "2024-01-08T22:19:00", + "2024-01-08T22:20:00", + "2024-01-08T22:21:00", + "2024-01-08T22:22:00", + "2024-01-08T22:23:00", + "2024-01-08T22:24:00", + "2024-01-08T22:25:00", + "2024-01-08T22:26:00", + "2024-01-08T22:27:00", + "2024-01-08T22:28:00", + "2024-01-08T22:29:00", + "2024-01-08T22:30:00", + "2024-01-08T22:31:00", + "2024-01-08T22:32:00", + "2024-01-08T22:33:00", + "2024-01-08T22:34:00", + "2024-01-08T22:35:00", + "2024-01-08T22:36:00", + "2024-01-08T22:37:00", + "2024-01-08T22:38:00", + "2024-01-08T22:39:00", + "2024-01-08T22:40:00", + "2024-01-08T22:41:00", + "2024-01-08T22:42:00", + "2024-01-08T22:43:00", + "2024-01-08T22:44:00", + "2024-01-08T22:45:00", + "2024-01-08T22:46:00", + "2024-01-08T22:47:00", + "2024-01-08T22:48:00", + "2024-01-08T22:49:00", + "2024-01-08T22:50:00", + "2024-01-08T22:51:00", + "2024-01-08T22:52:00", + "2024-01-08T22:53:00", + "2024-01-08T22:54:00", + "2024-01-08T22:55:00", + "2024-01-08T22:56:00", + "2024-01-08T22:57:00", + "2024-01-08T22:58:00", + "2024-01-08T22:59:00", + "2024-01-08T23:00:00", + "2024-01-08T23:01:00", + "2024-01-08T23:02:00", + "2024-01-08T23:03:00", + "2024-01-08T23:04:00", + "2024-01-08T23:05:00", + "2024-01-08T23:06:00", + "2024-01-08T23:07:00", + "2024-01-08T23:08:00", + "2024-01-08T23:09:00", + "2024-01-08T23:10:00", + "2024-01-08T23:11:00", + "2024-01-08T23:12:00", + "2024-01-08T23:13:00", + "2024-01-08T23:14:00", + "2024-01-08T23:15:00", + "2024-01-08T23:16:00", + "2024-01-08T23:17:00", + "2024-01-08T23:18:00", + "2024-01-08T23:19:00", + "2024-01-08T23:20:00", + "2024-01-08T23:21:00", + "2024-01-08T23:22:00", + "2024-01-08T23:23:00", + "2024-01-08T23:24:00", + "2024-01-08T23:25:00", + "2024-01-08T23:26:00", + "2024-01-08T23:27:00", + "2024-01-08T23:28:00", + "2024-01-08T23:29:00", + "2024-01-08T23:30:00", + "2024-01-08T23:31:00", + "2024-01-08T23:32:00", + "2024-01-08T23:33:00", + "2024-01-08T23:34:00", + "2024-01-08T23:35:00", + "2024-01-08T23:36:00", + "2024-01-08T23:37:00", + "2024-01-08T23:38:00", + "2024-01-08T23:39:00", + "2024-01-08T23:40:00", + "2024-01-08T23:41:00", + "2024-01-08T23:42:00", + "2024-01-08T23:43:00", + "2024-01-08T23:44:00", + "2024-01-08T23:45:00", + "2024-01-08T23:46:00", + "2024-01-08T23:47:00", + "2024-01-08T23:48:00", + "2024-01-08T23:49:00", + "2024-01-08T23:50:00", + "2024-01-08T23:51:00", + "2024-01-08T23:52:00", + "2024-01-08T23:53:00", + "2024-01-08T23:54:00", + "2024-01-08T23:55:00", + "2024-01-08T23:56:00", + "2024-01-08T23:57:00", + "2024-01-08T23:58:00", + "2024-01-08T23:59:00", + "2024-01-09T00:00:00", + "2024-01-09T00:01:00", + "2024-01-09T00:02:00", + "2024-01-09T00:03:00", + "2024-01-09T00:04:00", + "2024-01-09T00:05:00", + "2024-01-09T00:06:00", + "2024-01-09T00:07:00", + "2024-01-09T00:08:00", + "2024-01-09T00:09:00", + "2024-01-09T00:10:00", + "2024-01-09T00:11:00", + "2024-01-09T00:12:00", + "2024-01-09T00:13:00", + "2024-01-09T00:14:00", + "2024-01-09T00:15:00", + "2024-01-09T00:16:00", + "2024-01-09T00:17:00", + "2024-01-09T00:18:00", + "2024-01-09T00:19:00", + "2024-01-09T00:20:00", + "2024-01-09T00:21:00", + "2024-01-09T00:22:00", + "2024-01-09T00:23:00", + "2024-01-09T00:24:00", + "2024-01-09T00:25:00", + "2024-01-09T00:26:00", + "2024-01-09T00:27:00", + "2024-01-09T00:28:00", + "2024-01-09T00:29:00", + "2024-01-09T00:30:00", + "2024-01-09T00:31:00", + "2024-01-09T00:32:00", + "2024-01-09T00:33:00", + "2024-01-09T00:34:00", + "2024-01-09T00:35:00", + "2024-01-09T00:36:00", + "2024-01-09T00:37:00", + "2024-01-09T00:38:00", + "2024-01-09T00:39:00", + "2024-01-09T00:40:00", + "2024-01-09T00:41:00", + "2024-01-09T00:42:00", + "2024-01-09T00:43:00", + "2024-01-09T00:44:00", + "2024-01-09T00:45:00", + "2024-01-09T00:46:00", + "2024-01-09T00:47:00", + "2024-01-09T00:48:00", + "2024-01-09T00:49:00", + "2024-01-09T00:50:00", + "2024-01-09T00:51:00", + "2024-01-09T00:52:00", + "2024-01-09T00:53:00", + "2024-01-09T00:54:00", + "2024-01-09T00:55:00", + "2024-01-09T00:56:00", + "2024-01-09T00:57:00", + "2024-01-09T00:58:00", + "2024-01-09T00:59:00", + "2024-01-09T01:00:00", + "2024-01-09T01:01:00", + "2024-01-09T01:02:00", + "2024-01-09T01:03:00", + "2024-01-09T01:04:00", + "2024-01-09T01:05:00", + "2024-01-09T01:06:00", + "2024-01-09T01:07:00", + "2024-01-09T01:08:00", + "2024-01-09T01:09:00", + "2024-01-09T01:10:00", + "2024-01-09T01:11:00", + "2024-01-09T01:12:00", + "2024-01-09T01:13:00", + "2024-01-09T01:14:00", + "2024-01-09T01:15:00", + "2024-01-09T01:16:00", + "2024-01-09T01:17:00", + "2024-01-09T01:18:00", + "2024-01-09T01:19:00", + "2024-01-09T01:20:00", + "2024-01-09T01:21:00", + "2024-01-09T01:22:00", + "2024-01-09T01:23:00", + "2024-01-09T01:24:00", + "2024-01-09T01:25:00", + "2024-01-09T01:26:00", + "2024-01-09T01:27:00", + "2024-01-09T01:28:00", + "2024-01-09T01:29:00", + "2024-01-09T01:30:00", + "2024-01-09T01:31:00", + "2024-01-09T01:32:00", + "2024-01-09T01:33:00", + "2024-01-09T01:34:00", + "2024-01-09T01:35:00", + "2024-01-09T01:36:00", + "2024-01-09T01:37:00", + "2024-01-09T01:38:00", + "2024-01-09T01:39:00", + "2024-01-09T01:40:00", + "2024-01-09T01:41:00", + "2024-01-09T01:42:00", + "2024-01-09T01:43:00", + "2024-01-09T01:44:00", + "2024-01-09T01:45:00", + "2024-01-09T01:46:00", + "2024-01-09T01:47:00", + "2024-01-09T01:48:00", + "2024-01-09T01:49:00", + "2024-01-09T01:50:00", + "2024-01-09T01:51:00", + "2024-01-09T01:52:00", + "2024-01-09T01:53:00", + "2024-01-09T01:54:00", + "2024-01-09T01:55:00", + "2024-01-09T01:56:00", + "2024-01-09T01:57:00", + "2024-01-09T01:58:00", + "2024-01-09T01:59:00", + "2024-01-09T02:00:00", + "2024-01-09T02:01:00", + "2024-01-09T02:02:00", + "2024-01-09T02:03:00", + "2024-01-09T02:04:00", + "2024-01-09T02:05:00", + "2024-01-09T02:06:00", + "2024-01-09T02:07:00", + "2024-01-09T02:08:00", + "2024-01-09T02:09:00", + "2024-01-09T02:10:00", + "2024-01-09T02:11:00", + "2024-01-09T02:12:00", + "2024-01-09T02:13:00", + "2024-01-09T02:14:00", + "2024-01-09T02:15:00", + "2024-01-09T02:16:00", + "2024-01-09T02:17:00", + "2024-01-09T02:18:00", + "2024-01-09T02:19:00", + "2024-01-09T02:20:00", + "2024-01-09T02:21:00", + "2024-01-09T02:22:00", + "2024-01-09T02:23:00", + "2024-01-09T02:24:00", + "2024-01-09T02:25:00", + "2024-01-09T02:26:00", + "2024-01-09T02:27:00", + "2024-01-09T02:28:00", + "2024-01-09T02:29:00", + "2024-01-09T02:30:00", + "2024-01-09T02:31:00", + "2024-01-09T02:32:00", + "2024-01-09T02:33:00", + "2024-01-09T02:34:00", + "2024-01-09T02:35:00", + "2024-01-09T02:36:00", + "2024-01-09T02:37:00", + "2024-01-09T02:38:00", + "2024-01-09T02:39:00", + "2024-01-09T02:40:00", + "2024-01-09T02:41:00", + "2024-01-09T02:42:00", + "2024-01-09T02:43:00", + "2024-01-09T02:44:00", + "2024-01-09T02:45:00", + "2024-01-09T02:46:00", + "2024-01-09T02:47:00", + "2024-01-09T02:48:00", + "2024-01-09T02:49:00", + "2024-01-09T02:50:00", + "2024-01-09T02:51:00", + "2024-01-09T02:52:00", + "2024-01-09T02:53:00", + "2024-01-09T02:54:00", + "2024-01-09T02:55:00", + "2024-01-09T02:56:00", + "2024-01-09T02:57:00", + "2024-01-09T02:58:00", + "2024-01-09T02:59:00", + "2024-01-09T03:00:00", + "2024-01-09T03:01:00", + "2024-01-09T03:02:00", + "2024-01-09T03:03:00", + "2024-01-09T03:04:00", + "2024-01-09T03:05:00", + "2024-01-09T03:06:00", + "2024-01-09T03:07:00", + "2024-01-09T03:08:00", + "2024-01-09T03:09:00", + "2024-01-09T03:10:00", + "2024-01-09T03:11:00", + "2024-01-09T03:12:00", + "2024-01-09T03:13:00", + "2024-01-09T03:14:00", + "2024-01-09T03:15:00", + "2024-01-09T03:16:00", + "2024-01-09T03:17:00", + "2024-01-09T03:18:00", + "2024-01-09T03:19:00", + "2024-01-09T03:20:00", + "2024-01-09T03:21:00", + "2024-01-09T03:22:00", + "2024-01-09T03:23:00", + "2024-01-09T03:24:00", + "2024-01-09T03:25:00", + "2024-01-09T03:26:00", + "2024-01-09T03:27:00", + "2024-01-09T03:28:00", + "2024-01-09T03:29:00", + "2024-01-09T03:30:00", + "2024-01-09T03:31:00", + "2024-01-09T03:32:00", + "2024-01-09T03:33:00", + "2024-01-09T03:34:00", + "2024-01-09T03:35:00", + "2024-01-09T03:36:00", + "2024-01-09T03:37:00", + "2024-01-09T03:38:00", + "2024-01-09T03:39:00", + "2024-01-09T03:40:00", + "2024-01-09T03:41:00", + "2024-01-09T03:42:00", + "2024-01-09T03:43:00", + "2024-01-09T03:44:00", + "2024-01-09T03:45:00", + "2024-01-09T03:46:00", + "2024-01-09T03:47:00", + "2024-01-09T03:48:00", + "2024-01-09T03:49:00", + "2024-01-09T03:50:00", + "2024-01-09T03:51:00", + "2024-01-09T03:52:00", + "2024-01-09T03:53:00", + "2024-01-09T03:54:00", + "2024-01-09T03:55:00", + "2024-01-09T03:56:00", + "2024-01-09T03:57:00", + "2024-01-09T03:58:00", + "2024-01-09T03:59:00", + "2024-01-09T04:00:00", + "2024-01-09T04:01:00", + "2024-01-09T04:02:00", + "2024-01-09T04:03:00", + "2024-01-09T04:04:00", + "2024-01-09T04:05:00", + "2024-01-09T04:06:00", + "2024-01-09T04:07:00", + "2024-01-09T04:08:00", + "2024-01-09T04:09:00", + "2024-01-09T04:10:00", + "2024-01-09T04:11:00", + "2024-01-09T04:12:00", + "2024-01-09T04:13:00", + "2024-01-09T04:14:00", + "2024-01-09T04:15:00", + "2024-01-09T04:16:00", + "2024-01-09T04:17:00", + "2024-01-09T04:18:00", + "2024-01-09T04:19:00", + "2024-01-09T04:20:00", + "2024-01-09T04:21:00", + "2024-01-09T04:22:00", + "2024-01-09T04:23:00", + "2024-01-09T04:24:00", + "2024-01-09T04:25:00", + "2024-01-09T04:26:00", + "2024-01-09T04:27:00", + "2024-01-09T04:28:00", + "2024-01-09T04:29:00", + "2024-01-09T04:30:00", + "2024-01-09T04:31:00", + "2024-01-09T04:32:00", + "2024-01-09T04:33:00", + "2024-01-09T04:34:00", + "2024-01-09T04:35:00", + "2024-01-09T04:36:00", + "2024-01-09T04:37:00", + "2024-01-09T04:38:00", + "2024-01-09T04:39:00", + "2024-01-09T04:40:00", + "2024-01-09T04:41:00", + "2024-01-09T04:42:00", + "2024-01-09T04:43:00", + "2024-01-09T04:44:00", + "2024-01-09T04:45:00", + "2024-01-09T04:46:00", + "2024-01-09T04:47:00", + "2024-01-09T04:48:00", + "2024-01-09T04:49:00", + "2024-01-09T04:50:00", + "2024-01-09T04:51:00", + "2024-01-09T04:52:00", + "2024-01-09T04:53:00", + "2024-01-09T04:54:00", + "2024-01-09T04:55:00", + "2024-01-09T04:56:00", + "2024-01-09T04:57:00", + "2024-01-09T04:58:00", + "2024-01-09T04:59:00", + "2024-01-09T05:00:00", + "2024-01-09T05:01:00", + "2024-01-09T05:02:00", + "2024-01-09T05:03:00", + "2024-01-09T05:04:00", + "2024-01-09T05:05:00", + "2024-01-09T05:06:00", + "2024-01-09T05:07:00", + "2024-01-09T05:08:00", + "2024-01-09T05:09:00", + "2024-01-09T05:10:00", + "2024-01-09T05:11:00", + "2024-01-09T05:12:00", + "2024-01-09T05:13:00", + "2024-01-09T05:14:00", + "2024-01-09T05:15:00", + "2024-01-09T05:16:00", + "2024-01-09T05:17:00", + "2024-01-09T05:18:00", + "2024-01-09T05:19:00", + "2024-01-09T05:20:00", + "2024-01-09T05:21:00", + "2024-01-09T05:22:00", + "2024-01-09T05:23:00", + "2024-01-09T05:24:00", + "2024-01-09T05:25:00", + "2024-01-09T05:26:00", + "2024-01-09T05:27:00", + "2024-01-09T05:28:00", + "2024-01-09T05:29:00", + "2024-01-09T05:30:00", + "2024-01-09T05:31:00", + "2024-01-09T05:32:00", + "2024-01-09T05:33:00", + "2024-01-09T05:34:00", + "2024-01-09T05:35:00", + "2024-01-09T05:36:00", + "2024-01-09T05:37:00", + "2024-01-09T05:38:00", + "2024-01-09T05:39:00", + "2024-01-09T05:40:00", + "2024-01-09T05:41:00", + "2024-01-09T05:42:00", + "2024-01-09T05:43:00", + "2024-01-09T05:44:00", + "2024-01-09T05:45:00", + "2024-01-09T05:46:00", + "2024-01-09T05:47:00", + "2024-01-09T05:48:00", + "2024-01-09T05:49:00", + "2024-01-09T05:50:00", + "2024-01-09T05:51:00", + "2024-01-09T05:52:00", + "2024-01-09T05:53:00", + "2024-01-09T05:54:00", + "2024-01-09T05:55:00", + "2024-01-09T05:56:00", + "2024-01-09T05:57:00", + "2024-01-09T05:58:00", + "2024-01-09T05:59:00", + "2024-01-09T06:00:00", + "2024-01-09T06:01:00", + "2024-01-09T06:02:00", + "2024-01-09T06:03:00", + "2024-01-09T06:04:00", + "2024-01-09T06:05:00", + "2024-01-09T06:06:00", + "2024-01-09T06:07:00", + "2024-01-09T06:08:00", + "2024-01-09T06:09:00", + "2024-01-09T06:10:00", + "2024-01-09T06:11:00", + "2024-01-09T06:12:00", + "2024-01-09T06:13:00", + "2024-01-09T06:14:00", + "2024-01-09T06:15:00", + "2024-01-09T06:16:00", + "2024-01-09T06:17:00", + "2024-01-09T06:18:00", + "2024-01-09T06:19:00", + "2024-01-09T06:20:00", + "2024-01-09T06:21:00", + "2024-01-09T06:22:00", + "2024-01-09T06:23:00", + "2024-01-09T06:24:00", + "2024-01-09T06:25:00", + "2024-01-09T06:26:00", + "2024-01-09T06:27:00", + "2024-01-09T06:28:00", + "2024-01-09T06:29:00", + "2024-01-09T06:30:00", + "2024-01-09T06:31:00", + "2024-01-09T06:32:00", + "2024-01-09T06:33:00", + "2024-01-09T06:34:00", + "2024-01-09T06:35:00", + "2024-01-09T06:36:00", + "2024-01-09T06:37:00", + "2024-01-09T06:38:00", + "2024-01-09T06:39:00", + "2024-01-09T06:40:00", + "2024-01-09T06:41:00", + "2024-01-09T06:42:00", + "2024-01-09T06:43:00", + "2024-01-09T06:44:00", + "2024-01-09T06:45:00", + "2024-01-09T06:46:00", + "2024-01-09T06:47:00", + "2024-01-09T06:48:00", + "2024-01-09T06:49:00", + "2024-01-09T06:50:00", + "2024-01-09T06:51:00", + "2024-01-09T06:52:00", + "2024-01-09T06:53:00", + "2024-01-09T06:54:00", + "2024-01-09T06:55:00", + "2024-01-09T06:56:00", + "2024-01-09T06:57:00", + "2024-01-09T06:58:00", + "2024-01-09T06:59:00", + "2024-01-09T07:00:00", + "2024-01-09T07:01:00", + "2024-01-09T07:02:00", + "2024-01-09T07:03:00", + "2024-01-09T07:04:00", + "2024-01-09T07:05:00", + "2024-01-09T07:06:00", + "2024-01-09T07:07:00", + "2024-01-09T07:08:00", + "2024-01-09T07:09:00", + "2024-01-09T07:10:00", + "2024-01-09T07:11:00", + "2024-01-09T07:12:00", + "2024-01-09T07:13:00", + "2024-01-09T07:14:00", + "2024-01-09T07:15:00", + "2024-01-09T07:16:00", + "2024-01-09T07:17:00", + "2024-01-09T07:18:00", + "2024-01-09T07:19:00", + "2024-01-09T07:20:00", + "2024-01-09T07:21:00", + "2024-01-09T07:22:00", + "2024-01-09T07:23:00", + "2024-01-09T07:24:00", + "2024-01-09T07:25:00", + "2024-01-09T07:26:00", + "2024-01-09T07:27:00", + "2024-01-09T07:28:00", + "2024-01-09T07:29:00", + "2024-01-09T07:30:00", + "2024-01-09T07:31:00", + "2024-01-09T07:32:00", + "2024-01-09T07:33:00", + "2024-01-09T07:34:00", + "2024-01-09T07:35:00", + "2024-01-09T07:36:00", + "2024-01-09T07:37:00", + "2024-01-09T07:38:00", + "2024-01-09T07:39:00", + "2024-01-09T07:40:00", + "2024-01-09T07:41:00", + "2024-01-09T07:42:00", + "2024-01-09T07:43:00", + "2024-01-09T07:44:00", + "2024-01-09T07:45:00", + "2024-01-09T07:46:00", + "2024-01-09T07:47:00", + "2024-01-09T07:48:00", + "2024-01-09T07:49:00", + "2024-01-09T07:50:00", + "2024-01-09T07:51:00", + "2024-01-09T07:52:00", + "2024-01-09T07:53:00", + "2024-01-09T07:54:00", + "2024-01-09T07:55:00", + "2024-01-09T07:56:00", + "2024-01-09T07:57:00", + "2024-01-09T07:58:00", + "2024-01-09T07:59:00", + "2024-01-09T08:00:00", + "2024-01-09T08:01:00", + "2024-01-09T08:02:00", + "2024-01-09T08:03:00", + "2024-01-09T08:04:00", + "2024-01-09T08:05:00", + "2024-01-09T08:06:00", + "2024-01-09T08:07:00", + "2024-01-09T08:08:00", + "2024-01-09T08:09:00", + "2024-01-09T08:10:00", + "2024-01-09T08:11:00", + "2024-01-09T08:12:00", + "2024-01-09T08:13:00", + "2024-01-09T08:14:00", + "2024-01-09T08:15:00", + "2024-01-09T08:16:00", + "2024-01-09T08:17:00", + "2024-01-09T08:18:00", + "2024-01-09T08:19:00", + "2024-01-09T08:20:00", + "2024-01-09T08:21:00", + "2024-01-09T08:22:00", + "2024-01-09T08:23:00", + "2024-01-09T08:24:00", + "2024-01-09T08:25:00", + "2024-01-09T08:26:00", + "2024-01-09T08:27:00", + "2024-01-09T08:28:00", + "2024-01-09T08:29:00", + "2024-01-09T08:30:00", + "2024-01-09T08:31:00", + "2024-01-09T08:32:00", + "2024-01-09T08:33:00", + "2024-01-09T08:34:00", + "2024-01-09T08:35:00", + "2024-01-09T08:36:00", + "2024-01-09T08:37:00", + "2024-01-09T08:38:00", + "2024-01-09T08:39:00", + "2024-01-09T08:40:00", + "2024-01-09T08:41:00", + "2024-01-09T08:42:00", + "2024-01-09T08:43:00", + "2024-01-09T08:44:00", + "2024-01-09T08:45:00", + "2024-01-09T08:46:00", + "2024-01-09T08:47:00", + "2024-01-09T08:48:00", + "2024-01-09T08:49:00", + "2024-01-09T08:50:00", + "2024-01-09T08:51:00", + "2024-01-09T08:52:00", + "2024-01-09T08:53:00", + "2024-01-09T08:54:00", + "2024-01-09T08:55:00", + "2024-01-09T08:56:00", + "2024-01-09T08:57:00", + "2024-01-09T08:58:00", + "2024-01-09T08:59:00", + "2024-01-09T09:00:00", + "2024-01-09T09:01:00", + "2024-01-09T09:02:00", + "2024-01-09T09:03:00", + "2024-01-09T09:04:00", + "2024-01-09T09:05:00", + "2024-01-09T09:06:00", + "2024-01-09T09:07:00", + "2024-01-09T09:08:00", + "2024-01-09T09:09:00", + "2024-01-09T09:10:00", + "2024-01-09T09:11:00", + "2024-01-09T09:12:00", + "2024-01-09T09:13:00", + "2024-01-09T09:14:00", + "2024-01-09T09:15:00", + "2024-01-09T09:16:00", + "2024-01-09T09:17:00", + "2024-01-09T09:18:00", + "2024-01-09T09:19:00", + "2024-01-09T09:20:00", + "2024-01-09T09:21:00", + "2024-01-09T09:22:00", + "2024-01-09T09:23:00", + "2024-01-09T09:24:00", + "2024-01-09T09:25:00", + "2024-01-09T09:26:00", + "2024-01-09T09:27:00", + "2024-01-09T09:28:00", + "2024-01-09T09:29:00", + "2024-01-09T09:30:00", + "2024-01-09T09:31:00", + "2024-01-09T09:32:00", + "2024-01-09T09:33:00", + "2024-01-09T09:34:00", + "2024-01-09T09:35:00", + "2024-01-09T09:36:00", + "2024-01-09T09:37:00", + "2024-01-09T09:38:00", + "2024-01-09T09:39:00", + "2024-01-09T09:40:00", + "2024-01-09T09:41:00", + "2024-01-09T09:42:00", + "2024-01-09T09:43:00", + "2024-01-09T09:44:00", + "2024-01-09T09:45:00", + "2024-01-09T09:46:00", + "2024-01-09T09:47:00", + "2024-01-09T09:48:00", + "2024-01-09T09:49:00", + "2024-01-09T09:50:00", + "2024-01-09T09:51:00", + "2024-01-09T09:52:00", + "2024-01-09T09:53:00", + "2024-01-09T09:54:00", + "2024-01-09T09:55:00", + "2024-01-09T09:56:00", + "2024-01-09T09:57:00", + "2024-01-09T09:58:00", + "2024-01-09T09:59:00", + "2024-01-09T10:00:00", + "2024-01-09T10:01:00", + "2024-01-09T10:02:00", + "2024-01-09T10:03:00", + "2024-01-09T10:04:00", + "2024-01-09T10:05:00", + "2024-01-09T10:06:00", + "2024-01-09T10:07:00", + "2024-01-09T10:08:00", + "2024-01-09T10:09:00", + "2024-01-09T10:10:00", + "2024-01-09T10:11:00", + "2024-01-09T10:12:00", + "2024-01-09T10:13:00", + "2024-01-09T10:14:00", + "2024-01-09T10:15:00", + "2024-01-09T10:16:00", + "2024-01-09T10:17:00", + "2024-01-09T10:18:00", + "2024-01-09T10:19:00", + "2024-01-09T10:20:00", + "2024-01-09T10:21:00", + "2024-01-09T10:22:00", + "2024-01-09T10:23:00", + "2024-01-09T10:24:00", + "2024-01-09T10:25:00", + "2024-01-09T10:26:00", + "2024-01-09T10:27:00", + "2024-01-09T10:28:00", + "2024-01-09T10:29:00", + "2024-01-09T10:30:00", + "2024-01-09T10:31:00", + "2024-01-09T10:32:00", + "2024-01-09T10:33:00", + "2024-01-09T10:34:00", + "2024-01-09T10:35:00", + "2024-01-09T10:36:00", + "2024-01-09T10:37:00", + "2024-01-09T10:38:00", + "2024-01-09T10:39:00", + "2024-01-09T10:40:00", + "2024-01-09T10:41:00", + "2024-01-09T10:42:00", + "2024-01-09T10:43:00", + "2024-01-09T10:44:00", + "2024-01-09T10:45:00", + "2024-01-09T10:46:00", + "2024-01-09T10:47:00", + "2024-01-09T10:48:00", + "2024-01-09T10:49:00", + "2024-01-09T10:50:00", + "2024-01-09T10:51:00", + "2024-01-09T10:52:00", + "2024-01-09T10:53:00", + "2024-01-09T10:54:00", + "2024-01-09T10:55:00", + "2024-01-09T10:56:00", + "2024-01-09T10:57:00", + "2024-01-09T10:58:00", + "2024-01-09T10:59:00", + "2024-01-09T11:00:00", + "2024-01-09T11:01:00", + "2024-01-09T11:02:00", + "2024-01-09T11:03:00", + "2024-01-09T11:04:00", + "2024-01-09T11:05:00", + "2024-01-09T11:06:00", + "2024-01-09T11:07:00", + "2024-01-09T11:08:00", + "2024-01-09T11:09:00", + "2024-01-09T11:10:00", + "2024-01-09T11:11:00", + "2024-01-09T11:12:00", + "2024-01-09T11:13:00", + "2024-01-09T11:14:00", + "2024-01-09T11:15:00", + "2024-01-09T11:16:00", + "2024-01-09T11:17:00", + "2024-01-09T11:18:00", + "2024-01-09T11:19:00", + "2024-01-09T11:20:00", + "2024-01-09T11:21:00", + "2024-01-09T11:22:00", + "2024-01-09T11:23:00", + "2024-01-09T11:24:00", + "2024-01-09T11:25:00", + "2024-01-09T11:26:00", + "2024-01-09T11:27:00", + "2024-01-09T11:28:00", + "2024-01-09T11:29:00", + "2024-01-09T11:30:00", + "2024-01-09T11:31:00", + "2024-01-09T11:32:00", + "2024-01-09T11:33:00", + "2024-01-09T11:34:00", + "2024-01-09T11:35:00", + "2024-01-09T11:36:00", + "2024-01-09T11:37:00", + "2024-01-09T11:38:00", + "2024-01-09T11:39:00", + "2024-01-09T11:40:00", + "2024-01-09T11:41:00", + "2024-01-09T11:42:00", + "2024-01-09T11:43:00", + "2024-01-09T11:44:00", + "2024-01-09T11:45:00", + "2024-01-09T11:46:00", + "2024-01-09T11:47:00", + "2024-01-09T11:48:00", + "2024-01-09T11:49:00", + "2024-01-09T11:50:00", + "2024-01-09T11:51:00", + "2024-01-09T11:52:00", + "2024-01-09T11:53:00", + "2024-01-09T11:54:00", + "2024-01-09T11:55:00", + "2024-01-09T11:56:00", + "2024-01-09T11:57:00", + "2024-01-09T11:58:00", + "2024-01-09T11:59:00", + "2024-01-09T12:00:00", + "2024-01-09T12:01:00", + "2024-01-09T12:02:00", + "2024-01-09T12:03:00", + "2024-01-09T12:04:00", + "2024-01-09T12:05:00", + "2024-01-09T12:06:00", + "2024-01-09T12:07:00", + "2024-01-09T12:08:00", + "2024-01-09T12:09:00", + "2024-01-09T12:10:00", + "2024-01-09T12:11:00", + "2024-01-09T12:12:00", + "2024-01-09T12:13:00", + "2024-01-09T12:14:00", + "2024-01-09T12:15:00", + "2024-01-09T12:16:00", + "2024-01-09T12:17:00", + "2024-01-09T12:18:00", + "2024-01-09T12:19:00", + "2024-01-09T12:20:00", + "2024-01-09T12:21:00", + "2024-01-09T12:22:00", + "2024-01-09T12:23:00", + "2024-01-09T12:24:00", + "2024-01-09T12:25:00", + "2024-01-09T12:26:00", + "2024-01-09T12:27:00", + "2024-01-09T12:28:00", + "2024-01-09T12:29:00", + "2024-01-09T12:30:00", + "2024-01-09T12:31:00", + "2024-01-09T12:32:00", + "2024-01-09T12:33:00", + "2024-01-09T12:34:00", + "2024-01-09T12:35:00", + "2024-01-09T12:36:00", + "2024-01-09T12:37:00", + "2024-01-09T12:38:00", + "2024-01-09T12:39:00", + "2024-01-09T12:40:00", + "2024-01-09T12:41:00", + "2024-01-09T12:42:00", + "2024-01-09T12:43:00", + "2024-01-09T12:44:00", + "2024-01-09T12:45:00", + "2024-01-09T12:46:00", + "2024-01-09T12:47:00", + "2024-01-09T12:48:00", + "2024-01-09T12:49:00", + "2024-01-09T12:50:00", + "2024-01-09T12:51:00", + "2024-01-09T12:52:00", + "2024-01-09T12:53:00", + "2024-01-09T12:54:00", + "2024-01-09T12:55:00", + "2024-01-09T12:56:00", + "2024-01-09T12:57:00", + "2024-01-09T12:58:00", + "2024-01-09T12:59:00", + "2024-01-09T13:00:00", + "2024-01-09T13:01:00", + "2024-01-09T13:02:00", + "2024-01-09T13:03:00", + "2024-01-09T13:04:00", + "2024-01-09T13:05:00", + "2024-01-09T13:06:00", + "2024-01-09T13:07:00", + "2024-01-09T13:08:00", + "2024-01-09T13:09:00", + "2024-01-09T13:10:00", + "2024-01-09T13:11:00", + "2024-01-09T13:12:00", + "2024-01-09T13:13:00", + "2024-01-09T13:14:00", + "2024-01-09T13:15:00", + "2024-01-09T13:16:00", + "2024-01-09T13:17:00", + "2024-01-09T13:18:00", + "2024-01-09T13:19:00", + "2024-01-09T13:20:00", + "2024-01-09T13:21:00", + "2024-01-09T13:22:00", + "2024-01-09T13:23:00", + "2024-01-09T13:24:00", + "2024-01-09T13:25:00", + "2024-01-09T13:26:00", + "2024-01-09T13:27:00", + "2024-01-09T13:28:00", + "2024-01-09T13:29:00", + "2024-01-09T13:30:00", + "2024-01-09T13:31:00", + "2024-01-09T13:32:00", + "2024-01-09T13:33:00", + "2024-01-09T13:34:00", + "2024-01-09T13:35:00", + "2024-01-09T13:36:00", + "2024-01-09T13:37:00", + "2024-01-09T13:38:00", + "2024-01-09T13:39:00", + "2024-01-09T13:40:00", + "2024-01-09T13:41:00", + "2024-01-09T13:42:00", + "2024-01-09T13:43:00", + "2024-01-09T13:44:00", + "2024-01-09T13:45:00", + "2024-01-09T13:46:00", + "2024-01-09T13:47:00", + "2024-01-09T13:48:00", + "2024-01-09T13:49:00", + "2024-01-09T13:50:00", + "2024-01-09T13:51:00", + "2024-01-09T13:52:00", + "2024-01-09T13:53:00", + "2024-01-09T13:54:00", + "2024-01-09T13:55:00", + "2024-01-09T13:56:00", + "2024-01-09T13:57:00", + "2024-01-09T13:58:00", + "2024-01-09T13:59:00", + "2024-01-09T14:00:00", + "2024-01-09T14:01:00", + "2024-01-09T14:02:00", + "2024-01-09T14:03:00", + "2024-01-09T14:04:00", + "2024-01-09T14:05:00", + "2024-01-09T14:06:00", + "2024-01-09T14:07:00", + "2024-01-09T14:08:00", + "2024-01-09T14:09:00", + "2024-01-09T14:10:00", + "2024-01-09T14:11:00", + "2024-01-09T14:12:00", + "2024-01-09T14:13:00", + "2024-01-09T14:14:00", + "2024-01-09T14:15:00", + "2024-01-09T14:16:00", + "2024-01-09T14:17:00", + "2024-01-09T14:18:00", + "2024-01-09T14:19:00", + "2024-01-09T14:20:00", + "2024-01-09T14:21:00", + "2024-01-09T14:22:00", + "2024-01-09T14:23:00", + "2024-01-09T14:24:00", + "2024-01-09T14:25:00", + "2024-01-09T14:26:00", + "2024-01-09T14:27:00", + "2024-01-09T14:28:00", + "2024-01-09T14:29:00", + "2024-01-09T14:30:00", + "2024-01-09T14:31:00", + "2024-01-09T14:32:00", + "2024-01-09T14:33:00", + "2024-01-09T14:34:00", + "2024-01-09T14:35:00", + "2024-01-09T14:36:00", + "2024-01-09T14:37:00", + "2024-01-09T14:38:00", + "2024-01-09T14:39:00", + "2024-01-09T14:40:00", + "2024-01-09T14:41:00", + "2024-01-09T14:42:00", + "2024-01-09T14:43:00", + "2024-01-09T14:44:00", + "2024-01-09T14:45:00", + "2024-01-09T14:46:00", + "2024-01-09T14:47:00", + "2024-01-09T14:48:00", + "2024-01-09T14:49:00", + "2024-01-09T14:50:00", + "2024-01-09T14:51:00", + "2024-01-09T14:52:00", + "2024-01-09T14:53:00", + "2024-01-09T14:54:00", + "2024-01-09T14:55:00", + "2024-01-09T14:56:00", + "2024-01-09T14:57:00", + "2024-01-09T14:58:00", + "2024-01-09T14:59:00", + "2024-01-09T15:00:00", + "2024-01-09T15:01:00", + "2024-01-09T15:02:00", + "2024-01-09T15:03:00", + "2024-01-09T15:04:00", + "2024-01-09T15:05:00", + "2024-01-09T15:06:00", + "2024-01-09T15:07:00", + "2024-01-09T15:08:00", + "2024-01-09T15:09:00", + "2024-01-09T15:10:00", + "2024-01-09T15:11:00", + "2024-01-09T15:12:00", + "2024-01-09T15:13:00", + "2024-01-09T15:14:00", + "2024-01-09T15:15:00", + "2024-01-09T15:16:00", + "2024-01-09T15:17:00", + "2024-01-09T15:18:00", + "2024-01-09T15:19:00", + "2024-01-09T15:20:00", + "2024-01-09T15:21:00", + "2024-01-09T15:22:00", + "2024-01-09T15:23:00", + "2024-01-09T15:24:00", + "2024-01-09T15:25:00", + "2024-01-09T15:26:00", + "2024-01-09T15:27:00", + "2024-01-09T15:28:00", + "2024-01-09T15:29:00", + "2024-01-09T15:30:00", + "2024-01-09T15:31:00", + "2024-01-09T15:32:00", + "2024-01-09T15:33:00", + "2024-01-09T15:34:00", + "2024-01-09T15:35:00", + "2024-01-09T15:36:00", + "2024-01-09T15:37:00", + "2024-01-09T15:38:00", + "2024-01-09T15:39:00", + "2024-01-09T15:40:00", + "2024-01-09T15:41:00", + "2024-01-09T15:42:00", + "2024-01-09T15:43:00", + "2024-01-09T15:44:00", + "2024-01-09T15:45:00", + "2024-01-09T15:46:00", + "2024-01-09T15:47:00", + "2024-01-09T15:48:00", + "2024-01-09T15:49:00", + "2024-01-09T15:50:00", + "2024-01-09T15:51:00", + "2024-01-09T15:52:00", + "2024-01-09T15:53:00", + "2024-01-09T15:54:00", + "2024-01-09T15:55:00", + "2024-01-09T15:56:00", + "2024-01-09T15:57:00", + "2024-01-09T15:58:00", + "2024-01-09T15:59:00", + "2024-01-09T16:00:00", + "2024-01-09T16:01:00", + "2024-01-09T16:02:00", + "2024-01-09T16:03:00", + "2024-01-09T16:04:00", + "2024-01-09T16:05:00", + "2024-01-09T16:06:00", + "2024-01-09T16:07:00", + "2024-01-09T16:08:00", + "2024-01-09T16:09:00", + "2024-01-09T16:10:00", + "2024-01-09T16:11:00", + "2024-01-09T16:12:00", + "2024-01-09T16:13:00", + "2024-01-09T16:14:00", + "2024-01-09T16:15:00", + "2024-01-09T16:16:00", + "2024-01-09T16:17:00", + "2024-01-09T16:18:00", + "2024-01-09T16:19:00", + "2024-01-09T16:20:00", + "2024-01-09T16:21:00", + "2024-01-09T16:22:00", + "2024-01-09T16:23:00", + "2024-01-09T16:24:00", + "2024-01-09T16:25:00", + "2024-01-09T16:26:00", + "2024-01-09T16:27:00", + "2024-01-09T16:28:00", + "2024-01-09T16:29:00", + "2024-01-09T16:30:00", + "2024-01-09T16:31:00", + "2024-01-09T16:32:00", + "2024-01-09T16:33:00", + "2024-01-09T16:34:00", + "2024-01-09T16:35:00", + "2024-01-09T16:36:00", + "2024-01-09T16:37:00", + "2024-01-09T16:38:00", + "2024-01-09T16:39:00", + "2024-01-09T16:40:00", + "2024-01-09T16:41:00", + "2024-01-09T16:42:00", + "2024-01-09T16:43:00", + "2024-01-09T16:44:00", + "2024-01-09T16:45:00", + "2024-01-09T16:46:00", + "2024-01-09T16:47:00", + "2024-01-09T16:48:00", + "2024-01-09T16:49:00", + "2024-01-09T16:50:00", + "2024-01-09T16:51:00", + "2024-01-09T16:52:00", + "2024-01-09T16:53:00", + "2024-01-09T16:54:00", + "2024-01-09T16:55:00", + "2024-01-09T16:56:00", + "2024-01-09T16:57:00", + "2024-01-09T16:58:00", + "2024-01-09T16:59:00", + "2024-01-09T17:00:00", + "2024-01-09T17:01:00", + "2024-01-09T17:02:00", + "2024-01-09T17:03:00", + "2024-01-09T17:04:00", + "2024-01-09T17:05:00", + "2024-01-09T17:06:00", + "2024-01-09T17:07:00", + "2024-01-09T17:08:00", + "2024-01-09T17:09:00", + "2024-01-09T17:10:00", + "2024-01-09T17:11:00", + "2024-01-09T17:12:00", + "2024-01-09T17:13:00", + "2024-01-09T17:14:00", + "2024-01-09T17:15:00", + "2024-01-09T17:16:00", + "2024-01-09T17:17:00", + "2024-01-09T17:18:00", + "2024-01-09T17:19:00", + "2024-01-09T17:20:00", + "2024-01-09T17:21:00", + "2024-01-09T17:22:00", + "2024-01-09T17:23:00", + "2024-01-09T17:24:00", + "2024-01-09T17:25:00", + "2024-01-09T17:26:00", + "2024-01-09T17:27:00", + "2024-01-09T17:28:00", + "2024-01-09T17:29:00", + "2024-01-09T17:30:00", + "2024-01-09T17:31:00", + "2024-01-09T17:32:00", + "2024-01-09T17:33:00", + "2024-01-09T17:34:00", + "2024-01-09T17:35:00", + "2024-01-09T17:36:00", + "2024-01-09T17:37:00", + "2024-01-09T17:38:00", + "2024-01-09T17:39:00", + "2024-01-09T17:40:00", + "2024-01-09T17:41:00", + "2024-01-09T17:42:00", + "2024-01-09T17:43:00", + "2024-01-09T17:44:00", + "2024-01-09T17:45:00", + "2024-01-09T17:46:00", + "2024-01-09T17:47:00", + "2024-01-09T17:48:00", + "2024-01-09T17:49:00", + "2024-01-09T17:50:00", + "2024-01-09T17:51:00", + "2024-01-09T17:52:00", + "2024-01-09T17:53:00", + "2024-01-09T17:54:00", + "2024-01-09T17:55:00", + "2024-01-09T17:56:00", + "2024-01-09T17:57:00", + "2024-01-09T17:58:00", + "2024-01-09T17:59:00", + "2024-01-09T18:00:00", + "2024-01-09T18:01:00", + "2024-01-09T18:02:00", + "2024-01-09T18:03:00", + "2024-01-09T18:04:00", + "2024-01-09T18:05:00", + "2024-01-09T18:06:00", + "2024-01-09T18:07:00", + "2024-01-09T18:08:00", + "2024-01-09T18:09:00", + "2024-01-09T18:10:00", + "2024-01-09T18:11:00", + "2024-01-09T18:12:00", + "2024-01-09T18:13:00", + "2024-01-09T18:14:00", + "2024-01-09T18:15:00", + "2024-01-09T18:16:00", + "2024-01-09T18:17:00", + "2024-01-09T18:18:00", + "2024-01-09T18:19:00", + "2024-01-09T18:20:00", + "2024-01-09T18:21:00", + "2024-01-09T18:22:00", + "2024-01-09T18:23:00", + "2024-01-09T18:24:00", + "2024-01-09T18:25:00", + "2024-01-09T18:26:00", + "2024-01-09T18:27:00", + "2024-01-09T18:28:00", + "2024-01-09T18:29:00", + "2024-01-09T18:30:00", + "2024-01-09T18:31:00", + "2024-01-09T18:32:00", + "2024-01-09T18:33:00", + "2024-01-09T18:34:00", + "2024-01-09T18:35:00", + "2024-01-09T18:36:00", + "2024-01-09T18:37:00", + "2024-01-09T18:38:00", + "2024-01-09T18:39:00", + "2024-01-09T18:40:00", + "2024-01-09T18:41:00", + "2024-01-09T18:42:00", + "2024-01-09T18:43:00", + "2024-01-09T18:44:00", + "2024-01-09T18:45:00", + "2024-01-09T18:46:00", + "2024-01-09T18:47:00", + "2024-01-09T18:48:00", + "2024-01-09T18:49:00", + "2024-01-09T18:50:00", + "2024-01-09T18:51:00", + "2024-01-09T18:52:00", + "2024-01-09T18:53:00", + "2024-01-09T18:54:00", + "2024-01-09T18:55:00", + "2024-01-09T18:56:00", + "2024-01-09T18:57:00", + "2024-01-09T18:58:00", + "2024-01-09T18:59:00", + "2024-01-09T19:00:00", + "2024-01-09T19:01:00", + "2024-01-09T19:02:00", + "2024-01-09T19:03:00", + "2024-01-09T19:04:00", + "2024-01-09T19:05:00", + "2024-01-09T19:06:00", + "2024-01-09T19:07:00", + "2024-01-09T19:08:00", + "2024-01-09T19:09:00", + "2024-01-09T19:10:00", + "2024-01-09T19:11:00", + "2024-01-09T19:12:00", + "2024-01-09T19:13:00", + "2024-01-09T19:14:00", + "2024-01-09T19:15:00", + "2024-01-09T19:16:00", + "2024-01-09T19:17:00", + "2024-01-09T19:18:00", + "2024-01-09T19:19:00", + "2024-01-09T19:20:00", + "2024-01-09T19:21:00", + "2024-01-09T19:22:00", + "2024-01-09T19:23:00", + "2024-01-09T19:24:00", + "2024-01-09T19:25:00", + "2024-01-09T19:26:00", + "2024-01-09T19:27:00", + "2024-01-09T19:28:00", + "2024-01-09T19:29:00", + "2024-01-09T19:30:00", + "2024-01-09T19:31:00", + "2024-01-09T19:32:00", + "2024-01-09T19:33:00", + "2024-01-09T19:34:00", + "2024-01-09T19:35:00", + "2024-01-09T19:36:00", + "2024-01-09T19:37:00", + "2024-01-09T19:38:00", + "2024-01-09T19:39:00", + "2024-01-09T19:40:00", + "2024-01-09T19:41:00", + "2024-01-09T19:42:00", + "2024-01-09T19:43:00", + "2024-01-09T19:44:00", + "2024-01-09T19:45:00", + "2024-01-09T19:46:00", + "2024-01-09T19:47:00", + "2024-01-09T19:48:00", + "2024-01-09T19:49:00", + "2024-01-09T19:50:00", + "2024-01-09T19:51:00", + "2024-01-09T19:52:00", + "2024-01-09T19:53:00", + "2024-01-09T19:54:00", + "2024-01-09T19:55:00", + "2024-01-09T19:56:00", + "2024-01-09T19:57:00", + "2024-01-09T19:58:00", + "2024-01-09T19:59:00", + "2024-01-09T20:00:00", + "2024-01-09T20:01:00", + "2024-01-09T20:02:00", + "2024-01-09T20:03:00", + "2024-01-09T20:04:00", + "2024-01-09T20:05:00", + "2024-01-09T20:06:00", + "2024-01-09T20:07:00", + "2024-01-09T20:08:00", + "2024-01-09T20:09:00", + "2024-01-09T20:10:00", + "2024-01-09T20:11:00", + "2024-01-09T20:12:00", + "2024-01-09T20:13:00", + "2024-01-09T20:14:00", + "2024-01-09T20:15:00", + "2024-01-09T20:16:00", + "2024-01-09T20:17:00", + "2024-01-09T20:18:00", + "2024-01-09T20:19:00", + "2024-01-09T20:20:00", + "2024-01-09T20:21:00", + "2024-01-09T20:22:00", + "2024-01-09T20:23:00", + "2024-01-09T20:24:00", + "2024-01-09T20:25:00", + "2024-01-09T20:26:00", + "2024-01-09T20:27:00", + "2024-01-09T20:28:00", + "2024-01-09T20:29:00", + "2024-01-09T20:30:00", + "2024-01-09T20:31:00", + "2024-01-09T20:32:00", + "2024-01-09T20:33:00", + "2024-01-09T20:34:00", + "2024-01-09T20:35:00", + "2024-01-09T20:36:00", + "2024-01-09T20:37:00", + "2024-01-09T20:38:00", + "2024-01-09T20:39:00", + "2024-01-09T20:40:00", + "2024-01-09T20:41:00", + "2024-01-09T20:42:00", + "2024-01-09T20:43:00", + "2024-01-09T20:44:00", + "2024-01-09T20:45:00", + "2024-01-09T20:46:00", + "2024-01-09T20:47:00", + "2024-01-09T20:48:00", + "2024-01-09T20:49:00", + "2024-01-09T20:50:00", + "2024-01-09T20:51:00", + "2024-01-09T20:52:00", + "2024-01-09T20:53:00", + "2024-01-09T20:54:00", + "2024-01-09T20:55:00", + "2024-01-09T20:56:00", + "2024-01-09T20:57:00", + "2024-01-09T20:58:00", + "2024-01-09T20:59:00", + "2024-01-09T21:00:00", + "2024-01-09T21:01:00", + "2024-01-09T21:02:00", + "2024-01-09T21:03:00", + "2024-01-09T21:04:00", + "2024-01-09T21:05:00", + "2024-01-09T21:06:00", + "2024-01-09T21:07:00", + "2024-01-09T21:08:00", + "2024-01-09T21:09:00", + "2024-01-09T21:10:00", + "2024-01-09T21:11:00", + "2024-01-09T21:12:00", + "2024-01-09T21:13:00", + "2024-01-09T21:14:00", + "2024-01-09T21:15:00", + "2024-01-09T21:16:00", + "2024-01-09T21:17:00", + "2024-01-09T21:18:00", + "2024-01-09T21:19:00", + "2024-01-09T21:20:00", + "2024-01-09T21:21:00", + "2024-01-09T21:22:00", + "2024-01-09T21:23:00", + "2024-01-09T21:24:00", + "2024-01-09T21:25:00", + "2024-01-09T21:26:00", + "2024-01-09T21:27:00", + "2024-01-09T21:28:00", + "2024-01-09T21:29:00", + "2024-01-09T21:30:00", + "2024-01-09T21:31:00", + "2024-01-09T21:32:00", + "2024-01-09T21:33:00", + "2024-01-09T21:34:00", + "2024-01-09T21:35:00", + "2024-01-09T21:36:00", + "2024-01-09T21:37:00", + "2024-01-09T21:38:00", + "2024-01-09T21:39:00", + "2024-01-09T21:40:00", + "2024-01-09T21:41:00", + "2024-01-09T21:42:00", + "2024-01-09T21:43:00", + "2024-01-09T21:44:00", + "2024-01-09T21:45:00", + "2024-01-09T21:46:00", + "2024-01-09T21:47:00", + "2024-01-09T21:48:00", + "2024-01-09T21:49:00", + "2024-01-09T21:50:00", + "2024-01-09T21:51:00", + "2024-01-09T21:52:00", + "2024-01-09T21:53:00", + "2024-01-09T21:54:00", + "2024-01-09T21:55:00", + "2024-01-09T21:56:00", + "2024-01-09T21:57:00", + "2024-01-09T21:58:00", + "2024-01-09T21:59:00", + "2024-01-09T22:00:00", + "2024-01-09T22:01:00", + "2024-01-09T22:02:00", + "2024-01-09T22:03:00", + "2024-01-09T22:04:00", + "2024-01-09T22:05:00", + "2024-01-09T22:06:00", + "2024-01-09T22:07:00", + "2024-01-09T22:08:00", + "2024-01-09T22:09:00", + "2024-01-09T22:10:00", + "2024-01-09T22:11:00", + "2024-01-09T22:12:00", + "2024-01-09T22:13:00", + "2024-01-09T22:14:00", + "2024-01-09T22:15:00", + "2024-01-09T22:16:00", + "2024-01-09T22:17:00", + "2024-01-09T22:18:00", + "2024-01-09T22:19:00", + "2024-01-09T22:20:00", + "2024-01-09T22:21:00", + "2024-01-09T22:22:00", + "2024-01-09T22:23:00", + "2024-01-09T22:24:00", + "2024-01-09T22:25:00", + "2024-01-09T22:26:00", + "2024-01-09T22:27:00", + "2024-01-09T22:28:00", + "2024-01-09T22:29:00", + "2024-01-09T22:30:00", + "2024-01-09T22:31:00", + "2024-01-09T22:32:00", + "2024-01-09T22:33:00", + "2024-01-09T22:34:00", + "2024-01-09T22:35:00", + "2024-01-09T22:36:00", + "2024-01-09T22:37:00", + "2024-01-09T22:38:00", + "2024-01-09T22:39:00", + "2024-01-09T22:40:00", + "2024-01-09T22:41:00", + "2024-01-09T22:42:00", + "2024-01-09T22:43:00", + "2024-01-09T22:44:00", + "2024-01-09T22:45:00", + "2024-01-09T22:46:00", + "2024-01-09T22:47:00", + "2024-01-09T22:48:00", + "2024-01-09T22:49:00", + "2024-01-09T22:50:00", + "2024-01-09T22:51:00", + "2024-01-09T22:52:00", + "2024-01-09T22:53:00", + "2024-01-09T22:54:00", + "2024-01-09T22:55:00", + "2024-01-09T22:56:00", + "2024-01-09T22:57:00", + "2024-01-09T22:58:00", + "2024-01-09T22:59:00", + "2024-01-09T23:00:00", + "2024-01-09T23:01:00", + "2024-01-09T23:02:00", + "2024-01-09T23:03:00", + "2024-01-09T23:04:00", + "2024-01-09T23:05:00", + "2024-01-09T23:06:00", + "2024-01-09T23:07:00", + "2024-01-09T23:08:00", + "2024-01-09T23:09:00", + "2024-01-09T23:10:00", + "2024-01-09T23:11:00", + "2024-01-09T23:12:00", + "2024-01-09T23:13:00", + "2024-01-09T23:14:00", + "2024-01-09T23:15:00", + "2024-01-09T23:16:00", + "2024-01-09T23:17:00", + "2024-01-09T23:18:00", + "2024-01-09T23:19:00", + "2024-01-09T23:20:00", + "2024-01-09T23:21:00", + "2024-01-09T23:22:00", + "2024-01-09T23:23:00", + "2024-01-09T23:24:00", + "2024-01-09T23:25:00", + "2024-01-09T23:26:00", + "2024-01-09T23:27:00", + "2024-01-09T23:28:00", + "2024-01-09T23:29:00", + "2024-01-09T23:30:00", + "2024-01-09T23:31:00", + "2024-01-09T23:32:00", + "2024-01-09T23:33:00", + "2024-01-09T23:34:00", + "2024-01-09T23:35:00", + "2024-01-09T23:36:00", + "2024-01-09T23:37:00", + "2024-01-09T23:38:00", + "2024-01-09T23:39:00", + "2024-01-09T23:40:00", + "2024-01-09T23:41:00", + "2024-01-09T23:42:00", + "2024-01-09T23:43:00", + "2024-01-09T23:44:00", + "2024-01-09T23:45:00", + "2024-01-09T23:46:00", + "2024-01-09T23:47:00", + "2024-01-09T23:48:00", + "2024-01-09T23:49:00", + "2024-01-09T23:50:00", + "2024-01-09T23:51:00", + "2024-01-09T23:52:00", + "2024-01-09T23:53:00", + "2024-01-09T23:54:00", + "2024-01-09T23:55:00", + "2024-01-09T23:56:00", + "2024-01-09T23:57:00", + "2024-01-09T23:58:00", + "2024-01-09T23:59:00", + "2024-01-10T00:00:00" + ], + "y": [ + 3.6335, + 3.639, + 3.657, + 3.6622, + 3.6622, + 3.6512, + 3.6506, + 3.6519, + 3.6519, + 3.6501, + 3.6501, + 3.6666, + 3.6666, + 3.6629, + 3.6629, + 3.6519, + 3.6551, + 3.6583, + 3.6603, + 3.6532, + 3.6532, + 3.6452, + 3.6482, + 3.6619, + 3.667, + 3.6738, + 3.6562, + 3.6428, + 3.6428, + 3.6472, + 3.6657, + 3.657, + 3.6507, + 3.6516, + 3.6539, + 3.647, + 3.6496, + 3.6601, + 3.6601, + 3.6595, + 3.6595, + 3.6516, + 3.6516, + 3.6581, + 3.6618, + 3.6603, + 3.6597, + 3.6597, + 3.6597, + 3.6684, + 3.6627, + 3.6627, + 3.6697, + 3.6697, + 3.68, + 3.68, + 3.6822, + 3.6825, + 3.6861, + 3.6861, + 3.6861, + 3.6861, + 3.6762, + 3.6762, + 3.6762, + 3.6817, + 3.6874, + 3.6874, + 3.6874, + 3.6874, + 3.6822, + 3.7089, + 3.7133, + 3.7085, + 3.6986, + 3.6986, + 3.7181, + 3.7106, + 3.7249, + 3.7281, + 3.7347, + 3.7349, + 3.7354, + 3.7391, + 3.7416, + 3.7496, + 3.7679, + 3.7638, + 3.7545, + 3.7673, + 3.7699, + 3.7592, + 3.758, + 3.7564, + 3.7578, + 3.74, + 3.7367, + 3.7241, + 3.7282, + 3.7215, + 3.7315, + 3.7377, + 3.7366, + 3.7247, + 3.7247, + 3.7415, + 3.7367, + 3.7362, + 3.7369, + 3.7324, + 3.7324, + 3.7266, + 3.7245, + 3.7245, + 3.7245, + 3.7206, + 3.7206, + 3.7206, + 3.728, + 3.7308, + 3.7368, + 3.7252, + 3.7252, + 3.7291, + 3.7291, + 3.7291, + 3.7291, + 3.7288, + 3.7328, + 3.7328, + 3.7328, + 3.7358, + 3.7219, + 3.7219, + 3.7219, + 3.7166, + 3.711, + 3.7015, + 3.7006, + 3.6957, + 3.6998, + 3.6929, + 3.6963, + 3.6908, + 3.6864, + 3.6814, + 3.6849, + 3.6849, + 3.6864, + 3.6831, + 3.6843, + 3.681, + 3.6795, + 3.6783, + 3.6786, + 3.6786, + 3.6786, + 3.6732, + 3.679, + 3.6715, + 3.6688, + 3.6552, + 3.6576, + 3.6477, + 3.6477, + 3.6333, + 3.6321, + 3.6299, + 3.6304, + 3.6298, + 3.6262, + 3.6374, + 3.6441, + 3.6485, + 3.651, + 3.6544, + 3.6563, + 3.6564, + 3.653, + 3.653, + 3.6512, + 3.6512, + 3.6512, + 3.6512, + 3.6413, + 3.6442, + 3.6442, + 3.6438, + 3.6303, + 3.6327, + 3.6297, + 3.6196, + 3.6153, + 3.6004, + 3.5942, + 3.6018, + 3.6011, + 3.5925, + 3.5886, + 3.5883, + 3.6052, + 3.6137, + 3.6142, + 3.5937, + 3.5937, + 3.6067, + 3.5973, + 3.5952, + 3.5952, + 3.5958, + 3.5851, + 3.5935, + 3.5925, + 3.5842, + 3.5842, + 3.5886, + 3.5983, + 3.5988, + 3.5988, + 3.5902, + 3.5806, + 3.5766, + 3.5699, + 3.5642, + 3.567, + 3.5513, + 3.5496, + 3.5576, + 3.5644, + 3.5644, + 3.5655, + 3.5655, + 3.5677, + 3.5636, + 3.5636, + 3.5636, + 3.5676, + 3.5676, + 3.5676, + 3.5713, + 3.5699, + 3.5847, + 3.5935, + 3.5943, + 3.5958, + 3.596, + 3.5939, + 3.5939, + 3.5962, + 3.593, + 3.5725, + 3.5665, + 3.5803, + 3.5562, + 3.5645, + 3.5616, + 3.5673, + 3.5618, + 3.5586, + 3.5428, + 3.5395, + 3.5343, + 3.5343, + 3.55, + 3.5563, + 3.5563, + 3.5369, + 3.5422, + 3.5477, + 3.5534, + 3.5499, + 3.5443, + 3.5397, + 3.5485, + 3.5392, + 3.543, + 3.543, + 3.543, + 3.5354, + 3.5402, + 3.5468, + 3.5468, + 3.538, + 3.5365, + 3.5484, + 3.553, + 3.5604, + 3.5604, + 3.5622, + 3.558, + 3.5614, + 3.5614, + 3.5714, + 3.57, + 3.5675, + 3.5713, + 3.5669, + 3.5706, + 3.5729, + 3.5757, + 3.5705, + 3.5657, + 3.5578, + 3.5607, + 3.5607, + 3.5816, + 3.5855, + 3.5858, + 3.5858, + 3.5858, + 3.5893, + 3.5939, + 3.5893, + 3.5893, + 3.5893, + 3.5893, + 3.5893, + 3.5893, + 3.5893, + 3.5893, + 3.5893, + 3.5878, + 3.5954, + 3.5954, + 3.5967, + 3.5967, + 3.5934, + 3.5969, + 3.5978, + 3.5978, + 3.5978, + 3.5882, + 3.573, + 3.5802, + 3.5802, + 3.5802, + 3.5802, + 3.5766, + 3.5868, + 3.5792, + 3.5831, + 3.5831, + 3.5813, + 3.5813, + 3.5813, + 3.5736, + 3.5691, + 3.5691, + 3.5691, + 3.5607, + 3.5618, + 3.567, + 3.567, + 3.5631, + 3.5551, + 3.5594, + 3.5594, + 3.5594, + 3.5615, + 3.5586, + 3.5659, + 3.5647, + 3.5621, + 3.567, + 3.5691, + 3.5787, + 3.5813, + 3.5836, + 3.5821, + 3.5858, + 3.5858, + 3.5848, + 3.5872, + 3.5814, + 3.5814, + 3.5783, + 3.5786, + 3.5786, + 3.5908, + 3.5922, + 3.5793, + 3.5859, + 3.5924, + 3.5924, + 3.5924, + 3.5906, + 3.5924, + 3.6066, + 3.6021, + 3.6021, + 3.5996, + 3.6009, + 3.6009, + 3.6009, + 3.5936, + 3.5992, + 3.6038, + 3.6038, + 3.6038, + 3.5953, + 3.5972, + 3.6014, + 3.6064, + 3.6064, + 3.6012, + 3.6073, + 3.6082, + 3.6038, + 3.6091, + 3.6096, + 3.6131, + 3.6128, + 3.6164, + 3.6143, + 3.611, + 3.613, + 3.621, + 3.6124, + 3.6124, + 3.6113, + 3.6051, + 3.6, + 3.6037, + 3.6051, + 3.601, + 3.598, + 3.5982, + 3.595, + 3.5958, + 3.598, + 3.5972, + 3.5924, + 3.5943, + 3.5924, + 3.5854, + 3.5831, + 3.5787, + 3.5813, + 3.5862, + 3.5802, + 3.5784, + 3.5748, + 3.5696, + 3.5753, + 3.5739, + 3.5797, + 3.5836, + 3.5835, + 3.577, + 3.5732, + 3.5771, + 3.5771, + 3.5771, + 3.5771, + 3.579, + 3.579, + 3.5872, + 3.5872, + 3.5914, + 3.5899, + 3.5825, + 3.5825, + 3.5764, + 3.5756, + 3.5732, + 3.5723, + 3.5755, + 3.5737, + 3.5709, + 3.5727, + 3.5724, + 3.5724, + 3.5756, + 3.5741, + 3.576, + 3.5782, + 3.5782, + 3.5782, + 3.58, + 3.5807, + 3.5757, + 3.5819, + 3.5749, + 3.5733, + 3.5673, + 3.5698, + 3.5698, + 3.5679, + 3.5679, + 3.5679, + 3.5703, + 3.5703, + 3.574, + 3.5708, + 3.5708, + 3.568, + 3.5669, + 3.5669, + 3.5669, + 3.568, + 3.568, + 3.5712, + 3.57, + 3.5682, + 3.5702, + 3.561, + 3.5607, + 3.5601, + 3.5583, + 3.5608, + 3.567, + 3.567, + 3.5622, + 3.5606, + 3.5583, + 3.5581, + 3.5597, + 3.5606, + 3.561, + 3.5614, + 3.5611, + 3.572, + 3.5703, + 3.5698, + 3.5676, + 3.5733, + 3.5685, + 3.5685, + 3.5786, + 3.5784, + 3.5752, + 3.576, + 3.575, + 3.5749, + 3.5738, + 3.578, + 3.5789, + 3.5786, + 3.579, + 3.5738, + 3.572, + 3.5781, + 3.5816, + 3.5751, + 3.5751, + 3.5751, + 3.5759, + 3.5759, + 3.5615, + 3.5639, + 3.5615, + 3.5614, + 3.5601, + 3.5597, + 3.5588, + 3.5616, + 3.5616, + 3.5616, + 3.5616, + 3.5651, + 3.561, + 3.5594, + 3.5555, + 3.5496, + 3.5493, + 3.5494, + 3.5458, + 3.5478, + 3.548, + 3.5424, + 3.5482, + 3.5482, + 3.5517, + 3.5592, + 3.5615, + 3.5628, + 3.5689, + 3.569, + 3.5703, + 3.574, + 3.5715, + 3.5628, + 3.5628, + 3.5635, + 3.5635, + 3.5635, + 3.568, + 3.5704, + 3.5704, + 3.5662, + 3.5662, + 3.5666, + 3.5605, + 3.5592, + 3.5602, + 3.5678, + 3.5678, + 3.5639, + 3.5687, + 3.5702, + 3.5702, + 3.5709, + 3.576, + 3.5766, + 3.5794, + 3.583, + 3.5827, + 3.587, + 3.587, + 3.579, + 3.5805, + 3.579, + 3.579, + 3.579, + 3.5769, + 3.5808, + 3.574, + 3.5787, + 3.5787, + 3.5778, + 3.5791, + 3.5799, + 3.5751, + 3.5696, + 3.5696, + 3.5645, + 3.5685, + 3.5685, + 3.5617, + 3.5634, + 3.5592, + 3.5536, + 3.5505, + 3.5505, + 3.5523, + 3.5523, + 3.55, + 3.55, + 3.5501, + 3.549, + 3.5524, + 3.5567, + 3.5567, + 3.5567, + 3.5567, + 3.5512, + 3.5492, + 3.5543, + 3.5543, + 3.5543, + 3.5581, + 3.5581, + 3.5581, + 3.5581, + 3.5584, + 3.5584, + 3.5621, + 3.5621, + 3.5621, + 3.5599, + 3.5632, + 3.5632, + 3.5632, + 3.5632, + 3.5598, + 3.5602, + 3.5591, + 3.5562, + 3.5555, + 3.5555, + 3.5661, + 3.569, + 3.5695, + 3.5669, + 3.5669, + 3.5655, + 3.5655, + 3.5655, + 3.558, + 3.5537, + 3.5532, + 3.5531, + 3.544, + 3.5398, + 3.5443, + 3.5349, + 3.5362, + 3.5391, + 3.5433, + 3.5417, + 3.5417, + 3.5485, + 3.5439, + 3.5338, + 3.5407, + 3.5392, + 3.5431, + 3.5413, + 3.5349, + 3.5349, + 3.5401, + 3.5401, + 3.5315, + 3.5351, + 3.5385, + 3.5411, + 3.5404, + 3.5404, + 3.5335, + 3.5356, + 3.5366, + 3.5366, + 3.5366, + 3.539, + 3.539, + 3.5526, + 3.5568, + 3.5545, + 3.5545, + 3.5565, + 3.5578, + 3.5671, + 3.5639, + 3.5565, + 3.5565, + 3.555, + 3.5463, + 3.5419, + 3.5387, + 3.5382, + 3.5382, + 3.538, + 3.5373, + 3.5335, + 3.5324, + 3.5324, + 3.5324, + 3.5385, + 3.5492, + 3.5492, + 3.553, + 3.5496, + 3.5517, + 3.5521, + 3.5461, + 3.5502, + 3.5502, + 3.5452, + 3.5452, + 3.554, + 3.554, + 3.5555, + 3.5528, + 3.5502, + 3.5492, + 3.5492, + 3.5501, + 3.5501, + 3.5501, + 3.5544, + 3.5544, + 3.5568, + 3.5585, + 3.5539, + 3.5539, + 3.5539, + 3.5539, + 3.5539, + 3.5539, + 3.5539, + 3.5477, + 3.5443, + 3.5394, + 3.5369, + 3.5372, + 3.537, + 3.5401, + 3.5496, + 3.5401, + 3.537, + 3.5386, + 3.5321, + 3.5282, + 3.5246, + 3.5251, + 3.5296, + 3.5302, + 3.5302, + 3.5297, + 3.5319, + 3.5394, + 3.535, + 3.5397, + 3.5401, + 3.5401, + 3.5455, + 3.5455, + 3.5455, + 3.5453, + 3.5453, + 3.5453, + 3.5453, + 3.5453, + 3.5427, + 3.5427, + 3.5427, + 3.5431, + 3.5453, + 3.5456, + 3.5456, + 3.5508, + 3.5508, + 3.5375, + 3.5375, + 3.5375, + 3.538, + 3.533, + 3.5316, + 3.5314, + 3.5328, + 3.5312, + 3.5371, + 3.5425, + 3.5447, + 3.5447, + 3.5447, + 3.5476, + 3.5383, + 3.5388, + 3.5388, + 3.5387, + 3.5631, + 3.57, + 3.5686, + 3.5619, + 3.5667, + 3.5667, + 3.5726, + 3.5723, + 3.5723, + 3.5681, + 3.5502, + 3.5438, + 3.5456, + 3.5389, + 3.5345, + 3.5406, + 3.5406, + 3.5406, + 3.5406, + 3.5406, + 3.5406, + 3.5398, + 3.5424, + 3.5424, + 3.5394, + 3.5416, + 3.5416, + 3.5466, + 3.5457, + 3.5443, + 3.5423, + 3.5423, + 3.5383, + 3.5383, + 3.5445, + 3.5441, + 3.5362, + 3.5335, + 3.5334, + 3.5347, + 3.5347, + 3.5347, + 3.5347, + 3.5318, + 3.5283, + 3.525, + 3.524, + 3.5134, + 3.5031, + 3.5016, + 3.5016, + 3.4988, + 3.488, + 3.4964, + 3.4984, + 3.4993, + 3.4917, + 3.4849, + 3.4856, + 3.4856, + 3.4914, + 3.4914, + 3.5014, + 3.5014, + 3.5076, + 3.5076, + 3.5127, + 3.5235, + 3.5166, + 3.5188, + 3.5135, + 3.516, + 3.5143, + 3.5166, + 3.5142, + 3.5098, + 3.5098, + 3.5224, + 3.5224, + 3.5185, + 3.5185, + 3.5185, + 3.5185, + 3.5216, + 3.5192, + 3.5195, + 3.5257, + 3.5257, + 3.5166, + 3.5168, + 3.5168, + 3.5244, + 3.5244, + 3.5244, + 3.53, + 3.53, + 3.53, + 3.525, + 3.525, + 3.525, + 3.5242, + 3.531, + 3.5169, + 3.514, + 3.5134, + 3.5134, + 3.5217, + 3.5269, + 3.5164, + 3.5184, + 3.5185, + 3.5224, + 3.5228, + 3.5322, + 3.534, + 3.5363, + 3.5363, + 3.5246, + 3.5237, + 3.5262, + 3.5243, + 3.5309, + 3.5309, + 3.5309, + 3.5309, + 3.5382, + 3.5424, + 3.5373, + 3.5339, + 3.5365, + 3.5365, + 3.5364, + 3.5424, + 3.5424, + 3.5469, + 3.5475, + 3.5475, + 3.552, + 3.5533, + 3.5549, + 3.5549, + 3.5499, + 3.5499, + 3.546, + 3.5524, + 3.5568, + 3.5576, + 3.5557, + 3.5313, + 3.5367, + 3.5226, + 3.5168, + 3.5227, + 3.5209, + 3.5217, + 3.52, + 3.5227, + 3.5249, + 3.5308, + 3.5266, + 3.5229, + 3.5323, + 3.5323, + 3.5323, + 3.5323, + 3.5318, + 3.5247, + 3.5247, + 3.525, + 3.525, + 3.5208, + 3.5177, + 3.5177, + 3.5107, + 3.5122, + 3.5051, + 3.5051, + 3.5053, + 3.5061, + 3.5061, + 3.5061, + 3.5061, + 3.5052, + 3.5038, + 3.5061, + 3.5061, + 3.5061, + 3.5058, + 3.5035, + 3.5005, + 3.4937, + 3.4937, + 3.4937, + 3.505, + 3.5064, + 3.5064, + 3.5115, + 3.5142, + 3.513, + 3.5142, + 3.5171, + 3.5171, + 3.5208, + 3.5182, + 3.5239, + 3.5239, + 3.5222, + 3.5222, + 3.5222, + 3.5222, + 3.5134, + 3.5108, + 3.5108, + 3.5194, + 3.5256, + 3.5236, + 3.5237, + 3.5193, + 3.5193, + 3.5219, + 3.5168, + 3.5168, + 3.5168, + 3.5161, + 3.5115, + 3.5115, + 3.5115, + 3.5128, + 3.5128, + 3.5135, + 3.5135, + 3.5135, + 3.5187, + 3.5187, + 3.5187, + 3.5187, + 3.5187, + 3.5241, + 3.524, + 3.5253, + 3.5253, + 3.5264, + 3.526, + 3.526, + 3.526, + 3.5268, + 3.5289, + 3.5287, + 3.5323, + 3.5297, + 3.5278, + 3.5277, + 3.5285, + 3.5294, + 3.5279, + 3.5279, + 3.5363, + 3.5333, + 3.5366, + 3.5397, + 3.542, + 3.5441, + 3.551, + 3.552, + 3.5594, + 3.5558, + 3.5582, + 3.5597, + 3.5584, + 3.5597, + 3.564, + 3.5648, + 3.5674, + 3.5674, + 3.5635, + 3.5657, + 3.569, + 3.5703, + 3.574, + 3.565, + 3.5728, + 3.5728, + 3.5547, + 3.5548, + 3.5585, + 3.552, + 3.5516, + 3.5516, + 3.5516, + 3.5488, + 3.5488, + 3.5535, + 3.5535, + 3.5535, + 3.5573, + 3.5568, + 3.5568, + 3.5533, + 3.5522, + 3.5473, + 3.5516, + 3.5511, + 3.5511, + 3.5487, + 3.5487, + 3.5487, + 3.5487, + 3.547, + 3.5438, + 3.545, + 3.545, + 3.5486, + 3.5486, + 3.5616, + 3.5586, + 3.5553, + 3.5561, + 3.5593, + 3.5593, + 3.5562, + 3.5554, + 3.5554, + 3.5554, + 3.5554, + 3.5554, + 3.5572, + 3.5614, + 3.5573, + 3.5581, + 3.5605, + 3.5616, + 3.5658, + 3.5649, + 3.5664, + 3.5664, + 3.5664, + 3.5688, + 3.5739, + 3.5766, + 3.5766, + 3.5806, + 3.5816, + 3.5792, + 3.5798, + 3.5821, + 3.58, + 3.5795, + 3.5765, + 3.5765, + 3.5824, + 3.5824, + 3.5802, + 3.5802, + 3.573, + 3.5824, + 3.5858, + 3.5854, + 3.5914, + 3.5954, + 3.597, + 3.5938, + 3.5941, + 3.5925, + 3.5903, + 3.5937, + 3.585, + 3.5873, + 3.591, + 3.591, + 3.6062, + 3.6117, + 3.6136, + 3.6112, + 3.6061, + 3.605, + 3.6138, + 3.6151, + 3.616, + 3.6148, + 3.6146, + 3.6146, + 3.6124, + 3.614, + 3.6064, + 3.6037, + 3.6037, + 3.604, + 3.601, + 3.5888, + 3.5953, + 3.59, + 3.5884, + 3.5874, + 3.5874, + 3.5951, + 3.5951, + 3.6, + 3.5945, + 3.5986, + 3.6022, + 3.6022, + 3.6022, + 3.6022, + 3.6022, + 3.6034, + 3.6033, + 3.6061, + 3.5986, + 3.5957, + 3.5957, + 3.5957, + 3.5987, + 3.6002, + 3.6036, + 3.6044, + 3.6044, + 3.61, + 3.6158, + 3.6158, + 3.6033, + 3.6033, + 3.5997, + 3.5943, + 3.5943, + 3.5943, + 3.5921, + 3.5885, + 3.5885, + 3.5885, + 3.5858, + 3.5928, + 3.591, + 3.591, + 3.5922, + 3.5926, + 3.5926, + 3.5907, + 3.5907, + 3.5773, + 3.5812, + 3.5789, + 3.5804, + 3.5764, + 3.5764, + 3.5795, + 3.5754, + 3.5709, + 3.5743, + 3.5721, + 3.5716, + 3.5716, + 3.5711, + 3.5666, + 3.5648, + 3.5667, + 3.573, + 3.5601, + 3.561, + 3.5621, + 3.5592, + 3.5569, + 3.5615, + 3.5613, + 3.5599, + 3.5722, + 3.5725, + 3.5754, + 3.5744, + 3.5734, + 3.5766, + 3.5766, + 3.5762, + 3.5783, + 3.5802, + 3.5799, + 3.5768, + 3.584, + 3.584, + 3.584, + 3.584, + 3.588, + 3.5927, + 3.5927, + 3.5927, + 3.5948, + 3.5948, + 3.5996, + 3.5998, + 3.5973, + 3.6003, + 3.6038, + 3.6041, + 3.6041, + 3.6041, + 3.6003, + 3.6015, + 3.5926, + 3.5906, + 3.5904, + 3.5955, + 3.5971, + 3.5971, + 3.5971, + 3.605, + 3.6036, + 3.599, + 3.599, + 3.599, + 3.5867, + 3.576, + 3.576, + 3.576, + 3.576, + 3.5922, + 3.5997, + 3.6023, + 3.6004, + 3.6038, + 3.6016, + 3.6103, + 3.6194, + 3.6212, + 3.6196, + 3.6126, + 3.6126, + 3.6128, + 3.6128, + 3.6156, + 3.6156, + 3.6156, + 3.6081, + 3.6157, + 3.6126, + 3.6097, + 3.6096, + 3.6096, + 3.6131, + 3.6155, + 3.6171, + 3.627, + 3.6278, + 3.6299, + 3.6174, + 3.6232, + 3.6312, + 3.6328, + 3.6301, + 3.6336, + 3.6342, + 3.63, + 3.6263, + 3.6263, + 3.6263, + 3.6292, + 3.624, + 3.6131, + 3.6246, + 3.6248, + 3.6177, + 3.6184, + 3.6184, + 3.6216, + 3.6225, + 3.6225, + 3.6051, + 3.5957, + 3.6, + 3.6, + 3.5994, + 3.5973, + 3.6008, + 3.6042, + 3.6077, + 3.6046, + 3.6047, + 3.6068, + 3.6058, + 3.5998, + 3.6007, + 3.6051, + 3.6009, + 3.6029, + 3.6076, + 3.6076, + 3.6077, + 3.6095, + 3.6044, + 3.6171, + 3.6316, + 3.6273, + 3.6273, + 3.6219, + 3.6161, + 3.6175, + 3.6066, + 3.6098, + 3.6098, + 3.6211, + 3.6179, + 3.6179, + 3.6188, + 3.6273, + 3.6252, + 3.6245, + 3.6265, + 3.6174, + 3.6175, + 3.613, + 3.6119, + 3.6063, + 3.6063, + 3.599, + 3.5965, + 3.6068, + 3.6077, + 3.6043, + 3.6043, + 3.6031, + 3.5975, + 3.6001, + 3.6019, + 3.5977, + 3.5958, + 3.5981, + 3.5936, + 3.5937, + 3.616, + 3.6088, + 3.6027, + 3.616, + 3.623, + 3.6381, + 3.6249, + 3.6419, + 3.6417, + 3.6305, + 3.617, + 3.6152, + 3.6141, + 3.6226, + 3.6219, + 3.6297, + 3.6246, + 3.6186, + 3.62, + 3.6261, + 3.6336, + 3.6336, + 3.6298, + 3.6331, + 3.6368, + 3.6388, + 3.6388, + 3.6412, + 3.6431, + 3.6488, + 3.6601, + 3.6582, + 3.6582, + 3.6553, + 3.6508, + 3.6496, + 3.6501, + 3.6478, + 3.643, + 3.6341, + 3.6459, + 3.6464, + 3.6492, + 3.6473, + 3.6473, + 3.6487, + 3.6369, + 3.6392, + 3.6392, + 3.6392, + 3.6392, + 3.6518, + 3.6412, + 3.6356, + 3.634, + 3.6297, + 3.62, + 3.6196, + 3.6186, + 3.6204, + 3.6169, + 3.6169, + 3.6248, + 3.627, + 3.6394, + 3.6394, + 3.6394, + 3.6358, + 3.6437, + 3.6488, + 3.6688, + 3.6688, + 3.6598, + 3.6571, + 3.6571, + 3.6571, + 3.6721, + 3.665, + 3.6719, + 3.6732, + 3.6712, + 3.6609, + 3.6528, + 3.6766, + 3.6673, + 3.6742, + 3.6742, + 3.6742, + 3.6805, + 3.664, + 3.6611, + 3.6711, + 3.659, + 3.6665, + 3.6662, + 3.668, + 3.668, + 3.6687, + 3.6723, + 3.682, + 3.6908, + 3.6908, + 3.6798, + 3.684, + 3.6857, + 3.6857, + 3.6885, + 3.6865, + 3.6836, + 3.6768, + 3.672, + 3.6726, + 3.678, + 3.6714, + 3.6714, + 3.6912, + 3.6864, + 3.6856, + 3.6936, + 3.706, + 3.7044, + 3.7046, + 3.7055, + 3.712, + 3.7197, + 3.7265, + 3.7295, + 3.7362, + 3.7488, + 3.7473, + 3.7713, + 3.7589, + 3.7621, + 3.7704, + 3.7614, + 3.7521, + 3.7364, + 3.7489, + 3.7614, + 3.7487, + 3.7434, + 3.7378, + 3.745, + 3.7477, + 3.7477, + 3.7523, + 3.7554, + 3.7674, + 3.7619, + 3.751, + 3.7506, + 3.7479, + 3.7467, + 3.7475, + 3.7422, + 3.7422, + 3.7307, + 3.7374, + 3.7355, + 3.7384, + 3.7466, + 3.7452, + 3.7452, + 3.7398, + 3.7303, + 3.7292, + 3.7212, + 3.7178, + 3.7187, + 3.7086, + 3.705, + 3.7025, + 3.7079, + 3.7157, + 3.7056, + 3.7056, + 3.711, + 3.711, + 3.737, + 3.7358, + 3.7358, + 3.7443, + 3.739, + 3.7434, + 3.7434, + 3.7383, + 3.7327, + 3.744, + 3.7393, + 3.7393, + 3.7348, + 3.7336, + 3.7303, + 3.7355, + 3.7289, + 3.7189, + 3.7157, + 3.7139, + 3.709, + 3.7112, + 3.7146, + 3.7213, + 3.7281, + 3.734, + 3.734, + 3.7355, + 3.7355, + 3.7355, + 3.7361, + 3.7257, + 3.7257, + 3.7381, + 3.7314, + 3.74, + 3.74, + 3.7422, + 3.7483, + 3.7522, + 3.7617, + 3.7617, + 3.763, + 3.7685, + 3.7801, + 3.7682, + 3.7647, + 3.7626, + 3.7572, + 3.7581, + 3.7538, + 3.7639, + 3.7678, + 3.7564, + 3.7641, + 3.7884, + 3.7848, + 3.7848, + 3.7706, + 3.7736, + 3.7653, + 3.7581, + 3.7524, + 3.7446, + 3.7462, + 3.7438, + 3.7487, + 3.7487, + 3.7514, + 3.7425, + 3.735, + 3.7376, + 3.7412, + 3.7412, + 3.7514, + 3.7452, + 3.7452, + 3.7452, + 3.7434, + 3.7434, + 3.7332, + 3.7321, + 3.7321, + 3.7461, + 3.7427, + 3.7377, + 3.7337, + 3.7317, + 3.731, + 3.7325, + 3.7295, + 3.7277, + 3.7266, + 3.7257, + 3.7251, + 3.7268, + 3.7268, + 3.7393, + 3.7393, + 3.7393, + 3.7358, + 3.7397, + 3.7436, + 3.7436, + 3.7398, + 3.7402, + 3.7344, + 3.7238, + 3.7238, + 3.7253, + 3.7424, + 3.7292, + 3.7384, + 3.7384, + 3.7384, + 3.7384, + 3.7249, + 3.7277, + 3.7306, + 3.7341, + 3.7272, + 3.723, + 3.7236, + 3.7228, + 3.7228, + 3.7327, + 3.732, + 3.7365, + 3.7378, + 3.74, + 3.7454, + 3.756, + 3.75, + 3.7467, + 3.7405, + 3.7507, + 3.7621, + 3.7427, + 3.7416, + 3.7508, + 3.7508, + 3.7508, + 3.7587, + 3.7519, + 3.7489, + 3.7546, + 3.7546, + 3.7539, + 3.7539, + 3.7498, + 3.7481, + 3.7353, + 3.7448, + 3.7581, + 3.7559, + 3.7545, + 3.747, + 3.7495, + 3.7497, + 3.759, + 3.759, + 3.7606, + 3.7606, + 3.7606, + 3.7686, + 3.7682, + 3.769, + 3.7706, + 3.7518, + 3.753, + 3.7657, + 3.7612, + 3.7684, + 3.7744, + 3.7779, + 3.7779, + 3.7686, + 3.7701, + 3.7701, + 3.7718, + 3.7677, + 3.7646, + 3.763, + 3.757, + 3.7553, + 3.7544, + 3.7544, + 3.7566, + 3.7512, + 3.7481, + 3.7471, + 3.7471, + 3.7511, + 3.7491, + 3.7516, + 3.7486, + 3.7455, + 3.7443, + 3.74, + 3.74, + 3.7467, + 3.7423, + 3.7474, + 3.7474, + 3.7536, + 3.7539, + 3.7626, + 3.7747, + 3.7807, + 3.7873, + 3.7946, + 3.7881, + 3.7853, + 3.7886, + 3.7872, + 3.797, + 3.7893, + 3.7893, + 3.7988, + 3.805, + 3.8081, + 3.8135, + 3.803, + 3.8111, + 3.8022, + 3.7978, + 3.8093, + 3.813, + 3.8163, + 3.8133, + 3.8174, + 3.8207, + 3.8225, + 3.8219, + 3.8239, + 3.8159, + 3.8167, + 3.8217, + 3.815, + 3.8148, + 3.826, + 3.8197, + 3.8256, + 3.8225, + 3.8041, + 3.8041, + 3.8002, + 3.7911, + 3.7929, + 3.7893, + 3.8025, + 3.7994, + 3.8125, + 3.8118, + 3.8207, + 3.8125, + 3.8156, + 3.7992, + 3.7841, + 3.7956, + 3.8073, + 3.7793, + 3.7895, + 3.7951, + 3.7825, + 3.7796, + 3.7685, + 3.7704, + 3.7755, + 3.7843, + 3.7765, + 3.7847, + 3.7787, + 3.7865, + 3.795, + 3.7958, + 3.7987, + 3.8001, + 3.7984, + 3.8006, + 3.8103, + 3.8137, + 3.8222, + 3.8222, + 3.8054, + 3.825, + 3.8027, + 3.8018, + 3.8184, + 3.8209, + 3.8177, + 3.802, + 3.8174, + 3.82, + 3.8165, + 3.8208, + 3.83, + 3.8175, + 3.8238, + 3.8191, + 3.8029, + 3.7925, + 3.7919, + 3.7976, + 3.8032, + 3.7972, + 3.8061, + 3.8018, + 3.8013, + 3.7909, + 3.7828, + 3.7847, + 3.7887, + 3.7829, + 3.7862, + 3.782, + 3.7875, + 3.7865, + 3.7849, + 3.781, + 3.7847, + 3.7863, + 3.7883, + 3.7735, + 3.7726, + 3.7721, + 3.7703, + 3.7703, + 3.7647, + 3.7655, + 3.7601, + 3.7644, + 3.7784, + 3.7819, + 3.769, + 3.7643, + 3.7631, + 3.766, + 3.7655, + 3.7618, + 3.7579, + 3.7545, + 3.7638, + 3.7632, + 3.7694, + 3.7702, + 3.7736, + 3.7804, + 3.7952, + 3.794, + 3.7902, + 3.7895, + 3.7858, + 3.7812, + 3.7756, + 3.784, + 3.7845, + 3.7748, + 3.7789, + 3.7756, + 3.7838, + 3.7838, + 3.7976, + 3.8025, + 3.7932, + 3.7932, + 3.79, + 3.7888, + 3.7844, + 3.79, + 3.79, + 3.7839, + 3.7865, + 3.7865, + 3.7876, + 3.7943, + 3.7882, + 3.7849, + 3.7846, + 3.7895, + 3.8025, + 3.803, + 3.803, + 3.7814, + 3.7701, + 3.7632, + 3.7725, + 3.7737, + 3.7693, + 3.7809, + 3.7843, + 3.7722, + 3.7686, + 3.7694, + 3.8064, + 3.8476, + 3.8781, + 3.9043, + 3.8947, + 3.8697, + 3.8837, + 3.8611, + 3.873, + 3.8737, + 3.8919, + 3.9024, + 3.8956, + 3.8871, + 3.8697, + 3.8592, + 3.8422, + 3.8348, + 3.8216, + 3.8122, + 3.84, + 3.8405, + 3.8405, + 3.8355, + 3.8419, + 3.8386, + 3.8427, + 3.8533, + 3.848, + 3.8303, + 3.8523, + 3.8485, + 3.84, + 3.83, + 3.8326, + 3.8237, + 3.812, + 3.8016, + 3.8042, + 3.8055, + 3.8079, + 3.802, + 3.8077, + 3.8096, + 3.8118, + 3.8021, + 3.8032, + 3.8074, + 3.8012, + 3.7987, + 3.7888, + 3.7837, + 3.7711, + 3.7699, + 3.7778, + 3.7802, + 3.7676, + 3.7633, + 3.7658, + 3.77, + 3.7709, + 3.767, + 3.7524, + 3.7523, + 3.753, + 3.754, + 3.7623, + 3.7651, + 3.7627, + 3.7684, + 3.7717, + 3.7776, + 3.7872, + 3.788, + 3.7893, + 3.7861, + 3.7825, + 3.7796, + 3.7808, + 3.7821, + 3.7812, + 3.7763, + 3.7789, + 3.7789, + 3.7737, + 3.7695, + 3.7686, + 3.761, + 3.7585, + 3.7553, + 3.7573, + 3.7583, + 3.762, + 3.7537, + 3.7502, + 3.7508, + 3.7486, + 3.7439, + 3.7478, + 3.7478, + 3.76, + 3.7534, + 3.7508, + 3.7446, + 3.7361, + 3.7318, + 3.7443, + 3.7383, + 3.7274, + 3.7095, + 3.7191, + 3.7163, + 3.7206, + 3.7199, + 3.7205, + 3.7128, + 3.7266, + 3.7149, + 3.7259, + 3.7328, + 3.7235, + 3.715, + 3.7108, + 3.7149, + 3.7236, + 3.7275, + 3.7399, + 3.734, + 3.7377, + 3.7369, + 3.7297, + 3.7297, + 3.744, + 3.7452, + 3.7446, + 3.7465, + 3.7538, + 3.7516, + 3.7522, + 3.7419, + 3.7471, + 3.7473, + 3.7474, + 3.7393, + 3.7303, + 3.7335, + 3.7203, + 3.7152, + 3.7212, + 3.7186, + 3.7163, + 3.7122, + 3.7202, + 3.7202, + 3.7169, + 3.7169, + 3.7319, + 3.7402, + 3.7359, + 3.7303, + 3.7303, + 3.7303, + 3.7432, + 3.7494, + 3.7468, + 3.7526, + 3.75, + 3.748, + 3.748, + 3.7486, + 3.7422, + 3.7416, + 3.7448, + 3.7455, + 3.7536, + 3.7493, + 3.7475, + 3.7559, + 3.7665, + 3.732, + 3.732, + 3.7368, + 3.7279, + 3.7258, + 3.7221, + 3.7226, + 3.7271, + 3.7229, + 3.7262, + 3.7267, + 3.7229, + 3.7252, + 3.7324, + 3.744, + 3.749, + 3.7466, + 3.7604, + 3.7669, + 3.7619, + 3.766, + 3.7617, + 3.7617, + 3.7579, + 3.7579, + 3.7553, + 3.7492, + 3.7492, + 3.7511, + 3.7585, + 3.7629, + 3.7639, + 3.7505, + 3.7579, + 3.7579, + 3.7633, + 3.7598, + 3.761, + 3.761, + 3.7757, + 3.7757, + 3.7757, + 3.7909, + 3.7902, + 3.832, + 3.8131, + 3.8172, + 3.8147, + 3.8218, + 3.8218, + 3.822, + 3.8298, + 3.8397, + 3.8464, + 3.8284, + 3.8346, + 3.8337, + 3.849, + 3.8393, + 3.8255, + 3.8483, + 3.8348, + 3.8348, + 3.8298, + 3.8256, + 3.8146, + 3.8244, + 3.8244, + 3.8064, + 3.8046, + 3.804, + 3.8078, + 3.8079, + 3.8079, + 3.8048, + 3.8037, + 3.8046, + 3.8175, + 3.818, + 3.8075, + 3.8086, + 3.797, + 3.7864, + 3.7852, + 3.7816, + 3.7812, + 3.7698, + 3.7698, + 3.7627, + 3.7567, + 3.7485, + 3.7461, + 3.7507, + 3.7475, + 3.7509, + 3.7387, + 3.7296, + 3.714, + 3.7121, + 3.7164, + 3.7158, + 3.7176, + 3.7156, + 3.7, + 3.6854, + 3.6691, + 3.6769, + 3.6699, + 3.6843, + 3.6639, + 3.6798, + 3.6653, + 3.6691, + 3.6758, + 3.6859, + 3.6875, + 3.685, + 3.6912, + 3.6927, + 3.6696, + 3.6548, + 3.6356, + 3.6394, + 3.6488, + 3.6469, + 3.6296, + 3.6174, + 3.6227, + 3.6278, + 3.6303, + 3.6332, + 3.634, + 3.6414, + 3.6404, + 3.6417, + 3.6406, + 3.6261, + 3.6325, + 3.6253, + 3.6262, + 3.6314, + 3.6381, + 3.6435, + 3.6461, + 3.64, + 3.6388, + 3.6326, + 3.6292, + 3.6234, + 3.6035, + 3.6026, + 3.5856, + 3.6132, + 3.6221, + 3.6277, + 3.6075, + 3.6035, + 3.6037, + 3.5858, + 3.5824, + 3.5878, + 3.5921, + 3.5828, + 3.5843, + 3.5979, + 3.6143, + 3.605, + 3.6087, + 3.6094, + 3.6125, + 3.6101, + 3.6101, + 3.6194, + 3.6237, + 3.6227, + 3.6203, + 3.6269, + 3.6183, + 3.6183, + 3.6066, + 3.6078, + 3.6099, + 3.6062, + 3.6098, + 3.6095, + 3.6095, + 3.6078, + 3.6036, + 3.6007, + 3.5977, + 3.5942, + 3.6012, + 3.6144, + 3.6022, + 3.6094, + 3.6091, + 3.6096, + 3.61, + 3.5974, + 3.5871, + 3.5871, + 3.5875, + 3.58, + 3.5685, + 3.5706, + 3.5699, + 3.5713, + 3.5641, + 3.5759, + 3.5803, + 3.5747, + 3.5704, + 3.5729, + 3.5615, + 3.5572, + 3.568, + 3.5629, + 3.5744, + 3.5836, + 3.586, + 3.594, + 3.5955, + 3.592, + 3.6042, + 3.6052, + 3.6245, + 3.6248, + 3.6229, + 3.6192, + 3.6148, + 3.604, + 3.5982, + 3.6016, + 3.6063, + 3.6075, + 3.6138, + 3.6148, + 3.6104, + 3.6194, + 3.6279, + 3.6238, + 3.6234, + 3.6266, + 3.6251, + 3.6241, + 3.6345, + 3.632, + 3.6339, + 3.6386, + 3.644, + 3.6459, + 3.6508, + 3.6447, + 3.6544, + 3.6512, + 3.6551, + 3.6532, + 3.6389, + 3.6339, + 3.634, + 3.6288, + 3.6265, + 3.6186, + 3.6229, + 3.6153, + 3.6086, + 3.6094, + 3.6094, + 3.6109, + 3.6071, + 3.6099, + 3.6066, + 3.6061, + 3.607, + 3.61, + 3.6045, + 3.6022, + 3.6061, + 3.6061, + 3.6061, + 3.6081, + 3.6112, + 3.6098, + 3.5993, + 3.5883, + 3.5754, + 3.5913, + 3.5879, + 3.5952, + 3.5926, + 3.5839, + 3.5833, + 3.5785, + 3.5742, + 3.5755, + 3.5905, + 3.5906, + 3.5958, + 3.5975, + 3.5786, + 3.5726, + 3.5726, + 3.5886, + 3.5903, + 3.5913, + 3.5874, + 3.5971, + 3.594, + 3.6017, + 3.6022, + 3.6022, + 3.5906, + 3.5972, + 3.6052, + 3.6059, + 3.6118, + 3.6025, + 3.6014, + 3.5947, + 3.5947, + 3.5923, + 3.5901, + 3.5878, + 3.5817, + 3.587, + 3.5914, + 3.5914, + 3.5938, + 3.5898, + 3.5884, + 3.5822, + 3.5798, + 3.5798, + 3.5918, + 3.5927, + 3.5902, + 3.5902, + 3.5902, + 3.5894, + 3.5879, + 3.5819, + 3.5814, + 3.584, + 3.5884, + 3.6006, + 3.6022, + 3.5981, + 3.5977, + 3.5977, + 3.5933, + 3.5877, + 3.5877, + 3.5877, + 3.586, + 3.586, + 3.575, + 3.5711, + 3.5749, + 3.5749, + 3.5887, + 3.5868, + 3.5889, + 3.5839, + 3.5839, + 3.5773, + 3.5813, + 3.5797, + 3.5913, + 3.5902, + 3.5843, + 3.5758, + 3.576, + 3.571, + 3.575, + 3.577, + 3.5906, + 3.588, + 3.5984, + 3.597, + 3.5924, + 3.5924, + 3.589, + 3.5931, + 3.5925, + 3.5955, + 3.5976, + 3.5967, + 3.6017, + 3.6017, + 3.5994, + 3.6015, + 3.5996, + 3.5894, + 3.5802, + 3.5802, + 3.5678, + 3.5715, + 3.5678, + 3.564, + 3.5629, + 3.5669, + 3.564, + 3.5619, + 3.566, + 3.572, + 3.5785, + 3.5827, + 3.5791, + 3.5705, + 3.5705, + 3.5772, + 3.5772, + 3.5725, + 3.5645, + 3.5645, + 3.5611, + 3.5611, + 3.5656, + 3.5656, + 3.5651, + 3.5646, + 3.5646, + 3.5646, + 3.5643, + 3.5679, + 3.5641, + 3.5608, + 3.55, + 3.5569, + 3.5766, + 3.5697, + 3.5697, + 3.5605, + 3.5605, + 3.5565, + 3.5706, + 3.5747, + 3.558, + 3.5628, + 3.5704, + 3.5713, + 3.5696, + 3.5656, + 3.5629, + 3.567, + 3.5646, + 3.5657, + 3.5682, + 3.575, + 3.5751, + 3.5743, + 3.5767, + 3.5767, + 3.561, + 3.557, + 3.5544, + 3.56, + 3.5544, + 3.5524, + 3.548, + 3.548, + 3.5519, + 3.5485, + 3.538, + 3.5389, + 3.5388, + 3.543, + 3.5415, + 3.5367, + 3.5338, + 3.5363, + 3.5336, + 3.529, + 3.5359, + 3.5345, + 3.5345, + 3.533, + 3.5382, + 3.5377, + 3.5485, + 3.5397, + 3.5412, + 3.5384, + 3.5312, + 3.5251, + 3.5266, + 3.5266, + 3.5224, + 3.5224, + 3.5309, + 3.5313, + 3.5313, + 3.533, + 3.5292, + 3.5267, + 3.515, + 3.5309, + 3.5337, + 3.5394, + 3.5388, + 3.5347, + 3.5348, + 3.5381, + 3.5433, + 3.5493, + 3.545, + 3.5445, + 3.5422, + 3.5422, + 3.5472, + 3.5468, + 3.5491, + 3.5477, + 3.5439, + 3.5439, + 3.544, + 3.544, + 3.5432, + 3.545, + 3.5435, + 3.5422, + 3.536, + 3.5312, + 3.5358, + 3.5485, + 3.5532, + 3.5532, + 3.5532, + 3.5453, + 3.5371, + 3.5349, + 3.5353, + 3.541, + 3.541, + 3.5509, + 3.5506, + 3.5519, + 3.5489, + 3.5467, + 3.5515, + 3.5554, + 3.5591, + 3.5591, + 3.5553, + 3.5608, + 3.5601, + 3.5601, + 3.5601, + 3.5533, + 3.5533, + 3.5535, + 3.5556, + 3.558, + 3.558, + 3.561, + 3.565, + 3.5626, + 3.5691, + 3.5672, + 3.5641, + 3.574, + 3.5745, + 3.5785, + 3.5746, + 3.5746, + 3.5717, + 3.5715, + 3.5773, + 3.5751, + 3.5751, + 3.5751, + 3.5759, + 3.5816, + 3.5837, + 3.5837, + 3.5795, + 3.5763, + 3.5724, + 3.5704, + 3.5706, + 3.5706, + 3.5743, + 3.5706, + 3.5625, + 3.5597, + 3.56, + 3.56, + 3.56, + 3.5606, + 3.5606, + 3.5522, + 3.552, + 3.552, + 3.563, + 3.563, + 3.5642, + 3.567, + 3.5621, + 3.5621, + 3.5621, + 3.5739, + 3.575, + 3.5824, + 3.585, + 3.585, + 3.5804, + 3.578, + 3.5822, + 3.5881, + 3.5893, + 3.5842, + 3.583, + 3.5781, + 3.5821, + 3.5831, + 3.577, + 3.577, + 3.5716, + 3.5716, + 3.5695, + 3.5789, + 3.5844, + 3.5844, + 3.5807, + 3.5807, + 3.5807, + 3.5875, + 3.5817, + 3.5817, + 3.5817, + 3.5765, + 3.5734, + 3.5734, + 3.5687, + 3.5799, + 3.5832, + 3.5919, + 3.5919, + 3.5875, + 3.5832, + 3.5818, + 3.5855, + 3.5855, + 3.575, + 3.5733, + 3.5733, + 3.5733, + 3.5733, + 3.5845, + 3.5773, + 3.5773, + 3.5785, + 3.5777, + 3.5777, + 3.5777, + 3.5777, + 3.5759, + 3.5691, + 3.57, + 3.5648, + 3.5606, + 3.5584, + 3.5547, + 3.5681, + 3.5739, + 3.5766, + 3.5766, + 3.5735, + 3.5735, + 3.5735, + 3.5735, + 3.5735, + 3.5784, + 3.5838, + 3.5927, + 3.5861, + 3.5861, + 3.5865, + 3.5963, + 3.609, + 3.6083, + 3.6138, + 3.6202, + 3.6275, + 3.6382, + 3.6417, + 3.6367, + 3.6426, + 3.6505, + 3.6624, + 3.647, + 3.6573, + 3.6504, + 3.6504, + 3.6414, + 3.6372, + 3.6375, + 3.631, + 3.62, + 3.5974, + 3.6043, + 3.6272, + 3.6257, + 3.6466, + 3.6504, + 3.6485, + 3.6516, + 3.6608, + 3.6524, + 3.6543, + 3.6578, + 3.6596, + 3.6633, + 3.6596, + 3.6642, + 3.6762, + 3.6865, + 3.6818, + 3.6922, + 3.6856, + 3.6875, + 3.6894, + 3.6827, + 3.6831, + 3.6831, + 3.6907, + 3.6737, + 3.6856, + 3.6957, + 3.7012, + 3.6962, + 3.6992, + 3.7033, + 3.6982, + 3.6874, + 3.6869, + 3.6985, + 3.6999, + 3.6974, + 3.6932, + 3.6981, + 3.7046, + 3.7007, + 3.7007, + 3.7079, + 3.7031, + 3.7031, + 3.6655, + 3.6678, + 3.666, + 3.6768, + 3.6768, + 3.6822, + 3.6957, + 3.7092, + 3.7089, + 3.7252, + 3.718, + 3.7204, + 3.7295, + 3.7344, + 3.7312, + 3.7312, + 3.7174, + 3.7354, + 3.7373, + 3.7199, + 3.7126, + 3.7319, + 3.7272, + 3.7126, + 3.7191, + 3.7272, + 3.7361, + 3.7388, + 3.738, + 3.7371, + 3.7422, + 3.748, + 3.7464, + 3.7467, + 3.7555, + 3.7617, + 3.7731, + 3.7568, + 3.7619, + 3.7624, + 3.7722, + 3.7659, + 3.7622, + 3.7578, + 3.7513, + 3.7304, + 3.733, + 3.723, + 3.7276, + 3.7336, + 3.7378, + 3.7498, + 3.7339, + 3.7305, + 3.7296, + 3.7296, + 3.7385, + 3.7349, + 3.7358, + 3.7255, + 3.713, + 3.7066, + 3.6983, + 3.7051, + 3.701, + 3.6957, + 3.6999, + 3.6851, + 3.6873, + 3.6854, + 3.6854, + 3.6865, + 3.6865, + 3.68, + 3.6775, + 3.6767, + 3.6905, + 3.6894, + 3.6987, + 3.7088, + 3.7051, + 3.7051, + 3.697, + 3.6923, + 3.6921, + 3.6887, + 3.6783, + 3.6842, + 3.6924, + 3.6942, + 3.6987, + 3.6987, + 3.6978, + 3.7265, + 3.742, + 3.7317, + 3.716, + 3.727, + 3.7322, + 3.732, + 3.7308, + 3.7231, + 3.7216, + 3.7187, + 3.7178, + 3.7148, + 3.7148, + 3.7322, + 3.7327, + 3.7215, + 3.7215, + 3.7365, + 3.7443, + 3.728, + 3.7203, + 3.7425, + 3.7197, + 3.7197, + 3.7257, + 3.7329, + 3.7262, + 3.7235, + 3.7235, + 3.7195, + 3.7248, + 3.7228, + 3.7172, + 3.7294, + 3.73, + 3.7338, + 3.732, + 3.7217, + 3.7148, + 3.7147, + 3.7234, + 3.7022, + 3.7044, + 3.7067, + 3.7027, + 3.6992, + 3.6934, + 3.6951, + 3.6951, + 3.6951, + 3.6951, + 3.7059, + 3.7043, + 3.6999, + 3.6999, + 3.6967, + 3.6967, + 3.704, + 3.7061, + 3.7061, + 3.7022, + 3.7007, + 3.6954, + 3.7069, + 3.7031, + 3.7031, + 3.7148, + 3.7246, + 3.719, + 3.7136, + 3.7179, + 3.7179, + 3.7104, + 3.724, + 3.7379, + 3.7394, + 3.7416, + 3.7416, + 3.7426, + 3.7332, + 3.749, + 3.7558, + 3.7632, + 3.7656, + 3.766, + 3.764, + 3.7673, + 3.7725, + 3.7732, + 3.78, + 3.7751, + 3.7714, + 3.7815, + 3.7797, + 3.7822, + 3.7831, + 3.7857, + 3.7844, + 3.7875, + 3.7816, + 3.7681, + 3.7658, + 3.7822, + 3.7822, + 3.7789, + 3.753, + 3.7487, + 3.7509, + 3.7575, + 3.758, + 3.7479, + 3.7416, + 3.7468, + 3.7468, + 3.7468, + 3.7536, + 3.7612, + 3.7558, + 3.7731, + 3.7758, + 3.7731, + 3.7847, + 3.788, + 3.7857, + 3.7857, + 3.7821, + 3.7846, + 3.7846, + 3.7783, + 3.7837, + 3.7815, + 3.7734, + 3.7721, + 3.7681, + 3.7803, + 3.7933, + 3.7882, + 3.7774, + 3.7755, + 3.7723, + 3.7816, + 3.7903, + 3.7879, + 3.7866, + 3.7891, + 3.7896, + 3.7896, + 3.7895, + 3.7841, + 3.7879, + 3.7892, + 3.7747, + 3.7782, + 3.79, + 3.7876, + 3.7876, + 3.7783, + 3.7785, + 3.7817, + 3.7816, + 3.7979, + 3.8026, + 3.8164, + 3.828, + 3.8067, + 3.8253, + 3.8328, + 3.8278, + 3.8336, + 3.8506, + 3.838, + 3.843, + 3.8422, + 3.8204, + 3.8161, + 3.8071, + 3.8027, + 3.7998, + 3.7992, + 3.7943, + 3.7888, + 3.7888, + 3.7799, + 3.7747, + 3.7799, + 3.7799, + 3.7752, + 3.7783, + 3.7783, + 3.7879, + 3.7854, + 3.7886, + 3.7952, + 3.8145, + 3.8237, + 3.8184, + 3.8184, + 3.831, + 3.8315, + 3.8166, + 3.8194, + 3.81, + 3.8007, + 3.797, + 3.8149, + 3.8096, + 3.7936, + 3.8063, + 3.8204, + 3.8139, + 3.8215, + 3.8295, + 3.8234, + 3.8201, + 3.8246, + 3.8427, + 3.8408, + 3.8365, + 3.8379, + 3.8422, + 3.8435, + 3.8293, + 3.8147, + 3.812, + 3.8034, + 3.8012, + 3.7917, + 3.8012, + 3.8012, + 3.8016, + 3.7918, + 3.7921, + 3.7945, + 3.7945, + 3.7976, + 3.7779, + 3.7816, + 3.7816, + 3.7705, + 3.7691, + 3.7664, + 3.7777, + 3.7841, + 3.785, + 3.7838, + 3.7872, + 3.798, + 3.8001, + 3.804, + 3.8037, + 3.8041, + 3.7932, + 3.8043, + 3.797, + 3.7857, + 3.7836, + 3.7904, + 3.8021, + 3.8068, + 3.808, + 3.8128, + 3.8225, + 3.8177, + 3.8128, + 3.8188, + 3.823, + 3.8204, + 3.8237, + 3.8231, + 3.817, + 3.8254, + 3.8238, + 3.8219, + 3.831, + 3.8286, + 3.8243, + 3.8216, + 3.8169, + 3.8169, + 3.8118, + 3.8177, + 3.8075, + 3.8105, + 3.7946, + 3.788, + 3.7864, + 3.7807, + 3.78, + 3.7819, + 3.7812, + 3.7783, + 3.7751, + 3.7819, + 3.7819, + 3.7564, + 3.76, + 3.746, + 3.7406, + 3.747, + 3.7452, + 3.742, + 3.7416, + 3.7449, + 3.7437, + 3.7384, + 3.7182, + 3.7205, + 3.7347, + 3.7325, + 3.7388, + 3.721, + 3.7413, + 3.7369, + 3.7435, + 3.7419, + 3.7459, + 3.7438, + 3.7456, + 3.7463, + 3.7541, + 3.7679, + 3.7708, + 3.7542, + 3.7479, + 3.7367, + 3.734, + 3.7455, + 3.7439, + 3.7324, + 3.7425, + 3.7425, + 3.745, + 3.7445, + 3.748, + 3.7526, + 3.755, + 3.7637, + 3.7647, + 3.7658, + 3.7658, + 3.7658, + 3.7658, + 3.7626, + 3.7533, + 3.7537, + 3.7533, + 3.7542, + 3.7572, + 3.7491, + 3.7463, + 3.7507, + 3.7433, + 3.7421, + 3.7437, + 3.7495, + 3.745, + 3.7478, + 3.7466, + 3.7464, + 3.739, + 3.7508, + 3.7497, + 3.75, + 3.748, + 3.7438, + 3.7522, + 3.749, + 3.7604, + 3.766, + 3.7668, + 3.7711, + 3.7683, + 3.7683, + 3.7683, + 3.7708, + 3.7653, + 3.7701, + 3.7825, + 3.7878, + 3.7808, + 3.7811, + 3.7848, + 3.7792, + 3.7794, + 3.7776, + 3.7801, + 3.768, + 3.7694, + 3.7545, + 3.754, + 3.7567, + 3.7521, + 3.7603, + 3.7534, + 3.7507, + 3.7479, + 3.7507, + 3.7479, + 3.7569, + 3.7569, + 3.753, + 3.7553, + 3.75, + 3.7471, + 3.7483, + 3.7483, + 3.7504, + 3.7457, + 3.7589, + 3.7622, + 3.7627, + 3.7514, + 3.7484, + 3.7437, + 3.7516, + 3.7516, + 3.7555, + 3.7542, + 3.7471, + 3.7435, + 3.7557, + 3.7542, + 3.7485, + 3.7455, + 3.7497, + 3.7497, + 3.7474, + 3.7354, + 3.7397, + 3.7397, + 3.7396, + 3.7475, + 3.7446, + 3.7468, + 3.7682, + 3.7685, + 3.7704, + 3.767, + 3.7607, + 3.7716, + 3.7751, + 3.7778, + 3.7808, + 3.7816, + 3.7803, + 3.7942, + 3.8135, + 3.8314, + 3.841, + 3.8387, + 3.8367, + 3.8411, + 3.833, + 3.8396, + 3.8307, + 3.8154, + 3.838, + 3.8276, + 3.8245, + 3.8204, + 3.8343, + 3.8196, + 3.831, + 3.8156, + 3.825, + 3.8262, + 3.8094, + 3.8095, + 3.8146, + 3.7907, + 3.783, + 3.7904, + 3.7908, + 3.793, + 3.7723, + 3.7667, + 3.7674, + 3.7416, + 3.7567, + 3.7596, + 3.7592, + 3.7624, + 3.7599, + 3.7573, + 3.7531, + 3.7501, + 3.7521, + 3.7602, + 3.7544, + 3.7661, + 3.7661, + 3.7641, + 3.7702, + 3.7684, + 3.7687, + 3.7581, + 3.7501, + 3.7501, + 3.7433, + 3.7411, + 3.7322, + 3.7107, + 3.6995, + 3.699, + 3.6961, + 3.673, + 3.6916, + 3.6965, + 3.7003, + 3.7128, + 3.7065, + 3.7071, + 3.7097, + 3.7126, + 3.6912, + 3.6699, + 3.6814, + 3.685, + 3.685, + 3.6869, + 3.6567, + 3.6831, + 3.6763, + 3.6822, + 3.6923, + 3.6919, + 3.705, + 3.7089, + 3.713, + 3.7075, + 3.6887, + 3.6891, + 3.6891, + 3.687, + 3.6968, + 3.6928, + 3.6942, + 3.6952, + 3.6922, + 3.6768, + 3.6719, + 3.6782, + 3.6537, + 3.6611, + 3.6678, + 3.6485, + 3.6066, + 3.6148, + 3.6318, + 3.6129, + 3.6198, + 3.598, + 3.488, + 3.5265, + 3.5042, + 3.5013, + 3.4927, + 3.432, + 3.4501, + 3.0304, + 2.75, + 2.4556, + 2.7172, + 2.8168, + 2.9242, + 2.9823, + 3.0195, + 3.0258, + 3.0484, + 3.071, + 3.0398, + 3.0514, + 3.0782, + 3.0923, + 3.1287, + 3.14, + 3.1182, + 3.1416, + 3.0898, + 3.1435, + 3.2265, + 3.1454, + 3.1538, + 3.1118, + 3.14, + 3.1432, + 3.1361, + 3.1903, + 3.2023, + 3.1832, + 3.188, + 3.1662, + 3.161, + 3.1721, + 3.1796, + 3.164, + 3.1886, + 3.207, + 3.2206, + 3.2433, + 3.2504, + 3.2244, + 3.219, + 3.2302, + 3.2492, + 3.2607, + 3.2544, + 3.2503, + 3.2689, + 3.2492, + 3.2518, + 3.2244, + 3.2044, + 3.2188, + 3.2052, + 3.1919, + 3.2023, + 3.2142, + 3.1991, + 3.1811, + 3.187, + 3.1998, + 3.1972, + 3.2007, + 3.1947, + 3.181, + 3.2009, + 3.203, + 3.1951, + 3.1855, + 3.1863, + 3.1658, + 3.163, + 3.1206, + 3.1498, + 3.1488, + 3.1333, + 3.1378, + 3.137, + 3.131, + 3.1383, + 3.151, + 3.142, + 3.128, + 3.1378, + 3.1371, + 3.1684, + 3.1662, + 3.1631, + 3.1682, + 3.164, + 3.1803, + 3.1828, + 3.1675, + 3.1648, + 3.1627, + 3.1455, + 3.1529, + 3.1409, + 3.1247, + 3.1151, + 3.0943, + 3.1165, + 3.1089, + 3.1231, + 3.1296, + 3.123, + 3.1193, + 3.1246, + 3.1301, + 3.1482, + 3.1341, + 3.1309, + 3.1333, + 3.1298, + 3.1253, + 3.1332, + 3.1347, + 3.1416, + 3.1228, + 3.1251, + 3.1177, + 3.1218, + 3.1167, + 3.1189, + 3.1189, + 3.0967, + 3.0707, + 3.0876, + 3.1177, + 3.116, + 3.107, + 3.1068, + 3.1019, + 3.1045, + 3.0939, + 3.0944, + 3.0933, + 3.083, + 3.0814, + 3.0846, + 3.1153, + 3.1053, + 3.1023, + 3.1245, + 3.1182, + 3.1083, + 3.089, + 3.0764, + 3.0684, + 3.0761, + 3.0831, + 3.0782, + 3.0877, + 3.1123, + 3.1228, + 3.107, + 3.1043, + 3.0935, + 3.0959, + 3.102, + 3.0961, + 3.0893, + 3.0814, + 3.0728, + 3.0728, + 3.0808, + 3.0721, + 3.0613, + 3.0608, + 3.055, + 3.0743, + 3.0745, + 3.0933, + 3.1017, + 3.0941, + 3.0938, + 3.099, + 3.0805, + 3.0767, + 3.0861, + 3.0736, + 3.0807, + 3.0796, + 3.0639, + 3.0668, + 3.0724, + 3.0684, + 3.071, + 3.0628, + 3.0572, + 3.0488, + 3.0284, + 3.0398, + 3.041, + 3.0514, + 3.0647, + 3.0768, + 3.0753, + 3.0712, + 3.0697, + 3.0589, + 3.0494, + 3.054, + 3.0684, + 3.0694, + 3.0519, + 3.0604, + 3.06, + 3.0639, + 3.0536, + 3.0577, + 3.0496, + 3.0539, + 3.046, + 3.0467, + 3.0439, + 3.0345, + 3.0465, + 3.0524, + 3.0489, + 3.032, + 3.0374, + 3.0416, + 3.089, + 3.1014, + 3.1046, + 3.1098, + 3.1082, + 3.1255, + 3.1453, + 3.1254, + 3.1302, + 3.1475, + 3.1393, + 3.1487, + 3.136, + 3.135, + 3.1468, + 3.1551, + 3.1402, + 3.1571, + 3.1562, + 3.1632, + 3.169, + 3.1754, + 3.1634, + 3.1564, + 3.1448, + 3.1363, + 3.1463, + 3.1361, + 3.1465, + 3.1344, + 3.1324, + 3.1238, + 3.1259, + 3.1228, + 3.1136, + 3.14, + 3.1496, + 3.1236, + 3.1269, + 3.1167, + 3.1044, + 3.1013, + 3.1134, + 3.1083, + 3.0974, + 3.0878, + 3.0952, + 3.0941, + 3.0989, + 3.091, + 3.095, + 3.0975, + 3.0776, + 3.0718, + 3.089, + 3.0993, + 3.1018, + 3.099, + 3.095, + 3.0941, + 3.1001, + 3.1055, + 3.1144, + 3.1058, + 3.1014, + 3.1008, + 3.1008, + 3.1149, + 3.1151, + 3.1118, + 3.1041, + 3.1055, + 3.1087, + 3.096, + 3.1053, + 3.1053, + 3.109, + 3.1068, + 3.1051, + 3.097, + 3.0978, + 3.0969, + 3.096, + 3.0813, + 3.0875, + 3.0774, + 3.0784, + 3.0807, + 3.0766, + 3.0679, + 3.0615, + 3.0703, + 3.0619, + 3.0635, + 3.0783, + 3.0691, + 3.0667, + 3.0667, + 3.0678, + 3.0789, + 3.0841, + 3.083, + 3.0732, + 3.0738, + 3.076, + 3.0801, + 3.0801, + 3.0806, + 3.0761, + 3.0761, + 3.0787, + 3.0766, + 3.0767, + 3.0704, + 3.0671, + 3.0752, + 3.0752, + 3.0643, + 3.0609, + 3.0691, + 3.0697, + 3.0706, + 3.0814, + 3.0904, + 3.0982, + 3.1041, + 3.1134, + 3.1134, + 3.1069, + 3.1069, + 3.1185, + 3.1222, + 3.1222, + 3.1302, + 3.1237, + 3.12, + 3.1173, + 3.1143, + 3.119, + 3.1178, + 3.1165, + 3.1145, + 3.1115, + 3.1153, + 3.0979, + 3.1055, + 3.1017, + 3.1022, + 3.0935, + 3.0893, + 3.0897, + 3.0897, + 3.086, + 3.0792, + 3.0847, + 3.0786, + 3.0817, + 3.0827, + 3.0862, + 3.0766, + 3.078, + 3.0679, + 3.0647, + 3.0678, + 3.0768, + 3.0749, + 3.0708, + 3.0775, + 3.0775, + 3.0775, + 3.0743, + 3.0707, + 3.0708, + 3.066, + 3.0596, + 3.0598, + 3.0685, + 3.072, + 3.072, + 3.0664, + 3.0664, + 3.0614, + 3.0467, + 3.0389, + 3.0373, + 3.0509, + 3.0499, + 3.0508, + 3.0521, + 3.0436, + 3.0503, + 3.0496, + 3.0673, + 3.0718, + 3.0641, + 3.0662, + 3.0691, + 3.0689, + 3.0673, + 3.0699, + 3.0733, + 3.0755, + 3.076, + 3.0729, + 3.0658, + 3.0728, + 3.0751, + 3.076, + 3.0755, + 3.078, + 3.0843, + 3.0848, + 3.084, + 3.0867, + 3.0843, + 3.08, + 3.08, + 3.0771, + 3.0771, + 3.0771, + 3.0762, + 3.0877, + 3.0975, + 3.0798, + 3.0768, + 3.072, + 3.0743, + 3.0689, + 3.0704, + 3.0714, + 3.0691, + 3.0697, + 3.0674, + 3.0609, + 3.0609, + 3.0637, + 3.0615, + 3.0589, + 3.0585, + 3.0586, + 3.0598, + 3.0547, + 3.0591, + 3.0591, + 3.0563, + 3.0543, + 3.0518, + 3.0549, + 3.0578, + 3.0638, + 3.0638, + 3.0581, + 3.0503, + 3.0484, + 3.0521, + 3.0439, + 3.0473, + 3.0433, + 3.0433, + 3.0543, + 3.0534, + 3.0534, + 3.0598, + 3.0711, + 3.0727, + 3.084, + 3.0885, + 3.0878, + 3.0825, + 3.086, + 3.0782, + 3.0782, + 3.0781, + 3.0782, + 3.0782, + 3.0834, + 3.0827, + 3.081, + 3.0836, + 3.0888, + 3.0927, + 3.0935, + 3.0935, + 3.0916, + 3.0939, + 3.0967, + 3.0964, + 3.0956, + 3.0956, + 3.0931, + 3.0898, + 3.0863, + 3.0863, + 3.0918, + 3.0886, + 3.0886, + 3.0853, + 3.0853, + 3.0856, + 3.0918, + 3.0923, + 3.092, + 3.092, + 3.0919, + 3.092, + 3.0975, + 3.0936, + 3.0896, + 3.0982, + 3.1045, + 3.1033, + 3.1034, + 3.102, + 3.0962, + 3.0972, + 3.0875, + 3.0875, + 3.0911, + 3.0911, + 3.0849, + 3.0871, + 3.0911, + 3.1104, + 3.116, + 3.1165, + 3.1144, + 3.1139, + 3.1139, + 3.1171, + 3.1169, + 3.123, + 3.1273, + 3.1252, + 3.1252, + 3.1252, + 3.1281, + 3.1256, + 3.127, + 3.127, + 3.1407, + 3.137, + 3.1408, + 3.14, + 3.1423, + 3.1449, + 3.1414, + 3.1346, + 3.1397, + 3.1521, + 3.1499, + 3.1499, + 3.154, + 3.1489, + 3.1426, + 3.1598, + 3.1546, + 3.1475, + 3.1511, + 3.1558, + 3.1558, + 3.1568, + 3.149, + 3.1516, + 3.1578, + 3.149, + 3.1505, + 3.1505, + 3.1452, + 3.1428, + 3.1414, + 3.1409, + 3.1378, + 3.1332, + 3.1237, + 3.1245, + 3.1252, + 3.1278, + 3.1278, + 3.1291, + 3.1286, + 3.1286, + 3.1299, + 3.1276, + 3.116, + 3.1164, + 3.1162, + 3.1141, + 3.1146, + 3.1056, + 3.1023, + 3.1035, + 3.1008, + 3.1032, + 3.0963, + 3.0935, + 3.0935, + 3.0898, + 3.0785, + 3.0802, + 3.0885, + 3.083, + 3.0925, + 3.0857, + 3.0808, + 3.0794, + 3.0781, + 3.0747, + 3.0639, + 3.0675, + 3.0742, + 3.0687, + 3.063, + 3.057, + 3.0626, + 3.0676, + 3.0737, + 3.0668, + 3.0639, + 3.0733, + 3.0723, + 3.0723, + 3.0723, + 3.0723, + 3.0639, + 3.0588, + 3.0583, + 3.0608, + 3.0588, + 3.0582, + 3.0582, + 3.0561, + 3.0561, + 3.0561, + 3.0561, + 3.0558, + 3.0522, + 3.0522, + 3.0439, + 3.0448, + 3.0346, + 3.0391, + 3.0391, + 3.0495, + 3.0555, + 3.0563, + 3.0618, + 3.0584, + 3.0611, + 3.0611, + 3.0632, + 3.0673, + 3.0654, + 3.0633, + 3.0622, + 3.0622, + 3.066, + 3.066, + 3.0622, + 3.06, + 3.06, + 3.06, + 3.06, + 3.06, + 3.06, + 3.06, + 3.0592, + 3.0587, + 3.058, + 3.0583, + 3.0546, + 3.0541, + 3.0496, + 3.0573, + 3.0639, + 3.0664, + 3.0698, + 3.077, + 3.0728, + 3.0698, + 3.0698, + 3.0698, + 3.0698, + 3.0711, + 3.0737, + 3.0812, + 3.0812, + 3.0811, + 3.0743, + 3.0721, + 3.0721, + 3.0721, + 3.0635, + 3.0674, + 3.0592, + 3.0732, + 3.0761, + 3.0797, + 3.0814, + 3.087, + 3.0848, + 3.1056, + 3.1099, + 3.1201, + 3.1204, + 3.1189, + 3.1083, + 3.1079, + 3.1041, + 3.0915, + 3.085, + 3.0704, + 3.0702, + 3.0699, + 3.0749, + 3.0696, + 3.0696, + 3.0715, + 3.0702, + 3.0648, + 3.0617, + 3.0636, + 3.0594, + 3.0896, + 3.0872, + 3.089, + 3.09, + 3.0991, + 3.0974, + 3.1098, + 3.1025, + 3.0982, + 3.0966, + 3.0978, + 3.1006, + 3.0905, + 3.088, + 3.0888, + 3.0873, + 3.0873, + 3.0878, + 3.0794, + 3.0794, + 3.0796, + 3.0743, + 3.0743, + 3.0761, + 3.0761, + 3.075, + 3.0852, + 3.078, + 3.0761, + 3.0752, + 3.0741, + 3.0685, + 3.0632, + 3.0621, + 3.0608, + 3.0629, + 3.0599, + 3.062, + 3.0641, + 3.0665, + 3.051, + 3.0439, + 3.04, + 3.0343, + 3.0403, + 3.029, + 3.0417, + 3.029, + 3.0077, + 2.997, + 2.9983, + 3.0206, + 3.0151, + 3.0188, + 3.0188, + 3.0309, + 3.0217, + 3.0244, + 3.0363, + 3.0331, + 3.0329, + 3.0329, + 3.0361, + 3.0361, + 3.0292, + 3.0297, + 3.0164, + 3.0226, + 3.0194, + 3.0218, + 3.0225, + 3.0291, + 3.033, + 3.0456, + 3.0492, + 3.0483, + 3.0372, + 3.0252, + 3.0276, + 3.0281, + 3.0301, + 3.0357, + 3.0436, + 3.0431, + 3.0421, + 3.0389, + 3.0308, + 3.0411, + 3.0448, + 3.0479, + 3.0512, + 3.057, + 3.053, + 3.053, + 3.0454, + 3.0498, + 3.0598, + 3.0673, + 3.0713, + 3.0736, + 3.0681, + 3.0706, + 3.0797, + 3.0841, + 3.0844, + 3.0854, + 3.0854, + 3.0832, + 3.0757, + 3.0819, + 3.0824, + 3.0824, + 3.0824, + 3.075, + 3.079, + 3.0856, + 3.084, + 3.0722, + 3.072, + 3.0771, + 3.0795, + 3.0777, + 3.0992, + 3.1004, + 3.1022, + 3.0975, + 3.1025, + 3.1025, + 3.1064, + 3.1034, + 3.1108, + 3.1177, + 3.1393, + 3.1391, + 3.1342, + 3.1246, + 3.1246, + 3.1379, + 3.1376, + 3.1376, + 3.1328, + 3.1328, + 3.1468, + 3.16, + 3.1639, + 3.1538, + 3.1415, + 3.137, + 3.125, + 3.1256, + 3.116, + 3.1128, + 3.1215, + 3.1216, + 3.1198, + 3.1198, + 3.1144, + 3.1168, + 3.1168, + 3.1218, + 3.1218, + 3.1242, + 3.1187, + 3.1169, + 3.1132, + 3.1105, + 3.1092, + 3.1244, + 3.1217, + 3.1135, + 3.1041, + 3.1041, + 3.1033, + 3.1033, + 3.1078, + 3.1086, + 3.1086, + 3.0952, + 3.0869, + 3.0906, + 3.0907, + 3.0939, + 3.0907, + 3.0893, + 3.091, + 3.0933, + 3.0913, + 3.0913, + 3.0961, + 3.0928, + 3.0981, + 3.0966, + 3.1025, + 3.1118, + 3.1118, + 3.1118, + 3.1208, + 3.1208, + 3.1148, + 3.1118, + 3.12, + 3.1193, + 3.1235, + 3.1235, + 3.1231, + 3.1193, + 3.1149, + 3.1083, + 3.1083, + 3.1056, + 3.1041, + 3.1014, + 3.1042, + 3.1042, + 3.1179, + 3.1195, + 3.1195, + 3.1049, + 3.1033, + 3.1122, + 3.1122, + 3.1122, + 3.1136, + 3.116, + 3.1174, + 3.112, + 3.112, + 3.112, + 3.1185, + 3.1185, + 3.12, + 3.1147, + 3.1147, + 3.1121, + 3.1139, + 3.1139, + 3.1124, + 3.1121, + 3.1121, + 3.1121, + 3.1121, + 3.1121, + 3.1121, + 3.1111, + 3.1111, + 3.1123, + 3.1123, + 3.1123, + 3.1175, + 3.1175, + 3.1202, + 3.1331, + 3.1433, + 3.1389, + 3.1369, + 3.1367, + 3.1367, + 3.1447, + 3.1378, + 3.1356, + 3.1359, + 3.1506, + 3.15, + 3.1506, + 3.1466, + 3.1333, + 3.1293, + 3.1222, + 3.1261, + 3.1286, + 3.1286, + 3.1301, + 3.1247, + 3.1262, + 3.1262, + 3.1284, + 3.1303, + 3.1303, + 3.1319, + 3.1319, + 3.1355, + 3.1402, + 3.1352, + 3.1367, + 3.1375, + 3.1231, + 3.1318, + 3.1318, + 3.1318, + 3.1219, + 3.1219, + 3.1219, + 3.1219, + 3.1219, + 3.1253, + 3.1349, + 3.1349, + 3.1349, + 3.1278, + 3.1278, + 3.133, + 3.1468, + 3.1559, + 3.1574, + 3.1574, + 3.145, + 3.1428, + 3.1428, + 3.1411, + 3.1409, + 3.1393, + 3.1393, + 3.1377, + 3.1338, + 3.1329, + 3.1275, + 3.1229, + 3.1229, + 3.1257, + 3.1257, + 3.1379, + 3.1384, + 3.1384, + 3.1384, + 3.1328, + 3.128, + 3.1316, + 3.1248, + 3.1256, + 3.1284, + 3.1247, + 3.1251, + 3.1262, + 3.1212, + 3.1165, + 3.1219, + 3.1297, + 3.123, + 3.1184, + 3.1136, + 3.1192, + 3.1192, + 3.1192, + 3.1192, + 3.1189, + 3.1168, + 3.1093, + 3.1095, + 3.1065, + 3.1065, + 3.1096, + 3.1159, + 3.1188, + 3.1196, + 3.1264, + 3.127, + 3.1188, + 3.1281, + 3.127, + 3.127, + 3.129, + 3.1354, + 3.1374, + 3.1417, + 3.1417, + 3.1352, + 3.1352, + 3.1352, + 3.1352, + 3.1395, + 3.1347, + 3.1318, + 3.1288, + 3.1231, + 3.1204, + 3.1208, + 3.1191, + 3.1208, + 3.1186, + 3.1223, + 3.1252, + 3.1223, + 3.1223, + 3.1243, + 3.1243, + 3.1298, + 3.1266, + 3.1225, + 3.1233, + 3.1289, + 3.1279, + 3.124, + 3.116, + 3.12, + 3.1164, + 3.1231, + 3.1239, + 3.1196, + 3.1124, + 3.1152, + 3.1185, + 3.1133, + 3.1137, + 3.1088, + 3.1097, + 3.1041, + 3.098, + 3.0984, + 3.1063, + 3.1086, + 3.1097, + 3.1118, + 3.1132, + 3.1104, + 3.1124, + 3.116, + 3.118, + 3.1222, + 3.1113, + 3.1097, + 3.1097, + 3.1097, + 3.1091, + 3.1041, + 3.1041, + 3.0921, + 3.0867, + 3.0889, + 3.0952, + 3.0935, + 3.0836, + 3.0779, + 3.0841, + 3.0841, + 3.0814, + 3.0814, + 3.0787, + 3.087, + 3.0878, + 3.0807, + 3.0862, + 3.0871, + 3.0702, + 3.0676, + 3.0724, + 3.082, + 3.0877, + 3.0877, + 3.0896, + 3.0841, + 3.0863, + 3.0855, + 3.0906, + 3.0835, + 3.0873, + 3.0987, + 3.1047, + 3.1143, + 3.1071, + 3.1071, + 3.096, + 3.0821, + 3.0782, + 3.062, + 3.0724, + 3.082, + 3.0947, + 3.0993, + 3.0899, + 3.0926, + 3.0913, + 3.1011, + 3.1027, + 3.1027, + 3.0916, + 3.1027, + 3.1062, + 3.1131, + 3.1158, + 3.109, + 3.1086, + 3.1024, + 3.1027, + 3.1049, + 3.1034, + 3.1034, + 3.1009, + 3.1, + 3.1008, + 3.1042, + 3.096, + 3.0875, + 3.1054, + 3.1053, + 3.0867, + 3.0921, + 3.1001, + 3.1056, + 3.1077, + 3.1077, + 3.1083, + 3.107, + 3.1038, + 3.0976, + 3.0939, + 3.1017, + 3.1017, + 3.1009, + 3.0984, + 3.0959, + 3.0868, + 3.0861, + 3.0861, + 3.088, + 3.088, + 3.0842, + 3.0834, + 3.0829, + 3.0829, + 3.0829, + 3.0874, + 3.0969, + 3.098, + 3.0989, + 3.0949, + 3.0949, + 3.1018, + 3.1062, + 3.1128, + 3.1129, + 3.1165, + 3.1243, + 3.113, + 3.1116, + 3.1134, + 3.1176, + 3.1227, + 3.1301, + 3.128, + 3.125, + 3.1161, + 3.112, + 3.1187, + 3.1187, + 3.1163, + 3.1163, + 3.1086, + 3.1185, + 3.1174, + 3.1174, + 3.1201, + 3.1164, + 3.1205, + 3.1205, + 3.1205, + 3.1277, + 3.1236, + 3.1236, + 3.123, + 3.1344, + 3.1521, + 3.1691, + 3.1417, + 3.1206, + 3.1161, + 3.1068, + 3.1153, + 3.1167, + 3.1167, + 3.1164, + 3.1162, + 3.1043, + 3.0993, + 3.0898, + 3.0957, + 3.0968, + 3.0973, + 3.093, + 3.0937, + 3.0955, + 3.0894, + 3.0727, + 3.072, + 3.0745, + 3.0716, + 3.0639, + 3.0709, + 3.061, + 3.0519, + 3.0529, + 3.0594, + 3.0658, + 3.082, + 3.0743, + 3.0677, + 3.0677, + 3.0726, + 3.0754, + 3.0864, + 3.0835, + 3.073, + 3.0717, + 3.08, + 3.0875, + 3.1025, + 3.1284, + 3.1423, + 3.1342, + 3.1097, + 3.1194, + 3.1211, + 3.1304, + 3.1288, + 3.11, + 3.1031, + 3.092, + 3.0994, + 3.0914, + 3.1039, + 3.0953, + 3.1023, + 3.0912, + 3.0941, + 3.0892, + 3.0915, + 3.095, + 3.0959, + 3.0988, + 3.0929, + 3.0956, + 3.0922, + 3.0883, + 3.0738, + 3.0825, + 3.0825, + 3.089, + 3.0837, + 3.0837, + 3.0838, + 3.0861, + 3.0861, + 3.0786, + 3.0786, + 3.0967, + 3.0958, + 3.1062, + 3.1031, + 3.1031, + 3.1086, + 3.1059, + 3.1029, + 3.0992, + 3.0977, + 3.1004, + 3.1004, + 3.0975, + 3.1051, + 3.1128, + 3.1144, + 3.1017, + 3.1073, + 3.1069, + 3.1032, + 3.1032, + 3.1089, + 3.1083, + 3.1083, + 3.1014, + 3.1206, + 3.1103, + 3.1188, + 3.1158, + 3.125, + 3.125, + 3.1214, + 3.1214, + 3.1128, + 3.1141, + 3.1111, + 3.1111, + 3.1111, + 3.1134, + 3.1134, + 3.1098, + 3.1098, + 3.1095, + 3.1241, + 3.1071, + 3.1041, + 3.1112, + 3.1112, + 3.1015, + 3.1013, + 3.1013, + 3.1096, + 3.1128, + 3.1105, + 3.1109, + 3.1176, + 3.1181, + 3.1193, + 3.137, + 3.1431, + 3.1353, + 3.1368, + 3.1363, + 3.1413, + 3.1424, + 3.139, + 3.1413, + 3.1288, + 3.1129, + 3.111, + 3.1118, + 3.1173, + 3.1114, + 3.1151, + 3.1335, + 3.1327, + 3.1251, + 3.1218, + 3.1364, + 3.1384, + 3.1486, + 3.1519, + 3.1426, + 3.1292, + 3.1345, + 3.134, + 3.139, + 3.1409, + 3.1469, + 3.1402, + 3.1438, + 3.1488, + 3.1481, + 3.1448, + 3.1506, + 3.1518, + 3.1514, + 3.1564, + 3.1462, + 3.1483, + 3.1474, + 3.1482, + 3.1467, + 3.1399, + 3.1374, + 3.1292, + 3.1339, + 3.1339, + 3.1313, + 3.1277, + 3.129, + 3.1304, + 3.1267, + 3.1236, + 3.1283, + 3.1231, + 3.1302, + 3.1302, + 3.1313, + 3.1274, + 3.1222, + 3.1257, + 3.1249, + 3.124, + 3.1271, + 3.1231, + 3.1227, + 3.1215, + 3.1238, + 3.1208, + 3.121, + 3.1147, + 3.111, + 3.1, + 3.1034, + 3.1092, + 3.1081, + 3.1094, + 3.1124, + 3.1092, + 3.1092, + 3.1106, + 3.1128, + 3.1144, + 3.1222, + 3.1263, + 3.1199, + 3.115, + 3.115, + 3.115, + 3.1312, + 3.1312, + 3.1293, + 3.137, + 3.1484, + 3.1467, + 3.1466, + 3.1496, + 3.1463, + 3.1333, + 3.1314, + 3.1309, + 3.1268, + 3.1284, + 3.1269, + 3.1192, + 3.1173, + 3.1234, + 3.1232, + 3.1248, + 3.1248, + 3.1173, + 3.1173, + 3.1239, + 3.1276, + 3.1276, + 3.1199, + 3.1284, + 3.1344, + 3.132, + 3.1329, + 3.1361, + 3.1311, + 3.129, + 3.1389, + 3.1386, + 3.1321, + 3.131, + 3.1223, + 3.1192, + 3.1178, + 3.1229, + 3.1268, + 3.1268, + 3.116, + 3.115, + 3.115, + 3.1208, + 3.1208, + 3.1203, + 3.1217, + 3.1211, + 3.1284, + 3.1296, + 3.1379, + 3.1364, + 3.144, + 3.1522, + 3.1368, + 3.1394, + 3.1429, + 3.1478, + 3.1495, + 3.157, + 3.16, + 3.1616, + 3.1504, + 3.1632, + 3.1608, + 3.1609, + 3.1588, + 3.1637, + 3.1824, + 3.1784, + 3.1732, + 3.1569, + 3.1577, + 3.1465, + 3.1454, + 3.1507, + 3.1544, + 3.1583, + 3.1614, + 3.1704, + 3.1652, + 3.1663, + 3.1668, + 3.1801, + 3.1866, + 3.18, + 3.1834, + 3.1933, + 3.194, + 3.1861, + 3.1775, + 3.1737, + 3.1766, + 3.1911, + 3.1883, + 3.1987, + 3.1978, + 3.2092, + 3.2212, + 3.2187, + 3.2186, + 3.2025, + 3.2057, + 3.2143, + 3.2216, + 3.2259, + 3.2272, + 3.2272, + 3.2188, + 3.229, + 3.2121, + 3.219, + 3.2201, + 3.2192, + 3.1969, + 3.1971, + 3.2037, + 3.2055, + 3.1982, + 3.1931, + 3.1867, + 3.1823, + 3.1823, + 3.1944, + 3.1979, + 3.1927, + 3.1963, + 3.1952, + 3.1995, + 3.207, + 3.2017, + 3.1871, + 3.1759, + 3.1727, + 3.1627, + 3.1555, + 3.1568, + 3.1584, + 3.1719, + 3.1606, + 3.1576, + 3.1568, + 3.1632, + 3.1607, + 3.1607, + 3.1692, + 3.176, + 3.1815, + 3.1788, + 3.1788, + 3.1652, + 3.1563, + 3.157, + 3.158, + 3.1628, + 3.1639, + 3.156, + 3.1507, + 3.157, + 3.163, + 3.1572, + 3.1646, + 3.1641, + 3.1641, + 3.1563, + 3.1687, + 3.1646, + 3.1646, + 3.1646, + 3.1661, + 3.163, + 3.163, + 3.1649, + 3.176, + 3.176, + 3.176, + 3.1828, + 3.1831, + 3.1766, + 3.1775, + 3.1728, + 3.1659, + 3.1649, + 3.1715, + 3.1743, + 3.1741, + 3.1765, + 3.1769, + 3.1852, + 3.1715, + 3.1672, + 3.1629, + 3.1705, + 3.181, + 3.1821, + 3.1757, + 3.169, + 3.1688, + 3.1669, + 3.1652, + 3.1794, + 3.1878, + 3.2072, + 3.1901, + 3.1897, + 3.1816, + 3.1827, + 3.1809, + 3.184, + 3.185, + 3.1831, + 3.1865, + 3.1899, + 3.1882, + 3.187, + 3.1776, + 3.1715, + 3.1741, + 3.1806, + 3.1752, + 3.1676, + 3.1679, + 3.1713, + 3.1648, + 3.1662, + 3.1606, + 3.1595, + 3.1595, + 3.1561, + 3.151, + 3.1552, + 3.1536, + 3.1524, + 3.1575, + 3.1679, + 3.1691, + 3.1688, + 3.1688, + 3.1662, + 3.1721, + 3.1698, + 3.1698, + 3.1711, + 3.1711, + 3.1728, + 3.1682, + 3.1682, + 3.1682, + 3.1739, + 3.176, + 3.176, + 3.1699, + 3.1682, + 3.1717, + 3.1771, + 3.1759, + 3.1751, + 3.1746, + 3.1776, + 3.1833, + 3.1812, + 3.1731, + 3.1731, + 3.1775, + 3.1875, + 3.1911, + 3.1849, + 3.1825, + 3.1743, + 3.1677, + 3.1672, + 3.1862, + 3.1846, + 3.1846, + 3.1813, + 3.1813, + 3.1816, + 3.1804, + 3.1804, + 3.1888, + 3.1821, + 3.1774, + 3.1787, + 3.1787, + 3.1787, + 3.1726, + 3.1723, + 3.1805, + 3.1805, + 3.1805, + 3.1909, + 3.1898, + 3.1894, + 3.1911, + 3.1951, + 3.2012, + 3.1947, + 3.1952, + 3.1952, + 3.1952, + 3.192, + 3.194, + 3.1924, + 3.1922, + 3.1922, + 3.194, + 3.194, + 3.194, + 3.194, + 3.194, + 3.1838, + 3.186, + 3.1879, + 3.1823, + 3.1806, + 3.1806, + 3.1808, + 3.1817, + 3.1789, + 3.1854, + 3.1935, + 3.1923, + 3.1974, + 3.1999, + 3.1933, + 3.1986, + 3.2042, + 3.207, + 3.1982, + 3.2037, + 3.2047, + 3.2124, + 3.2055, + 3.2028, + 3.2083, + 3.2096, + 3.2124, + 3.2124, + 3.2093, + 3.2106, + 3.1944, + 3.1983, + 3.203, + 3.2022, + 3.2019, + 3.2078, + 3.1979, + 3.1983, + 3.1981, + 3.1903, + 3.1934, + 3.1886, + 3.1886, + 3.1816, + 3.1711, + 3.1711, + 3.1711, + 3.18, + 3.1801, + 3.1786, + 3.1786, + 3.1786, + 3.1786, + 3.176, + 3.176, + 3.176, + 3.1802, + 3.1805, + 3.1859, + 3.1863, + 3.1859, + 3.1865, + 3.1867, + 3.1911, + 3.1927, + 3.1816, + 3.1816, + 3.1823, + 3.1883, + 3.1883, + 3.1825, + 3.1805, + 3.1827, + 3.1775, + 3.1779, + 3.1868, + 3.1837, + 3.1893, + 3.1944, + 3.203, + 3.203, + 3.203, + 3.1978, + 3.1977, + 3.1938, + 3.1938, + 3.1938, + 3.1944, + 3.1967, + 3.202, + 3.1991, + 3.1995, + 3.1995, + 3.1993, + 3.1977, + 3.2138, + 3.2176, + 3.22, + 3.2103, + 3.2212, + 3.2214, + 3.2162, + 3.2176, + 3.2141, + 3.2027, + 3.2048, + 3.208, + 3.2116, + 3.2035, + 3.194, + 3.194, + 3.1958, + 3.2001, + 3.1876, + 3.1876, + 3.1876, + 3.1883, + 3.1897, + 3.1956, + 3.211, + 3.2118, + 3.208, + 3.2023, + 3.2097, + 3.2125, + 3.214, + 3.2065, + 3.2065, + 3.2065, + 3.194, + 3.1897, + 3.1882, + 3.1959, + 3.1917, + 3.1847, + 3.1847, + 3.1916, + 3.194, + 3.191, + 3.184, + 3.184, + 3.1933, + 3.1938, + 3.1905, + 3.1905, + 3.1871, + 3.1871, + 3.1906, + 3.1904, + 3.1904, + 3.1949, + 3.1949, + 3.1943, + 3.198, + 3.1919, + 3.1977, + 3.2038, + 3.203, + 3.1965, + 3.1956, + 3.193, + 3.193, + 3.1799, + 3.1809, + 3.1944, + 3.2119, + 3.2119, + 3.2063, + 3.2124, + 3.2124, + 3.2083, + 3.2092, + 3.2104, + 3.2138, + 3.2137, + 3.2139, + 3.2139, + 3.2092, + 3.2114, + 3.2161, + 3.2199, + 3.2183, + 3.2101, + 3.2101, + 3.2101, + 3.2089, + 3.2089, + 3.2089, + 3.2089, + 3.2269, + 3.2342, + 3.2323, + 3.2323, + 3.2305, + 3.2357, + 3.2456, + 3.2411, + 3.2423, + 3.2388, + 3.2488, + 3.2499, + 3.2499, + 3.2352, + 3.2402, + 3.2272, + 3.2249, + 3.2249, + 3.2212, + 3.2115, + 3.2047, + 3.2047, + 3.2078, + 3.2078, + 3.2127, + 3.2086, + 3.2131, + 3.2195, + 3.2158, + 3.2078, + 3.2078, + 3.2049, + 3.2049, + 3.2063, + 3.2, + 3.1879, + 3.1912, + 3.1879, + 3.19, + 3.19, + 3.2039, + 3.21, + 3.2151, + 3.21, + 3.2159, + 3.2044, + 3.2044, + 3.2043, + 3.2188, + 3.2188, + 3.2188, + 3.2188, + 3.2033, + 3.2033, + 3.2033, + 3.2033, + 3.2025, + 3.2, + 3.1987, + 3.1951, + 3.1905, + 3.1891, + 3.184, + 3.1975, + 3.2004, + 3.1949, + 3.2022, + 3.2054, + 3.2019, + 3.2029, + 3.1983, + 3.2087, + 3.216, + 3.216, + 3.2121, + 3.2121, + 3.2121, + 3.2168, + 3.2143, + 3.2139, + 3.2077, + 3.2012, + 3.202, + 3.2007, + 3.1951, + 3.1919, + 3.194, + 3.1919, + 3.1908, + 3.1852, + 3.1852, + 3.1852, + 3.1942, + 3.2, + 3.2002, + 3.2044, + 3.2076, + 3.2076, + 3.2076, + 3.2076, + 3.2065, + 3.201, + 3.2075, + 3.2085, + 3.208, + 3.2085, + 3.2094, + 3.206, + 3.2042, + 3.204, + 3.2138, + 3.208, + 3.1955, + 3.1939, + 3.1981, + 3.209, + 3.2152, + 3.2172, + 3.2148, + 3.2152, + 3.2152, + 3.2152, + 3.218, + 3.2303, + 3.2253, + 3.2179, + 3.2179, + 3.237, + 3.2374, + 3.2374, + 3.232, + 3.2346, + 3.2374, + 3.2374, + 3.2405, + 3.2388, + 3.2348, + 3.2304, + 3.2271, + 3.2228, + 3.2064, + 3.2054, + 3.2048, + 3.2078, + 3.1966, + 3.2068, + 3.2008, + 3.1931, + 3.208, + 3.2078, + 3.2138, + 3.2138, + 3.21, + 3.2075, + 3.2172, + 3.2228, + 3.2165, + 3.2292, + 3.226, + 3.2253, + 3.2244, + 3.2244, + 3.2165, + 3.2165, + 3.2165, + 3.2267, + 3.2179, + 3.2179, + 3.2179, + 3.2188, + 3.2222, + 3.2276, + 3.2306, + 3.2293, + 3.2307, + 3.2223, + 3.2223, + 3.2223, + 3.2223, + 3.2223, + 3.2223, + 3.2223, + 3.2223, + 3.2241, + 3.2133, + 3.2038, + 3.1944, + 3.1883, + 3.1991, + 3.2064, + 3.2045, + 3.2038, + 3.2062, + 3.2055, + 3.1991, + 3.1909, + 3.1906, + 3.184, + 3.16, + 3.1662, + 3.1802, + 3.1707, + 3.1721, + 3.1806, + 3.1869, + 3.176, + 3.1774, + 3.1774, + 3.1774, + 3.1718, + 3.167, + 3.1671, + 3.1661, + 3.1671, + 3.1563, + 3.1592, + 3.131, + 3.0041, + 3.0766, + 3.0633, + 3.0565, + 3.0623, + 3.0815, + 3.0977, + 3.0943, + 3.0961, + 3.0966, + 3.0867, + 3.0949, + 3.1254, + 3.1152, + 3.1312, + 3.1186, + 3.1118, + 3.1214, + 3.1162, + 3.1085, + 3.1041, + 3.0987, + 3.083, + 3.0846, + 3.0992, + 3.1018, + 3.1023, + 3.0958, + 3.0893, + 3.0903, + 3.0895, + 3.0896, + 3.0968, + 3.0987, + 3.0987, + 3.082, + 3.0806, + 3.0764, + 3.0779, + 3.0827, + 3.0644, + 3.0631, + 3.0656, + 3.0862, + 3.0834, + 3.0883, + 3.092, + 3.0849, + 3.0891, + 3.0894, + 3.1, + 3.0956, + 3.0926, + 3.0932, + 3.094, + 3.0895, + 3.0895, + 3.0847, + 3.0802, + 3.0845, + 3.0886, + 3.0886, + 3.0819, + 3.0779, + 3.0737, + 3.0789, + 3.0762, + 3.0689, + 3.0689, + 3.0689, + 3.0689, + 3.0732, + 3.072, + 3.072, + 3.0877, + 3.0954, + 3.09, + 3.0834, + 3.0839, + 3.0807, + 3.0807, + 3.072, + 3.072, + 3.078, + 3.078, + 3.0802, + 3.0758, + 3.0838, + 3.0839, + 3.079, + 3.0746, + 3.0673, + 3.0599, + 3.0599, + 3.0701, + 3.0701, + 3.0708, + 3.074, + 3.0814, + 3.0775, + 3.0775, + 3.0775, + 3.0822, + 3.0822, + 3.0784, + 3.0803, + 3.0759, + 3.0813, + 3.0856, + 3.081, + 3.0695, + 3.0697, + 3.0678, + 3.0667, + 3.0606, + 3.058, + 3.058, + 3.0622, + 3.0681, + 3.0638, + 3.0638, + 3.0577, + 3.063, + 3.063, + 3.0577, + 3.0577, + 3.0665, + 3.0673, + 3.0673, + 3.0645, + 3.0689, + 3.0669, + 3.0669, + 3.0692, + 3.0624, + 3.0679, + 3.0663, + 3.0663, + 3.0649, + 3.0595, + 3.0504, + 3.0427, + 3.0416, + 3.0388, + 3.0346, + 3.0338, + 3.0448, + 3.0408, + 3.0364, + 3.0484, + 3.035, + 3.0371, + 3.0426, + 3.0426, + 3.0395, + 3.0525, + 3.0525, + 3.0589, + 3.0657, + 3.0657, + 3.0554, + 3.0592, + 3.0592, + 3.0559, + 3.0587, + 3.0598, + 3.0658, + 3.073, + 3.0686, + 3.0735, + 3.0723, + 3.0739, + 3.0786, + 3.0752, + 3.0824, + 3.091, + 3.0862, + 3.083, + 3.087, + 3.087, + 3.083, + 3.0822, + 3.0817, + 3.0769, + 3.079, + 3.074, + 3.078, + 3.0815, + 3.0806, + 3.0806, + 3.0806, + 3.0823, + 3.0794, + 3.0797, + 3.084, + 3.0867, + 3.089, + 3.0976, + 3.1074, + 3.1054, + 3.1067, + 3.0975, + 3.0975, + 3.091, + 3.0951, + 3.094, + 3.092, + 3.0999, + 3.0996, + 3.0996, + 3.0992, + 3.0992, + 3.1051, + 3.1056, + 3.1104, + 3.1104, + 3.1152, + 3.1122, + 3.1122, + 3.1122, + 3.1122, + 3.1122, + 3.1036, + 3.1046, + 3.1082, + 3.1082, + 3.116, + 3.1108, + 3.1108, + 3.1108, + 3.1108, + 3.1129, + 3.1109, + 3.1109, + 3.1036, + 3.1036, + 3.1036, + 3.0974, + 3.0967, + 3.0967, + 3.0967, + 3.108, + 3.1106, + 3.0984, + 3.0935, + 3.0895, + 3.0813, + 3.0813, + 3.0916, + 3.0916, + 3.1007, + 3.0968, + 3.0939, + 3.0939, + 3.1, + 3.1018, + 3.1018, + 3.1018, + 3.1018, + 3.089, + 3.089, + 3.0947, + 3.0947, + 3.1024, + 3.1042, + 3.1042, + 3.1042, + 3.1075, + 3.1041, + 3.1041, + 3.1004, + 3.1028, + 3.1003, + 3.1003, + 3.1003, + 3.0978, + 3.0938, + 3.0947, + 3.0974, + 3.0974, + 3.091, + 3.0819, + 3.0831, + 3.0768, + 3.0747, + 3.0737, + 3.0734, + 3.0772, + 3.0772, + 3.0772, + 3.0777, + 3.0777, + 3.0843, + 3.0993, + 3.0921, + 3.0937, + 3.0937, + 3.0953, + 3.0953, + 3.0953, + 3.0926, + 3.0926, + 3.0977, + 3.0995, + 3.0995, + 3.1018, + 3.1025, + 3.1025, + 3.0959, + 3.0937, + 3.0937, + 3.0937, + 3.1019, + 3.1056, + 3.1011, + 3.1056, + 3.106, + 3.1003, + 3.1001, + 3.1023, + 3.091, + 3.0914, + 3.0807, + 3.0836, + 3.0856, + 3.0774, + 3.0857, + 3.0864, + 3.0764, + 3.0771, + 3.0727, + 3.0731, + 3.0745, + 3.0726, + 3.0679, + 3.0686, + 3.072, + 3.0736, + 3.075, + 3.0862, + 3.0867, + 3.0902, + 3.082, + 3.0841, + 3.0841, + 3.0841, + 3.0841, + 3.0738, + 3.072, + 3.072, + 3.0773, + 3.0796, + 3.0796, + 3.0824, + 3.0785, + 3.0785, + 3.0785, + 3.08, + 3.08, + 3.08, + 3.0781, + 3.0781, + 3.0768, + 3.0768, + 3.0768, + 3.0768, + 3.0768, + 3.0739, + 3.0739, + 3.0739, + 3.0747, + 3.0747, + 3.0777, + 3.0826, + 3.0799, + 3.0862, + 3.083, + 3.083, + 3.0831, + 3.0822, + 3.0742, + 3.0755, + 3.0755, + 3.0805, + 3.0751, + 3.0751, + 3.0751, + 3.0874, + 3.0875, + 3.0816, + 3.082, + 3.0853, + 3.0876, + 3.0895, + 3.086, + 3.0944, + 3.0976, + 3.0956, + 3.0956, + 3.0956, + 3.0913, + 3.0911, + 3.0909, + 3.0848, + 3.0872, + 3.0947, + 3.089, + 3.082, + 3.0866, + 3.0849, + 3.0845, + 3.0806, + 3.072, + 3.0729, + 3.0701, + 3.0705, + 3.0707, + 3.069, + 3.0745, + 3.0742, + 3.0798, + 3.0778, + 3.0743, + 3.071, + 3.0708, + 3.0707, + 3.0789, + 3.0746, + 3.0718, + 3.0732, + 3.0712, + 3.0726, + 3.0779, + 3.1036, + 3.1167, + 3.1111, + 3.1036, + 3.1112, + 3.1182, + 3.1073, + 3.107, + 3.0971, + 3.0995, + 3.0995, + 3.0978, + 3.0979, + 3.0935, + 3.0965, + 3.0905, + 3.09, + 3.094, + 3.094, + 3.094, + 3.094, + 3.0972, + 3.0929, + 3.0856, + 3.0934, + 3.0934, + 3.0934, + 3.0951, + 3.0951, + 3.0912, + 3.0958, + 3.0987, + 3.0992, + 3.0991, + 3.0991, + 3.1069, + 3.1031, + 3.1047, + 3.1047, + 3.1075, + 3.1036, + 3.1036, + 3.1036, + 3.1036, + 3.0955, + 3.1005, + 3.0966, + 3.099, + 3.099, + 3.0891, + 3.0902, + 3.0856, + 3.082, + 3.0875, + 3.0875, + 3.0877, + 3.092, + 3.092, + 3.0897, + 3.0889, + 3.0877, + 3.0939, + 3.0852, + 3.0852, + 3.0831, + 3.0833, + 3.0774, + 3.0719, + 3.0737, + 3.0708, + 3.0727, + 3.0727, + 3.0719, + 3.0703, + 3.077, + 3.0755, + 3.0755, + 3.0844, + 3.0801, + 3.079, + 3.0804, + 3.0747, + 3.0738, + 3.0757, + 3.0742, + 3.0742, + 3.0711, + 3.072, + 3.0742, + 3.0723, + 3.0683, + 3.0636, + 3.0549, + 3.0622, + 3.0586, + 3.0516, + 3.0468, + 3.0488, + 3.0517, + 3.0466, + 3.0466, + 3.0496, + 3.0519, + 3.0515, + 3.0545, + 3.0512, + 3.0473, + 3.0473, + 3.0525, + 3.0499, + 3.0462, + 3.0429, + 3.0408, + 3.0408, + 3.0408, + 3.0285, + 3.0338, + 3.028, + 3.0182, + 3.0312, + 3.0376, + 3.0319, + 3.0394, + 3.038, + 3.0418, + 3.0378, + 3.0392, + 3.0337, + 3.0344, + 3.0265, + 3.0212, + 3.019, + 3.0307, + 3.0307, + 3.0343, + 3.0327, + 3.0256, + 3.0228, + 3.0269, + 3.0232, + 3.0355, + 3.0318, + 3.0358, + 3.0315, + 3.038, + 3.0407, + 3.0391, + 3.0351, + 3.0327, + 3.0416, + 3.037, + 3.0343, + 3.0398, + 3.0423, + 3.0446, + 3.0428, + 3.0465, + 3.0454, + 3.04, + 3.038, + 3.0487, + 3.0459, + 3.0459, + 3.0469, + 3.0477, + 3.0454, + 3.0495, + 3.0418, + 3.0483, + 3.0517, + 3.054, + 3.05, + 3.0478, + 3.0478, + 3.0468, + 3.0373, + 3.0398, + 3.0421, + 3.0421, + 3.0421, + 3.0484, + 3.0555, + 3.0576, + 3.0468, + 3.0292, + 3.0318, + 3.025, + 3.0245, + 3.027, + 3.0235, + 3.0256, + 3.023, + 3.032, + 3.0378, + 3.0471, + 3.0466, + 3.044, + 3.0469, + 3.0467, + 3.05, + 3.0559, + 3.0529, + 3.0537, + 3.055, + 3.0541, + 3.0655, + 3.0631, + 3.0598, + 3.049, + 3.0529, + 3.049, + 3.0455, + 3.0506, + 3.0506, + 3.0494, + 3.0465, + 3.0438, + 3.0445, + 3.0505, + 3.0433, + 3.0456, + 3.04, + 3.039, + 3.0395, + 3.0358, + 3.0362, + 3.0359, + 3.0306, + 3.0281, + 3.0364, + 3.0335, + 3.0359, + 3.0392, + 3.0405, + 3.0381, + 3.0454, + 3.0471, + 3.0398, + 3.04, + 3.0367, + 3.0407, + 3.051, + 3.057, + 3.057, + 3.0485, + 3.0477, + 3.0505, + 3.0491, + 3.0514, + 3.0587, + 3.0508, + 3.056, + 3.0477, + 3.049, + 3.0558, + 3.0444, + 3.0572, + 3.0534, + 3.0574, + 3.0546, + 3.056, + 3.0552, + 3.0509, + 3.0453, + 3.0427, + 3.0414, + 3.04, + 3.0407, + 3.0407, + 3.0397, + 3.0324, + 3.056, + 3.0563, + 3.0501, + 3.0389, + 3.0362, + 3.0433, + 3.0414, + 3.0414, + 3.0462, + 3.0464, + 3.0449, + 3.0487, + 3.0466, + 3.0456, + 3.0456, + 3.036, + 3.0366, + 3.0366, + 3.0366, + 3.0366, + 3.0299, + 3.0446, + 3.0407, + 3.0337, + 3.0337, + 3.0337, + 3.0281, + 3.0396, + 3.0446, + 3.0414, + 3.0536, + 3.042, + 3.0456, + 3.0456, + 3.0453, + 3.039, + 3.0472, + 3.0376, + 3.0337, + 3.0222, + 3.0206, + 3.0258, + 3.0301, + 3.0201, + 3.0222, + 3.0222, + 3.0172, + 3.0123, + 2.9949, + 2.9982, + 3.0088, + 3.002, + 3.0014, + 3.0021, + 3.0036, + 2.9958, + 2.9989, + 2.9949, + 3.0064, + 3.0038, + 3.0043, + 2.9953, + 2.9943, + 2.9723, + 2.9888, + 2.9936, + 2.9918, + 2.9934, + 2.9838, + 2.9872, + 2.9598, + 2.9812, + 2.9883, + 3.0058, + 2.993, + 2.9878, + 2.9812, + 2.9837, + 2.9834, + 2.9786, + 2.9661, + 2.9686, + 2.9686, + 2.9694, + 2.9686, + 2.9627, + 2.9562, + 2.9511, + 2.9583, + 2.9666, + 2.9616, + 2.9693, + 2.9701, + 2.965, + 2.9814, + 2.9814, + 2.9764, + 2.9741, + 2.9737, + 2.9848, + 2.9827, + 2.9691, + 2.9734, + 2.9726, + 2.9677, + 2.9616, + 2.9519, + 2.9514, + 2.9342, + 2.9491, + 2.96, + 2.9616, + 2.971, + 2.9712, + 2.9597, + 2.9602, + 2.9621, + 2.9589, + 2.9553, + 2.9591, + 2.9591, + 2.9644, + 2.9682, + 2.9703, + 2.9652, + 2.9652, + 2.9667, + 2.9654, + 2.9663, + 2.9711, + 2.9705, + 2.9705, + 2.9531, + 2.9583, + 2.9635, + 2.9589, + 2.9589, + 2.9688, + 2.9605, + 2.958, + 2.9605, + 2.9521, + 2.9531, + 2.9482, + 2.9482, + 2.9582, + 2.9605, + 2.9641, + 2.9845, + 2.9853, + 2.9822, + 2.9758, + 2.9832, + 2.9817, + 2.9675, + 2.9663, + 2.9711, + 2.9726, + 2.971, + 2.9764, + 2.9822, + 2.9822, + 2.981, + 2.9892, + 2.9941, + 2.9941, + 2.9938, + 2.9938, + 2.9818, + 2.985, + 2.9722, + 2.9722, + 2.9728, + 2.9736, + 2.9731, + 2.9731, + 2.9748, + 2.9781, + 2.979, + 2.9727, + 2.9727, + 2.9784, + 2.9852, + 2.9851, + 2.9792, + 2.9818, + 2.989, + 2.9861, + 2.9844, + 2.9838, + 2.9852, + 2.9876, + 2.9834, + 2.9854, + 2.9817, + 2.98, + 2.9598, + 2.9545, + 2.9729, + 2.9729, + 2.9669, + 2.9642, + 2.9555, + 2.9471, + 2.9486, + 2.9419, + 2.9398, + 2.926, + 2.9372, + 2.9502, + 2.9445, + 2.9425, + 2.9308, + 2.899, + 2.9103, + 2.915, + 2.8949, + 2.8961, + 2.9124, + 2.9225, + 2.9129, + 2.9172, + 2.9181, + 2.9208, + 2.9197, + 2.9275, + 2.925, + 2.9232, + 2.9182, + 2.9078, + 2.9118, + 2.9149, + 2.9133, + 2.9011, + 2.9012, + 2.9018, + 2.8996, + 2.8996, + 2.9051, + 2.906, + 2.9046, + 2.9046, + 2.8944, + 2.8943, + 2.9025, + 2.9184, + 2.9158, + 2.9188, + 2.9131, + 2.9105, + 2.9124, + 2.9212, + 2.918, + 2.9172, + 2.9172, + 2.911, + 2.911, + 2.911, + 2.9063, + 2.9119, + 2.9123, + 2.9181, + 2.9188, + 2.9169, + 2.9191, + 2.9211, + 2.9168, + 2.9159, + 2.9198, + 2.9193, + 2.9147, + 2.9178, + 2.9207, + 2.9197, + 2.9197, + 2.9235, + 2.9272, + 2.928, + 2.9239, + 2.926, + 2.9285, + 2.9285, + 2.9327, + 2.9303, + 2.9303, + 2.9274, + 2.9274, + 2.9219, + 2.9194, + 2.9122, + 2.9164, + 2.9164, + 2.9123, + 2.9087, + 2.9078, + 2.9071, + 2.9071, + 2.9089, + 2.8932, + 2.9117, + 2.9143, + 2.9111, + 2.9151, + 2.9146, + 2.9192, + 2.9271, + 2.9275, + 2.932, + 2.9393, + 2.9381, + 2.9372, + 2.9339, + 2.9304, + 2.9296, + 2.9294, + 2.9294, + 2.9325, + 2.933, + 2.9325, + 2.9307, + 2.9271, + 2.9271, + 2.9246, + 2.926, + 2.9266, + 2.9255, + 2.9239, + 2.9257, + 2.9178, + 2.9119, + 2.9144, + 2.9149, + 2.9149, + 2.9129, + 2.9125, + 2.9125, + 2.9125, + 2.9234, + 2.9253, + 2.928, + 2.9279, + 2.9308, + 2.9316, + 2.9316, + 2.9362, + 2.941, + 2.941, + 2.9362, + 2.9361, + 2.9361, + 2.9356, + 2.9375, + 2.9375, + 2.9366, + 2.9366, + 2.925, + 2.9251, + 2.9238, + 2.9224, + 2.9202, + 2.9261, + 2.9235, + 2.9297, + 2.9297, + 2.9297, + 2.933, + 2.9278, + 2.9278, + 2.9263, + 2.9273, + 2.9273, + 2.9273, + 2.9283, + 2.9325, + 2.9397, + 2.9415, + 2.9421, + 2.9369, + 2.928, + 2.925, + 2.9195, + 2.9169, + 2.913, + 2.913, + 2.9157, + 2.9182, + 2.9182, + 2.9182, + 2.9255, + 2.9321, + 2.9321, + 2.9321, + 2.9321, + 2.9321, + 2.9321, + 2.9276, + 2.9276, + 2.9276, + 2.9296, + 2.9269, + 2.9269, + 2.9269, + 2.9269, + 2.9269, + 2.9228, + 2.917, + 2.917, + 2.917, + 2.922, + 2.9189, + 2.9189, + 2.9189, + 2.909, + 2.9112, + 2.9129, + 2.9129, + 2.9134, + 2.9061, + 2.9109, + 2.9148, + 2.9083, + 2.9094, + 2.9062, + 2.9085, + 2.9103, + 2.9183, + 2.9225, + 2.9225, + 2.9147, + 2.9147, + 2.9154, + 2.9143, + 2.9154, + 2.9168, + 2.9156, + 2.9147, + 2.911, + 2.9111, + 2.9073, + 2.9063, + 2.9054, + 2.9027, + 2.9246, + 2.9238, + 2.9057, + 2.8935, + 2.9036, + 2.9034, + 2.8926, + 2.8914, + 2.8812, + 2.8752, + 2.8713, + 2.8656, + 2.8595, + 2.8736, + 2.8727, + 2.8727, + 2.867, + 2.8741, + 2.8693, + 2.8678, + 2.87, + 2.8719, + 2.8683, + 2.8829, + 2.8842, + 2.8824, + 2.8833, + 2.8859, + 2.893, + 2.8967, + 2.8985, + 2.8985, + 2.8974, + 2.8913, + 2.8934, + 2.8934, + 2.8935, + 2.8935, + 2.8935, + 2.8932, + 2.8907, + 2.8895, + 2.8921, + 2.8921, + 2.8921, + 2.8849, + 2.8866, + 2.881, + 2.878, + 2.8791, + 2.8791, + 2.8815, + 2.8856, + 2.8934, + 2.8943, + 2.8965, + 2.8965, + 2.8965, + 2.8934, + 2.8934, + 2.8934, + 2.8946, + 2.8922, + 2.8977, + 2.9015, + 2.9006, + 2.9032, + 2.9053, + 2.908, + 2.9133, + 2.9136, + 2.9136, + 2.9104, + 2.9163, + 2.9154, + 2.9187, + 2.9143, + 2.9143, + 2.9143, + 2.9143, + 2.9141, + 2.9123, + 2.908, + 2.9002, + 2.9007, + 2.9053, + 2.897, + 2.8946, + 2.8992, + 2.8977, + 2.8989, + 2.9003, + 2.8964, + 2.8959, + 2.8959, + 2.894, + 2.8962, + 2.8962, + 2.8999, + 2.8999, + 2.8999, + 2.8939, + 2.8956, + 2.8858, + 2.8858, + 2.8858, + 2.8858, + 2.8858, + 2.895, + 2.895, + 2.895, + 2.8926, + 2.8872, + 2.8843, + 2.8849, + 2.8849, + 2.8842, + 2.8737, + 2.8737, + 2.8737, + 2.8854, + 2.8877, + 2.8918, + 2.8926, + 2.9027, + 2.9068, + 2.915, + 2.913, + 2.9123, + 2.9123, + 2.9227, + 2.9268, + 2.9276, + 2.9225, + 2.9266, + 2.9268, + 2.9285, + 2.9404, + 2.9418, + 2.9451, + 2.9481, + 2.942, + 2.941, + 2.9329, + 2.9329, + 2.9329, + 2.9379, + 2.9429, + 2.9436, + 2.9436, + 2.9452, + 2.948, + 2.9483, + 2.946, + 2.943, + 2.9484, + 2.9503, + 2.9515, + 2.9545, + 2.9493, + 2.9493, + 2.9585, + 2.9564, + 2.9564, + 2.9606, + 2.9558, + 2.959, + 2.9583, + 2.9621, + 2.9588, + 2.9558, + 2.9605, + 2.9646, + 2.9617, + 2.9617, + 2.961, + 2.9653, + 2.9666, + 2.9653, + 2.9662, + 2.9682, + 2.9718, + 2.9731, + 2.973, + 2.9773, + 2.9811, + 2.981, + 2.9748, + 2.9708, + 2.9798, + 2.9664, + 2.9629, + 2.96, + 2.9498, + 2.9532, + 2.9582, + 2.9582, + 2.9582, + 2.9544, + 2.9516, + 2.9511, + 2.9445, + 2.9432, + 2.9393, + 2.935, + 2.9408, + 2.9412, + 2.9429, + 2.9381, + 2.9381, + 2.9381, + 2.93, + 2.94, + 2.9397, + 2.9385, + 2.9349, + 2.9372, + 2.9388, + 2.936, + 2.9402, + 2.9432, + 2.9428, + 2.9456, + 2.9437, + 2.9376, + 2.9376, + 2.9404, + 2.94, + 2.935, + 2.935, + 2.9302, + 2.9206, + 2.9142, + 2.9169, + 2.9206, + 2.9229, + 2.9211, + 2.9298, + 2.9335, + 2.932, + 2.9333, + 2.9348, + 2.9368, + 2.9307, + 2.9342, + 2.9378, + 2.9348, + 2.9269, + 2.9287, + 2.9325, + 2.9348, + 2.9302, + 2.9269, + 2.9199, + 2.9159, + 2.9119, + 2.9062, + 2.9092, + 2.9159, + 2.9159, + 2.9089, + 2.915, + 2.915, + 2.8994, + 2.9053, + 2.8974, + 2.8906, + 2.8781, + 2.8802, + 2.8824, + 2.8857, + 2.8831, + 2.8798, + 2.8778, + 2.8672, + 2.8672, + 2.877, + 2.8817, + 2.8863, + 2.8863, + 2.8881, + 2.8838, + 2.8867, + 2.8911, + 2.9045, + 2.9096, + 2.9135, + 2.9098, + 2.9121, + 2.9164, + 2.9164, + 2.9169, + 2.9148, + 2.9148, + 2.9105, + 2.9109, + 2.9118, + 2.9099, + 2.9099, + 2.9099, + 2.8992, + 2.9035, + 2.8974, + 2.8957, + 2.8947, + 2.9004, + 2.9, + 2.9086, + 2.9038, + 2.8981, + 2.8981, + 2.9046, + 2.9046, + 2.8981, + 2.8981, + 2.8981, + 2.8955, + 2.8873, + 2.884, + 2.8727, + 2.8706, + 2.8623, + 2.8666, + 2.8652, + 2.8591, + 2.8647, + 2.8648, + 2.8675, + 2.8715, + 2.8752, + 2.8844, + 2.8844, + 2.8876, + 2.8896, + 2.8896, + 2.8884, + 2.8911, + 2.8932, + 2.8947, + 2.8947, + 2.8947, + 2.8947, + 2.8981, + 2.901, + 2.8983, + 2.8951, + 2.8951, + 2.8811, + 2.8831, + 2.8831, + 2.8831, + 2.8921, + 2.8921, + 2.8838, + 2.8857, + 2.8821, + 2.8822, + 2.8822, + 2.8822, + 2.8822, + 2.8857, + 2.8857, + 2.8804, + 2.8801, + 2.8833, + 2.878, + 2.8794, + 2.8799, + 2.8812, + 2.8812, + 2.8761, + 2.8761, + 2.8854, + 2.886, + 2.886, + 2.881, + 2.881, + 2.881, + 2.8809, + 2.8809, + 2.8788, + 2.8788, + 2.8788, + 2.8836, + 2.8846, + 2.8882, + 2.8893, + 2.8893, + 2.8893, + 2.8893, + 2.891, + 2.891, + 2.891, + 2.8892, + 2.8892, + 2.8892, + 2.8838, + 2.8838, + 2.887, + 2.8892, + 2.8892, + 2.8912, + 2.8912, + 2.892, + 2.9008, + 2.8993, + 2.8997, + 2.8909, + 2.8865, + 2.8865, + 2.8852, + 2.884, + 2.884, + 2.878, + 2.8747, + 2.871, + 2.8752, + 2.8742, + 2.88, + 2.88, + 2.8839, + 2.8793, + 2.8793, + 2.8729, + 2.8729, + 2.8716, + 2.8714, + 2.8681, + 2.8687, + 2.8748, + 2.8729, + 2.8802, + 2.8802, + 2.8802, + 2.8802, + 2.8802, + 2.8778, + 2.8778, + 2.8786, + 2.8786, + 2.8782, + 2.8782, + 2.8723, + 2.8699, + 2.8699, + 2.8656, + 2.8669, + 2.8688, + 2.8688, + 2.864, + 2.8638, + 2.8648, + 2.8683, + 2.8683, + 2.8697, + 2.8697, + 2.8687, + 2.8703, + 2.8767, + 2.867, + 2.8652, + 2.857, + 2.8614, + 2.8627, + 2.8652, + 2.8616, + 2.8453, + 2.8357, + 2.8481, + 2.8481, + 2.8482, + 2.8266, + 2.8272, + 2.83, + 2.8239, + 2.8239, + 2.8309, + 2.8307, + 2.8239, + 2.8225, + 2.8208, + 2.8171, + 2.8228, + 2.8228, + 2.8228, + 2.816, + 2.8202, + 2.8246, + 2.8274, + 2.8274, + 2.8253, + 2.8253, + 2.819, + 2.8, + 2.7926, + 2.8032, + 2.8003, + 2.7973, + 2.7972, + 2.793, + 2.7872, + 2.7819, + 2.789, + 2.7799, + 2.792, + 2.8009, + 2.7958, + 2.7983, + 2.7992, + 2.7992, + 2.7939, + 2.7941, + 2.795, + 2.7928, + 2.7804, + 2.7904, + 2.7838, + 2.7943, + 2.8038, + 2.8119, + 2.8127, + 2.8117, + 2.813, + 2.8154, + 2.8153, + 2.8153, + 2.8091, + 2.8111, + 2.8158, + 2.8158, + 2.8121, + 2.8117, + 2.7995, + 2.7972, + 2.8097, + 2.8112, + 2.781, + 2.7789, + 2.7817, + 2.7848, + 2.7879, + 2.8056, + 2.8134, + 2.8068, + 2.8056, + 2.8015, + 2.8, + 2.7962, + 2.7946, + 2.7902, + 2.798, + 2.7905, + 2.7912, + 2.795, + 2.7912, + 2.7799, + 2.7742, + 2.7617, + 2.7848, + 2.7925, + 2.79, + 2.7993, + 2.7956, + 2.791, + 2.7932, + 2.7914, + 2.7952, + 2.7952, + 2.7833, + 2.7736, + 2.7582, + 2.7672, + 2.7729, + 2.776, + 2.7827, + 2.7827, + 2.7778, + 2.7699, + 2.7745, + 2.7775, + 2.7775, + 2.785, + 2.7868, + 2.7904, + 2.7938, + 2.7858, + 2.7858, + 2.7746, + 2.7678, + 2.7538, + 2.7586, + 2.75, + 2.7656, + 2.749, + 2.755, + 2.748, + 2.735, + 2.739, + 2.739, + 2.7493, + 2.743, + 2.7072, + 2.695, + 2.7103, + 2.7153, + 2.7186, + 2.7265, + 2.7113, + 2.7107, + 2.7068, + 2.7056, + 2.6947, + 2.6977, + 2.7066, + 2.6974, + 2.6953, + 2.688, + 2.6809, + 2.6798, + 2.6783, + 2.6545, + 2.65, + 2.6414, + 2.6743, + 2.6686, + 2.6831, + 2.6911, + 2.7007, + 2.7118, + 2.7158, + 2.7237, + 2.7271, + 2.7329, + 2.7327, + 2.7403, + 2.7412, + 2.7376, + 2.74, + 2.7349, + 2.7327, + 2.7265, + 2.7325, + 2.7235, + 2.7218, + 2.728, + 2.7285, + 2.7263, + 2.7274, + 2.7274, + 2.7274, + 2.7341, + 2.7349, + 2.7349, + 2.7382, + 2.7389, + 2.7516, + 2.75, + 2.7562, + 2.7561, + 2.7558, + 2.7613, + 2.7636, + 2.7626, + 2.7659, + 2.7705, + 2.7698, + 2.7684, + 2.7642, + 2.7681, + 2.7643, + 2.77, + 2.76, + 2.7504, + 2.759, + 2.7633, + 2.7637, + 2.7656, + 2.7737, + 2.7775, + 2.7804, + 2.7804, + 2.7735, + 2.777, + 2.7946, + 2.7904, + 2.7903, + 2.7903, + 2.786, + 2.7928, + 2.7951, + 2.8002, + 2.7928, + 2.792, + 2.792, + 2.7938, + 2.7983, + 2.7986, + 2.795, + 2.7961, + 2.8002, + 2.7935, + 2.7844, + 2.7897, + 2.7822, + 2.776, + 2.7751, + 2.7717, + 2.7738, + 2.7705, + 2.7707, + 2.7731, + 2.773, + 2.7837, + 2.7864, + 2.784, + 2.7866, + 2.7818, + 2.7804, + 2.781, + 2.7888, + 2.7944, + 2.7945, + 2.7967, + 2.7942, + 2.795, + 2.7963, + 2.7943, + 2.7906, + 2.7861, + 2.7861, + 2.7932, + 2.7861, + 2.7851, + 2.7851, + 2.7918, + 2.7887, + 2.7899, + 2.7854, + 2.7854, + 2.7862, + 2.787, + 2.7882, + 2.7868, + 2.7885, + 2.7898, + 2.791, + 2.791, + 2.7892, + 2.7876, + 2.7767, + 2.7792, + 2.7792, + 2.7801, + 2.7834, + 2.7807, + 2.775, + 2.7757, + 2.7759, + 2.7846, + 2.776, + 2.7809, + 2.7742, + 2.7821, + 2.7805, + 2.7847, + 2.7847, + 2.7852, + 2.7791, + 2.7806, + 2.7874, + 2.7886, + 2.7945, + 2.7931, + 2.7905, + 2.7905, + 2.7905, + 2.7745, + 2.7775, + 2.7775, + 2.7767, + 2.7739, + 2.7774, + 2.7769, + 2.775, + 2.7731, + 2.7723, + 2.7762, + 2.7727, + 2.7601, + 2.7585, + 2.7611, + 2.7599, + 2.7492, + 2.7495, + 2.7494, + 2.7553, + 2.7531, + 2.7576, + 2.7576, + 2.7538, + 2.7538, + 2.7541, + 2.7557, + 2.7528, + 2.7552, + 2.7531, + 2.7558, + 2.7517, + 2.7557, + 2.7557, + 2.7557, + 2.757, + 2.7605, + 2.7633, + 2.7705, + 2.7714, + 2.7749, + 2.7749, + 2.7644, + 2.7644, + 2.7642, + 2.7642, + 2.764, + 2.764, + 2.764, + 2.7667, + 2.7675, + 2.7586, + 2.7571, + 2.7642, + 2.7594, + 2.7577, + 2.7543, + 2.752, + 2.7519, + 2.7509, + 2.7529, + 2.7564, + 2.7563, + 2.7571, + 2.7554, + 2.7559, + 2.7559, + 2.7559, + 2.7559, + 2.7559, + 2.7516, + 2.747, + 2.7513, + 2.7562, + 2.7562, + 2.7469, + 2.7417, + 2.7417, + 2.7447, + 2.7447, + 2.7515, + 2.7492, + 2.7488, + 2.7465, + 2.7465, + 2.7521, + 2.7554, + 2.7562, + 2.7611, + 2.7602, + 2.7673, + 2.7705, + 2.772, + 2.776, + 2.776, + 2.776, + 2.775, + 2.7715, + 2.7715, + 2.7745, + 2.7774, + 2.7763, + 2.776, + 2.7782, + 2.7782, + 2.777, + 2.7782, + 2.7782, + 2.7782, + 2.7698, + 2.7698, + 2.7741, + 2.784, + 2.7848, + 2.7868, + 2.7929, + 2.7884, + 2.7862, + 2.7853, + 2.7862, + 2.7907, + 2.7889, + 2.7861, + 2.7848, + 2.7848, + 2.7811, + 2.781, + 2.787, + 2.787, + 2.7831, + 2.7802, + 2.7721, + 2.7804, + 2.785, + 2.7908, + 2.7839, + 2.7801, + 2.7782, + 2.7791, + 2.7791, + 2.7781, + 2.773, + 2.7689, + 2.7698, + 2.7698, + 2.7716, + 2.7716, + 2.7716, + 2.7699, + 2.7656, + 2.761, + 2.765, + 2.7685, + 2.7692, + 2.7692, + 2.7569, + 2.7617, + 2.76, + 2.762, + 2.762, + 2.7593, + 2.7617, + 2.7754, + 2.7762, + 2.7773, + 2.7707, + 2.7709, + 2.7662, + 2.7662, + 2.7641, + 2.767, + 2.767, + 2.7665, + 2.7665, + 2.7614, + 2.765, + 2.7595, + 2.754, + 2.7548, + 2.7548, + 2.7488, + 2.7488, + 2.7448, + 2.7527, + 2.7474, + 2.7508, + 2.7508, + 2.7508, + 2.748, + 2.748, + 2.7626, + 2.7637, + 2.7572, + 2.7572, + 2.7484, + 2.7456, + 2.7473, + 2.7473, + 2.7474, + 2.7518, + 2.7572, + 2.7626, + 2.7656, + 2.7651, + 2.7658, + 2.7691, + 2.776, + 2.7806, + 2.7778, + 2.7729, + 2.7729, + 2.7729, + 2.7697, + 2.7717, + 2.7713, + 2.7719, + 2.7719, + 2.7719, + 2.7684, + 2.7735, + 2.7751, + 2.7741, + 2.777, + 2.7733, + 2.7719, + 2.7729, + 2.7729, + 2.7667, + 2.7656, + 2.7656, + 2.7742, + 2.7726, + 2.78, + 2.7836, + 2.7833, + 2.7833, + 2.7833, + 2.7792, + 2.7789, + 2.7892, + 2.7892, + 2.7914, + 2.7827, + 2.7828, + 2.783, + 2.783, + 2.7804, + 2.7765, + 2.7742, + 2.7771, + 2.776, + 2.7732, + 2.7771, + 2.7816, + 2.7904, + 2.7923, + 2.7929, + 2.7905, + 2.7862, + 2.7977, + 2.7966, + 2.7958, + 2.801, + 2.8087, + 2.8101, + 2.8176, + 2.8235, + 2.8237, + 2.8275, + 2.8265, + 2.8265, + 2.819, + 2.8174, + 2.8174, + 2.8174, + 2.815, + 2.8035, + 2.8071, + 2.8142, + 2.8112, + 2.8228, + 2.8228, + 2.82, + 2.8231, + 2.8247, + 2.8241, + 2.8262, + 2.8309, + 2.8299, + 2.8312, + 2.8307, + 2.8228, + 2.8168, + 2.8198, + 2.8198, + 2.8086, + 2.8083, + 2.8079, + 2.8038, + 2.8025, + 2.799, + 2.799, + 2.803, + 2.801, + 2.801, + 2.8038, + 2.8039, + 2.8067, + 2.8067, + 2.8056, + 2.804, + 2.8015, + 2.7991, + 2.7904, + 2.791, + 2.7971, + 2.808, + 2.8066, + 2.8066, + 2.801, + 2.8053, + 2.8082, + 2.8147, + 2.8123, + 2.8123, + 2.816, + 2.813, + 2.8, + 2.7975, + 2.8043, + 2.8008, + 2.7966, + 2.7966, + 2.8005, + 2.8003, + 2.8038, + 2.8034, + 2.8061, + 2.8061, + 2.81, + 2.8078, + 2.8058, + 2.7996, + 2.7996, + 2.8082, + 2.8057, + 2.8093, + 2.8066, + 2.8066, + 2.796, + 2.7917, + 2.7902, + 2.7923, + 2.7953, + 2.7953, + 2.795, + 2.795, + 2.7992, + 2.7989, + 2.8007, + 2.8037, + 2.8065, + 2.8101, + 2.8167, + 2.8218, + 2.8143, + 2.8113, + 2.8096, + 2.8113, + 2.8113, + 2.8091, + 2.8106, + 2.7975, + 2.8047, + 2.8135, + 2.82, + 2.8209, + 2.8156, + 2.8112, + 2.8097, + 2.8136, + 2.8237, + 2.8268, + 2.833, + 2.8283, + 2.8329, + 2.8301, + 2.8344, + 2.8344, + 2.8257, + 2.8257, + 2.8271, + 2.8486, + 2.8484, + 2.8486, + 2.8399, + 2.8399, + 2.8333, + 2.8273, + 2.8255, + 2.816, + 2.8141, + 2.8038, + 2.8183, + 2.8183, + 2.8183, + 2.8183, + 2.8182, + 2.8228, + 2.8243, + 2.8336, + 2.8368, + 2.8368, + 2.8364, + 2.8364, + 2.8307, + 2.8361, + 2.8361, + 2.8359, + 2.8359, + 2.8366, + 2.8366, + 2.834, + 2.8332, + 2.8336, + 2.8354, + 2.8521, + 2.8486, + 2.8404, + 2.8404, + 2.8409, + 2.8409, + 2.841, + 2.8385, + 2.8358, + 2.8282, + 2.8259, + 2.8228, + 2.8222, + 2.8249, + 2.8249, + 2.826, + 2.8271, + 2.8362, + 2.8349, + 2.8302, + 2.8319, + 2.8319, + 2.8254, + 2.8254, + 2.8254, + 2.824, + 2.82, + 2.8194, + 2.8142, + 2.8107, + 2.8098, + 2.81, + 2.8147, + 2.8147, + 2.8149, + 2.8177, + 2.824, + 2.824, + 2.8157, + 2.8183, + 2.8183, + 2.8262, + 2.8307, + 2.8255, + 2.8273, + 2.8198, + 2.8225, + 2.8247, + 2.8247, + 2.8171, + 2.8158, + 2.8227, + 2.8227, + 2.8271, + 2.8219, + 2.8191, + 2.8191, + 2.8159, + 2.8187, + 2.8187, + 2.8187, + 2.8187, + 2.8187, + 2.8279, + 2.8237, + 2.8237, + 2.8204, + 2.8147, + 2.8185, + 2.8142, + 2.8106, + 2.8102, + 2.8038, + 2.8057, + 2.8069, + 2.8069, + 2.805, + 2.805, + 2.811, + 2.8079, + 2.8067, + 2.8053, + 2.8085, + 2.8118, + 2.8151, + 2.8171, + 2.8137, + 2.8154, + 2.8154, + 2.8154, + 2.8141, + 2.8172, + 2.8172, + 2.8172, + 2.8141, + 2.8115, + 2.8117, + 2.8104, + 2.806, + 2.8124, + 2.8129, + 2.8129, + 2.8076, + 2.8076, + 2.8166, + 2.8138, + 2.8138, + 2.8117, + 2.8117, + 2.8166, + 2.817, + 2.817, + 2.8196, + 2.8236, + 2.8262, + 2.8291, + 2.8454, + 2.838, + 2.826, + 2.83, + 2.8255, + 2.8257, + 2.8257, + 2.8215, + 2.8251, + 2.815, + 2.8102, + 2.8085, + 2.8123, + 2.8098, + 2.8098, + 2.7983, + 2.7949, + 2.7924, + 2.7947, + 2.7966, + 2.7957, + 2.7957, + 2.7957, + 2.7851, + 2.777, + 2.7841, + 2.7797, + 2.7778, + 2.7809, + 2.7811, + 2.7814, + 2.7814, + 2.7814, + 2.7819, + 2.7796, + 2.7821, + 2.7799, + 2.7787, + 2.7777, + 2.7777, + 2.7809, + 2.7806, + 2.7806, + 2.7867, + 2.7782, + 2.781, + 2.781, + 2.7786, + 2.7774, + 2.7712, + 2.7729, + 2.7735, + 2.7781, + 2.7761, + 2.7792, + 2.7836, + 2.7846, + 2.7846, + 2.7855, + 2.7855, + 2.79, + 2.7916, + 2.791, + 2.791, + 2.791, + 2.7951, + 2.796, + 2.796, + 2.7975, + 2.798, + 2.8012, + 2.8032, + 2.8035, + 2.7956, + 2.795, + 2.7903, + 2.7866, + 2.7858, + 2.7865, + 2.7732, + 2.7802, + 2.7722, + 2.7722, + 2.7854, + 2.7874, + 2.7874, + 2.7855, + 2.7855, + 2.7826, + 2.7814, + 2.7814, + 2.7889, + 2.7904, + 2.7873, + 2.7906, + 2.7923, + 2.7944, + 2.7945, + 2.7992, + 2.7992, + 2.7972, + 2.7978, + 2.796, + 2.7937, + 2.795, + 2.7991, + 2.8075, + 2.8104, + 2.813, + 2.8078, + 2.8022, + 2.7952, + 2.7981, + 2.7981, + 2.7904, + 2.7885, + 2.7881, + 2.7881, + 2.7903, + 2.7903, + 2.7903, + 2.7877, + 2.7877, + 2.7874, + 2.7905, + 2.7905, + 2.7941, + 2.7941, + 2.7893, + 2.781, + 2.7778, + 2.7711, + 2.7796, + 2.769, + 2.7708, + 2.7731, + 2.7704, + 2.7682, + 2.7741, + 2.7745, + 2.7707, + 2.7707, + 2.7748, + 2.7762, + 2.7762, + 2.7836, + 2.7886, + 2.789, + 2.7889, + 2.787, + 2.7936, + 2.8007, + 2.8007, + 2.784, + 2.7819, + 2.7821, + 2.7821, + 2.786, + 2.7933, + 2.7975, + 2.7901, + 2.7894, + 2.7959, + 2.794, + 2.7892, + 2.786, + 2.7827, + 2.7827, + 2.7843, + 2.7831, + 2.7801, + 2.7801, + 2.7801, + 2.7801, + 2.7932, + 2.7894, + 2.7877, + 2.7862, + 2.7876, + 2.7812, + 2.7812, + 2.7777, + 2.776, + 2.7758, + 2.7758, + 2.7838, + 2.7817, + 2.7817, + 2.7841, + 2.7841, + 2.7841, + 2.7841, + 2.7741, + 2.7749, + 2.7746, + 2.7746, + 2.774, + 2.774, + 2.774, + 2.7739, + 2.7737, + 2.7761, + 2.7766, + 2.7801, + 2.7801, + 2.784, + 2.7884, + 2.7884, + 2.7884, + 2.7791, + 2.775, + 2.775, + 2.775, + 2.7722, + 2.7615, + 2.7615, + 2.7711, + 2.7725, + 2.7725, + 2.7725, + 2.7675, + 2.7614, + 2.7648, + 2.7573, + 2.7597, + 2.7608, + 2.7566, + 2.7585, + 2.7658, + 2.7659, + 2.7691, + 2.7691, + 2.7691, + 2.7659, + 2.7587, + 2.761, + 2.761, + 2.7625, + 2.7625, + 2.7625, + 2.7556, + 2.7566, + 2.7566, + 2.7566, + 2.7566, + 2.7678, + 2.7688, + 2.7695, + 2.7606, + 2.7531, + 2.7624, + 2.7538, + 2.7484, + 2.7533, + 2.7499, + 2.7343, + 2.7411, + 2.742, + 2.7452, + 2.741, + 2.7406, + 2.7406, + 2.74, + 2.7369, + 2.7299, + 2.7418, + 2.749, + 2.7559, + 2.7567, + 2.7605, + 2.7553, + 2.7553, + 2.7578, + 2.7618, + 2.7647, + 2.7653, + 2.7663, + 2.7707, + 2.7707, + 2.7759, + 2.7836, + 2.7845, + 2.7781, + 2.7779, + 2.7779, + 2.7779, + 2.7797, + 2.7797, + 2.7774, + 2.7774, + 2.7736, + 2.7736, + 2.7736, + 2.7751, + 2.7804, + 2.7804, + 2.7889, + 2.7855, + 2.778, + 2.7839, + 2.7769, + 2.7743, + 2.7769, + 2.7739, + 2.7807, + 2.7775, + 2.7748, + 2.7748, + 2.7722, + 2.7769, + 2.7769, + 2.7769, + 2.7638, + 2.7668, + 2.7693, + 2.773, + 2.768, + 2.768, + 2.7718, + 2.7738, + 2.7776, + 2.7762, + 2.7828, + 2.7791, + 2.7797, + 2.7848, + 2.7899, + 2.7927, + 2.7938, + 2.795, + 2.795, + 2.7952, + 2.7952, + 2.7961, + 2.7928, + 2.7932, + 2.7853, + 2.7806, + 2.7881, + 2.7922, + 2.7935, + 2.7891, + 2.7919, + 2.7886, + 2.794, + 2.7995, + 2.8066, + 2.8089, + 2.8118, + 2.8118, + 2.8037, + 2.8167, + 2.8207, + 2.8163, + 2.8159, + 2.8119, + 2.8164, + 2.825, + 2.8337, + 2.8301, + 2.83, + 2.8282, + 2.8228, + 2.821, + 2.8163, + 2.8099, + 2.8099, + 2.8099, + 2.8215, + 2.8059, + 2.7972, + 2.8009, + 2.8079, + 2.8047, + 2.8009, + 2.8009, + 2.8009, + 2.8009, + 2.8009, + 2.8134, + 2.8131, + 2.8118, + 2.8133, + 2.8191, + 2.817, + 2.8152, + 2.8129, + 2.8067, + 2.803, + 2.8024, + 2.8129, + 2.8128, + 2.8091, + 2.8091, + 2.8061, + 2.8139, + 2.8139, + 2.8139, + 2.8176, + 2.813, + 2.8107, + 2.805, + 2.8015, + 2.8062, + 2.8062, + 2.8062, + 2.8062, + 2.8095, + 2.8095, + 2.8183, + 2.8115, + 2.8115, + 2.8113, + 2.8095, + 2.804, + 2.802, + 2.7975, + 2.7984, + 2.7977, + 2.7988, + 2.7904, + 2.7954, + 2.7877, + 2.7873, + 2.7908, + 2.788, + 2.778, + 2.7779, + 2.7762, + 2.7798, + 2.7846, + 2.7771, + 2.7863, + 2.7904, + 2.7915, + 2.7902, + 2.7912, + 2.7968, + 2.7952, + 2.7952, + 2.7924, + 2.7924, + 2.7961, + 2.7973, + 2.7951, + 2.7907, + 2.7956, + 2.7965, + 2.7971, + 2.8012, + 2.8025, + 2.8116, + 2.8088, + 2.8085, + 2.8112, + 2.817, + 2.8169, + 2.8169, + 2.8145, + 2.8135, + 2.8142, + 2.8075, + 2.8046, + 2.8128, + 2.802, + 2.796, + 2.7898, + 2.7845, + 2.7918, + 2.7932, + 2.7932, + 2.7932, + 2.7932, + 2.7946, + 2.7822, + 2.7752, + 2.7752, + 2.7703, + 2.7831, + 2.7848, + 2.787, + 2.7872, + 2.7889, + 2.7904, + 2.7904, + 2.7909, + 2.7909, + 2.7929, + 2.7945, + 2.7945, + 2.7945, + 2.7884, + 2.7884, + 2.7884, + 2.7942, + 2.7992, + 2.7971, + 2.8079, + 2.8087, + 2.8087, + 2.8142, + 2.8142, + 2.8154, + 2.8078, + 2.8078, + 2.8155, + 2.8118, + 2.8152, + 2.8138, + 2.8055, + 2.804, + 2.8023, + 2.796, + 2.796, + 2.794, + 2.794, + 2.7893, + 2.787, + 2.7816, + 2.7799, + 2.7799, + 2.7799, + 2.7786, + 2.7786, + 2.7848, + 2.7809, + 2.7809, + 2.7815, + 2.7847, + 2.786, + 2.788, + 2.7845, + 2.7839, + 2.7864, + 2.7836, + 2.7847, + 2.7868, + 2.7879, + 2.7975, + 2.7992, + 2.7992, + 2.7992, + 2.8006, + 2.8021, + 2.8009, + 2.7989, + 2.7976, + 2.7976, + 2.7976, + 2.8066, + 2.8092, + 2.813, + 2.816, + 2.816, + 2.817, + 2.8189, + 2.8189, + 2.8189, + 2.8218, + 2.8218, + 2.8158, + 2.8178, + 2.8114, + 2.8012, + 2.8036, + 2.7917, + 2.7996, + 2.8076, + 2.8076, + 2.8076, + 2.7945, + 2.7945, + 2.7963, + 2.7963, + 2.7963, + 2.7963, + 2.8079, + 2.8071, + 2.816, + 2.82, + 2.82, + 2.8207, + 2.8288, + 2.8262, + 2.822, + 2.8224, + 2.8224, + 2.8241, + 2.8252, + 2.8252, + 2.8252, + 2.8252, + 2.8252, + 2.8293, + 2.8393, + 2.8462, + 2.8376, + 2.8356, + 2.8414, + 2.8414, + 2.8359, + 2.8413, + 2.8362, + 2.8362, + 2.8362, + 2.8362, + 2.8362, + 2.8321, + 2.8321, + 2.8391, + 2.8391, + 2.8391, + 2.8391, + 2.8391, + 2.8262, + 2.8262, + 2.8262, + 2.8319, + 2.8319, + 2.8319, + 2.8319, + 2.8289, + 2.8289, + 2.8355, + 2.8355, + 2.8323, + 2.8245, + 2.8278, + 2.829, + 2.8228, + 2.8228, + 2.8228, + 2.8228, + 2.8211, + 2.8211, + 2.8219, + 2.8183, + 2.8177, + 2.8147, + 2.8144, + 2.8117, + 2.8087, + 2.8066, + 2.8046, + 2.8015, + 2.7991, + 2.8028, + 2.8028, + 2.8071, + 2.8143, + 2.8183, + 2.8172, + 2.8172, + 2.8172, + 2.8172, + 2.8195, + 2.8228, + 2.822, + 2.8245, + 2.8245, + 2.8271, + 2.8259, + 2.8263, + 2.8263, + 2.8142, + 2.802, + 2.7979, + 2.7979, + 2.8114, + 2.8114, + 2.8114, + 2.7979, + 2.7993, + 2.8089, + 2.8051, + 2.8051, + 2.8051, + 2.8051, + 2.8094, + 2.8094, + 2.8207, + 2.8217, + 2.819, + 2.819, + 2.8259, + 2.8222, + 2.819, + 2.8216, + 2.8183, + 2.8238, + 2.8217, + 2.8217, + 2.8136, + 2.8083, + 2.8065, + 2.8031, + 2.8052, + 2.804, + 2.7949, + 2.8052, + 2.8052, + 2.8026, + 2.8017, + 2.7982, + 2.7963, + 2.7933, + 2.7961, + 2.796, + 2.7977, + 2.7963, + 2.7967, + 2.7943, + 2.7943, + 2.7943, + 2.793, + 2.7958, + 2.8022, + 2.8015, + 2.801, + 2.7971, + 2.7971, + 2.8046, + 2.8046, + 2.8046, + 2.8086, + 2.8102, + 2.8105, + 2.8154, + 2.816, + 2.8159, + 2.8062, + 2.8057, + 2.8012, + 2.7966, + 2.8005, + 2.7987, + 2.7965, + 2.8084, + 2.8091, + 2.8097, + 2.8143, + 2.8091, + 2.8125, + 2.8093, + 2.8086, + 2.8048, + 2.8104, + 2.8186, + 2.8149, + 2.8144, + 2.8119, + 2.8074, + 2.8078, + 2.8097, + 2.8098, + 2.8081, + 2.8061, + 2.8098, + 2.81, + 2.81, + 2.81, + 2.81, + 2.81, + 2.8075, + 2.8032, + 2.8057, + 2.8012, + 2.805, + 2.8058, + 2.8058, + 2.8058, + 2.8047, + 2.8067, + 2.8067, + 2.8055, + 2.8047, + 2.8047, + 2.8047, + 2.8047, + 2.8047, + 2.8053, + 2.8051, + 2.8081, + 2.8081, + 2.8081, + 2.8081, + 2.8081, + 2.8069, + 2.8059, + 2.8059, + 2.808, + 2.8142, + 2.8127, + 2.8083, + 2.8171, + 2.8151, + 2.8209, + 2.8058, + 2.8058, + 2.8058, + 2.8058, + 2.8058, + 2.812, + 2.816, + 2.8126, + 2.8067, + 2.8142, + 2.8109, + 2.8109, + 2.8093, + 2.8056, + 2.8119, + 2.8143, + 2.8187, + 2.8252, + 2.83, + 2.8336, + 2.8302, + 2.8302, + 2.8281, + 2.8304, + 2.8285, + 2.8254, + 2.82, + 2.8224, + 2.8183, + 2.8165, + 2.8181, + 2.8214, + 2.8102, + 2.8042, + 2.8012, + 2.79, + 2.7875, + 2.7776, + 2.7807, + 2.7778, + 2.7778, + 2.776, + 2.7589, + 2.7668, + 2.7687, + 2.7615, + 2.7614, + 2.7541, + 2.7575, + 2.7596, + 2.7574, + 2.7611, + 2.7653, + 2.7587, + 2.7614, + 2.7569, + 2.7649, + 2.763, + 2.763, + 2.7704, + 2.7689, + 2.7704, + 2.7556, + 2.7549, + 2.7549, + 2.7476, + 2.7439, + 2.7605, + 2.7546, + 2.76, + 2.761, + 2.7553, + 2.7417, + 2.7429, + 2.7505, + 2.7586, + 2.7551, + 2.7561, + 2.7561, + 2.7561, + 2.7568, + 2.7554, + 2.743, + 2.736, + 2.7262, + 2.7332, + 2.7282, + 2.7414, + 2.7325, + 2.7353, + 2.7353, + 2.7353, + 2.7321, + 2.7302, + 2.7397, + 2.7397, + 2.7444, + 2.749, + 2.7438, + 2.7438, + 2.7488, + 2.7488, + 2.742, + 2.7342, + 2.727, + 2.727, + 2.7367, + 2.7367, + 2.7295, + 2.7295, + 2.73, + 2.73, + 2.7418, + 2.7433, + 2.7481, + 2.7481, + 2.7481, + 2.7481, + 2.7481, + 2.7481, + 2.7484, + 2.7505, + 2.7502, + 2.7472, + 2.752, + 2.7523, + 2.7538, + 2.7486, + 2.7486, + 2.7536, + 2.7536, + 2.7536, + 2.7562, + 2.7568, + 2.7551, + 2.7561, + 2.755, + 2.755, + 2.7528, + 2.7528, + 2.7528, + 2.7528, + 2.7528, + 2.747, + 2.7502, + 2.75, + 2.75, + 2.7507, + 2.761, + 2.7578, + 2.7575, + 2.755, + 2.7558, + 2.7569, + 2.7562, + 2.7562, + 2.7544, + 2.75, + 2.7516, + 2.7527, + 2.7496, + 2.7521, + 2.7474, + 2.7474, + 2.7546, + 2.7558, + 2.7518, + 2.7505, + 2.7505, + 2.7523, + 2.7528, + 2.7545, + 2.7503, + 2.7503, + 2.7503, + 2.7503, + 2.7593, + 2.7559, + 2.7541, + 2.7503, + 2.7506, + 2.7498, + 2.7438, + 2.7459, + 2.7457, + 2.7468, + 2.7479, + 2.7461, + 2.748, + 2.7468, + 2.7466, + 2.748, + 2.7431, + 2.7467, + 2.7457, + 2.748, + 2.7591, + 2.7629, + 2.7626, + 2.759, + 2.759, + 2.7602, + 2.7634, + 2.7656, + 2.7627, + 2.7627, + 2.7624, + 2.7582, + 2.7582, + 2.7626, + 2.7629, + 2.7585, + 2.7585, + 2.7585, + 2.7547, + 2.7547, + 2.746, + 2.7473, + 2.7473, + 2.7494, + 2.75, + 2.7456, + 2.7427, + 2.7427, + 2.7403, + 2.7374, + 2.7388, + 2.7397, + 2.7401, + 2.7401, + 2.7401, + 2.7317, + 2.735, + 2.7327, + 2.7235, + 2.7252, + 2.7174, + 2.7262, + 2.7194, + 2.708, + 2.7107, + 2.7168, + 2.7179, + 2.724, + 2.7279, + 2.7282, + 2.7206, + 2.7226, + 2.7289, + 2.729, + 2.7293, + 2.7248, + 2.7222, + 2.7222, + 2.7221, + 2.7279, + 2.7304, + 2.7304, + 2.731, + 2.7377, + 2.7377, + 2.7417, + 2.7456, + 2.7503, + 2.7494, + 2.7454, + 2.7467, + 2.746, + 2.7457, + 2.747, + 2.7494, + 2.7531, + 2.7521, + 2.7517, + 2.7508, + 2.7489, + 2.7437, + 2.7493, + 2.7458, + 2.7438, + 2.7435, + 2.7427, + 2.74, + 2.7403, + 2.7403, + 2.741, + 2.7382, + 2.742, + 2.742, + 2.7446, + 2.7442, + 2.744, + 2.7436, + 2.751, + 2.757, + 2.757, + 2.7482, + 2.7482, + 2.7482, + 2.747, + 2.7469, + 2.747, + 2.7582, + 2.759, + 2.7613, + 2.7603, + 2.7583, + 2.7583, + 2.7546, + 2.7565, + 2.7671, + 2.7631, + 2.7665, + 2.77, + 2.7752, + 2.7767, + 2.7817, + 2.786, + 2.7872, + 2.7835, + 2.7858, + 2.7947, + 2.7965, + 2.7804, + 2.7869, + 2.7776, + 2.7751, + 2.781, + 2.781, + 2.781, + 2.7819, + 2.7899, + 2.7875, + 2.7875, + 2.78, + 2.7833, + 2.7833, + 2.7807, + 2.7741, + 2.7773, + 2.7773, + 2.7735, + 2.7722, + 2.7722, + 2.772, + 2.772, + 2.7699, + 2.7727, + 2.7707, + 2.7707, + 2.7726, + 2.7679, + 2.7684, + 2.766, + 2.7727, + 2.7783, + 2.7801, + 2.7801, + 2.7794, + 2.784, + 2.784, + 2.7748, + 2.7693, + 2.7543, + 2.7622, + 2.7609, + 2.7459, + 2.7486, + 2.7579, + 2.7532, + 2.7532, + 2.7532, + 2.7536, + 2.7486, + 2.7553, + 2.7556, + 2.7643, + 2.7593, + 2.7596, + 2.7622, + 2.7637, + 2.7631, + 2.7631, + 2.7579, + 2.7519, + 2.7586, + 2.7586, + 2.762, + 2.7636, + 2.7636, + 2.7636, + 2.7646, + 2.761, + 2.7582, + 2.7576, + 2.7524, + 2.7498, + 2.7468, + 2.7456, + 2.7458, + 2.7424, + 2.7472, + 2.7472, + 2.7465, + 2.7465, + 2.7465, + 2.755, + 2.7561, + 2.7571, + 2.7584, + 2.7566, + 2.7571, + 2.7557, + 2.7558, + 2.7564, + 2.7527, + 2.7527, + 2.7598, + 2.7626, + 2.7626, + 2.7626, + 2.7626, + 2.7547, + 2.7547, + 2.7537, + 2.7504, + 2.7504, + 2.7475, + 2.7458, + 2.7447, + 2.742, + 2.742, + 2.7363, + 2.7418, + 2.7324, + 2.7371, + 2.725, + 2.7294, + 2.7198, + 2.725, + 2.7257, + 2.73, + 2.7315, + 2.7364, + 2.7341, + 2.7341, + 2.7257, + 2.7266, + 2.7102, + 2.72, + 2.72, + 2.7265, + 2.7262, + 2.7218, + 2.7218, + 2.7245, + 2.716, + 2.7113, + 2.7022, + 2.7116, + 2.7168, + 2.7229, + 2.7147, + 2.7202, + 2.7305, + 2.729, + 2.7352, + 2.7352, + 2.7272, + 2.7289, + 2.7312, + 2.7291, + 2.7291, + 2.7291, + 2.7311, + 2.7317, + 2.7286, + 2.7305, + 2.729, + 2.7276, + 2.7276, + 2.7293, + 2.7343, + 2.7332, + 2.7332, + 2.7332, + 2.729, + 2.7294, + 2.7286, + 2.7299, + 2.7286, + 2.7267, + 2.7267, + 2.724, + 2.7221, + 2.7225, + 2.7206, + 2.7295, + 2.7244, + 2.7238, + 2.7217, + 2.7247, + 2.71, + 2.7189, + 2.714, + 2.7066, + 2.7084, + 2.7095, + 2.7095, + 2.7095, + 2.712, + 2.7131, + 2.7138, + 2.7159, + 2.7121, + 2.7121, + 2.6946, + 2.6869, + 2.693, + 2.678, + 2.6731, + 2.6793, + 2.6791, + 2.6781, + 2.6714, + 2.6756, + 2.6826, + 2.6814, + 2.6827, + 2.677, + 2.674, + 2.6787, + 2.6709, + 2.6757, + 2.6781, + 2.6839, + 2.6821, + 2.6923, + 2.6929, + 2.6852, + 2.6852, + 2.6917, + 2.6915, + 2.6959, + 2.6992, + 2.7007, + 2.6994, + 2.6994, + 2.6942, + 2.6969, + 2.6969, + 2.6969, + 2.6969, + 2.7015, + 2.7032, + 2.7032, + 2.7028, + 2.7028, + 2.697, + 2.6956, + 2.6956, + 2.6956, + 2.6956, + 2.7005, + 2.7089, + 2.7089, + 2.7089, + 2.7068, + 2.7068, + 2.7124, + 2.709, + 2.7115, + 2.712, + 2.7142, + 2.7176, + 2.715, + 2.7159, + 2.72, + 2.7253, + 2.7253, + 2.7256, + 2.725, + 2.7268, + 2.7182, + 2.7182, + 2.7246, + 2.7246, + 2.7219, + 2.7219, + 2.7254, + 2.7254, + 2.728, + 2.7274, + 2.7274, + 2.733, + 2.7332, + 2.7334, + 2.7341, + 2.7341, + 2.7341, + 2.7319, + 2.7363, + 2.7404, + 2.7402, + 2.735, + 2.735, + 2.7376, + 2.7376, + 2.7391, + 2.7361, + 2.7363, + 2.7363, + 2.7377, + 2.7393, + 2.7393, + 2.7393, + 2.7409, + 2.7409, + 2.735, + 2.735, + 2.735, + 2.735, + 2.735, + 2.735, + 2.739, + 2.743, + 2.7394, + 2.7468, + 2.7449, + 2.7449, + 2.7438, + 2.7438, + 2.75, + 2.7481, + 2.755, + 2.7536, + 2.7531, + 2.7517, + 2.7546, + 2.753, + 2.753, + 2.7582, + 2.7533, + 2.7529, + 2.7529, + 2.7529, + 2.7434, + 2.7433, + 2.744, + 2.747, + 2.747, + 2.747, + 2.7424, + 2.7424, + 2.7389, + 2.74, + 2.74, + 2.74, + 2.74, + 2.7418, + 2.7404, + 2.7404, + 2.7404, + 2.7404, + 2.744, + 2.744, + 2.7438, + 2.7438, + 2.7433, + 2.7397, + 2.7397, + 2.7397, + 2.7395, + 2.7346, + 2.7346, + 2.7322, + 2.7322, + 2.7396, + 2.7386, + 2.7386, + 2.7382, + 2.7373, + 2.7323, + 2.7344, + 2.7339, + 2.7339, + 2.7339, + 2.747, + 2.7489, + 2.7489, + 2.7479, + 2.7479, + 2.7543, + 2.7497, + 2.7497, + 2.7497, + 2.7497, + 2.7531, + 2.7541, + 2.7538, + 2.7558, + 2.7525, + 2.7552, + 2.7553, + 2.7558, + 2.7558, + 2.7535, + 2.7533, + 2.7533, + 2.7527, + 2.7533, + 2.7499, + 2.7499, + 2.7499, + 2.7534, + 2.7534, + 2.7534, + 2.7534, + 2.7534, + 2.7605, + 2.763, + 2.7652, + 2.7647, + 2.7674, + 2.7655, + 2.7642, + 2.7642, + 2.7549, + 2.7549, + 2.7534, + 2.752, + 2.7508, + 2.7508, + 2.756, + 2.756, + 2.756, + 2.7544, + 2.7544, + 2.755, + 2.755, + 2.755, + 2.755, + 2.755, + 2.755, + 2.755, + 2.755, + 2.7516, + 2.7465, + 2.7442, + 2.7404, + 2.7404, + 2.7404, + 2.7404, + 2.7404, + 2.7397, + 2.7397, + 2.741, + 2.741, + 2.7398, + 2.7383, + 2.7381, + 2.7414, + 2.735, + 2.7389, + 2.7389, + 2.7389, + 2.7389, + 2.7389, + 2.7389, + 2.735, + 2.735, + 2.7364, + 2.7296, + 2.7335, + 2.7335, + 2.7335, + 2.7335, + 2.7381, + 2.7381, + 2.7381, + 2.7428, + 2.7428, + 2.7428, + 2.7401, + 2.7401, + 2.7401, + 2.7401, + 2.7411, + 2.7411, + 2.7411, + 2.7338, + 2.7348, + 2.7348, + 2.7348, + 2.7338, + 2.7329, + 2.7317, + 2.7306, + 2.732, + 2.7313, + 2.7313, + 2.725, + 2.727, + 2.727, + 2.7253, + 2.7253, + 2.7235, + 2.7184, + 2.7167, + 2.7159, + 2.7159, + 2.7124, + 2.7079, + 2.7099, + 2.7127, + 2.7127, + 2.7065, + 2.705, + 2.7035, + 2.7035, + 2.7035, + 2.7081, + 2.7081, + 2.7081, + 2.7078, + 2.7087, + 2.7093, + 2.7103, + 2.7131, + 2.7132, + 2.71, + 2.7057, + 2.701, + 2.701, + 2.6987, + 2.6977, + 2.6894, + 2.6956, + 2.6792, + 2.6799, + 2.6799, + 2.68, + 2.6768, + 2.6768, + 2.6768, + 2.6801, + 2.6784, + 2.6568, + 2.657, + 2.6542, + 2.6472, + 2.6537, + 2.652, + 2.6505, + 2.651, + 2.6552, + 2.6577, + 2.6653, + 2.6653, + 2.6623, + 2.6604, + 2.652, + 2.6256, + 2.6315, + 2.6348, + 2.6206, + 2.6107, + 2.595, + 2.6209, + 2.63, + 2.632, + 2.6329, + 2.6414, + 2.6457, + 2.6479, + 2.6497, + 2.65, + 2.6435, + 2.6435, + 2.6513, + 2.6513, + 2.6518, + 2.6398, + 2.642, + 2.639, + 2.6368, + 2.6433, + 2.6328, + 2.6214, + 2.626, + 2.6239, + 2.6328, + 2.6456, + 2.6506, + 2.6492, + 2.655, + 2.662, + 2.6575, + 2.6575, + 2.6575, + 2.6575, + 2.6462, + 2.651, + 2.651, + 2.6446, + 2.6444, + 2.6351, + 2.6356, + 2.6304, + 2.6271, + 2.6176, + 2.6222, + 2.6222, + 2.6196, + 2.6086, + 2.6051, + 2.6144, + 2.6142, + 2.6047, + 2.6046, + 2.5967, + 2.5998, + 2.6047, + 2.6038, + 2.5987, + 2.605, + 2.6062, + 2.6065, + 2.6165, + 2.6124, + 2.5997, + 2.5941, + 2.6021, + 2.6046, + 2.6008, + 2.6086, + 2.6141, + 2.6193, + 2.6161, + 2.612, + 2.6158, + 2.6205, + 2.6164, + 2.6252, + 2.6271, + 2.6218, + 2.6225, + 2.6272, + 2.6304, + 2.6304, + 2.6332, + 2.6319, + 2.6356, + 2.6448, + 2.6447, + 2.6479, + 2.6571, + 2.6514, + 2.6506, + 2.6454, + 2.6345, + 2.6252, + 2.6115, + 2.6192, + 2.6192, + 2.6163, + 2.6102, + 2.596, + 2.6015, + 2.6081, + 2.6176, + 2.63, + 2.6206, + 2.6206, + 2.6206, + 2.6251, + 2.6251, + 2.6255, + 2.6311, + 2.6283, + 2.6199, + 2.6279, + 2.6152, + 2.6113, + 2.6046, + 2.6105, + 2.5983, + 2.6095, + 2.6192, + 2.6205, + 2.6318, + 2.6358, + 2.6336, + 2.6336, + 2.6273, + 2.6238, + 2.6159, + 2.6192, + 2.6111, + 2.6108, + 2.6013, + 2.6041, + 2.6069, + 2.596, + 2.5891, + 2.5951, + 2.5852, + 2.5989, + 2.5838, + 2.5758, + 2.5643, + 2.5794, + 2.589, + 2.5987, + 2.5968, + 2.5964, + 2.608, + 2.6082, + 2.6162, + 2.6071, + 2.611, + 2.615, + 2.6177, + 2.6108, + 2.6156, + 2.6156, + 2.6071, + 2.598, + 2.5917, + 2.5712, + 2.5839, + 2.5872, + 2.5918, + 2.5918, + 2.5936, + 2.5953, + 2.6, + 2.6, + 2.5897, + 2.5859, + 2.5886, + 2.5938, + 2.5968, + 2.608, + 2.587, + 2.5818, + 2.5858, + 2.5879, + 2.5792, + 2.5786, + 2.5855, + 2.5748, + 2.5856, + 2.57, + 2.5472, + 2.5531, + 2.5544, + 2.5579, + 2.5579, + 2.5675, + 2.5675, + 2.5581, + 2.56, + 2.5707, + 2.5697, + 2.5718, + 2.5738, + 2.5738, + 2.5732, + 2.5627, + 2.5606, + 2.5571, + 2.5629, + 2.5625, + 2.5804, + 2.5836, + 2.5817, + 2.5787, + 2.5879, + 2.5947, + 2.5928, + 2.5829, + 2.5784, + 2.5718, + 2.5637, + 2.5629, + 2.5551, + 2.5372, + 2.5358, + 2.5441, + 2.5461, + 2.5568, + 2.5391, + 2.5474, + 2.5474, + 2.5403, + 2.5309, + 2.5217, + 2.5294, + 2.5216, + 2.5206, + 2.5147, + 2.5251, + 2.5089, + 2.5216, + 2.5177, + 2.5167, + 2.5082, + 2.498, + 2.5156, + 2.5123, + 2.5188, + 2.5135, + 2.5112, + 2.5115, + 2.5091, + 2.5107, + 2.4887, + 2.4974, + 2.508, + 2.5114, + 2.5082, + 2.4826, + 2.4774, + 2.4605, + 2.4725, + 2.4821, + 2.4851, + 2.4871, + 2.4907, + 2.5017, + 2.4926, + 2.5152, + 2.5102, + 2.5089, + 2.5085, + 2.5106, + 2.5137, + 2.5137, + 2.509, + 2.4915, + 2.5016, + 2.4937, + 2.4916, + 2.4863, + 2.4852, + 2.464, + 2.4647, + 2.4524, + 2.4732, + 2.4633, + 2.4608, + 2.4621, + 2.4436, + 2.4477, + 2.435, + 2.4201, + 2.4174, + 2.4261, + 2.4222, + 2.4287, + 2.4385, + 2.4531, + 2.4547, + 2.4547, + 2.4574, + 2.4559, + 2.4686, + 2.4571, + 2.4614, + 2.4734, + 2.4851, + 2.4709, + 2.4757, + 2.4851, + 2.4794, + 2.4804, + 2.4917, + 2.4903, + 2.497, + 2.5008, + 2.4985, + 2.5017, + 2.5033, + 2.4988, + 2.4981, + 2.502, + 2.502, + 2.502, + 2.4967, + 2.4911, + 2.488, + 2.4856, + 2.4752, + 2.4894, + 2.4894, + 2.4998, + 2.5011, + 2.5114, + 2.5118, + 2.5036, + 2.5054, + 2.5049, + 2.5061, + 2.5074, + 2.5106, + 2.5122, + 2.5071, + 2.5104, + 2.5146, + 2.5144, + 2.5144, + 2.5076, + 2.5083, + 2.5071, + 2.5084, + 2.5157, + 2.5241, + 2.5188, + 2.528, + 2.5267, + 2.5297, + 2.5294, + 2.529, + 2.5301, + 2.5293, + 2.5356, + 2.5388, + 2.5388, + 2.5423, + 2.5423, + 2.5449, + 2.5456, + 2.5412, + 2.5459, + 2.5493, + 2.5497, + 2.5516, + 2.5482, + 2.5489, + 2.5489, + 2.5419, + 2.5406, + 2.5369, + 2.5379, + 2.5418, + 2.5402, + 2.5402, + 2.542, + 2.542, + 2.5497, + 2.5475, + 2.5392, + 2.5397, + 2.5365, + 2.5364, + 2.5364, + 2.5422, + 2.5395, + 2.5395, + 2.5395, + 2.5444, + 2.5444, + 2.5444, + 2.539, + 2.539, + 2.5432, + 2.5474, + 2.5474, + 2.552, + 2.5546, + 2.5546, + 2.5438, + 2.5431, + 2.539, + 2.539, + 2.5414, + 2.5351, + 2.5409, + 2.5327, + 2.528, + 2.5302, + 2.5343, + 2.5343, + 2.5334, + 2.5334, + 2.5343, + 2.5351, + 2.5441, + 2.5422, + 2.5422, + 2.5406, + 2.5404, + 2.5406, + 2.5406, + 2.5479, + 2.5498, + 2.5564, + 2.556, + 2.556, + 2.5502, + 2.5511, + 2.5518, + 2.5473, + 2.5473, + 2.5506, + 2.5517, + 2.5531, + 2.5531, + 2.5514, + 2.5497, + 2.5473, + 2.5419, + 2.5409, + 2.5418, + 2.5374, + 2.5399, + 2.5419, + 2.5419, + 2.5426, + 2.5534, + 2.5534, + 2.5478, + 2.5478, + 2.5478, + 2.5491, + 2.553, + 2.5562, + 2.5562, + 2.5579, + 2.5553, + 2.5548, + 2.5775, + 2.5918, + 2.5981, + 2.5868, + 2.5998, + 2.5934, + 2.598, + 2.6118, + 2.6162, + 2.6119, + 2.6148, + 2.6114, + 2.6051, + 2.6031, + 2.5935, + 2.5961, + 2.5924, + 2.5924, + 2.5911, + 2.5861, + 2.5861, + 2.5881, + 2.5898, + 2.5982, + 2.5826, + 2.5806, + 2.5884, + 2.5817, + 2.5804, + 2.5703, + 2.5709, + 2.5682, + 2.5712, + 2.5708, + 2.5746, + 2.5705, + 2.575, + 2.575, + 2.5785, + 2.5776, + 2.5799, + 2.5777, + 2.5804, + 2.5886, + 2.5887, + 2.592, + 2.5922, + 2.5911, + 2.5935, + 2.5947, + 2.5958, + 2.5944, + 2.594, + 2.597, + 2.6011, + 2.6079, + 2.6138, + 2.6157, + 2.6088, + 2.604, + 2.6008, + 2.5991, + 2.6026, + 2.605, + 2.5948, + 2.5826, + 2.5856, + 2.5871, + 2.587, + 2.5903, + 2.5903, + 2.5823, + 2.5823, + 2.577, + 2.5767, + 2.5708, + 2.5665, + 2.5629, + 2.5629, + 2.5731, + 2.5755, + 2.5742, + 2.5752, + 2.5785, + 2.5804, + 2.5804, + 2.5747, + 2.5723, + 2.5782, + 2.5806, + 2.5821, + 2.587, + 2.587, + 2.5793, + 2.5774, + 2.5735, + 2.5735, + 2.5776, + 2.5785, + 2.5785, + 2.5785, + 2.589, + 2.5861, + 2.5861, + 2.5852, + 2.5852, + 2.5806, + 2.583, + 2.5892, + 2.5916, + 2.599, + 2.6048, + 2.5963, + 2.5987, + 2.5981, + 2.6041, + 2.6086, + 2.6046, + 2.6052, + 2.6052, + 2.6193, + 2.6093, + 2.6083, + 2.6102, + 2.6123, + 2.6104, + 2.598, + 2.5984, + 2.5984, + 2.6046, + 2.6045, + 2.6012, + 2.6004, + 2.5999, + 2.5935, + 2.5954, + 2.5903, + 2.5929, + 2.5887, + 2.5861, + 2.585, + 2.5833, + 2.5784, + 2.5795, + 2.5822, + 2.583, + 2.5826, + 2.5838, + 2.5838, + 2.5867, + 2.5825, + 2.5822, + 2.5826, + 2.5816, + 2.5767, + 2.5677, + 2.5696, + 2.5671, + 2.5721, + 2.5804, + 2.5781, + 2.5839, + 2.5839, + 2.5773, + 2.575, + 2.5712, + 2.5712, + 2.5712, + 2.5743, + 2.5743, + 2.5841, + 2.5841, + 2.5841, + 2.5822, + 2.5872, + 2.5885, + 2.5885, + 2.5887, + 2.5896, + 2.5886, + 2.5887, + 2.584, + 2.584, + 2.5827, + 2.5827, + 2.5827, + 2.5925, + 2.5911, + 2.5964, + 2.594, + 2.5849, + 2.5798, + 2.5798, + 2.5798, + 2.5798, + 2.5735, + 2.5726, + 2.5791, + 2.5791, + 2.586, + 2.591, + 2.5844, + 2.5844, + 2.5844, + 2.5792, + 2.5793, + 2.5755, + 2.5755, + 2.5755, + 2.5787, + 2.5614, + 2.5636, + 2.5576, + 2.5526, + 2.5496, + 2.5595, + 2.5605, + 2.5624, + 2.5546, + 2.5546, + 2.5546, + 2.5546, + 2.5601, + 2.5592, + 2.5502, + 2.5534, + 2.5517, + 2.5607, + 2.5614, + 2.5568, + 2.55, + 2.5541, + 2.5541, + 2.5541, + 2.5664, + 2.5697, + 2.5728, + 2.5772, + 2.5762, + 2.5761, + 2.5845, + 2.5833, + 2.5787, + 2.5834, + 2.5834, + 2.5797, + 2.5872, + 2.5878, + 2.5852, + 2.5903, + 2.5903, + 2.5903, + 2.5828, + 2.5871, + 2.5872, + 2.5817, + 2.5798, + 2.5798, + 2.5843, + 2.5821, + 2.58, + 2.584, + 2.5784, + 2.5727, + 2.5724, + 2.5733, + 2.575, + 2.5774, + 2.5796, + 2.5775, + 2.5746, + 2.5785, + 2.5845, + 2.5891, + 2.5806, + 2.5811, + 2.5908, + 2.5952, + 2.5946, + 2.5911, + 2.5987, + 2.5987, + 2.6043, + 2.6067, + 2.6062, + 2.6093, + 2.608, + 2.6047, + 2.6063, + 2.603, + 2.6056, + 2.6089, + 2.6077, + 2.6054, + 2.6, + 2.5934, + 2.5948, + 2.5858, + 2.591, + 2.591, + 2.589, + 2.5876, + 2.591, + 2.5879, + 2.5865, + 2.5894, + 2.59, + 2.5964, + 2.5982, + 2.6059, + 2.6066, + 2.6037, + 2.5988, + 2.5991, + 2.5989, + 2.5981, + 2.6045, + 2.6045, + 2.5989, + 2.5989, + 2.598, + 2.5929, + 2.5915, + 2.5918, + 2.6012, + 2.6024, + 2.6129, + 2.6181, + 2.6172, + 2.612, + 2.6124, + 2.6131, + 2.6046, + 2.608, + 2.6287, + 2.6223, + 2.6282, + 2.6281, + 2.6229, + 2.6422, + 2.6533, + 2.6565, + 2.6591, + 2.6596, + 2.6544, + 2.6485, + 2.6701, + 2.68, + 2.6766, + 2.677, + 2.6752, + 2.6837, + 2.6932, + 2.6862, + 2.6994, + 2.683, + 2.6813, + 2.6734, + 2.67, + 2.6608, + 2.6584, + 2.656, + 2.6598, + 2.6594, + 2.6685, + 2.6766, + 2.6793, + 2.6672, + 2.6541, + 2.6736, + 2.6904, + 2.6765, + 2.6797, + 2.6765, + 2.68, + 2.68, + 2.6752, + 2.6789, + 2.6829, + 2.6832, + 2.688, + 2.6862, + 2.6927, + 2.6906, + 2.6862, + 2.6906, + 2.686, + 2.6765, + 2.6782, + 2.6782, + 2.6832, + 2.6881, + 2.6861, + 2.6938, + 2.6938, + 2.6866, + 2.6937, + 2.7007, + 2.6992, + 2.7024, + 2.6835, + 2.6852, + 2.6852, + 2.6852, + 2.6762, + 2.6749, + 2.6767, + 2.6784, + 2.6757, + 2.6754, + 2.688, + 2.688, + 2.6934, + 2.6934, + 2.7015, + 2.7, + 2.6955, + 2.6871, + 2.6916, + 2.695, + 2.695, + 2.6918, + 2.6946, + 2.6974, + 2.6947, + 2.7032, + 2.6994, + 2.6986, + 2.6986, + 2.6986, + 2.6959, + 2.6871, + 2.6831, + 2.687, + 2.6731, + 2.6814, + 2.6808, + 2.688, + 2.6908, + 2.6802, + 2.6826, + 2.6859, + 2.6846, + 2.6844, + 2.6813, + 2.6697, + 2.6761, + 2.663, + 2.6587, + 2.6603, + 2.6617, + 2.6658, + 2.6658, + 2.6599, + 2.6579, + 2.6579, + 2.6594, + 2.6621, + 2.6621, + 2.6608, + 2.6643, + 2.6523, + 2.6555, + 2.663, + 2.6737, + 2.6722, + 2.6774, + 2.6835, + 2.6878, + 2.6891, + 2.6981, + 2.6961, + 2.7063, + 2.715, + 2.7172, + 2.7166, + 2.7285, + 2.733, + 2.7246, + 2.7391, + 2.7335, + 2.7284, + 2.7299, + 2.7262, + 2.7174, + 2.7152, + 2.7124, + 2.7138, + 2.7154, + 2.7198, + 2.7246, + 2.7194, + 2.7271, + 2.7209, + 2.7251, + 2.7273, + 2.723, + 2.7199, + 2.7158, + 2.7237, + 2.72, + 2.7137, + 2.7108, + 2.7139, + 2.714, + 2.7141, + 2.7141, + 2.7007, + 2.7006, + 2.7032, + 2.7087, + 2.7026, + 2.6837, + 2.6884, + 2.6826, + 2.6798, + 2.6902, + 2.6943, + 2.6922, + 2.694, + 2.69, + 2.6789, + 2.6887, + 2.6885, + 2.6943, + 2.6959, + 2.704, + 2.6951, + 2.6952, + 2.6989, + 2.6974, + 2.6991, + 2.6991, + 2.6991, + 2.6983, + 2.699, + 2.699, + 2.7029, + 2.6974, + 2.6926, + 2.6956, + 2.6956, + 2.6956, + 2.6956, + 2.6956, + 2.7024, + 2.7015, + 2.7015, + 2.7024, + 2.7, + 2.71, + 2.707, + 2.7075, + 2.7136, + 2.7161, + 2.7161, + 2.7062, + 2.7062, + 2.7062, + 2.7054, + 2.7246, + 2.7278, + 2.7135, + 2.7181, + 2.7224, + 2.7233, + 2.7234, + 2.7277, + 2.7245, + 2.7169, + 2.733, + 2.7631, + 2.7561, + 2.7511, + 2.755, + 2.7547, + 2.7515, + 2.7566, + 2.752, + 2.7585, + 2.7678, + 2.7858, + 2.8034, + 2.8069, + 2.819, + 2.811, + 2.803, + 2.772, + 2.7776, + 2.7758, + 2.7656, + 2.7599, + 2.7614, + 2.7543, + 2.754, + 2.7329, + 2.7459, + 2.7437, + 2.7456, + 2.7547, + 2.7463, + 2.742, + 2.7463, + 2.7405, + 2.7432, + 2.7383, + 2.736, + 2.736, + 2.7411, + 2.7418, + 2.7401, + 2.7261, + 2.7339, + 2.7235, + 2.7229, + 2.7157, + 2.7157, + 2.7132, + 2.7124, + 2.7163, + 2.7212, + 2.7212, + 2.7199, + 2.7199, + 2.7199, + 2.7077, + 2.7077, + 2.7148, + 2.7167, + 2.7167, + 2.7167, + 2.7209, + 2.7182, + 2.7182, + 2.7191, + 2.7128, + 2.7206, + 2.7206, + 2.7179, + 2.7163, + 2.7163, + 2.7209, + 2.7209, + 2.7265, + 2.7312, + 2.7261, + 2.7336, + 2.7336, + 2.7268, + 2.7323, + 2.7316, + 2.7303, + 2.7418, + 2.7383, + 2.7409, + 2.7267, + 2.7317, + 2.7317, + 2.7317, + 2.7317, + 2.7322, + 2.7249, + 2.7249, + 2.7312, + 2.7312, + 2.7349, + 2.7407, + 2.7359, + 2.7444, + 2.7374, + 2.7322, + 2.7279, + 2.7279, + 2.7279, + 2.7326, + 2.7346, + 2.7377, + 2.7433, + 2.7399, + 2.735, + 2.7417, + 2.7504, + 2.7481, + 2.7507, + 2.751, + 2.7479, + 2.7446, + 2.755, + 2.7549, + 2.7549, + 2.7662, + 2.7639, + 2.7746, + 2.7621, + 2.7627, + 2.7627, + 2.7662, + 2.7707, + 2.7763, + 2.7808, + 2.7889, + 2.7678, + 2.788, + 2.787, + 2.7758, + 2.7758, + 2.7717, + 2.7726, + 2.7726, + 2.7726, + 2.784, + 2.7891, + 2.7863, + 2.7863, + 2.7873, + 2.7917, + 2.7926, + 2.7889, + 2.7928, + 2.7915, + 2.7913, + 2.7901, + 2.7914, + 2.7909, + 2.7876, + 2.7822, + 2.7912, + 2.7912, + 2.7988, + 2.8009, + 2.8024, + 2.8107, + 2.8094, + 2.8066, + 2.8183, + 2.82, + 2.8156, + 2.8231, + 2.8179, + 2.8128, + 2.8035, + 2.8114, + 2.815, + 2.8174, + 2.8078, + 2.8062, + 2.8087, + 2.8096, + 2.8046, + 2.8059, + 2.8121, + 2.7962, + 2.7998, + 2.7991, + 2.8081, + 2.81, + 2.8079, + 2.8112, + 2.8062, + 2.7966, + 2.7978, + 2.7914, + 2.7885, + 2.7867, + 2.7958, + 2.7837, + 2.7864, + 2.8015, + 2.8235, + 2.8078, + 2.813, + 2.8088, + 2.8146, + 2.813, + 2.811, + 2.8118, + 2.8174, + 2.8159, + 2.8174, + 2.8216, + 2.8216, + 2.822, + 2.8182, + 2.825, + 2.8259, + 2.8258, + 2.8216, + 2.8219, + 2.8336, + 2.826, + 2.8394, + 2.8401, + 2.8332, + 2.837, + 2.8389, + 2.8416, + 2.8418, + 2.8456, + 2.8355, + 2.8277, + 2.8353, + 2.8362, + 2.8384, + 2.8382, + 2.8474, + 2.8553, + 2.8596, + 2.866, + 2.8697, + 2.8739, + 2.87, + 2.8679, + 2.8607, + 2.8638, + 2.8594, + 2.8548, + 2.848, + 2.8494, + 2.8528, + 2.8558, + 2.8433, + 2.8445, + 2.8494, + 2.8494, + 2.8532, + 2.8486, + 2.8462, + 2.8417, + 2.839, + 2.847, + 2.847, + 2.8453, + 2.8388, + 2.8368, + 2.8405, + 2.8391, + 2.83, + 2.8323, + 2.835, + 2.835, + 2.8287, + 2.8287, + 2.836, + 2.8385, + 2.8426, + 2.846, + 2.8381, + 2.8381, + 2.8454, + 2.8417, + 2.8386, + 2.838, + 2.8362, + 2.8301, + 2.8282, + 2.8276, + 2.8285, + 2.8285, + 2.8294, + 2.8326, + 2.8268, + 2.8176, + 2.8158, + 2.8091, + 2.8172, + 2.8138, + 2.8038, + 2.8022, + 2.8065, + 2.8104, + 2.8064, + 2.8146, + 2.8149, + 2.8192, + 2.8174, + 2.8142, + 2.8174, + 2.8142, + 2.8161, + 2.814, + 2.81, + 2.8129, + 2.815, + 2.815, + 2.815, + 2.8126, + 2.8235, + 2.8271, + 2.8221, + 2.82, + 2.8159, + 2.8148, + 2.8193, + 2.8158, + 2.8187, + 2.8218, + 2.8237, + 2.8267, + 2.8267, + 2.8232, + 2.8286, + 2.8349, + 2.827, + 2.8287, + 2.8277, + 2.8223, + 2.8223, + 2.8224, + 2.825, + 2.825, + 2.8222, + 2.8222, + 2.8331, + 2.839, + 2.8405, + 2.8421, + 2.8378, + 2.8425, + 2.8425, + 2.8402, + 2.8402, + 2.8367, + 2.8316, + 2.8363, + 2.8249, + 2.8252, + 2.8289, + 2.8225, + 2.8225, + 2.8176, + 2.8124, + 2.8238, + 2.8216, + 2.8203, + 2.8203, + 2.8203, + 2.8165, + 2.8165, + 2.8165, + 2.8095, + 2.8095, + 2.8046, + 2.8094, + 2.8189, + 2.8207, + 2.8221, + 2.8221, + 2.8214, + 2.8214, + 2.8214, + 2.8183, + 2.8183, + 2.8096, + 2.8137, + 2.8166, + 2.8251, + 2.8282, + 2.8282, + 2.8297, + 2.8297, + 2.8297, + 2.8206, + 2.8231, + 2.8168, + 2.824, + 2.8174, + 2.8128, + 2.8099, + 2.8108, + 2.808, + 2.8121, + 2.8094, + 2.8046, + 2.8067, + 2.8101, + 2.8081, + 2.8081, + 2.8051, + 2.8052, + 2.8087, + 2.8087, + 2.8085, + 2.8085, + 2.818, + 2.818, + 2.8191, + 2.82, + 2.82, + 2.82, + 2.82, + 2.82, + 2.8155, + 2.8155, + 2.8155, + 2.8155, + 2.8207, + 2.8196, + 2.8196, + 2.8196, + 2.8196, + 2.8119, + 2.8123, + 2.8119, + 2.8119, + 2.8119, + 2.8139, + 2.8139, + 2.8139, + 2.8205, + 2.8205, + 2.8202, + 2.8202, + 2.8202, + 2.8202, + 2.8164, + 2.8178, + 2.8142, + 2.8079, + 2.8153, + 2.8168, + 2.8203, + 2.8178, + 2.8178, + 2.8178, + 2.8178, + 2.8072, + 2.8065, + 2.8016, + 2.8028, + 2.8028, + 2.8046, + 2.7955, + 2.8016, + 2.8023, + 2.7984, + 2.7988, + 2.7991, + 2.8023, + 2.8037, + 2.8061, + 2.8081, + 2.8088, + 2.8078, + 2.8078, + 2.8123, + 2.8115, + 2.8089, + 2.8111, + 2.8111, + 2.8165, + 2.814, + 2.8165, + 2.8169, + 2.8169, + 2.8169, + 2.8148, + 2.8146, + 2.8179, + 2.8179, + 2.8116, + 2.8012, + 2.8123, + 2.8154, + 2.8158, + 2.8187, + 2.8156, + 2.8156, + 2.816, + 2.816, + 2.8216, + 2.8354, + 2.8289, + 2.8289, + 2.8228, + 2.8279, + 2.823, + 2.823, + 2.8148, + 2.8157, + 2.8143, + 2.7996, + 2.797, + 2.8046, + 2.8079, + 2.7966, + 2.7943, + 2.791, + 2.7714, + 2.7888, + 2.7899, + 2.7732, + 2.7735, + 2.7637, + 2.7776, + 2.7692, + 2.7751, + 2.7495, + 2.747, + 2.7485, + 2.7607, + 2.7678, + 2.7701, + 2.7691, + 2.7715, + 2.7684, + 2.7693, + 2.7799, + 2.7833, + 2.7828, + 2.7899, + 2.7951, + 2.7965, + 2.7906, + 2.785, + 2.785, + 2.7861, + 2.7915, + 2.7877, + 2.7849, + 2.7886, + 2.7902, + 2.7902, + 2.7927, + 2.784, + 2.7838, + 2.7829, + 2.792, + 2.7932, + 2.7932, + 2.7932, + 2.796, + 2.7963, + 2.7963, + 2.7959, + 2.7984, + 2.7975, + 2.796, + 2.7866, + 2.7876, + 2.7827, + 2.7827, + 2.7799, + 2.7803, + 2.7803, + 2.7742, + 2.7657, + 2.7634, + 2.7614, + 2.7653, + 2.7635, + 2.7635, + 2.7635, + 2.7607, + 2.7619, + 2.7558, + 2.7594, + 2.762, + 2.7543, + 2.7563, + 2.7579, + 2.757, + 2.7459, + 2.7506, + 2.7498, + 2.7519, + 2.7505, + 2.7626, + 2.7561, + 2.7634, + 2.7623, + 2.764, + 2.7664, + 2.7664, + 2.7719, + 2.7687, + 2.7687, + 2.766, + 2.766, + 2.7722, + 2.7778, + 2.7755, + 2.77, + 2.767, + 2.7684, + 2.7684, + 2.7684, + 2.7586, + 2.7614, + 2.7587, + 2.7604, + 2.7604, + 2.7581, + 2.7576, + 2.7576, + 2.759, + 2.759, + 2.7619, + 2.7582, + 2.7582, + 2.7621, + 2.7647, + 2.7647, + 2.7692, + 2.7742, + 2.7742, + 2.7751, + 2.7741, + 2.7705, + 2.7705, + 2.7699, + 2.7668, + 2.7628, + 2.7598, + 2.7618, + 2.7618, + 2.7664, + 2.7654, + 2.7665, + 2.7665, + 2.7758, + 2.7735, + 2.769, + 2.769, + 2.7659, + 2.7668, + 2.7668, + 2.7663, + 2.7646, + 2.7646, + 2.7646, + 2.7646, + 2.7655, + 2.7608, + 2.7598, + 2.7614, + 2.7614, + 2.7693, + 2.7712, + 2.7732, + 2.7732, + 2.7698, + 2.7721, + 2.769, + 2.769, + 2.7642, + 2.7676, + 2.7719, + 2.758, + 2.7584, + 2.7479, + 2.7483, + 2.7483, + 2.7537, + 2.7537, + 2.75, + 2.75, + 2.75, + 2.7548, + 2.7548, + 2.7531, + 2.752, + 2.7456, + 2.7465, + 2.7465, + 2.7465, + 2.7572, + 2.7626, + 2.7626, + 2.761, + 2.7609, + 2.7574, + 2.7574, + 2.7534, + 2.7547, + 2.7499, + 2.7519, + 2.746, + 2.7459, + 2.7459, + 2.746, + 2.746, + 2.7464, + 2.7464, + 2.7465, + 2.7421, + 2.7421, + 2.7451, + 2.7439, + 2.7443, + 2.7507, + 2.746, + 2.745, + 2.745, + 2.745, + 2.7428, + 2.7428, + 2.7428, + 2.7482, + 2.7482, + 2.7477, + 2.7449, + 2.7477, + 2.7532, + 2.7543, + 2.7605, + 2.7521, + 2.7544, + 2.7539, + 2.7539, + 2.7539, + 2.7518, + 2.7486, + 2.7519, + 2.7564, + 2.75, + 2.7465, + 2.7433, + 2.7407, + 2.734, + 2.738, + 2.7343, + 2.7414, + 2.7433, + 2.7443, + 2.7464, + 2.7467, + 2.748, + 2.7453, + 2.746, + 2.7463, + 2.75, + 2.7579, + 2.7613, + 2.7626, + 2.7641, + 2.7641, + 2.7654, + 2.7702, + 2.7696, + 2.7802, + 2.7884, + 2.7847, + 2.784, + 2.7833, + 2.7897, + 2.7933, + 2.7914, + 2.7871, + 2.7848, + 2.782, + 2.7792, + 2.7834, + 2.7813, + 2.782, + 2.7839, + 2.7839, + 2.7832, + 2.7852, + 2.7831, + 2.7868, + 2.7882, + 2.7886, + 2.784, + 2.7835, + 2.7775, + 2.7775, + 2.7785, + 2.7802, + 2.778, + 2.7714, + 2.7674, + 2.7697, + 2.7683, + 2.7668, + 2.7626, + 2.7658, + 2.7614, + 2.7632, + 2.7644, + 2.7663, + 2.7653, + 2.7663, + 2.7619, + 2.7603, + 2.7549, + 2.7561, + 2.7531, + 2.7526, + 2.7546, + 2.7585, + 2.7585, + 2.7598, + 2.7601, + 2.7569, + 2.7566, + 2.7535, + 2.7535, + 2.7488, + 2.7478, + 2.7493, + 2.7512, + 2.7494, + 2.746, + 2.746, + 2.7525, + 2.7525, + 2.7455, + 2.7543, + 2.7579, + 2.7606, + 2.7606, + 2.7622, + 2.7622, + 2.7642, + 2.7642, + 2.7642, + 2.7642, + 2.7641, + 2.7631, + 2.7625, + 2.768, + 2.7649, + 2.7613, + 2.7627, + 2.7627, + 2.7627, + 2.7554, + 2.7642, + 2.7682, + 2.7682, + 2.7704, + 2.7722, + 2.7742, + 2.7727, + 2.7744, + 2.7718, + 2.7732, + 2.7732, + 2.7732, + 2.7615, + 2.7609, + 2.7609, + 2.7622, + 2.7578, + 2.7661, + 2.7683, + 2.7703, + 2.7626, + 2.7646, + 2.7678, + 2.771, + 2.7671, + 2.7658, + 2.7591, + 2.7615, + 2.7607, + 2.7613, + 2.7586, + 2.7698, + 2.7598, + 2.7619, + 2.7648, + 2.7623, + 2.7623, + 2.7593, + 2.752, + 2.7517, + 2.7569, + 2.7585, + 2.7609, + 2.7638, + 2.7665, + 2.7649, + 2.769, + 2.769, + 2.7691, + 2.7724, + 2.7724, + 2.771, + 2.7729, + 2.7735, + 2.7714, + 2.7639, + 2.7644, + 2.7608, + 2.7586, + 2.7574, + 2.7599, + 2.7592, + 2.7571, + 2.7577, + 2.7564, + 2.759, + 2.7627, + 2.7642, + 2.7631, + 2.7597, + 2.7729, + 2.7663, + 2.7712, + 2.7707, + 2.7751, + 2.7722, + 2.7717, + 2.774, + 2.779, + 2.7816, + 2.7819, + 2.7816, + 2.7798, + 2.777, + 2.7756, + 2.7769, + 2.7729, + 2.7725, + 2.7726, + 2.7729, + 2.772, + 2.772, + 2.7787, + 2.7751, + 2.7756, + 2.7756, + 2.7737, + 2.7756, + 2.7756, + 2.773, + 2.773, + 2.7743, + 2.7756, + 2.7756, + 2.7726, + 2.769, + 2.771, + 2.771, + 2.771, + 2.7697, + 2.7646, + 2.7646, + 2.7624, + 2.7549, + 2.7594, + 2.7648, + 2.7591, + 2.7497, + 2.7464, + 2.7444, + 2.7482, + 2.7466, + 2.7466, + 2.7466, + 2.7514, + 2.7492, + 2.7492, + 2.7516, + 2.7537, + 2.7598, + 2.7605, + 2.7625, + 2.768, + 2.7686, + 2.7644, + 2.763, + 2.7652, + 2.7644, + 2.7644, + 2.7627, + 2.7627, + 2.7642, + 2.7604, + 2.7608, + 2.7605, + 2.7527, + 2.7508, + 2.7405, + 2.74, + 2.7374, + 2.7393, + 2.7358, + 2.7262, + 2.7286, + 2.7274, + 2.7235, + 2.7249, + 2.7233, + 2.7287, + 2.7297, + 2.7228, + 2.7234, + 2.7251, + 2.7189, + 2.7177, + 2.7098, + 2.7058, + 2.6982, + 2.7112, + 2.7056, + 2.7023, + 2.6988, + 2.704, + 2.704, + 2.7081, + 2.7081, + 2.7042, + 2.7083, + 2.704, + 2.704, + 2.7048, + 2.7034, + 2.7017, + 2.6992, + 2.6975, + 2.6977, + 2.7001, + 2.686, + 2.6947, + 2.696, + 2.6907, + 2.6858, + 2.6789, + 2.6856, + 2.677, + 2.6806, + 2.6806, + 2.679, + 2.6781, + 2.6759, + 2.6848, + 2.683, + 2.6847, + 2.6857, + 2.6855, + 2.6855, + 2.6846, + 2.6923, + 2.6939, + 2.6939, + 2.6939, + 2.6876, + 2.6906, + 2.6877, + 2.6892, + 2.6892, + 2.6789, + 2.6646, + 2.6612, + 2.662, + 2.6651, + 2.6691, + 2.6757, + 2.6683, + 2.6771, + 2.6744, + 2.6761, + 2.6722, + 2.6765, + 2.6762, + 2.6723, + 2.6736, + 2.6739, + 2.6863, + 2.6863, + 2.6879, + 2.688, + 2.686, + 2.6872, + 2.6854, + 2.6854, + 2.692, + 2.6959, + 2.6959, + 2.6959, + 2.6915, + 2.6918, + 2.6938, + 2.6948, + 2.6948, + 2.6964, + 2.6964, + 2.6983, + 2.7, + 2.7007, + 2.7032, + 2.703, + 2.703, + 2.7057, + 2.7066, + 2.7026, + 2.6999, + 2.6995, + 2.6995, + 2.6995, + 2.6995, + 2.6995, + 2.6995, + 2.6954, + 2.697, + 2.6974, + 2.7009, + 2.7045, + 2.7045, + 2.7045, + 2.702, + 2.702, + 2.699, + 2.6982, + 2.694, + 2.6918, + 2.6905, + 2.6872, + 2.6901, + 2.6901, + 2.6878, + 2.6871, + 2.6871, + 2.6853, + 2.6853, + 2.6853, + 2.686, + 2.6884, + 2.6884, + 2.6934, + 2.6934, + 2.6934, + 2.6941, + 2.6914, + 2.6915, + 2.6921, + 2.6921, + 2.6921, + 2.6921, + 2.6921, + 2.6921, + 2.6921, + 2.6985, + 2.6971, + 2.7015, + 2.7032, + 2.702, + 2.7023, + 2.7023, + 2.7099, + 2.7112, + 2.7112, + 2.7114, + 2.7128, + 2.7121, + 2.7121, + 2.7121, + 2.7121, + 2.7121, + 2.7121, + 2.7128, + 2.7077, + 2.7078, + 2.7078, + 2.6959, + 2.6947, + 2.6878, + 2.6878, + 2.6875, + 2.6867, + 2.6846, + 2.688, + 2.6848, + 2.6894, + 2.6871, + 2.6875, + 2.6926, + 2.6943, + 2.6941, + 2.6938, + 2.6892, + 2.6914, + 2.6926, + 2.6936, + 2.6925, + 2.6931, + 2.6931, + 2.6984, + 2.6984, + 2.7025, + 2.7039, + 2.6986, + 2.6991, + 2.6991, + 2.7002, + 2.6974, + 2.7017, + 2.7012, + 2.7019, + 2.7019, + 2.7051, + 2.7001, + 2.6987, + 2.7001, + 2.7001, + 2.7001, + 2.6871, + 2.6883, + 2.6808, + 2.6877, + 2.6863, + 2.6873, + 2.6861, + 2.6868, + 2.6889, + 2.6889, + 2.6862, + 2.6862, + 2.6759, + 2.6801, + 2.6827, + 2.6791, + 2.6791, + 2.6791, + 2.6709, + 2.6772, + 2.6785, + 2.6781, + 2.6781, + 2.6781, + 2.6717, + 2.6717, + 2.6608, + 2.6576, + 2.6601, + 2.6609, + 2.6697, + 2.6849, + 2.6805, + 2.6838, + 2.6825, + 2.6727, + 2.6603, + 2.5736, + 2.6185, + 2.6093, + 2.6033, + 2.626, + 2.6277, + 2.626, + 2.627, + 2.6336, + 2.6364, + 2.6261, + 2.6325, + 2.6407, + 2.6369, + 2.6423, + 2.6383, + 2.6385, + 2.6464, + 2.6423, + 2.6413, + 2.6404, + 2.6521, + 2.6542, + 2.665, + 2.6659, + 2.6585, + 2.6513, + 2.6456, + 2.6498, + 2.65, + 2.6491, + 2.6477, + 2.6558, + 2.6576, + 2.6606, + 2.6672, + 2.67, + 2.6677, + 2.6655, + 2.6674, + 2.6674, + 2.6649, + 2.6633, + 2.6694, + 2.667, + 2.6628, + 2.6628, + 2.6628, + 2.6663, + 2.668, + 2.6726, + 2.677, + 2.6798, + 2.6787, + 2.6783, + 2.6863, + 2.6914, + 2.6942, + 2.6942, + 2.6794, + 2.677, + 2.6765, + 2.6825, + 2.6816, + 2.6783, + 2.691, + 2.691, + 2.6828, + 2.6789, + 2.6823, + 2.6754, + 2.6757, + 2.6672, + 2.6766, + 2.6645, + 2.6613, + 2.6685, + 2.6617, + 2.6596, + 2.6581, + 2.6494, + 2.6457, + 2.6457, + 2.6457, + 2.6545, + 2.6564, + 2.6534, + 2.6517, + 2.6517, + 2.6452, + 2.6462, + 2.6462, + 2.6471, + 2.6501, + 2.6385, + 2.6284, + 2.6295, + 2.6371, + 2.6371, + 2.6351, + 2.633, + 2.6339, + 2.6382, + 2.6382, + 2.6365, + 2.6383, + 2.6383, + 2.6383, + 2.6383, + 2.6283, + 2.6247, + 2.6307, + 2.6367, + 2.6367, + 2.6345, + 2.6318, + 2.6421, + 2.6427, + 2.643, + 2.6246, + 2.6232, + 2.6207, + 2.6253, + 2.6181, + 2.6175, + 2.6007, + 2.6108, + 2.6188, + 2.6195, + 2.6093, + 2.6087, + 2.6069, + 2.6112, + 2.612, + 2.6128, + 2.6263, + 2.6288, + 2.6288, + 2.6176, + 2.6203, + 2.622, + 2.6267, + 2.6342, + 2.628, + 2.6249, + 2.6275, + 2.6275, + 2.6317, + 2.6302, + 2.6302, + 2.6195, + 2.6195, + 2.6195, + 2.6195, + 2.6238, + 2.6287, + 2.6245, + 2.6354, + 2.6299, + 2.6299, + 2.627, + 2.6291, + 2.6291, + 2.6291, + 2.6291, + 2.6375, + 2.6413, + 2.6329, + 2.6329, + 2.624, + 2.6211, + 2.6211, + 2.616, + 2.6191, + 2.6191, + 2.6152, + 2.6175, + 2.6111, + 2.6111, + 2.6271, + 2.6257, + 2.6257, + 2.6194, + 2.6194, + 2.6208, + 2.6208, + 2.6208, + 2.6158, + 2.6203, + 2.6169, + 2.61, + 2.6127, + 2.615, + 2.613, + 2.6149, + 2.6218, + 2.6175, + 2.6175, + 2.6169, + 2.6153, + 2.6182, + 2.6099, + 2.6105, + 2.6072, + 2.6094, + 2.6097, + 2.61, + 2.6052, + 2.6072, + 2.6122, + 2.6049, + 2.5951, + 2.5873, + 2.5881, + 2.5898, + 2.5747, + 2.5828, + 2.5903, + 2.5832, + 2.5885, + 2.583, + 2.596, + 2.5878, + 2.5906, + 2.5884, + 2.5942, + 2.5909, + 2.5958, + 2.6009, + 2.6027, + 2.603, + 2.6013, + 2.6013, + 2.5911, + 2.592, + 2.592, + 2.5863, + 2.5863, + 2.5873, + 2.5922, + 2.6004, + 2.6009, + 2.6, + 2.6, + 2.5951, + 2.5866, + 2.5843, + 2.5917, + 2.5917, + 2.5849, + 2.5806, + 2.5709, + 2.572, + 2.576, + 2.576, + 2.5711, + 2.5711, + 2.58, + 2.58, + 2.5764, + 2.5762, + 2.578, + 2.5845, + 2.5868, + 2.5811, + 2.5811, + 2.5798, + 2.5908, + 2.5829, + 2.5829, + 2.5829, + 2.5902, + 2.593, + 2.5843, + 2.5901, + 2.5812, + 2.58, + 2.58, + 2.585, + 2.5791, + 2.5748, + 2.5767, + 2.5767, + 2.5718, + 2.5674, + 2.5609, + 2.5708, + 2.5706, + 2.5706, + 2.5673, + 2.582, + 2.581, + 2.5885, + 2.5854, + 2.5845, + 2.5845, + 2.5727, + 2.5727, + 2.5718, + 2.5629, + 2.5629, + 2.5673, + 2.5662, + 2.5662, + 2.5671, + 2.5642, + 2.5642, + 2.5697, + 2.5699, + 2.5706, + 2.5635, + 2.5661, + 2.5791, + 2.5821, + 2.5829, + 2.5784, + 2.5814, + 2.5814, + 2.5807, + 2.5826, + 2.5826, + 2.5826, + 2.5826, + 2.5826, + 2.5826, + 2.584, + 2.5867, + 2.5862, + 2.5826, + 2.5891, + 2.5892, + 2.5892, + 2.5892, + 2.5892, + 2.5892, + 2.5892, + 2.5892, + 2.5892, + 2.5765, + 2.5836, + 2.5836, + 2.5836, + 2.5877, + 2.5885, + 2.5917, + 2.5906, + 2.5951, + 2.5959, + 2.5959, + 2.5979, + 2.5979, + 2.5991, + 2.5955, + 2.5955, + 2.5984, + 2.595, + 2.6016, + 2.6036, + 2.6036, + 2.6038, + 2.598, + 2.6036, + 2.6061, + 2.6038, + 2.6023, + 2.6023, + 2.6018, + 2.5932, + 2.5934, + 2.5851, + 2.5841, + 2.583, + 2.583, + 2.5817, + 2.58, + 2.579, + 2.5787, + 2.577, + 2.5769, + 2.5775, + 2.5796, + 2.5796, + 2.5796, + 2.5796, + 2.5825, + 2.5826, + 2.5826, + 2.5687, + 2.5664, + 2.5602, + 2.5594, + 2.5529, + 2.5489, + 2.5494, + 2.5551, + 2.5584, + 2.565, + 2.5569, + 2.5503, + 2.5434, + 2.5479, + 2.54, + 2.5483, + 2.5438, + 2.5365, + 2.5328, + 2.4999, + 2.491, + 2.4933, + 2.4909, + 2.5034, + 2.5032, + 2.508, + 2.5101, + 2.5106, + 2.5096, + 2.515, + 2.5194, + 2.5162, + 2.5145, + 2.5145, + 2.5245, + 2.5292, + 2.5252, + 2.5274, + 2.5278, + 2.5211, + 2.5159, + 2.5159, + 2.5143, + 2.512, + 2.5156, + 2.4996, + 2.4997, + 2.4959, + 2.4923, + 2.4838, + 2.4761, + 2.4796, + 2.4022, + 2.395, + 2.4137, + 2.419, + 2.4254, + 2.4158, + 2.427, + 2.4143, + 2.4189, + 2.4262, + 2.4245, + 2.4239, + 2.4229, + 2.4192, + 2.4199, + 2.4137, + 2.3873, + 2.3936, + 2.3989, + 2.3975, + 2.395, + 2.4007, + 2.3924, + 2.3934, + 2.3993, + 2.4014, + 2.4012, + 2.412, + 2.4042, + 2.4015, + 2.4001, + 2.403, + 2.4013, + 2.3974, + 2.3921, + 2.3815, + 2.3747, + 2.3854, + 2.3822, + 2.3769, + 2.3866, + 2.3784, + 2.3796, + 2.3764, + 2.379, + 2.3842, + 2.382, + 2.3923, + 2.3966, + 2.4046, + 2.4014, + 2.4176, + 2.42, + 2.4226, + 2.4199, + 2.4221, + 2.4494, + 2.4622, + 2.46, + 2.4793, + 2.4469, + 2.4422, + 2.4344, + 2.4504, + 2.4528, + 2.4237, + 2.4488, + 2.4532, + 2.4667, + 2.4614, + 2.4637, + 2.4306, + 2.4326, + 2.4357, + 2.4416, + 2.4432, + 2.4384, + 2.413, + 2.4126, + 2.4296, + 2.4279, + 2.439, + 2.4353, + 2.4335, + 2.4455, + 2.4334, + 2.4542, + 2.455, + 2.4606, + 2.4515, + 2.4654, + 2.4547, + 2.4525, + 2.445, + 2.4535, + 2.4446, + 2.4408, + 2.443, + 2.431, + 2.4341, + 2.4245, + 2.4166, + 2.4297, + 2.432, + 2.4247, + 2.4238, + 2.4424, + 2.4455, + 2.4341, + 2.445, + 2.4504, + 2.46, + 2.4592, + 2.4632, + 2.4545, + 2.4607, + 2.4632, + 2.4667, + 2.4695, + 2.4664, + 2.476, + 2.4816, + 2.4845, + 2.487, + 2.4887, + 2.4838, + 2.4838, + 2.4828, + 2.4828, + 2.4852, + 2.4827, + 2.4915, + 2.4958, + 2.4971, + 2.4991, + 2.4935, + 2.4951, + 2.496, + 2.4969, + 2.4983, + 2.4982, + 2.5012, + 2.5068, + 2.5041, + 2.4999, + 2.4976, + 2.4954, + 2.4925, + 2.4803, + 2.4772, + 2.4719, + 2.4576, + 2.4545, + 2.4605, + 2.4605, + 2.4596, + 2.4626, + 2.4639, + 2.4565, + 2.4702, + 2.4772, + 2.4835, + 2.4876, + 2.4875, + 2.4852, + 2.4867, + 2.4883, + 2.489, + 2.4917, + 2.491, + 2.4824, + 2.4847, + 2.4885, + 2.4885, + 2.4899, + 2.4899, + 2.4847, + 2.4847, + 2.4764, + 2.4724, + 2.4709, + 2.4709, + 2.4606, + 2.473, + 2.4757, + 2.4774, + 2.4774, + 2.4847, + 2.4847, + 2.4816, + 2.4883, + 2.4993, + 2.4956, + 2.4925, + 2.4925, + 2.4952, + 2.4973, + 2.4973, + 2.4923, + 2.4923, + 2.4883, + 2.4861, + 2.4861, + 2.484, + 2.4809, + 2.483, + 2.4811, + 2.4811, + 2.4817, + 2.4817, + 2.4862, + 2.477, + 2.477, + 2.477, + 2.4829, + 2.4883, + 2.4888, + 2.4923, + 2.4964, + 2.4964, + 2.4965, + 2.495, + 2.5025, + 2.5025, + 2.5006, + 2.4976 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-01T00:00:00", + "2024-01-01T00:02:00" + ], + "y": [ + 3.626233, + 3.626233 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T00:00:00", + "2024-01-01T01:25:00" + ], + "y": [ + 3.686505601555519, + 3.7496 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-01T00:03:00", + "2024-01-01T01:26:00" + ], + "y": [ + 3.650005685649132, + 3.7679 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T02:25:00", + "2024-01-01T02:27:00" + ], + "y": [ + 3.6887628, + 3.6887628 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T02:28:00", + "2024-01-01T02:30:00" + ], + "y": [ + 3.6937728, + 3.6937728 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T02:31:00", + "2024-01-01T02:33:00" + ], + "y": [ + 3.688362, + 3.688362 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T02:34:00", + "2024-01-01T02:36:00" + ], + "y": [ + 3.6859572, + 3.6859572 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T02:37:00", + "2024-01-01T02:39:00" + ], + "y": [ + 3.6805464, + 3.6805464 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-01T01:26:00", + "2024-01-01T02:41:00" + ], + "y": [ + 3.713420848392969, + 3.6552 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T02:40:00", + "2024-01-01T02:42:00" + ], + "y": [ + 3.6761376, + 3.6761376 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T02:43:00", + "2024-01-01T02:45:00" + ], + "y": [ + 3.6549954, + 3.6549954 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T02:46:00", + "2024-01-01T02:48:00" + ], + "y": [ + 3.6393641999999997, + 3.6393641999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T02:49:00", + "2024-01-01T11:42:00" + ], + "y": [ + 3.641912241437017, + 3.5315 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T11:42:00", + "2024-01-01T11:44:00" + ], + "y": [ + 3.538563, + 3.538563 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T11:45:00", + "2024-01-01T11:47:00" + ], + "y": [ + 3.5481822000000003, + 3.5481822000000003 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T11:48:00", + "2024-01-01T11:50:00" + ], + "y": [ + 3.5405670000000002, + 3.5405670000000002 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T11:51:00", + "2024-01-01T11:53:00" + ], + "y": [ + 3.5436731999999997, + 3.5436731999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-01T03:41:00", + "2024-01-01T15:41:00" + ], + "y": [ + 3.524886808663259, + 3.5185 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-01T15:41:00", + "2024-01-01T15:43:00" + ], + "y": [ + 3.511463, + 3.511463 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-01T15:44:00", + "2024-01-01T15:46:00" + ], + "y": [ + 3.5251356, + 3.5251356 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-01T15:47:00", + "2024-01-01T20:01:00" + ], + "y": [ + 3.5052775483326624, + 3.6117 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-01T20:01:00", + "2024-01-01T20:03:00" + ], + "y": [ + 3.6044766, + 3.6044766 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-01T20:04:00", + "2024-01-01T20:06:00" + ], + "y": [ + 3.5988878, + 3.5988878 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-01T20:07:00", + "2024-01-01T20:09:00" + ], + "y": [ + 3.6078698, + 3.6078698 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-01T20:10:00", + "2024-01-01T20:12:00" + ], + "y": [ + 3.6073708, + 3.6073708 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T11:54:00", + "2024-01-01T23:54:00" + ], + "y": [ + 3.590627032862249, + 3.6245 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T23:54:00", + "2024-01-01T23:56:00" + ], + "y": [ + 3.6317489999999997, + 3.6317489999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-01T23:57:00", + "2024-01-01T23:59:00" + ], + "y": [ + 3.6247350000000003, + 3.6247350000000003 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-02T00:00:00", + "2024-01-02T00:02:00" + ], + "y": [ + 3.6135126, + 3.6135126 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-01T20:13:00", + "2024-01-02T01:57:00" + ], + "y": [ + 3.5822959193717274, + 3.6908 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-02T00:03:00", + "2024-01-02T02:16:00" + ], + "y": [ + 3.648965844501011, + 3.706 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-02T01:57:00", + "2024-01-02T06:45:00" + ], + "y": [ + 3.678510453987717, + 3.7946 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-02T03:16:00", + "2024-01-02T09:50:00" + ], + "y": [ + 3.7902979568710906, + 3.8476 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-02T06:45:00", + "2024-01-02T09:52:00" + ], + "y": [ + 3.769382049122572, + 3.9043 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-02T09:52:00", + "2024-01-02T10:39:00" + ], + "y": [ + 3.847848673898105, + 3.7888 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-02T10:50:00", + "2024-01-02T10:52:00" + ], + "y": [ + 3.774534, + 3.774534 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-02T11:39:00", + "2024-01-02T11:41:00" + ], + "y": [ + 3.7116618, + 3.7116618 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-02T11:42:00", + "2024-01-02T11:44:00" + ], + "y": [ + 3.7124601999999998, + 3.7124601999999998 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-02T11:45:00", + "2024-01-02T13:32:00" + ], + "y": [ + 3.714191247922029, + 3.832 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-02T13:32:00", + "2024-01-02T14:25:00" + ], + "y": [ + 3.776594042050441, + 3.714 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-02T10:53:00", + "2024-01-02T14:32:00" + ], + "y": [ + 3.8077488709612943, + 3.6854 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-02T14:32:00", + "2024-01-02T14:34:00" + ], + "y": [ + 3.6927708, + 3.6927708 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-02T14:35:00", + "2024-01-02T16:11:00" + ], + "y": [ + 3.6821460507051933, + 3.5685 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-02T16:11:00", + "2024-01-02T16:13:00" + ], + "y": [ + 3.575637, + 3.575637 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-02T16:14:00", + "2024-01-02T16:16:00" + ], + "y": [ + 3.5784426, + 3.5784426 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-02T16:17:00", + "2024-01-02T16:19:00" + ], + "y": [ + 3.5874606, + 3.5874606 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-02T16:20:00", + "2024-01-02T16:22:00" + ], + "y": [ + 3.5800458, + 3.5800458 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-02T16:23:00", + "2024-01-02T16:25:00" + ], + "y": [ + 3.575136, + 3.575136 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-02T16:26:00", + "2024-01-02T21:03:00" + ], + "y": [ + 3.625084956258337, + 3.515 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-02T21:03:00", + "2024-01-03T00:10:00" + ], + "y": [ + 3.566276920178244, + 3.6202 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-02T15:25:00", + "2024-01-03T00:17:00" + ], + "y": [ + 3.5515949763405987, + 3.6624 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T01:10:00", + "2024-01-03T01:12:00" + ], + "y": [ + 3.7081014, + 3.7081014 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T01:13:00", + "2024-01-03T01:15:00" + ], + "y": [ + 3.7105062, + 3.7105062 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T00:17:00", + "2024-01-03T01:27:00" + ], + "y": [ + 3.62031914232483, + 3.7295 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T01:27:00", + "2024-01-03T01:29:00" + ], + "y": [ + 3.722041, + 3.722041 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T01:16:00", + "2024-01-03T04:18:00" + ], + "y": [ + 3.7213059709330762, + 3.78 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T05:18:00", + "2024-01-03T05:20:00" + ], + "y": [ + 3.7954758, + 3.7954758 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T01:30:00", + "2024-01-03T05:31:00" + ], + "y": [ + 3.6984677737575513, + 3.8164 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T05:21:00", + "2024-01-03T11:11:00" + ], + "y": [ + 3.8219377111662154, + 3.6995 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T05:31:00", + "2024-01-03T11:11:00" + ], + "y": [ + 3.761219598664223, + 3.6995 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T11:11:00", + "2024-01-03T11:13:00" + ], + "y": [ + 3.706899, + 3.706899 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T11:14:00", + "2024-01-03T12:01:00" + ], + "y": [ + 3.697563278898474, + 3.488 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T12:01:00", + "2024-01-03T12:08:00" + ], + "y": [ + 3.511326086794957, + 3.0304 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T12:08:00", + "2024-01-03T12:10:00" + ], + "y": [ + 3.0364608000000004, + 3.0364608000000004 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T12:11:00", + "2024-01-03T12:12:00" + ], + "y": [ + 2.756838591040775, + 2.8168 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T12:11:00", + "2024-01-03T12:13:00" + ], + "y": [ + 2.7117656, + 2.7117656 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T12:14:00", + "2024-01-03T12:16:00" + ], + "y": [ + 2.9763354, + 2.9763354 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T12:17:00", + "2024-01-03T12:24:00" + ], + "y": [ + 3.0423032, + 3.14 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T12:24:00", + "2024-01-03T12:29:00" + ], + "y": [ + 3.1124541192106325, + 3.2265 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T12:29:00", + "2024-01-03T12:32:00" + ], + "y": [ + 3.1798488195917924, + 3.1118 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T13:12:00", + "2024-01-03T13:14:00" + ], + "y": [ + 3.2071014, + 3.2071014 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T13:15:00", + "2024-01-03T13:17:00" + ], + "y": [ + 3.2073017999999998, + 3.2073017999999998 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T13:18:00", + "2024-01-03T13:20:00" + ], + "y": [ + 3.1918710000000003, + 3.1918710000000003 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T13:21:00", + "2024-01-03T13:23:00" + ], + "y": [ + 3.169326, + 3.169326 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T13:24:00", + "2024-01-03T13:26:00" + ], + "y": [ + 3.1550976, + 3.1550976 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T13:27:00", + "2024-01-03T13:29:00" + ], + "y": [ + 3.143274, + 3.143274 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T13:30:00", + "2024-01-03T13:32:00" + ], + "y": [ + 3.1573019999999996, + 3.1573019999999996 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T13:32:00", + "2024-01-03T13:34:00" + ], + "y": [ + 3.121744, + 3.121744 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T13:35:00", + "2024-01-03T13:37:00" + ], + "y": [ + 3.1620632, + 3.1620632 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T13:38:00", + "2024-01-03T13:40:00" + ], + "y": [ + 3.1618636, + 3.1618636 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T13:41:00", + "2024-01-03T14:16:00" + ], + "y": [ + 3.136780667285528, + 3.0707 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T13:33:00", + "2024-01-03T14:38:00" + ], + "y": [ + 3.165498284362336, + 3.0684 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T15:16:00", + "2024-01-03T15:18:00" + ], + "y": [ + 3.0622632, + 3.0622632 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T15:19:00", + "2024-01-03T15:59:00" + ], + "y": [ + 3.0470202015636847, + 3.1453 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T14:38:00", + "2024-01-03T16:12:00" + ], + "y": [ + 3.1131619066500495, + 3.1632 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T17:12:00", + "2024-01-03T17:14:00" + ], + "y": [ + 3.103194, + 3.103194 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T17:15:00", + "2024-01-03T17:17:00" + ], + "y": [ + 3.102192, + 3.102192 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T17:18:00", + "2024-01-03T17:20:00" + ], + "y": [ + 3.0835548, + 3.0835548 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T17:21:00", + "2024-01-03T17:23:00" + ], + "y": [ + 3.0827532, + 3.0827532 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T17:24:00", + "2024-01-03T17:26:00" + ], + "y": [ + 3.0764406, + 3.0764406 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T17:27:00", + "2024-01-03T17:29:00" + ], + "y": [ + 3.0844566, + 3.0844566 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T15:59:00", + "2024-01-03T18:55:00" + ], + "y": [ + 3.099822870684043, + 3.0467 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T19:55:00", + "2024-01-03T19:57:00" + ], + "y": [ + 3.0529818, + 3.0529818 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T19:58:00", + "2024-01-03T20:00:00" + ], + "y": [ + 3.0481914, + 3.0481914 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T20:01:00", + "2024-01-03T20:03:00" + ], + "y": [ + 3.0516843999999996, + 3.0516843999999996 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T20:04:00", + "2024-01-03T21:32:00" + ], + "y": [ + 3.047917204763151, + 3.1407 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T21:32:00", + "2024-01-03T21:34:00" + ], + "y": [ + 3.1344185999999996, + 3.1344185999999996 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T21:35:00", + "2024-01-03T21:37:00" + ], + "y": [ + 3.1337200000000003, + 3.1337200000000003 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T17:30:00", + "2024-01-03T21:47:00" + ], + "y": [ + 3.111437107001599, + 3.1598 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T22:47:00", + "2024-01-03T22:49:00" + ], + "y": [ + 3.0737352000000002, + 3.0737352000000002 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-03T21:38:00", + "2024-01-03T23:10:00" + ], + "y": [ + 3.0959792598374887, + 3.0439 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T00:10:00", + "2024-01-04T00:12:00" + ], + "y": [ + 3.0752372, + 3.0752372 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T00:13:00", + "2024-01-04T00:15:00" + ], + "y": [ + 3.0993888, + 3.0993888 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T00:16:00", + "2024-01-04T01:20:00" + ], + "y": [ + 3.0752828937406567, + 3.029 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-03T22:50:00", + "2024-01-04T01:24:00" + ], + "y": [ + 3.0993687346467014, + 2.997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T02:20:00", + "2024-01-04T02:22:00" + ], + "y": [ + 3.0792292, + 3.0792292 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T02:23:00", + "2024-01-04T02:25:00" + ], + "y": [ + 3.0695486, + 3.0695486 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-04T01:24:00", + "2024-01-04T02:37:00" + ], + "y": [ + 3.0407203214151344, + 3.0992 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-04T03:37:00", + "2024-01-04T03:39:00" + ], + "y": [ + 3.0968814, + 3.0968814 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-04T03:40:00", + "2024-01-04T03:42:00" + ], + "y": [ + 3.0994866, + 3.0994866 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-04T03:43:00", + "2024-01-04T03:45:00" + ], + "y": [ + 3.1022922, + 3.1022922 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T02:26:00", + "2024-01-04T09:56:00" + ], + "y": [ + 3.0721362911487313, + 3.1691 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T09:56:00", + "2024-01-04T10:16:00" + ], + "y": [ + 3.123278752260452, + 3.0727 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T11:16:00", + "2024-01-04T11:18:00" + ], + "y": [ + 3.0724427999999997, + 3.0724427999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T11:19:00", + "2024-01-04T11:21:00" + ], + "y": [ + 3.0896084, + 3.0896084 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T11:22:00", + "2024-01-04T11:24:00" + ], + "y": [ + 3.0968938, + 3.0968938 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T11:25:00", + "2024-01-04T11:27:00" + ], + "y": [ + 3.0966942, + 3.0966942 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T11:28:00", + "2024-01-04T11:30:00" + ], + "y": [ + 3.0941992000000003, + 3.0941992000000003 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T11:31:00", + "2024-01-04T11:33:00" + ], + "y": [ + 3.0988898000000002, + 3.0988898000000002 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T11:34:00", + "2024-01-04T11:36:00" + ], + "y": [ + 3.0954966, + 3.0954966 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T11:37:00", + "2024-01-04T11:39:00" + ], + "y": [ + 3.0969936000000002, + 3.0969936000000002 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-04T03:46:00", + "2024-01-04T15:19:00" + ], + "y": [ + 3.1417732890537553, + 3.1933 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T11:40:00", + "2024-01-04T15:27:00" + ], + "y": [ + 3.1020833999999997, + 3.1987 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T15:27:00", + "2024-01-04T15:29:00" + ], + "y": [ + 3.1923026, + 3.1923026 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T15:30:00", + "2024-01-04T15:32:00" + ], + "y": [ + 3.2147576, + 3.2147576 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T15:33:00", + "2024-01-04T15:35:00" + ], + "y": [ + 3.196095, + 3.196095 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T15:36:00", + "2024-01-04T15:38:00" + ], + "y": [ + 3.2151568, + 3.2151568 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-04T16:19:00", + "2024-01-04T16:21:00" + ], + "y": [ + 3.187863, + 3.187863 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-04T16:22:00", + "2024-01-04T16:24:00" + ], + "y": [ + 3.1715304, + 3.1715304 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-04T16:25:00", + "2024-01-04T16:27:00" + ], + "y": [ + 3.164316, + 3.164316 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-04T16:28:00", + "2024-01-04T16:30:00" + ], + "y": [ + 3.162312, + 3.162312 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-04T16:31:00", + "2024-01-04T16:33:00" + ], + "y": [ + 3.169326, + 3.169326 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-04T16:34:00", + "2024-01-04T16:36:00" + ], + "y": [ + 3.1704282, + 3.1704282 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-04T16:37:00", + "2024-01-04T16:39:00" + ], + "y": [ + 3.1750374, + 3.1750374 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-04T16:40:00", + "2024-01-04T16:42:00" + ], + "y": [ + 3.1709292000000002, + 3.1709292000000002 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-04T15:39:00", + "2024-01-05T01:47:00" + ], + "y": [ + 3.1805386984616866, + 3.131 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-04T16:43:00", + "2024-01-05T01:48:00" + ], + "y": [ + 3.209141934146169, + 3.0041 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-05T01:48:00", + "2024-01-05T01:54:00" + ], + "y": [ + 3.047923896417486, + 3.0977 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T02:47:00", + "2024-01-05T02:49:00" + ], + "y": [ + 3.078331, + 3.078331 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-05T02:54:00", + "2024-01-05T02:56:00" + ], + "y": [ + 3.0823524, + 3.0823524 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-05T02:57:00", + "2024-01-05T02:59:00" + ], + "y": [ + 3.0750378, + 3.0750378 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-05T03:00:00", + "2024-01-05T14:20:00" + ], + "y": [ + 3.099117448390942, + 2.9949 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T02:50:00", + "2024-01-05T14:35:00" + ], + "y": [ + 3.0373395558964655, + 2.9723 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T15:35:00", + "2024-01-05T15:37:00" + ], + "y": [ + 2.9643593999999998, + 2.9643593999999998 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T15:38:00", + "2024-01-05T15:40:00" + ], + "y": [ + 2.9607666, + 2.9607666 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T15:41:00", + "2024-01-05T15:43:00" + ], + "y": [ + 2.9651578, + 2.9651578 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T15:44:00", + "2024-01-05T15:46:00" + ], + "y": [ + 2.9471938, + 2.9471938 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T15:47:00", + "2024-01-05T15:49:00" + ], + "y": [ + 2.9529821999999997, + 2.9529821999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T15:50:00", + "2024-01-05T15:52:00" + ], + "y": [ + 2.9545790000000003, + 2.9545790000000003 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T15:53:00", + "2024-01-05T15:55:00" + ], + "y": [ + 2.9461958000000004, + 2.9461958000000004 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T15:56:00", + "2024-01-05T15:58:00" + ], + "y": [ + 2.9423036, + 2.9423036 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T15:59:00", + "2024-01-05T16:01:00" + ], + "y": [ + 2.9581718, + 2.9581718 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-05T14:20:00", + "2024-01-05T17:05:00" + ], + "y": [ + 3.0048936503057257, + 2.899 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T16:02:00", + "2024-01-05T17:08:00" + ], + "y": [ + 2.93908109399865, + 2.8949 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T18:08:00", + "2024-01-05T18:10:00" + ], + "y": [ + 2.9213456, + 2.9213456 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T18:11:00", + "2024-01-05T18:13:00" + ], + "y": [ + 2.920148, + 2.920148 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T18:14:00", + "2024-01-05T18:16:00" + ], + "y": [ + 2.9268346000000003, + 2.9268346000000003 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T18:17:00", + "2024-01-05T18:19:00" + ], + "y": [ + 2.9215452, + 2.9215452 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T18:20:00", + "2024-01-05T23:56:00" + ], + "y": [ + 2.885856188319984, + 2.9731 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T23:56:00", + "2024-01-05T23:58:00" + ], + "y": [ + 2.9671538, + 2.9671538 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-05T23:59:00", + "2024-01-06T01:20:00" + ], + "y": [ + 2.937996998631673, + 2.8906 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T02:20:00", + "2024-01-06T02:22:00" + ], + "y": [ + 2.8590704, + 2.8590704 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T02:23:00", + "2024-01-06T02:25:00" + ], + "y": [ + 2.8694496, + 2.8694496 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T02:26:00", + "2024-01-06T02:28:00" + ], + "y": [ + 2.8818248, + 2.8818248 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T02:29:00", + "2024-01-06T02:31:00" + ], + "y": [ + 2.8826232, + 2.8826232 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T02:32:00", + "2024-01-06T02:34:00" + ], + "y": [ + 2.8889106, + 2.8889106 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T02:35:00", + "2024-01-06T02:37:00" + ], + "y": [ + 2.8889106, + 2.8889106 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T02:38:00", + "2024-01-06T02:40:00" + ], + "y": [ + 2.8925034, + 2.8925034 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T02:41:00", + "2024-01-06T02:43:00" + ], + "y": [ + 2.8753378, + 2.8753378 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T02:44:00", + "2024-01-06T02:46:00" + ], + "y": [ + 2.8773338, + 2.8773338 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T02:47:00", + "2024-01-06T02:49:00" + ], + "y": [ + 2.8780324, + 2.8780324 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T02:50:00", + "2024-01-06T02:52:00" + ], + "y": [ + 2.8764356, + 2.8764356 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T02:53:00", + "2024-01-06T02:55:00" + ], + "y": [ + 2.8764356, + 2.8764356 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T02:56:00", + "2024-01-06T02:58:00" + ], + "y": [ + 2.8746392, + 2.8746392 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T02:59:00", + "2024-01-06T03:01:00" + ], + "y": [ + 2.8722440000000002, + 2.8722440000000002 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:02:00", + "2024-01-06T03:04:00" + ], + "y": [ + 2.8754376, + 2.8754376 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:05:00", + "2024-01-06T03:07:00" + ], + "y": [ + 2.8703478000000002, + 2.8703478000000002 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:08:00", + "2024-01-06T03:10:00" + ], + "y": [ + 2.8802280000000002, + 2.8802280000000002 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:11:00", + "2024-01-06T03:13:00" + ], + "y": [ + 2.875238, + 2.875238 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:14:00", + "2024-01-06T03:16:00" + ], + "y": [ + 2.8730424, + 2.8730424 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:17:00", + "2024-01-06T03:19:00" + ], + "y": [ + 2.8778327999999997, + 2.8778327999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:20:00", + "2024-01-06T03:22:00" + ], + "y": [ + 2.8835214, + 2.8835214 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:23:00", + "2024-01-06T03:25:00" + ], + "y": [ + 2.8835214, + 2.8835214 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:26:00", + "2024-01-06T03:28:00" + ], + "y": [ + 2.885218, + 2.885218 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:29:00", + "2024-01-06T03:31:00" + ], + "y": [ + 2.8834216, + 2.8834216 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:32:00", + "2024-01-06T03:34:00" + ], + "y": [ + 2.881226, + 2.881226 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:35:00", + "2024-01-06T03:37:00" + ], + "y": [ + 2.8854176, + 2.8854176 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:38:00", + "2024-01-06T03:40:00" + ], + "y": [ + 2.8949984, + 2.8949984 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:41:00", + "2024-01-06T03:43:00" + ], + "y": [ + 2.8851182, + 2.8851182 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:44:00", + "2024-01-06T03:46:00" + ], + "y": [ + 2.8794296000000004, + 2.8794296000000004 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-05T17:05:00", + "2024-01-06T04:40:00" + ], + "y": [ + 2.9412906946221136, + 2.8453 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T04:40:00", + "2024-01-06T04:42:00" + ], + "y": [ + 2.8509906, + 2.8509906 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T04:43:00", + "2024-01-06T04:45:00" + ], + "y": [ + 2.8537962, + 2.8537962 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T04:46:00", + "2024-01-06T04:48:00" + ], + "y": [ + 2.8328544, + 2.8328544 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T03:47:00", + "2024-01-06T05:08:00" + ], + "y": [ + 2.8363876965086563, + 2.7926 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T04:49:00", + "2024-01-06T06:50:00" + ], + "y": [ + 2.8295478000000003, + 2.735 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T06:50:00", + "2024-01-06T06:52:00" + ], + "y": [ + 2.7404699999999997, + 2.7404699999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T06:08:00", + "2024-01-06T06:55:00" + ], + "y": [ + 2.7508427166417513, + 2.7072 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T06:53:00", + "2024-01-06T06:55:00" + ], + "y": [ + 2.7547986, + 2.7547986 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T07:55:00", + "2024-01-06T07:57:00" + ], + "y": [ + 2.7580728, + 2.7580728 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T07:58:00", + "2024-01-06T08:00:00" + ], + "y": [ + 2.764959, + 2.764959 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T08:01:00", + "2024-01-06T08:03:00" + ], + "y": [ + 2.7586716, + 2.7586716 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T06:56:00", + "2024-01-06T08:12:00" + ], + "y": [ + 2.73431473680807, + 2.7775 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T09:12:00", + "2024-01-06T09:14:00" + ], + "y": [ + 2.7909708, + 2.7909708 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T09:15:00", + "2024-01-06T09:17:00" + ], + "y": [ + 2.7937763999999996, + 2.7937763999999996 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T09:18:00", + "2024-01-06T09:20:00" + ], + "y": [ + 2.7953796, + 2.7953796 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T09:21:00", + "2024-01-06T09:23:00" + ], + "y": [ + 2.7947784, + 2.7947784 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T09:24:00", + "2024-01-06T09:26:00" + ], + "y": [ + 2.7847584, + 2.7847584 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T09:27:00", + "2024-01-06T09:29:00" + ], + "y": [ + 2.7889668, + 2.7889668 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T08:04:00", + "2024-01-06T16:17:00" + ], + "y": [ + 2.751591281312793, + 2.8344 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T09:30:00", + "2024-01-06T21:30:00" + ], + "y": [ + 2.8161919907080373, + 2.7933 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T21:30:00", + "2024-01-06T21:32:00" + ], + "y": [ + 2.7988866, + 2.7988866 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-06T16:17:00", + "2024-01-06T23:04:00" + ], + "y": [ + 2.7934180983266623, + 2.7484 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T00:04:00", + "2024-01-07T00:06:00" + ], + "y": [ + 2.7582723999999996, + 2.7582723999999996 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T00:07:00", + "2024-01-07T00:09:00" + ], + "y": [ + 2.7674540000000003, + 2.7674540000000003 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T00:10:00", + "2024-01-07T00:12:00" + ], + "y": [ + 2.7662563999999996, + 2.7662563999999996 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T00:13:00", + "2024-01-07T00:15:00" + ], + "y": [ + 2.7706475999999998, + 2.7706475999999998 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T00:16:00", + "2024-01-07T00:18:00" + ], + "y": [ + 2.7741406, + 2.7741406 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T00:19:00", + "2024-01-07T00:21:00" + ], + "y": [ + 2.7871145999999998, + 2.7871145999999998 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T00:22:00", + "2024-01-07T00:24:00" + ], + "y": [ + 2.7894099999999997, + 2.7894099999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T00:25:00", + "2024-01-07T00:27:00" + ], + "y": [ + 2.7905078, + 2.7905078 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T00:28:00", + "2024-01-07T00:30:00" + ], + "y": [ + 2.7797294, + 2.7797294 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T00:31:00", + "2024-01-07T00:33:00" + ], + "y": [ + 2.7866155999999997, + 2.7866155999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T00:34:00", + "2024-01-07T00:36:00" + ], + "y": [ + 2.7863162, + 2.7863162 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T00:37:00", + "2024-01-07T00:39:00" + ], + "y": [ + 2.793901, + 2.793901 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-06T21:33:00", + "2024-01-07T09:32:00" + ], + "y": [ + 2.8216910305243346, + 2.736 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T00:40:00", + "2024-01-07T09:33:00" + ], + "y": [ + 2.7711448662415004, + 2.7262 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T09:32:00", + "2024-01-07T09:34:00" + ], + "y": [ + 2.7414720000000004, + 2.7414720000000004 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T10:33:00", + "2024-01-07T10:35:00" + ], + "y": [ + 2.7446996, + 2.7446996 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T10:36:00", + "2024-01-07T10:38:00" + ], + "y": [ + 2.7451986, + 2.7451986 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T10:39:00", + "2024-01-07T10:41:00" + ], + "y": [ + 2.751985, + 2.751985 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T10:42:00", + "2024-01-07T10:44:00" + ], + "y": [ + 2.7513862, + 2.7513862 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T10:45:00", + "2024-01-07T10:47:00" + ], + "y": [ + 2.7488912, + 2.7488912 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T10:48:00", + "2024-01-07T10:50:00" + ], + "y": [ + 2.7471946, + 2.7471946 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T10:51:00", + "2024-01-07T10:53:00" + ], + "y": [ + 2.7419051999999997, + 2.7419051999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T10:54:00", + "2024-01-07T10:56:00" + ], + "y": [ + 2.7502883999999996, + 2.7502883999999996 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T10:57:00", + "2024-01-07T10:59:00" + ], + "y": [ + 2.744999, + 2.744999 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T11:00:00", + "2024-01-07T11:02:00" + ], + "y": [ + 2.748991, + 2.748991 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T11:03:00", + "2024-01-07T11:05:00" + ], + "y": [ + 2.7447994000000002, + 2.7447994000000002 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T09:35:00", + "2024-01-07T16:48:00" + ], + "y": [ + 2.7679990593542776, + 2.678 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T11:06:00", + "2024-01-07T16:49:00" + ], + "y": [ + 2.71605311077422, + 2.6731 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T16:48:00", + "2024-01-07T16:50:00" + ], + "y": [ + 2.683356, + 2.683356 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T16:51:00", + "2024-01-07T16:53:00" + ], + "y": [ + 2.6844582, + 2.6844582 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T17:49:00", + "2024-01-07T17:51:00" + ], + "y": [ + 2.7201488, + 2.7201488 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T17:52:00", + "2024-01-07T17:54:00" + ], + "y": [ + 2.7127636, + 2.7127636 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T17:55:00", + "2024-01-07T17:57:00" + ], + "y": [ + 2.7191508, + 2.7191508 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T17:58:00", + "2024-01-07T18:00:00" + ], + "y": [ + 2.7199492, + 2.7199492 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T18:01:00", + "2024-01-07T18:03:00" + ], + "y": [ + 2.7219452, + 2.7219452 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T18:04:00", + "2024-01-07T18:06:00" + ], + "y": [ + 2.7277336, + 2.7277336 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T18:07:00", + "2024-01-07T18:09:00" + ], + "y": [ + 2.7286318, + 2.7286318 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T18:10:00", + "2024-01-07T18:12:00" + ], + "y": [ + 2.7308274, + 2.7308274 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T18:13:00", + "2024-01-07T18:15:00" + ], + "y": [ + 2.72953, + 2.72953 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T18:16:00", + "2024-01-07T18:18:00" + ], + "y": [ + 2.7321248000000002, + 2.7321248000000002 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T18:19:00", + "2024-01-07T18:21:00" + ], + "y": [ + 2.7308274, + 2.7308274 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T18:22:00", + "2024-01-07T18:24:00" + ], + "y": [ + 2.7338214, + 2.7338214 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T16:54:00", + "2024-01-07T18:50:00" + ], + "y": [ + 2.7146317290551663, + 2.7582 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T19:50:00", + "2024-01-07T19:52:00" + ], + "y": [ + 2.758005, + 2.758005 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T19:53:00", + "2024-01-07T19:55:00" + ], + "y": [ + 2.7613116, + 2.7613116 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T19:56:00", + "2024-01-07T19:58:00" + ], + "y": [ + 2.7588065999999998, + 2.7588065999999998 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T19:59:00", + "2024-01-07T20:01:00" + ], + "y": [ + 2.7588065999999998, + 2.7588065999999998 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:02:00", + "2024-01-07T20:04:00" + ], + "y": [ + 2.7553997999999997, + 2.7553997999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:05:00", + "2024-01-07T20:07:00" + ], + "y": [ + 2.7589068, + 2.7589068 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:08:00", + "2024-01-07T20:10:00" + ], + "y": [ + 2.766021, + 2.766021 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:11:00", + "2024-01-07T20:13:00" + ], + "y": [ + 2.7702294, + 2.7702294 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:14:00", + "2024-01-07T20:16:00" + ], + "y": [ + 2.7697284000000004, + 2.7697284000000004 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:17:00", + "2024-01-07T20:19:00" + ], + "y": [ + 2.7604098, + 2.7604098 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:20:00", + "2024-01-07T20:22:00" + ], + "y": [ + 2.7563016, + 2.7563016 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:23:00", + "2024-01-07T20:25:00" + ], + "y": [ + 2.7615119999999997, + 2.7615119999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:26:00", + "2024-01-07T20:28:00" + ], + "y": [ + 2.7599088, + 2.7599088 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:29:00", + "2024-01-07T20:31:00" + ], + "y": [ + 2.76051, + 2.76051 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:32:00", + "2024-01-07T20:34:00" + ], + "y": [ + 2.76051, + 2.76051 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:35:00", + "2024-01-07T20:37:00" + ], + "y": [ + 2.7571032, + 2.7571032 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:38:00", + "2024-01-07T20:40:00" + ], + "y": [ + 2.7458808, + 2.7458808 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:41:00", + "2024-01-07T20:43:00" + ], + "y": [ + 2.7458808, + 2.7458808 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:44:00", + "2024-01-07T20:46:00" + ], + "y": [ + 2.7451794, + 2.7451794 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:47:00", + "2024-01-07T20:49:00" + ], + "y": [ + 2.7452796, + 2.7452796 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:50:00", + "2024-01-07T20:52:00" + ], + "y": [ + 2.7468828, + 2.7468828 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:53:00", + "2024-01-07T20:55:00" + ], + "y": [ + 2.7443778, + 2.7443778 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:56:00", + "2024-01-07T20:58:00" + ], + "y": [ + 2.7443778, + 2.7443778 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T20:59:00", + "2024-01-07T21:01:00" + ], + "y": [ + 2.7404699999999997, + 2.7404699999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:02:00", + "2024-01-07T21:04:00" + ], + "y": [ + 2.7389669999999997, + 2.7389669999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:05:00", + "2024-01-07T21:07:00" + ], + "y": [ + 2.7389669999999997, + 2.7389669999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:08:00", + "2024-01-07T21:10:00" + ], + "y": [ + 2.7435762, + 2.7435762 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:11:00", + "2024-01-07T21:13:00" + ], + "y": [ + 2.7482856, + 2.7482856 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:14:00", + "2024-01-07T21:16:00" + ], + "y": [ + 2.7455802, + 2.7455802 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:17:00", + "2024-01-07T21:19:00" + ], + "y": [ + 2.7465821999999998, + 2.7465821999999998 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:20:00", + "2024-01-07T21:22:00" + ], + "y": [ + 2.7402696, + 2.7402696 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:23:00", + "2024-01-07T21:25:00" + ], + "y": [ + 2.7392676, + 2.7392676 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:26:00", + "2024-01-07T21:28:00" + ], + "y": [ + 2.7360612, + 2.7360612 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:29:00", + "2024-01-07T21:31:00" + ], + "y": [ + 2.7367626, + 2.7367626 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:32:00", + "2024-01-07T21:34:00" + ], + "y": [ + 2.7324539999999997, + 2.7324539999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:35:00", + "2024-01-07T21:37:00" + ], + "y": [ + 2.7289470000000002, + 2.7289470000000002 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:38:00", + "2024-01-07T21:40:00" + ], + "y": [ + 2.7213318, + 2.7213318 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:41:00", + "2024-01-07T21:43:00" + ], + "y": [ + 2.7133158, + 2.7133158 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:44:00", + "2024-01-07T21:46:00" + ], + "y": [ + 2.7181254, + 2.7181254 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:47:00", + "2024-01-07T21:49:00" + ], + "y": [ + 2.708907, + 2.708907 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:50:00", + "2024-01-07T21:52:00" + ], + "y": [ + 2.7135162, + 2.7135162 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:53:00", + "2024-01-07T21:55:00" + ], + "y": [ + 2.7132156000000003, + 2.7132156000000003 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:56:00", + "2024-01-07T21:58:00" + ], + "y": [ + 2.7157206, + 2.7157206 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T21:59:00", + "2024-01-07T22:01:00" + ], + "y": [ + 2.71542, + 2.71542 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T22:02:00", + "2024-01-07T22:04:00" + ], + "y": [ + 2.706402, + 2.706402 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T18:25:00", + "2024-01-07T22:16:00" + ], + "y": [ + 2.701269992133626, + 2.6568 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T22:05:00", + "2024-01-07T22:35:00" + ], + "y": [ + 2.6947788, + 2.6107 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-07T22:35:00", + "2024-01-08T01:43:00" + ], + "y": [ + 2.6409223393525063, + 2.5472 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-07T23:16:00", + "2024-01-08T01:43:00" + ], + "y": [ + 2.5974924992766555, + 2.5472 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T01:43:00", + "2024-01-08T02:37:00" + ], + "y": [ + 2.5766872420418676, + 2.498 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T02:43:00", + "2024-01-08T02:45:00" + ], + "y": [ + 2.506477, + 2.506477 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T02:46:00", + "2024-01-08T02:48:00" + ], + "y": [ + 2.4837226, + 2.4837226 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T02:49:00", + "2024-01-08T03:24:00" + ], + "y": [ + 2.475088276932536, + 2.435 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T02:37:00", + "2024-01-08T03:25:00" + ], + "y": [ + 2.50633554992277, + 2.4201 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T03:25:00", + "2024-01-08T03:48:00" + ], + "y": [ + 2.4554044877733623, + 2.497 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T04:24:00", + "2024-01-08T04:26:00" + ], + "y": [ + 2.5033832, + 2.5033832 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T04:27:00", + "2024-01-08T04:29:00" + ], + "y": [ + 2.5137624, + 2.5137624 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T04:30:00", + "2024-01-08T04:32:00" + ], + "y": [ + 2.5246406, + 2.5246406 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T04:33:00", + "2024-01-08T04:35:00" + ], + "y": [ + 2.5250398, + 2.5250398 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T04:36:00", + "2024-01-08T04:38:00" + ], + "y": [ + 2.5337224000000003, + 2.5337224000000003 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T04:39:00", + "2024-01-08T04:41:00" + ], + "y": [ + 2.5372154, + 2.5372154 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T04:42:00", + "2024-01-08T04:44:00" + ], + "y": [ + 2.5361176, + 2.5361176 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T04:45:00", + "2024-01-08T04:47:00" + ], + "y": [ + 2.5446006, + 2.5446006 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T04:48:00", + "2024-01-08T04:50:00" + ], + "y": [ + 2.5539978000000003, + 2.5539978000000003 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T04:51:00", + "2024-01-08T04:53:00" + ], + "y": [ + 2.5456811999999998, + 2.5456811999999998 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T04:54:00", + "2024-01-08T04:56:00" + ], + "y": [ + 2.5468835999999997, + 2.5468835999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T04:48:00", + "2024-01-08T08:21:00" + ], + "y": [ + 2.5404127279097466, + 2.6193 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T04:57:00", + "2024-01-08T08:21:00" + ], + "y": [ + 2.5790827684475377, + 2.6193 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T09:21:00", + "2024-01-08T09:23:00" + ], + "y": [ + 2.5938773999999998, + 2.5938773999999998 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T09:24:00", + "2024-01-08T09:26:00" + ], + "y": [ + 2.5878654, + 2.5878654 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T09:27:00", + "2024-01-08T09:29:00" + ], + "y": [ + 2.597685, + 2.597685 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T09:30:00", + "2024-01-08T09:32:00" + ], + "y": [ + 2.599188, + 2.599188 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T09:33:00", + "2024-01-08T09:35:00" + ], + "y": [ + 2.5849596, + 2.5849596 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T09:36:00", + "2024-01-08T12:01:00" + ], + "y": [ + 2.611042291345295, + 2.6533 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T08:21:00", + "2024-01-08T12:03:00" + ], + "y": [ + 2.581428177020543, + 2.6591 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T12:03:00", + "2024-01-08T12:05:00" + ], + "y": [ + 2.6537818, + 2.6537818 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T12:06:00", + "2024-01-08T12:08:00" + ], + "y": [ + 2.6432029999999997, + 2.6432029999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T12:09:00", + "2024-01-08T12:11:00" + ], + "y": [ + 2.6712468, + 2.6712468 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T12:12:00", + "2024-01-08T12:14:00" + ], + "y": [ + 2.6783326, + 2.6783326 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T13:01:00", + "2024-01-08T13:03:00" + ], + "y": [ + 2.688867, + 2.688867 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T13:04:00", + "2024-01-08T13:06:00" + ], + "y": [ + 2.6905704, + 2.6905704 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T13:07:00", + "2024-01-08T13:09:00" + ], + "y": [ + 2.6820534, + 2.6820534 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T12:15:00", + "2024-01-08T15:52:00" + ], + "y": [ + 2.668383981212223, + 2.7631 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T13:10:00", + "2024-01-08T15:52:00" + ], + "y": [ + 2.714428811449466, + 2.7631 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T16:52:00", + "2024-01-08T16:54:00" + ], + "y": [ + 2.7263417999999997, + 2.7263417999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T16:55:00", + "2024-01-08T16:57:00" + ], + "y": [ + 2.7245382, + 2.7245382 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T16:58:00", + "2024-01-08T17:00:00" + ], + "y": [ + 2.7260412, + 2.7260412 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T17:01:00", + "2024-01-08T17:03:00" + ], + "y": [ + 2.7217325999999997, + 2.7217325999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T17:04:00", + "2024-01-08T17:06:00" + ], + "y": [ + 2.7319530000000003, + 2.7319530000000003 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T17:07:00", + "2024-01-08T17:09:00" + ], + "y": [ + 2.7390672, + 2.7390672 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T17:10:00", + "2024-01-08T17:12:00" + ], + "y": [ + 2.7377645999999998, + 2.7377645999999998 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T17:13:00", + "2024-01-08T17:15:00" + ], + "y": [ + 2.7472836, + 2.7472836 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T17:16:00", + "2024-01-08T17:18:00" + ], + "y": [ + 2.7321534, + 2.7321534 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T17:19:00", + "2024-01-08T17:21:00" + ], + "y": [ + 2.7371634, + 2.7371634 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T17:22:00", + "2024-01-08T18:32:00" + ], + "y": [ + 2.7646509188602266, + 2.8107 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T15:52:00", + "2024-01-08T18:35:00" + ], + "y": [ + 2.731352070270243, + 2.8183 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T18:35:00", + "2024-01-08T18:37:00" + ], + "y": [ + 2.8126634, + 2.8126634 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T19:32:00", + "2024-01-08T19:34:00" + ], + "y": [ + 2.8457802, + 2.8457802 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T19:35:00", + "2024-01-08T19:37:00" + ], + "y": [ + 2.8445778, + 2.8445778 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T19:38:00", + "2024-01-08T19:40:00" + ], + "y": [ + 2.8512912, + 2.8512912 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T19:41:00", + "2024-01-08T19:43:00" + ], + "y": [ + 2.8409706000000003, + 2.8409706000000003 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-08T19:44:00", + "2024-01-09T00:28:00" + ], + "y": [ + 2.8632536269606677, + 2.7714 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-08T18:38:00", + "2024-01-09T04:19:00" + ], + "y": [ + 2.782281482284082, + 2.734 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T05:19:00", + "2024-01-09T05:21:00" + ], + "y": [ + 2.7588712, + 2.7588712 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-09T00:28:00", + "2024-01-09T09:15:00" + ], + "y": [ + 2.780647855506791, + 2.686 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T05:22:00", + "2024-01-09T09:20:00" + ], + "y": [ + 2.7263027396983652, + 2.6789 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T10:20:00", + "2024-01-09T10:22:00" + ], + "y": [ + 2.6929034, + 2.6929034 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T10:23:00", + "2024-01-09T10:25:00" + ], + "y": [ + 2.6977936, + 2.6977936 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T10:26:00", + "2024-01-09T10:28:00" + ], + "y": [ + 2.7002886000000004, + 2.7002886000000004 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T10:29:00", + "2024-01-09T10:31:00" + ], + "y": [ + 2.6945002, + 2.6945002 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T10:32:00", + "2024-01-09T10:34:00" + ], + "y": [ + 2.694101, + 2.694101 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T10:35:00", + "2024-01-09T10:37:00" + ], + "y": [ + 2.694101, + 2.694101 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T10:38:00", + "2024-01-09T10:40:00" + ], + "y": [ + 2.6920052, + 2.6920052 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T10:41:00", + "2024-01-09T10:43:00" + ], + "y": [ + 2.6990909999999997, + 2.6990909999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T10:44:00", + "2024-01-09T10:46:00" + ], + "y": [ + 2.696596, + 2.696596 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T10:47:00", + "2024-01-09T10:49:00" + ], + "y": [ + 2.688612, + 2.688612 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T10:50:00", + "2024-01-09T10:52:00" + ], + "y": [ + 2.6818256, + 2.6818256 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T10:53:00", + "2024-01-09T10:55:00" + ], + "y": [ + 2.6824244000000004, + 2.6824244000000004 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T10:56:00", + "2024-01-09T10:58:00" + ], + "y": [ + 2.6799294, + 2.6799294 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T10:59:00", + "2024-01-09T11:01:00" + ], + "y": [ + 2.680628, + 2.680628 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T11:02:00", + "2024-01-09T11:04:00" + ], + "y": [ + 2.6880132, + 2.6880132 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T11:05:00", + "2024-01-09T11:07:00" + ], + "y": [ + 2.6887118, + 2.6887118 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T11:08:00", + "2024-01-09T11:10:00" + ], + "y": [ + 2.6867158, + 2.6867158 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T11:11:00", + "2024-01-09T11:13:00" + ], + "y": [ + 2.6867158, + 2.6867158 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T11:14:00", + "2024-01-09T11:16:00" + ], + "y": [ + 2.6867158, + 2.6867158 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T11:17:00", + "2024-01-09T11:19:00" + ], + "y": [ + 2.696097, + 2.696097 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T11:20:00", + "2024-01-09T11:22:00" + ], + "y": [ + 2.6968954000000003, + 2.6968954000000003 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T11:23:00", + "2024-01-09T11:25:00" + ], + "y": [ + 2.7057776, + 2.7057776 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T11:26:00", + "2024-01-09T11:28:00" + ], + "y": [ + 2.7073744, + 2.7073744 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T11:29:00", + "2024-01-09T11:31:00" + ], + "y": [ + 2.7066757999999997, + 2.7066757999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T11:32:00", + "2024-01-09T11:34:00" + ], + "y": [ + 2.7066757999999997, + 2.7066757999999997 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-09T09:15:00", + "2024-01-09T12:56:00" + ], + "y": [ + 2.6949628851451397, + 2.5736 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T11:35:00", + "2024-01-09T12:56:00" + ], + "y": [ + 2.6686485770000483, + 2.5736 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-09T12:56:00", + "2024-01-09T13:17:00" + ], + "y": [ + 2.6111437501481447, + 2.6521 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T13:56:00", + "2024-01-09T13:58:00" + ], + "y": [ + 2.671646, + 2.671646 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T13:59:00", + "2024-01-09T14:01:00" + ], + "y": [ + 2.6762368, + 2.6762368 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-09T14:17:00", + "2024-01-09T14:19:00" + ], + "y": [ + 2.6509914, + 2.6509914 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-09T14:20:00", + "2024-01-09T14:22:00" + ], + "y": [ + 2.659809, + 2.659809 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-09T14:23:00", + "2024-01-09T14:25:00" + ], + "y": [ + 2.6570034, + 2.6570034 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-09T14:26:00", + "2024-01-09T14:28:00" + ], + "y": [ + 2.6514924, + 2.6514924 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-09T14:29:00", + "2024-01-09T14:31:00" + ], + "y": [ + 2.6554002000000003, + 2.6554002000000003 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T14:02:00", + "2024-01-09T15:01:00" + ], + "y": [ + 2.6520914841225824, + 2.6007 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T16:01:00", + "2024-01-09T16:03:00" + ], + "y": [ + 2.6155584, + 2.6155584 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-09T14:32:00", + "2024-01-09T19:27:00" + ], + "y": [ + 2.638274350889481, + 2.5529 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-09T19:27:00", + "2024-01-09T19:29:00" + ], + "y": [ + 2.5580058, + 2.5580058 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T16:04:00", + "2024-01-09T19:35:00" + ], + "y": [ + 2.582413718263249, + 2.5434 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-09T19:30:00", + "2024-01-09T20:13:00" + ], + "y": [ + 2.5602101999999998, + 2.4761 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-09T20:13:00", + "2024-01-09T20:15:00" + ], + "y": [ + 2.4810522, + 2.4810522 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T20:35:00", + "2024-01-09T20:37:00" + ], + "y": [ + 2.39021, + 2.39021 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T20:38:00", + "2024-01-09T20:40:00" + ], + "y": [ + 2.3886132, + 2.3886132 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T20:41:00", + "2024-01-09T20:43:00" + ], + "y": [ + 2.3963976, + 2.3963976 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T20:44:00", + "2024-01-09T20:46:00" + ], + "y": [ + 2.396697, + 2.396697 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T20:47:00", + "2024-01-09T21:12:00" + ], + "y": [ + 2.385341568164769, + 2.4622 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-09T20:16:00", + "2024-01-09T21:14:00" + ], + "y": [ + 2.429938328258007, + 2.4793 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "blue", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T21:12:00", + "2024-01-09T21:14:00" + ], + "y": [ + 2.4572756, + 2.4572756 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T21:15:00", + "2024-01-09T22:29:00" + ], + "y": [ + 2.4254343899033426, + 2.4991 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "red", + "width": 3 + }, + "mode": "lines", + "name": "Sell Executor", + "x": [ + "2024-01-09T22:14:00", + "2024-01-10T00:00:00" + ], + "y": [ + 2.4881716389034567, + 2.4976 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "green", + "width": 3 + }, + "mode": "lines", + "name": "Buy Executor", + "x": [ + "2024-01-09T22:29:00", + "2024-01-10T00:00:00" + ], + "y": [ + 2.47038542174093, + 2.4976 + ], + "type": "scatter", + "xaxis": "x", + "yaxis": "y" + }, + { + "line": { + "color": "gold", + "dash": "dash", + "width": 2 + }, + "mode": "lines", + "name": "Cumulative PNL", + "x": [ + "2024-01-01T00:02:00", + "2024-01-01T01:25:00", + "2024-01-01T01:26:00", + "2024-01-01T02:27:00", + "2024-01-01T02:30:00", + "2024-01-01T02:33:00", + "2024-01-01T02:36:00", + "2024-01-01T02:39:00", + "2024-01-01T02:41:00", + "2024-01-01T02:42:00", + "2024-01-01T02:45:00", + "2024-01-01T02:48:00", + "2024-01-01T11:42:00", + "2024-01-01T11:44:00", + "2024-01-01T11:47:00", + "2024-01-01T11:50:00", + "2024-01-01T11:53:00", + "2024-01-01T15:41:00", + "2024-01-01T15:43:00", + "2024-01-01T15:46:00", + "2024-01-01T20:01:00", + "2024-01-01T20:03:00", + "2024-01-01T20:06:00", + "2024-01-01T20:09:00", + "2024-01-01T20:12:00", + "2024-01-01T23:54:00", + "2024-01-01T23:56:00", + "2024-01-01T23:59:00", + "2024-01-02T00:02:00", + "2024-01-02T01:57:00", + "2024-01-02T02:16:00", + "2024-01-02T06:45:00", + "2024-01-02T09:50:00", + "2024-01-02T09:52:00", + "2024-01-02T10:39:00", + "2024-01-02T10:52:00", + "2024-01-02T11:41:00", + "2024-01-02T11:44:00", + "2024-01-02T13:32:00", + "2024-01-02T14:25:00", + "2024-01-02T14:32:00", + "2024-01-02T14:34:00", + "2024-01-02T16:11:00", + "2024-01-02T16:13:00", + "2024-01-02T16:16:00", + "2024-01-02T16:19:00", + "2024-01-02T16:22:00", + "2024-01-02T16:25:00", + "2024-01-02T21:03:00", + "2024-01-03T00:10:00", + "2024-01-03T00:17:00", + "2024-01-03T01:12:00", + "2024-01-03T01:15:00", + "2024-01-03T01:27:00", + "2024-01-03T01:29:00", + "2024-01-03T04:18:00", + "2024-01-03T05:20:00", + "2024-01-03T05:31:00", + "2024-01-03T11:11:00", + "2024-01-03T11:11:00", + "2024-01-03T11:13:00", + "2024-01-03T12:01:00", + "2024-01-03T12:08:00", + "2024-01-03T12:10:00", + "2024-01-03T12:12:00", + "2024-01-03T12:13:00", + "2024-01-03T12:16:00", + "2024-01-03T12:24:00", + "2024-01-03T12:29:00", + "2024-01-03T12:32:00", + "2024-01-03T13:14:00", + "2024-01-03T13:17:00", + "2024-01-03T13:20:00", + "2024-01-03T13:23:00", + "2024-01-03T13:26:00", + "2024-01-03T13:29:00", + "2024-01-03T13:32:00", + "2024-01-03T13:34:00", + "2024-01-03T13:37:00", + "2024-01-03T13:40:00", + "2024-01-03T14:16:00", + "2024-01-03T14:38:00", + "2024-01-03T15:18:00", + "2024-01-03T15:59:00", + "2024-01-03T16:12:00", + "2024-01-03T17:14:00", + "2024-01-03T17:17:00", + "2024-01-03T17:20:00", + "2024-01-03T17:23:00", + "2024-01-03T17:26:00", + "2024-01-03T17:29:00", + "2024-01-03T18:55:00", + "2024-01-03T19:57:00", + "2024-01-03T20:00:00", + "2024-01-03T20:03:00", + "2024-01-03T21:32:00", + "2024-01-03T21:34:00", + "2024-01-03T21:37:00", + "2024-01-03T21:47:00", + "2024-01-03T22:49:00", + "2024-01-03T23:10:00", + "2024-01-04T00:12:00", + "2024-01-04T00:15:00", + "2024-01-04T01:20:00", + "2024-01-04T01:24:00", + "2024-01-04T02:22:00", + "2024-01-04T02:25:00", + "2024-01-04T02:37:00", + "2024-01-04T03:39:00", + "2024-01-04T03:42:00", + "2024-01-04T03:45:00", + "2024-01-04T09:56:00", + "2024-01-04T10:16:00", + "2024-01-04T11:18:00", + "2024-01-04T11:21:00", + "2024-01-04T11:24:00", + "2024-01-04T11:27:00", + "2024-01-04T11:30:00", + "2024-01-04T11:33:00", + "2024-01-04T11:36:00", + "2024-01-04T11:39:00", + "2024-01-04T15:19:00", + "2024-01-04T15:27:00", + "2024-01-04T15:29:00", + "2024-01-04T15:32:00", + "2024-01-04T15:35:00", + "2024-01-04T15:38:00", + "2024-01-04T16:21:00", + "2024-01-04T16:24:00", + "2024-01-04T16:27:00", + "2024-01-04T16:30:00", + "2024-01-04T16:33:00", + "2024-01-04T16:36:00", + "2024-01-04T16:39:00", + "2024-01-04T16:42:00", + "2024-01-05T01:47:00", + "2024-01-05T01:48:00", + "2024-01-05T01:54:00", + "2024-01-05T02:49:00", + "2024-01-05T02:56:00", + "2024-01-05T02:59:00", + "2024-01-05T14:20:00", + "2024-01-05T14:35:00", + "2024-01-05T15:37:00", + "2024-01-05T15:40:00", + "2024-01-05T15:43:00", + "2024-01-05T15:46:00", + "2024-01-05T15:49:00", + "2024-01-05T15:52:00", + "2024-01-05T15:55:00", + "2024-01-05T15:58:00", + "2024-01-05T16:01:00", + "2024-01-05T17:05:00", + "2024-01-05T17:08:00", + "2024-01-05T18:10:00", + "2024-01-05T18:13:00", + "2024-01-05T18:16:00", + "2024-01-05T18:19:00", + "2024-01-05T23:56:00", + "2024-01-05T23:58:00", + "2024-01-06T01:20:00", + "2024-01-06T02:22:00", + "2024-01-06T02:25:00", + "2024-01-06T02:28:00", + "2024-01-06T02:31:00", + "2024-01-06T02:34:00", + "2024-01-06T02:37:00", + "2024-01-06T02:40:00", + "2024-01-06T02:43:00", + "2024-01-06T02:46:00", + "2024-01-06T02:49:00", + "2024-01-06T02:52:00", + "2024-01-06T02:55:00", + "2024-01-06T02:58:00", + "2024-01-06T03:01:00", + "2024-01-06T03:04:00", + "2024-01-06T03:07:00", + "2024-01-06T03:10:00", + "2024-01-06T03:13:00", + "2024-01-06T03:16:00", + "2024-01-06T03:19:00", + "2024-01-06T03:22:00", + "2024-01-06T03:25:00", + "2024-01-06T03:28:00", + "2024-01-06T03:31:00", + "2024-01-06T03:34:00", + "2024-01-06T03:37:00", + "2024-01-06T03:40:00", + "2024-01-06T03:43:00", + "2024-01-06T03:46:00", + "2024-01-06T04:40:00", + "2024-01-06T04:42:00", + "2024-01-06T04:45:00", + "2024-01-06T04:48:00", + "2024-01-06T05:08:00", + "2024-01-06T06:50:00", + "2024-01-06T06:52:00", + "2024-01-06T06:55:00", + "2024-01-06T06:55:00", + "2024-01-06T07:57:00", + "2024-01-06T08:00:00", + "2024-01-06T08:03:00", + "2024-01-06T08:12:00", + "2024-01-06T09:14:00", + "2024-01-06T09:17:00", + "2024-01-06T09:20:00", + "2024-01-06T09:23:00", + "2024-01-06T09:26:00", + "2024-01-06T09:29:00", + "2024-01-06T16:17:00", + "2024-01-06T21:30:00", + "2024-01-06T21:32:00", + "2024-01-06T23:04:00", + "2024-01-07T00:06:00", + "2024-01-07T00:09:00", + "2024-01-07T00:12:00", + "2024-01-07T00:15:00", + "2024-01-07T00:18:00", + "2024-01-07T00:21:00", + "2024-01-07T00:24:00", + "2024-01-07T00:27:00", + "2024-01-07T00:30:00", + "2024-01-07T00:33:00", + "2024-01-07T00:36:00", + "2024-01-07T00:39:00", + "2024-01-07T09:32:00", + "2024-01-07T09:33:00", + "2024-01-07T09:34:00", + "2024-01-07T10:35:00", + "2024-01-07T10:38:00", + "2024-01-07T10:41:00", + "2024-01-07T10:44:00", + "2024-01-07T10:47:00", + "2024-01-07T10:50:00", + "2024-01-07T10:53:00", + "2024-01-07T10:56:00", + "2024-01-07T10:59:00", + "2024-01-07T11:02:00", + "2024-01-07T11:05:00", + "2024-01-07T16:48:00", + "2024-01-07T16:49:00", + "2024-01-07T16:50:00", + "2024-01-07T16:53:00", + "2024-01-07T17:51:00", + "2024-01-07T17:54:00", + "2024-01-07T17:57:00", + "2024-01-07T18:00:00", + "2024-01-07T18:03:00", + "2024-01-07T18:06:00", + "2024-01-07T18:09:00", + "2024-01-07T18:12:00", + "2024-01-07T18:15:00", + "2024-01-07T18:18:00", + "2024-01-07T18:21:00", + "2024-01-07T18:24:00", + "2024-01-07T18:50:00", + "2024-01-07T19:52:00", + "2024-01-07T19:55:00", + "2024-01-07T19:58:00", + "2024-01-07T20:01:00", + "2024-01-07T20:04:00", + "2024-01-07T20:07:00", + "2024-01-07T20:10:00", + "2024-01-07T20:13:00", + "2024-01-07T20:16:00", + "2024-01-07T20:19:00", + "2024-01-07T20:22:00", + "2024-01-07T20:25:00", + "2024-01-07T20:28:00", + "2024-01-07T20:31:00", + "2024-01-07T20:34:00", + "2024-01-07T20:37:00", + "2024-01-07T20:40:00", + "2024-01-07T20:43:00", + "2024-01-07T20:46:00", + "2024-01-07T20:49:00", + "2024-01-07T20:52:00", + "2024-01-07T20:55:00", + "2024-01-07T20:58:00", + "2024-01-07T21:01:00", + "2024-01-07T21:04:00", + "2024-01-07T21:07:00", + "2024-01-07T21:10:00", + "2024-01-07T21:13:00", + "2024-01-07T21:16:00", + "2024-01-07T21:19:00", + "2024-01-07T21:22:00", + "2024-01-07T21:25:00", + "2024-01-07T21:28:00", + "2024-01-07T21:31:00", + "2024-01-07T21:34:00", + "2024-01-07T21:37:00", + "2024-01-07T21:40:00", + "2024-01-07T21:43:00", + "2024-01-07T21:46:00", + "2024-01-07T21:49:00", + "2024-01-07T21:52:00", + "2024-01-07T21:55:00", + "2024-01-07T21:58:00", + "2024-01-07T22:01:00", + "2024-01-07T22:04:00", + "2024-01-07T22:16:00", + "2024-01-07T22:35:00", + "2024-01-08T01:43:00", + "2024-01-08T01:43:00", + "2024-01-08T02:37:00", + "2024-01-08T02:45:00", + "2024-01-08T02:48:00", + "2024-01-08T03:24:00", + "2024-01-08T03:25:00", + "2024-01-08T03:48:00", + "2024-01-08T04:26:00", + "2024-01-08T04:29:00", + "2024-01-08T04:32:00", + "2024-01-08T04:35:00", + "2024-01-08T04:38:00", + "2024-01-08T04:41:00", + "2024-01-08T04:44:00", + "2024-01-08T04:47:00", + "2024-01-08T04:50:00", + "2024-01-08T04:53:00", + "2024-01-08T04:56:00", + "2024-01-08T08:21:00", + "2024-01-08T08:21:00", + "2024-01-08T09:23:00", + "2024-01-08T09:26:00", + "2024-01-08T09:29:00", + "2024-01-08T09:32:00", + "2024-01-08T09:35:00", + "2024-01-08T12:01:00", + "2024-01-08T12:03:00", + "2024-01-08T12:05:00", + "2024-01-08T12:08:00", + "2024-01-08T12:11:00", + "2024-01-08T12:14:00", + "2024-01-08T13:03:00", + "2024-01-08T13:06:00", + "2024-01-08T13:09:00", + "2024-01-08T15:52:00", + "2024-01-08T15:52:00", + "2024-01-08T16:54:00", + "2024-01-08T16:57:00", + "2024-01-08T17:00:00", + "2024-01-08T17:03:00", + "2024-01-08T17:06:00", + "2024-01-08T17:09:00", + "2024-01-08T17:12:00", + "2024-01-08T17:15:00", + "2024-01-08T17:18:00", + "2024-01-08T17:21:00", + "2024-01-08T18:32:00", + "2024-01-08T18:35:00", + "2024-01-08T18:37:00", + "2024-01-08T19:34:00", + "2024-01-08T19:37:00", + "2024-01-08T19:40:00", + "2024-01-08T19:43:00", + "2024-01-09T00:28:00", + "2024-01-09T04:19:00", + "2024-01-09T05:21:00", + "2024-01-09T09:15:00", + "2024-01-09T09:20:00", + "2024-01-09T10:22:00", + "2024-01-09T10:25:00", + "2024-01-09T10:28:00", + "2024-01-09T10:31:00", + "2024-01-09T10:34:00", + "2024-01-09T10:37:00", + "2024-01-09T10:40:00", + "2024-01-09T10:43:00", + "2024-01-09T10:46:00", + "2024-01-09T10:49:00", + "2024-01-09T10:52:00", + "2024-01-09T10:55:00", + "2024-01-09T10:58:00", + "2024-01-09T11:01:00", + "2024-01-09T11:04:00", + "2024-01-09T11:07:00", + "2024-01-09T11:10:00", + "2024-01-09T11:13:00", + "2024-01-09T11:16:00", + "2024-01-09T11:19:00", + "2024-01-09T11:22:00", + "2024-01-09T11:25:00", + "2024-01-09T11:28:00", + "2024-01-09T11:31:00", + "2024-01-09T11:34:00", + "2024-01-09T12:56:00", + "2024-01-09T12:56:00", + "2024-01-09T13:17:00", + "2024-01-09T13:58:00", + "2024-01-09T14:01:00", + "2024-01-09T14:19:00", + "2024-01-09T14:22:00", + "2024-01-09T14:25:00", + "2024-01-09T14:28:00", + "2024-01-09T14:31:00", + "2024-01-09T15:01:00", + "2024-01-09T16:03:00", + "2024-01-09T19:27:00", + "2024-01-09T19:29:00", + "2024-01-09T19:35:00", + "2024-01-09T20:13:00", + "2024-01-09T20:15:00", + "2024-01-09T20:37:00", + "2024-01-09T20:40:00", + "2024-01-09T20:43:00", + "2024-01-09T20:46:00", + "2024-01-09T21:12:00", + "2024-01-09T21:14:00", + "2024-01-09T21:14:00", + "2024-01-09T22:29:00", + "2024-01-10T00:00:00", + "2024-01-10T00:00:00" + ], + "y": [ + 0.0, + -7.676355559456428, + -5.3156683972648455, + -5.3156683972648455, + -5.3156683972648455, + -5.3156683972648455, + -5.3156683972648455, + -5.3156683972648455, + -12.476731535812071, + -12.476731535812071, + -12.476731535812071, + -12.476731535812071, + -10.253435806665664, + -10.253435806665664, + -10.253435806665664, + -10.253435806665664, + -10.253435806665664, + -10.37071866740942, + -10.37071866740942, + -10.37071866740942, + -3.0644998832586796, + -3.0644998832586796, + -3.0644998832586796, + -3.0644998832586796, + -3.0644998832586796, + -7.389494193958972, + -7.389494193958972, + -7.389494193958972, + -7.389494193958972, + 0.04988951224795857, + -7.509869999885204, + -5.180360580546458, + -12.217927368089391, + -7.070458022783714, + -13.614568875319472, + -13.614568875319472, + -13.614568875319472, + -13.614568875319472, + -11.311856836652863, + -19.011500911278816, + -1.3119530794325072, + -1.3119530794325072, + 0.9561489739808366, + 0.9561489739808366, + 0.9561489739808366, + 0.9561489739808366, + 0.9561489739808366, + 0.9561489739808366, + 12.16734258389018, + 4.826038291487694, + 20.77998129126318, + 20.77998129126318, + 20.77998129126318, + 32.30519979747568, + 32.30519979747568, + 25.333128885744074, + 25.333128885744074, + 33.17995827415365, + 45.160699880957594, + 37.88899286770427, + 37.88899286770427, + 46.19309629891978, + 66.38369941951012, + 66.38369941951012, + 66.38369941951012, + 66.38369941951012, + 66.38369941951012, + 67.16852548889437, + 76.95235195970594, + 71.67811020984897, + 71.67811020984897, + 71.67811020984897, + 71.67811020984897, + 71.67811020984897, + 71.67811020984897, + 71.67811020984897, + 71.67811020984897, + 71.67811020984897, + 71.67811020984897, + 71.67811020984897, + 62.6115911288647, + 70.78684454167787, + 70.78684454167787, + 73.37493681838262, + 66.31797124898706, + 66.31797124898706, + 66.31797124898706, + 66.31797124898706, + 66.31797124898706, + 66.31797124898706, + 66.31797124898706, + 58.542072181924325, + 58.542072181924325, + 58.542072181924325, + 58.542072181924325, + 60.759020730489816, + 60.759020730489816, + 60.759020730489816, + 53.463343899803384, + 53.463343899803384, + 46.145889970598404, + 46.145889970598404, + 46.145889970598404, + 39.39519309653596, + 51.87565565147476, + 51.87565565147476, + 51.87565565147476, + 42.90251473235926, + 42.90251473235926, + 42.90251473235926, + 42.90251473235926, + 45.203581084583504, + 38.61341516132381, + 38.61341516132381, + 38.61341516132381, + 38.61341516132381, + 38.61341516132381, + 38.61341516132381, + 38.61341516132381, + 38.61341516132381, + 38.61341516132381, + 31.076292078750967, + 31.823266563392284, + 31.823266563392284, + 31.823266563392284, + 31.823266563392284, + 31.823266563392284, + 31.823266563392284, + 31.823266563392284, + 31.823266563392284, + 31.823266563392284, + 31.823266563392284, + 31.823266563392284, + 31.823266563392284, + 31.823266563392284, + 24.685544182339083, + 57.59234485225777, + 54.1202892745174, + 54.1202892745174, + 54.1202892745174, + 54.1202892745174, + 62.4484869806114, + 52.13634146984478, + 52.13634146984478, + 52.13634146984478, + 52.13634146984478, + 52.13634146984478, + 52.13634146984478, + 52.13634146984478, + 52.13634146984478, + 52.13634146984478, + 52.13634146984478, + 54.74645656081596, + 48.730781862248705, + 48.730781862248705, + 48.730781862248705, + 48.730781862248705, + 48.730781862248705, + 59.974048220841624, + 59.974048220841624, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 52.22720006305474, + 69.1107008383909, + 69.1107008383909, + 69.1107008383909, + 69.1107008383909, + 62.723921235346864, + 63.53049629392656, + 63.53049629392656, + 57.47925280132176, + 57.47925280132176, + 57.47925280132176, + 57.47925280132176, + 57.47925280132176, + 50.063087331452365, + 50.063087331452365, + 50.063087331452365, + 50.063087331452365, + 50.063087331452365, + 50.063087331452365, + 50.063087331452365, + 54.55209523640904, + 59.46773774060926, + 59.46773774060926, + 51.897136917994175, + 51.897136917994175, + 51.897136917994175, + 51.897136917994175, + 51.897136917994175, + 51.897136917994175, + 51.897136917994175, + 51.897136917994175, + 51.897136917994175, + 51.897136917994175, + 51.897136917994175, + 51.897136917994175, + 51.897136917994175, + 63.19611553261765, + 55.77210090919168, + 55.77210090919168, + 55.77210090919168, + 55.77210090919168, + 55.77210090919168, + 55.77210090919168, + 55.77210090919168, + 55.77210090919168, + 55.77210090919168, + 55.77210090919168, + 55.77210090919168, + 55.77210090919168, + 55.77210090919168, + 72.67748031139159, + 65.30797792973644, + 65.30797792973644, + 65.30797792973644, + 65.30797792973644, + 65.30797792973644, + 65.30797792973644, + 65.30797792973644, + 65.30797792973644, + 65.30797792973644, + 65.30797792973644, + 65.30797792973644, + 65.30797792973644, + 65.30797792973644, + 65.30797792973644, + 65.30797792973644, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 57.62861414607202, + 49.856749118202416, + 50.60664842500928, + 64.13827480050522, + 55.218707952319114, + 66.54526044979826, + 66.54526044979826, + 66.54526044979826, + 59.99672013105197, + 62.71198639338457, + 55.773731418511595, + 55.773731418511595, + 55.773731418511595, + 55.773731418511595, + 55.773731418511595, + 55.773731418511595, + 55.773731418511595, + 55.773731418511595, + 55.773731418511595, + 55.773731418511595, + 55.773731418511595, + 55.773731418511595, + 58.0423246179528, + 50.985256489869435, + 50.985256489869435, + 50.985256489869435, + 50.985256489869435, + 50.985256489869435, + 50.985256489869435, + 43.74749003547777, + 59.185097789719315, + 59.185097789719315, + 59.185097789719315, + 59.185097789719315, + 59.185097789719315, + 59.185097789719315, + 59.185097789719315, + 59.185097789719315, + 72.30907462501732, + 64.2021497174088, + 64.2021497174088, + 64.2021497174088, + 64.2021497174088, + 64.2021497174088, + 64.2021497174088, + 64.2021497174088, + 64.2021497174088, + 64.2021497174088, + 64.2021497174088, + 64.2021497174088, + 56.57617798982417, + 68.1076122226461, + 68.1076122226461, + 68.1076122226461, + 68.1076122226461, + 68.1076122226461, + 68.1076122226461, + 76.04217965199182, + 68.5255234333625, + 68.5255234333625, + 71.16201497777149, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 63.27215309240123, + 66.54723620684138, + 53.32459278261757, + 47.67454193386584, + 47.67454193386584, + 47.67454193386584, + 47.67454193386584, + 47.67454193386584, + 47.67454193386584, + 47.67454193386584, + 47.67454193386584, + 38.4610158523242, + 38.4610158523242, + 40.83211356378258, + 40.83211356378258, + 33.87733957079906, + 34.702550746887425, + 34.702550746887425, + 34.702550746887425, + 34.702550746887425, + 34.702550746887425, + 34.702550746887425, + 39.62154167575385, + 30.491442659539775, + 30.491442659539775, + 38.2798783801366, + 37.56899468096446, + 42.269981264627965 + ], + "type": "scatter", + "xaxis": "x2", + "yaxis": "y2" + } + ], + "layout": { + "template": { + "data": { + "histogram2dcontour": [ + { + "type": "histogram2dcontour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "choropleth": [ + { + "type": "choropleth", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "histogram2d": [ + { + "type": "histogram2d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "heatmap": [ + { + "type": "heatmap", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "heatmapgl": [ + { + "type": "heatmapgl", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "contourcarpet": [ + { + "type": "contourcarpet", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "contour": [ + { + "type": "contour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "surface": [ + { + "type": "surface", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "mesh3d": [ + { + "type": "mesh3d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "scatter": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scatter" + } + ], + "parcoords": [ + { + "type": "parcoords", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolargl": [ + { + "type": "scatterpolargl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "bar": [ + { + "error_x": { + "color": "#f2f5fa" + }, + "error_y": { + "color": "#f2f5fa" + }, + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "scattergeo": [ + { + "type": "scattergeo", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolar": [ + { + "type": "scatterpolar", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "scattergl": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scattergl" + } + ], + "scatter3d": [ + { + "type": "scatter3d", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermapbox": [ + { + "type": "scattermapbox", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterternary": [ + { + "type": "scatterternary", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattercarpet": [ + { + "type": "scattercarpet", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "baxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "type": "carpet" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#506784" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "header": { + "fill": { + "color": "#2a3f5f" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "type": "table" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ] + }, + "layout": { + "autotypenumbers": "strict", + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#f2f5fa" + }, + "hovermode": "closest", + "hoverlabel": { + "align": "left" + }, + "paper_bgcolor": "rgb(17,17,17)", + "plot_bgcolor": "rgb(17,17,17)", + "polar": { + "bgcolor": "rgb(17,17,17)", + "angularaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "radialaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "ternary": { + "bgcolor": "rgb(17,17,17)", + "aaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "baxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "caxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "sequential": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ] + }, + "xaxis": { + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "automargin": true, + "zerolinewidth": 2 + }, + "yaxis": { + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "automargin": true, + "zerolinewidth": 2 + }, + "scene": { + "xaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3", + "gridwidth": 2 + }, + "yaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3", + "gridwidth": 2 + }, + "zaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3", + "gridwidth": 2 + } + }, + "shapedefaults": { + "line": { + "color": "#f2f5fa" + } + }, + "annotationdefaults": { + "arrowcolor": "#f2f5fa", + "arrowhead": 0, + "arrowwidth": 1 + }, + "geo": { + "bgcolor": "rgb(17,17,17)", + "landcolor": "rgb(17,17,17)", + "subunitcolor": "#506784", + "showland": true, + "showlakes": true, + "lakecolor": "rgb(17,17,17)" + }, + "title": { + "x": 0.05 + }, + "updatemenudefaults": { + "bgcolor": "#506784", + "borderwidth": 0 + }, + "sliderdefaults": { + "bgcolor": "#C8D4E3", + "borderwidth": 1, + "bordercolor": "rgb(17,17,17)", + "tickwidth": 0 + }, + "mapbox": { + "style": "dark" + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0.0, + 1.0 + ], + "matches": "x2", + "showticklabels": false, + "rangeslider": { + "visible": false + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0.314, + 1.0 + ], + "title": { + "text": "Price" + } + }, + "xaxis2": { + "anchor": "y2", + "domain": [ + 0.0, + 1.0 + ] + }, + "yaxis2": { + "anchor": "x2", + "domain": [ + 0.0, + 0.294 + ], + "title": { + "text": "PNL" + } + }, + "annotations": [ + { + "font": { + "size": 16 + }, + "showarrow": false, + "text": "Candlestick", + "x": 0.5, + "xanchor": "center", + "xref": "paper", + "y": 1.0, + "yanchor": "bottom", + "yref": "paper" + }, + { + "font": { + "size": 16 + }, + "showarrow": false, + "text": "PNL Quote", + "x": 0.5, + "xanchor": "center", + "xref": "paper", + "y": 0.294, + "yanchor": "bottom", + "yref": "paper" + } + ], + "font": { + "color": "white", + "size": 12 + }, + "margin": { + "l": 20, + "r": 20, + "t": 50, + "b": 20 + }, + "plot_bgcolor": "rgba(0, 0, 0, 0)", + "paper_bgcolor": "rgba(0, 0, 0, 0.1)", + "height": 800, + "width": 1800, + "hovermode": "x unified", + "showlegend": false, + "title": { + "text": "Trading Pair: WLD-USDT" + } + }, + "config": { + "plotlyServerURL": "https://plot.ly" + } + }, + "text/html": "
" + }, + "metadata": {}, + "output_type": "display_data" } - }, - "outputs": [], + ], "source": [ - "strategy_analysis.create_base_figure(volume=False, positions=False, trade_pnl=True)\n", - "fig = strategy_analysis.figure()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "fig" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "# Now let's see how we can add the SuperTrend to the plot\n", - "\n", - "import plotly.graph_objects as go\n", - "\n", - "super_trend_long = strategy_analysis.candles_df[strategy_analysis.candles_df[f\"SUPERTd_{length}_{multiplier}\"] == 1]\n", - "super_trend_short = strategy_analysis.candles_df[strategy_analysis.candles_df[f\"SUPERTd_{length}_{multiplier}\"] == -1]\n", - "# Add the SuperTrend line\n", - "fig.add_trace(go.Scatter(x=super_trend_long.index, y=super_trend_long[f'SUPERT_{length}_{multiplier}'],\n", - " mode='markers',\n", - " name='SuperTrend Long',\n", - " line=dict(color=\"green\")),\n", - " row=1, col=1)\n", - "# Add the SuperTrend line\n", - "fig.add_trace(go.Scatter(x=super_trend_short.index, y=super_trend_short[f'SUPERT_{length}_{multiplier}'],\n", - " mode='markers',\n", - " name='SuperTrend Short',\n", - " line=dict(color=\"red\")),\n", - " row=1, col=1)\n", - "\n", - "fig" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "# To see the trades we will need to select a lower timeframe due the restrictions and speed of the plotly library\n", - "start_time = \"2023-11-03\"\n", - "end_time = \"2023-11-05\"\n", - "\n", - "processed_data_filtered = backtesting_results[\"processed_data\"][\n", - " (backtesting_results[\"processed_data\"][\"timestamp\"] >= start_time) &\n", - " (backtesting_results[\"processed_data\"][\"timestamp\"] <= end_time)\n", - "]\n", - "\n", - "executors_filtered = backtesting_results[\"executors_df\"][\n", - " (backtesting_results[\"executors_df\"][\"timestamp\"] >= start_time) &\n", - " (backtesting_results[\"executors_df\"][\"timestamp\"] <= end_time)\n", - "]" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "executors_filtered" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "\n", - "strategy_analysis = StrategyAnalysis(\n", - " positions=executors_filtered,\n", - " candles_df=processed_data_filtered,\n", - ")\n", - "\n", - "strategy_analysis.create_base_figure(volume=False, positions=True, trade_pnl=True)\n", - "fig = strategy_analysis.figure()\n", - "super_trend_long = strategy_analysis.candles_df[strategy_analysis.candles_df[f\"SUPERTd_{length}_{multiplier}\"] == 1]\n", - "super_trend_short = strategy_analysis.candles_df[strategy_analysis.candles_df[f\"SUPERTd_{length}_{multiplier}\"] == -1]\n", - "# Add the SuperTrend line\n", - "fig.add_trace(go.Scatter(x=super_trend_long.index, y=super_trend_long[f'SUPERT_{length}_{multiplier}'],\n", - " mode='markers',\n", - " name='SuperTrend Long',\n", - " line=dict(color=\"green\")),\n", - " row=1, col=1)\n", - "# Add the SuperTrend line\n", - "fig.add_trace(go.Scatter(x=super_trend_short.index, y=super_trend_short[f'SUPERT_{length}_{multiplier}'],\n", - " mode='markers',\n", - " name='SuperTrend Short',\n", - " line=dict(color=\"red\")),\n", - " row=1, col=1)\n", "fig" ] }, @@ -463,18 +36204,1036 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 34, "metadata": { "collapsed": false, "jupyter": { "outputs_hidden": false + }, + "ExecuteTime": { + "end_time": "2024-05-21T23:39:53.988526Z", + "start_time": "2024-05-21T23:39:53.910074Z" } }, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "data": [ + { + "hovertemplate": "profitable=False
timestamp=%{x}
net_pnl_quote=%{y}", + "legendgroup": "False", + "marker": { + "color": "#636efa", + "symbol": "circle" + }, + "mode": "markers", + "name": "False", + "orientation": "h", + "showlegend": true, + "x": [ + 1.7040672E12, + 1.7040672E12, + 1.70407548E12, + 1.70407566E12, + 1.70407584E12, + 1.70407602E12, + 1.7040762E12, + 1.70407236E12, + 1.70407638E12, + 1.70407656E12, + 1.70407674E12, + 1.70407692E12, + 1.7040771E12, + 1.70407728E12, + 1.70407998E12, + 1.70408016E12, + 1.7040828E12, + 1.70408298E12, + 1.70408034E12, + 1.70412354E12, + 1.70412372E12, + 1.7041239E12, + 1.70412408E12, + 1.70412426E12, + 1.70412444E12, + 1.70412636E12, + 1.70412654E12, + 1.70412672E12, + 1.7041269E12, + 1.70412708E12, + 1.70412726E12, + 1.70412744E12, + 1.70412762E12, + 1.7041278E12, + 1.70412798E12, + 1.70412816E12, + 1.70412834E12, + 1.70412852E12, + 1.70414106E12, + 1.70414124E12, + 1.70414142E12, + 1.7041416E12, + 1.70414178E12, + 1.70414826E12, + 1.70414844E12, + 1.70414862E12 + ], + "xaxis": "x", + "y": [ + 0.0, + -7.61247867369609, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -7.014537137929758, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -7.0967233829772045, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -7.854400389172675, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "yaxis": "y", + "type": "scatter" + }, + { + "hovertemplate": "profitable=True
timestamp=%{x}
net_pnl_quote=%{y}", + "legendgroup": "True", + "marker": { + "color": "#EF553B", + "symbol": "circle" + }, + "mode": "markers", + "name": "True", + "orientation": "h", + "showlegend": true, + "x": [ + 1.70406738E12, + 1.70407746E12, + 1.70408316E12, + 1.70412462E12, + 1.70414196E12, + 1.7041488E12 + ], + "xaxis": "x", + "y": [ + 2.3606871621915824, + 2.211527553335368, + 7.0853167853100585, + 15.828155020906378, + 1.364377041510068, + 0.12822052055113842 + ], + "yaxis": "y", + "type": "scatter" + } + ], + "layout": { + "template": { + "data": { + "histogram2dcontour": [ + { + "type": "histogram2dcontour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "choropleth": [ + { + "type": "choropleth", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "histogram2d": [ + { + "type": "histogram2d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "heatmap": [ + { + "type": "heatmap", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "heatmapgl": [ + { + "type": "heatmapgl", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "contourcarpet": [ + { + "type": "contourcarpet", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "contour": [ + { + "type": "contour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "surface": [ + { + "type": "surface", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "mesh3d": [ + { + "type": "mesh3d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "scatter": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scatter" + } + ], + "parcoords": [ + { + "type": "parcoords", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolargl": [ + { + "type": "scatterpolargl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "bar": [ + { + "error_x": { + "color": "#f2f5fa" + }, + "error_y": { + "color": "#f2f5fa" + }, + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "scattergeo": [ + { + "type": "scattergeo", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolar": [ + { + "type": "scatterpolar", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "scattergl": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scattergl" + } + ], + "scatter3d": [ + { + "type": "scatter3d", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermapbox": [ + { + "type": "scattermapbox", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterternary": [ + { + "type": "scatterternary", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattercarpet": [ + { + "type": "scattercarpet", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "baxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "type": "carpet" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#506784" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "header": { + "fill": { + "color": "#2a3f5f" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "type": "table" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ] + }, + "layout": { + "autotypenumbers": "strict", + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#f2f5fa" + }, + "hovermode": "closest", + "hoverlabel": { + "align": "left" + }, + "paper_bgcolor": "rgb(17,17,17)", + "plot_bgcolor": "rgb(17,17,17)", + "polar": { + "bgcolor": "rgb(17,17,17)", + "angularaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "radialaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "ternary": { + "bgcolor": "rgb(17,17,17)", + "aaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "baxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "caxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "sequential": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ] + }, + "xaxis": { + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "automargin": true, + "zerolinewidth": 2 + }, + "yaxis": { + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "automargin": true, + "zerolinewidth": 2 + }, + "scene": { + "xaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3", + "gridwidth": 2 + }, + "yaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3", + "gridwidth": 2 + }, + "zaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3", + "gridwidth": 2 + } + }, + "shapedefaults": { + "line": { + "color": "#f2f5fa" + } + }, + "annotationdefaults": { + "arrowcolor": "#f2f5fa", + "arrowhead": 0, + "arrowwidth": 1 + }, + "geo": { + "bgcolor": "rgb(17,17,17)", + "landcolor": "rgb(17,17,17)", + "subunitcolor": "#506784", + "showland": true, + "showlakes": true, + "lakecolor": "rgb(17,17,17)" + }, + "title": { + "x": 0.05 + }, + "updatemenudefaults": { + "bgcolor": "#506784", + "borderwidth": 0 + }, + "sliderdefaults": { + "bgcolor": "#C8D4E3", + "borderwidth": 1, + "bordercolor": "rgb(17,17,17)", + "tickwidth": 0 + }, + "mapbox": { + "style": "dark" + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "timestamp" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "net_pnl_quote" + } + }, + "legend": { + "title": { + "text": "profitable" + }, + "tracegroupgap": 0 + }, + "title": { + "text": "PNL per Trade" + } + }, + "config": { + "plotlyServerURL": "https://plot.ly" + } + }, + "text/html": "
" + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "import plotly.express as px\n", "\n", - "executors_df = backtesting_results[\"executors_df\"]\n", + "executors_df = pd.DataFrame(ei.to_dict() for ei in backtesting_results[\"executors\"])\n", + "executors_df[\"profitable\"] = executors_df[\"net_pnl_quote\"] > 0\n", "\n", "fig = px.scatter(executors_df, x=\"timestamp\", y='net_pnl_quote', title='PNL per Trade',\n", " color='profitable', color_continuous_scale=['red', 'green'])\n", @@ -496,16 +37255,1011 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 36, "metadata": { "collapsed": false, "jupyter": { "outputs_hidden": false + }, + "ExecuteTime": { + "end_time": "2024-05-21T23:40:07.291321Z", + "start_time": "2024-05-21T23:40:07.285550Z" } }, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "data": [ + { + "hovertemplate": "filled_amount_quote=%{x}
net_pnl_quote=%{y}", + "legendgroup": "", + "marker": { + "color": "#636efa", + "symbol": "circle" + }, + "mode": "markers", + "name": "", + "orientation": "v", + "showlegend": false, + "x": [ + 0.0, + 503.3333333333333, + 71.33333333333334, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 496.66666666666674, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 71.52380952380952, + 0.0, + 0.0, + 496.66666666666674, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 503.3333333333333, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 503.3333333333333, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 496.66666666666674, + 0.0, + 0.0, + 0.0, + 239.04761904761904, + 71.33333333333334 + ], + "xaxis": "x", + "y": [ + 0.0, + -7.61247867369609, + 2.3606871621915824, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -7.014537137929758, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.211527553335368, + 0.0, + 0.0, + -7.0967233829772045, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.0853167853100585, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -7.854400389172675, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 15.828155020906378, + 0.0, + 0.0, + 0.0, + 1.364377041510068, + 0.12822052055113842 + ], + "yaxis": "y", + "type": "scatter" + } + ], + "layout": { + "template": { + "data": { + "histogram2dcontour": [ + { + "type": "histogram2dcontour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "choropleth": [ + { + "type": "choropleth", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "histogram2d": [ + { + "type": "histogram2d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "heatmap": [ + { + "type": "heatmap", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "heatmapgl": [ + { + "type": "heatmapgl", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "contourcarpet": [ + { + "type": "contourcarpet", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "contour": [ + { + "type": "contour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "surface": [ + { + "type": "surface", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "mesh3d": [ + { + "type": "mesh3d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "scatter": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scatter" + } + ], + "parcoords": [ + { + "type": "parcoords", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolargl": [ + { + "type": "scatterpolargl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "bar": [ + { + "error_x": { + "color": "#f2f5fa" + }, + "error_y": { + "color": "#f2f5fa" + }, + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "scattergeo": [ + { + "type": "scattergeo", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolar": [ + { + "type": "scatterpolar", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "scattergl": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scattergl" + } + ], + "scatter3d": [ + { + "type": "scatter3d", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermapbox": [ + { + "type": "scattermapbox", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterternary": [ + { + "type": "scatterternary", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattercarpet": [ + { + "type": "scattercarpet", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "baxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "type": "carpet" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#506784" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "header": { + "fill": { + "color": "#2a3f5f" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "type": "table" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ] + }, + "layout": { + "autotypenumbers": "strict", + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#f2f5fa" + }, + "hovermode": "closest", + "hoverlabel": { + "align": "left" + }, + "paper_bgcolor": "rgb(17,17,17)", + "plot_bgcolor": "rgb(17,17,17)", + "polar": { + "bgcolor": "rgb(17,17,17)", + "angularaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "radialaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "ternary": { + "bgcolor": "rgb(17,17,17)", + "aaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "baxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "caxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "sequential": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ] + }, + "xaxis": { + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "automargin": true, + "zerolinewidth": 2 + }, + "yaxis": { + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "automargin": true, + "zerolinewidth": 2 + }, + "scene": { + "xaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3", + "gridwidth": 2 + }, + "yaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3", + "gridwidth": 2 + }, + "zaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3", + "gridwidth": 2 + } + }, + "shapedefaults": { + "line": { + "color": "#f2f5fa" + } + }, + "annotationdefaults": { + "arrowcolor": "#f2f5fa", + "arrowhead": 0, + "arrowwidth": 1 + }, + "geo": { + "bgcolor": "rgb(17,17,17)", + "landcolor": "rgb(17,17,17)", + "subunitcolor": "#506784", + "showland": true, + "showlakes": true, + "lakecolor": "rgb(17,17,17)" + }, + "title": { + "x": 0.05 + }, + "updatemenudefaults": { + "bgcolor": "#506784", + "borderwidth": 0 + }, + "sliderdefaults": { + "bgcolor": "#C8D4E3", + "borderwidth": 1, + "bordercolor": "rgb(17,17,17)", + "tickwidth": 0 + }, + "mapbox": { + "style": "dark" + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "filled_amount_quote" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "net_pnl_quote" + } + }, + "legend": { + "tracegroupgap": 0 + }, + "title": { + "text": "Trade Volume vs. PNL" + } + }, + "config": { + "plotlyServerURL": "https://plot.ly" + } + }, + "text/html": "
" + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ - "fig = px.scatter(executors_df, x='volume', y='net_pnl_quote', title='Trade Volume vs. PNL')\n", + "fig = px.scatter(executors_df, x='filled_amount_quote', y='net_pnl_quote', title='Trade Volume vs. PNL')\n", "fig.show()" ] }, @@ -524,47 +38278,964 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 37, "metadata": { "collapsed": false, "jupyter": { "outputs_hidden": false + }, + "ExecuteTime": { + "end_time": "2024-05-21T23:40:47.289939Z", + "start_time": "2024-05-21T23:40:47.246917Z" } }, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "net_pnl_quote=%{x}
count=%{y}", + "legendgroup": "", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "", + "offsetgroup": "", + "orientation": "v", + "showlegend": false, + "x": [ + 0.0, + -7.61247867369609, + 2.3606871621915824, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -7.014537137929758, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.211527553335368, + 0.0, + 0.0, + -7.0967233829772045, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.0853167853100585, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -7.854400389172675, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 15.828155020906378, + 0.0, + 0.0, + 0.0, + 1.364377041510068, + 0.12822052055113842 + ], + "xaxis": "x", + "yaxis": "y", + "type": "histogram" + } + ], + "layout": { + "template": { + "data": { + "histogram2dcontour": [ + { + "type": "histogram2dcontour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "choropleth": [ + { + "type": "choropleth", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "histogram2d": [ + { + "type": "histogram2d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "heatmap": [ + { + "type": "heatmap", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "heatmapgl": [ + { + "type": "heatmapgl", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "contourcarpet": [ + { + "type": "contourcarpet", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "contour": [ + { + "type": "contour", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "surface": [ + { + "type": "surface", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ] + } + ], + "mesh3d": [ + { + "type": "mesh3d", + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + ], + "scatter": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scatter" + } + ], + "parcoords": [ + { + "type": "parcoords", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolargl": [ + { + "type": "scatterpolargl", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "bar": [ + { + "error_x": { + "color": "#f2f5fa" + }, + "error_y": { + "color": "#f2f5fa" + }, + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "scattergeo": [ + { + "type": "scattergeo", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterpolar": [ + { + "type": "scatterpolar", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "scattergl": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scattergl" + } + ], + "scatter3d": [ + { + "type": "scatter3d", + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattermapbox": [ + { + "type": "scattermapbox", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scatterternary": [ + { + "type": "scatterternary", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "scattercarpet": [ + { + "type": "scattercarpet", + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + } + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "baxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "type": "carpet" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#506784" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "header": { + "fill": { + "color": "#2a3f5f" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "type": "table" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ] + }, + "layout": { + "autotypenumbers": "strict", + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#f2f5fa" + }, + "hovermode": "closest", + "hoverlabel": { + "align": "left" + }, + "paper_bgcolor": "rgb(17,17,17)", + "plot_bgcolor": "rgb(17,17,17)", + "polar": { + "bgcolor": "rgb(17,17,17)", + "angularaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "radialaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "ternary": { + "bgcolor": "rgb(17,17,17)", + "aaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "baxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "caxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "sequential": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0.0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1.0, + "#f0f921" + ] + ], + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ] + }, + "xaxis": { + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "automargin": true, + "zerolinewidth": 2 + }, + "yaxis": { + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "automargin": true, + "zerolinewidth": 2 + }, + "scene": { + "xaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3", + "gridwidth": 2 + }, + "yaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3", + "gridwidth": 2 + }, + "zaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3", + "gridwidth": 2 + } + }, + "shapedefaults": { + "line": { + "color": "#f2f5fa" + } + }, + "annotationdefaults": { + "arrowcolor": "#f2f5fa", + "arrowhead": 0, + "arrowwidth": 1 + }, + "geo": { + "bgcolor": "rgb(17,17,17)", + "landcolor": "rgb(17,17,17)", + "subunitcolor": "#506784", + "showland": true, + "showlakes": true, + "lakecolor": "rgb(17,17,17)" + }, + "title": { + "x": 0.05 + }, + "updatemenudefaults": { + "bgcolor": "#506784", + "borderwidth": 0 + }, + "sliderdefaults": { + "bgcolor": "#C8D4E3", + "borderwidth": 1, + "bordercolor": "rgb(17,17,17)", + "tickwidth": 0 + }, + "mapbox": { + "style": "dark" + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "net_pnl_quote" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0.0, + 1.0 + ], + "title": { + "text": "count" + } + }, + "legend": { + "tracegroupgap": 0 + }, + "title": { + "text": "PNL Distribution" + }, + "barmode": "relative" + }, + "config": { + "plotlyServerURL": "https://plot.ly" + } + }, + "text/html": "
" + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "fig = px.histogram(executors_df, x='net_pnl_quote', title='PNL Distribution')\n", "fig.show()\n" ] - }, - { - "cell_type": "markdown", - "metadata": { - "collapsed": false, - "jupyter": { - "outputs_hidden": false - } - }, - "source": [ - "# Conclusion\n", - "We can see that the indicator has potential to bring good signals to trade and might be interesting to see how we can design a market maker that shifts the mid price based on this indicator.\n", - "A lot of the short signals are wrong but if we zoom in into the loss signals we can see that the losses are not that big and the wins are bigger and if we had implemented the trailing stop feature probably a lot of them are going to be profits." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "collapsed": false, - "jupyter": { - "outputs_hidden": false - } - }, - "source": [ - "# Next steps\n", - "- Filter only the loss signals and understand what you can do to prevent them\n", - "- Try different configuration values for the indicator\n", - "- Test in multiple markets, pick mature markets like BTC-USDT or ETH-USDT and also volatile markets like DOGE-USDT or SHIB-USDT" - ] } ], "metadata": { diff --git a/quants_lab/research_notebooks/dman_maker/03_optimization_notebook.ipynb b/quants_lab/research_notebooks/dman_maker/03_optimization_notebook.ipynb index c09c9b7..24d3db5 100644 --- a/quants_lab/research_notebooks/dman_maker/03_optimization_notebook.ipynb +++ b/quants_lab/research_notebooks/dman_maker/03_optimization_notebook.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "outputs": [], "source": [ "import os\n", @@ -12,95 +12,87 @@ "sys.path.append(root_path)" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-05-21T23:41:37.862880Z", + "start_time": "2024-05-21T23:41:37.861203Z" + } } }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "outputs": [], "source": [ + "from quants_lab.controllers.market_making.dman_maker_v2 import DManMakerV2Config\n", + "from hummingbot.strategy_v2.backtesting import MarketMakingBacktesting\n", "import traceback\n", "from decimal import Decimal\n", "import pandas_ta as ta # noqa: F401\n", - "\n", - "from hummingbot.core.data_type.common import PositionMode, TradeType, OrderType\n", - "from hummingbot.data_feed.candles_feed.candles_factory import CandlesConfig\n", - "from hummingbot.smart_components.strategy_frameworks.data_types import TripleBarrierConf, OrderLevel\n", - "from hummingbot.smart_components.strategy_frameworks.directional_trading import DirectionalTradingBacktestingEngine\n", - "from hummingbot.smart_components.utils.config_encoder_decoder import ConfigEncoderDecoder\n", + "import pandas as pd\n", "from optuna import TrialPruned\n", - "from hummingbot.smart_components.utils.order_level_builder import OrderLevelBuilder\n", "\n", - "from quants_lab.controllers.supertrend import SuperTrend, SuperTrendConfig\n", + "backtesting_engine = MarketMakingBacktesting()\n", "\n", - "# To run an optimization with optuna we need to define the objective function that will be executed for each trial\n", - "\n", - "def objective(trial):\n", + "async def objective(trial, start, end, backtesting_resolution):\n", " try:\n", " # Market configuration\n", - " exchange = \"binance_perpetual\"\n", + " connector_name = \"binance_perpetual\"\n", " trading_pair = \"WLD-USDT\"\n", - " interval = \"3m\"\n", "\n", " # Account configuration\n", - " initial_portfolio_usd = 1000\n", - " order_amount = Decimal(\"25\")\n", - " n_levels = 1\n", - " leverage = 20\n", + " total_amount_quote = 1000\n", " trade_cost = 0.0006\n", - "\n", - " # Backtest period\n", - " start = \"2023-01-01\"\n", - " end = \"2024-01-02\"\n", + " buy_spreads = [Decimal(\"0.002\")]\n", + " sell_spreads = [Decimal(\"0.002\")]\n", + " buy_amounts_pct = [Decimal(\"1\")]\n", + " sell_amounts_pct = [Decimal(\"1\")]\n", + " executor_refresh_time = 60\n", + " cooldown_time = 3600\n", + " top_executor_refresh_time = 60\n", + " executor_activation_bounds = [Decimal(\"0.01\")]\n", + " dca_spreads = [Decimal(\"0.\"), Decimal(\"0.002\"), Decimal(\"0.004\"), Decimal(\"0.006\"), Decimal(\"0.008\"), Decimal(\"0.01\")]\n", + " dca_amounts = [Decimal(\"0.1\"), Decimal(\"0.2\"), Decimal(\"0.3\"), Decimal(\"0.4\"), Decimal(\"0.5\"), Decimal(\"0.6\")]\n", "\n", " # Triple barrier configuration\n", - " stop_loss = trial.suggest_float('stop_loss', 0.01, 0.02, step=0.01)\n", + " stop_loss = trial.suggest_float('stop_loss', 0.01, 0.04, step=0.01)\n", " take_profit = trial.suggest_float('take_profit', 0.01, 0.04, step=0.01)\n", " time_limit = 60 * 60 * 12 # 12 hours\n", " trailing_stop_activation_price_delta = Decimal(\"0.008\")\n", " trailing_stop_trailing_delta = Decimal(\"0.004\")\n", + " config_dict = {\n", + " \"connector_name\": connector_name,\n", + " \"trading_pair\": trading_pair,\n", + " \"total_amount_quote\": total_amount_quote,\n", + " \"buy_spreads\": buy_spreads,\n", + " \"sell_spreads\": sell_spreads,\n", + " \"buy_amounts_pct\": buy_amounts_pct,\n", + " \"sell_amounts_pct\": sell_amounts_pct,\n", + " \"executor_refresh_time\": executor_refresh_time,\n", + " \"cooldown_time\": cooldown_time,\n", + " \"top_executor_refresh_time\": top_executor_refresh_time,\n", + " \"executor_activation_bounds\": executor_activation_bounds,\n", + " \"stop_loss\": stop_loss,\n", + " \"take_profit\": take_profit,\n", + " \"time_limit\": time_limit,\n", + " \"trailing_stop\": {\n", + " \"activation_price\": trailing_stop_activation_price_delta,\n", + " \"trailing_delta\": trailing_stop_trailing_delta\n", + " },\n", + " \"dca_spreads\": dca_spreads,\n", + " \"dca_amounts\": dca_amounts\n", + " }\n", "\n", - " length = trial.suggest_int('length', 20, 200, step=20)\n", - " multiplier = trial.suggest_float('multiplier', 2.0, 6.0, step=1.0)\n", - " percentage_threshold = trial.suggest_float('percentage_threshold', 0.01, 0.03, step=0.01)\n", "\n", - " # Building the order levels\n", - " order_level_builder = OrderLevelBuilder(n_levels=n_levels)\n", - " order_levels = order_level_builder.build_order_levels(\n", - " amounts=order_amount,\n", - " spreads=Decimal(\"0\"),\n", - " triple_barrier_confs=TripleBarrierConf(\n", - " stop_loss=stop_loss, take_profit=take_profit, time_limit=time_limit,\n", - " trailing_stop_activation_price_delta=trailing_stop_activation_price_delta,\n", - " trailing_stop_trailing_delta=trailing_stop_trailing_delta),\n", - " )\n", - " config = SuperTrendConfig(\n", - " exchange=exchange,\n", - " trading_pair=trading_pair,\n", - " strategy_name='supertrend',\n", - " candles_config=[\n", - " CandlesConfig(connector=exchange, trading_pair=trading_pair,\n", - " interval=interval, max_records=sys.maxsize)\n", - " ],\n", - " order_levels=order_levels,\n", - " leverage=leverage,\n", - " position_mode=PositionMode.HEDGE,\n", - " length=length,\n", - " multiplier=multiplier,\n", - " percentage_threshold=percentage_threshold,\n", - "\n", - " )\n", - " controller = SuperTrend(config=config)\n", - " engine = DirectionalTradingBacktestingEngine(controller=controller)\n", - " engine.load_controller_data(\"../../../data/candles\")\n", - " backtesting_results = engine.run_backtesting(\n", - " initial_portfolio_usd=initial_portfolio_usd,\n", - " trade_cost=trade_cost,\n", - " start=start, end=end)\n", + " config = DManMakerV2Config(**config_dict)\n", + " start_time = pd.to_datetime(start).timestamp() * 1e3\n", + " end_time = pd.to_datetime(end).timestamp() * 1e3\n", + " backtesting_results = await backtesting_engine.run_backtesting(\n", + " controller_config=config, trade_cost=trade_cost,\n", + " start=int(start_time), end=int(end_time),\n", + " backtesting_resolution=backtesting_resolution)\n", "\n", " strategy_analysis = backtesting_results[\"results\"]\n", - " encoder_decoder = ConfigEncoderDecoder(TradeType, OrderType, PositionMode)\n", "\n", " trial.set_user_attr(\"net_pnl_quote\", strategy_analysis[\"net_pnl_quote\"])\n", " trial.set_user_attr(\"net_pnl_pct\", strategy_analysis[\"net_pnl\"])\n", @@ -110,50 +102,489 @@ " trial.set_user_attr(\"accuracy\", strategy_analysis[\"accuracy\"])\n", " trial.set_user_attr(\"total_positions\", strategy_analysis[\"total_positions\"])\n", " trial.set_user_attr(\"profit_factor\", strategy_analysis[\"profit_factor\"])\n", - " trial.set_user_attr(\"duration_in_hours\", strategy_analysis[\"duration_minutes\"] / 60)\n", - " trial.set_user_attr(\"avg_trading_time_in_hours\", strategy_analysis[\"avg_trading_time_minutes\"] / 60)\n", " trial.set_user_attr(\"win_signals\", strategy_analysis[\"win_signals\"])\n", " trial.set_user_attr(\"loss_signals\", strategy_analysis[\"loss_signals\"])\n", - " trial.set_user_attr(\"config\", encoder_decoder.encode(config.dict()))\n", + " trial.set_user_attr(\"close_types\", strategy_analysis[\"close_types\"])\n", + " trial.set_user_attr(\"config\", config_dict)\n", " return strategy_analysis[\"net_pnl\"]\n", " except Exception as e:\n", " traceback.print_exc()\n", " raise TrialPruned()\n" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-05-22T00:12:09.348323Z", + "start_time": "2024-05-22T00:12:09.343772Z" + } } }, { "cell_type": "code", - "execution_count": null, - "outputs": [], + "execution_count": 6, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[I 2024-05-21 19:14:06,636] A new study created in RDB with name: dman_maker_v2_opt\n" + ] + } + ], "source": [ "import optuna\n", "\n", "# Now let's configure the parameters for the optimization\n", - "study_name = \"super_trend_optimization_1\"\n", + "study_name = \"dman_maker_v2_opt\"\n", "storage= \"sqlite:///../../../data/backtesting/backtesting_report.db\"\n", "\n", "study = optuna.create_study(direction=\"maximize\", study_name=study_name,\n", " storage=storage,\n", - " load_if_exists=True # If the study already exists, we load it\n", - " )" + " load_if_exists=True) # If the study already exists, we load it)" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-05-22T00:14:06.642119Z", + "start_time": "2024-05-22T00:14:06.258703Z" + } + } + }, + { + "cell_type": "code", + "execution_count": 7, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[W 2024-05-21 19:14:32,364] Trial 0 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,365] Trial 0 failed with value .\n", + "/Users/dardonacci/anaconda3/envs/dashboard/lib/python3.10/site-packages/optuna/study/_optimize.py:159: RuntimeWarning: coroutine 'objective' was never awaited\n", + " frozen_trial = _run_trial(study, func, catch)\n", + "RuntimeWarning: Enable tracemalloc to get the object allocation traceback\n", + "[W 2024-05-21 19:14:32,380] Trial 1 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,380] Trial 1 failed with value .\n", + "[W 2024-05-21 19:14:32,390] Trial 2 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,391] Trial 2 failed with value .\n", + "[W 2024-05-21 19:14:32,401] Trial 3 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,402] Trial 3 failed with value .\n", + "[W 2024-05-21 19:14:32,412] Trial 4 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,413] Trial 4 failed with value .\n", + "[W 2024-05-21 19:14:32,424] Trial 5 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,424] Trial 5 failed with value .\n", + "[W 2024-05-21 19:14:32,435] Trial 6 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,435] Trial 6 failed with value .\n", + "[W 2024-05-21 19:14:32,448] Trial 7 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,448] Trial 7 failed with value .\n", + "[W 2024-05-21 19:14:32,464] Trial 8 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,464] Trial 8 failed with value .\n", + "[W 2024-05-21 19:14:32,474] Trial 9 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,474] Trial 9 failed with value .\n", + "[W 2024-05-21 19:14:32,485] Trial 10 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,485] Trial 10 failed with value .\n", + "[W 2024-05-21 19:14:32,496] Trial 11 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,496] Trial 11 failed with value .\n", + "[W 2024-05-21 19:14:32,505] Trial 12 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,505] Trial 12 failed with value .\n", + "[W 2024-05-21 19:14:32,515] Trial 13 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,516] Trial 13 failed with value .\n", + "[W 2024-05-21 19:14:32,525] Trial 14 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,526] Trial 14 failed with value .\n", + "[W 2024-05-21 19:14:32,535] Trial 15 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,535] Trial 15 failed with value .\n", + "[W 2024-05-21 19:14:32,551] Trial 16 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,551] Trial 16 failed with value .\n", + "[W 2024-05-21 19:14:32,561] Trial 17 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,562] Trial 17 failed with value .\n", + "[W 2024-05-21 19:14:32,572] Trial 18 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,572] Trial 18 failed with value .\n", + "[W 2024-05-21 19:14:32,582] Trial 19 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,583] Trial 19 failed with value .\n", + "[W 2024-05-21 19:14:32,592] Trial 20 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,593] Trial 20 failed with value .\n", + "[W 2024-05-21 19:14:32,603] Trial 21 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,603] Trial 21 failed with value .\n", + "[W 2024-05-21 19:14:32,613] Trial 22 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,614] Trial 22 failed with value .\n", + "[W 2024-05-21 19:14:32,624] Trial 23 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,624] Trial 23 failed with value .\n", + "[W 2024-05-21 19:14:32,634] Trial 24 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,634] Trial 24 failed with value .\n", + "[W 2024-05-21 19:14:32,644] Trial 25 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,644] Trial 25 failed with value .\n", + "[W 2024-05-21 19:14:32,654] Trial 26 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,654] Trial 26 failed with value .\n", + "[W 2024-05-21 19:14:32,666] Trial 27 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,666] Trial 27 failed with value .\n", + "[W 2024-05-21 19:14:32,676] Trial 28 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,676] Trial 28 failed with value .\n", + "[W 2024-05-21 19:14:32,687] Trial 29 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,687] Trial 29 failed with value .\n", + "[W 2024-05-21 19:14:32,697] Trial 30 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,698] Trial 30 failed with value .\n", + "[W 2024-05-21 19:14:32,709] Trial 31 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,709] Trial 31 failed with value .\n", + "[W 2024-05-21 19:14:32,718] Trial 32 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,719] Trial 32 failed with value .\n", + "[W 2024-05-21 19:14:32,728] Trial 33 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,728] Trial 33 failed with value .\n", + "[W 2024-05-21 19:14:32,738] Trial 34 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,739] Trial 34 failed with value .\n", + "[W 2024-05-21 19:14:32,749] Trial 35 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,750] Trial 35 failed with value .\n", + "[W 2024-05-21 19:14:32,761] Trial 36 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,762] Trial 36 failed with value .\n", + "[W 2024-05-21 19:14:32,772] Trial 37 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,772] Trial 37 failed with value .\n", + "[W 2024-05-21 19:14:32,782] Trial 38 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,782] Trial 38 failed with value .\n", + "[W 2024-05-21 19:14:32,791] Trial 39 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,792] Trial 39 failed with value .\n", + "[W 2024-05-21 19:14:32,803] Trial 40 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,803] Trial 40 failed with value .\n", + "[W 2024-05-21 19:14:32,813] Trial 41 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,814] Trial 41 failed with value .\n", + "[W 2024-05-21 19:14:32,823] Trial 42 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,824] Trial 42 failed with value .\n", + "[W 2024-05-21 19:14:32,835] Trial 43 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,836] Trial 43 failed with value .\n", + "[W 2024-05-21 19:14:32,846] Trial 44 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,846] Trial 44 failed with value .\n", + "[W 2024-05-21 19:14:32,857] Trial 45 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,857] Trial 45 failed with value .\n", + "[W 2024-05-21 19:14:32,868] Trial 46 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,869] Trial 46 failed with value .\n", + "[W 2024-05-21 19:14:32,878] Trial 47 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,878] Trial 47 failed with value .\n", + "[W 2024-05-21 19:14:32,889] Trial 48 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,889] Trial 48 failed with value .\n", + "[W 2024-05-21 19:14:32,899] Trial 49 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,900] Trial 49 failed with value .\n", + "[W 2024-05-21 19:14:32,911] Trial 50 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,911] Trial 50 failed with value .\n", + "[W 2024-05-21 19:14:32,920] Trial 51 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,920] Trial 51 failed with value .\n", + "[W 2024-05-21 19:14:32,929] Trial 52 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,930] Trial 52 failed with value .\n", + "[W 2024-05-21 19:14:32,940] Trial 53 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,941] Trial 53 failed with value .\n", + "[W 2024-05-21 19:14:32,950] Trial 54 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,950] Trial 54 failed with value .\n", + "[W 2024-05-21 19:14:32,959] Trial 55 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,960] Trial 55 failed with value .\n", + "[W 2024-05-21 19:14:32,970] Trial 56 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,971] Trial 56 failed with value .\n", + "[W 2024-05-21 19:14:32,980] Trial 57 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,981] Trial 57 failed with value .\n", + "[W 2024-05-21 19:14:32,990] Trial 58 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:32,990] Trial 58 failed with value .\n", + "[W 2024-05-21 19:14:32,999] Trial 59 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,000] Trial 59 failed with value .\n", + "[W 2024-05-21 19:14:33,010] Trial 60 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,010] Trial 60 failed with value .\n", + "[W 2024-05-21 19:14:33,019] Trial 61 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,020] Trial 61 failed with value .\n", + "[W 2024-05-21 19:14:33,030] Trial 62 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,030] Trial 62 failed with value .\n", + "[W 2024-05-21 19:14:33,040] Trial 63 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,040] Trial 63 failed with value .\n", + "[W 2024-05-21 19:14:33,050] Trial 64 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,051] Trial 64 failed with value .\n", + "[W 2024-05-21 19:14:33,061] Trial 65 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,061] Trial 65 failed with value .\n", + "[W 2024-05-21 19:14:33,071] Trial 66 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,071] Trial 66 failed with value .\n", + "[W 2024-05-21 19:14:33,080] Trial 67 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,081] Trial 67 failed with value .\n", + "[W 2024-05-21 19:14:33,091] Trial 68 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,092] Trial 68 failed with value .\n", + "[W 2024-05-21 19:14:33,102] Trial 69 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,102] Trial 69 failed with value .\n", + "[W 2024-05-21 19:14:33,111] Trial 70 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,112] Trial 70 failed with value .\n", + "[W 2024-05-21 19:14:33,123] Trial 71 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,124] Trial 71 failed with value .\n", + "[W 2024-05-21 19:14:33,133] Trial 72 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,134] Trial 72 failed with value .\n", + "[W 2024-05-21 19:14:33,144] Trial 73 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,145] Trial 73 failed with value .\n", + "[W 2024-05-21 19:14:33,154] Trial 74 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,154] Trial 74 failed with value .\n", + "[W 2024-05-21 19:14:33,164] Trial 75 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,165] Trial 75 failed with value .\n", + "[W 2024-05-21 19:14:33,175] Trial 76 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,175] Trial 76 failed with value .\n", + "[W 2024-05-21 19:14:33,186] Trial 77 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,186] Trial 77 failed with value .\n", + "[W 2024-05-21 19:14:33,196] Trial 78 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,196] Trial 78 failed with value .\n", + "[W 2024-05-21 19:14:33,206] Trial 79 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,207] Trial 79 failed with value .\n", + "[W 2024-05-21 19:14:33,217] Trial 80 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,218] Trial 80 failed with value .\n", + "[W 2024-05-21 19:14:33,227] Trial 81 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,228] Trial 81 failed with value .\n", + "[W 2024-05-21 19:14:33,239] Trial 82 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,239] Trial 82 failed with value .\n", + "[W 2024-05-21 19:14:33,255] Trial 83 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,255] Trial 83 failed with value .\n", + "[W 2024-05-21 19:14:33,267] Trial 84 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,267] Trial 84 failed with value .\n", + "[W 2024-05-21 19:14:33,278] Trial 85 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,278] Trial 85 failed with value .\n", + "[W 2024-05-21 19:14:33,289] Trial 86 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,289] Trial 86 failed with value .\n", + "[W 2024-05-21 19:14:33,300] Trial 87 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,300] Trial 87 failed with value .\n", + "[W 2024-05-21 19:14:33,310] Trial 88 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,311] Trial 88 failed with value .\n", + "[W 2024-05-21 19:14:33,321] Trial 89 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,322] Trial 89 failed with value .\n", + "[W 2024-05-21 19:14:33,333] Trial 90 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,334] Trial 90 failed with value .\n", + "[W 2024-05-21 19:14:33,345] Trial 91 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,345] Trial 91 failed with value .\n", + "[W 2024-05-21 19:14:33,356] Trial 92 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,357] Trial 92 failed with value .\n", + "[W 2024-05-21 19:14:33,367] Trial 93 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,367] Trial 93 failed with value .\n", + "[W 2024-05-21 19:14:33,376] Trial 94 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,377] Trial 94 failed with value .\n", + "[W 2024-05-21 19:14:33,389] Trial 95 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,389] Trial 95 failed with value .\n", + "[W 2024-05-21 19:14:33,401] Trial 96 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,401] Trial 96 failed with value .\n", + "[W 2024-05-21 19:14:33,413] Trial 97 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,413] Trial 97 failed with value .\n", + "[W 2024-05-21 19:14:33,426] Trial 98 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,427] Trial 98 failed with value .\n", + "[W 2024-05-21 19:14:33,438] Trial 99 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,438] Trial 99 failed with value .\n", + "[W 2024-05-21 19:14:33,449] Trial 100 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,450] Trial 100 failed with value .\n", + "[W 2024-05-21 19:14:33,461] Trial 101 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,461] Trial 101 failed with value .\n", + "[W 2024-05-21 19:14:33,472] Trial 102 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,472] Trial 102 failed with value .\n", + "[W 2024-05-21 19:14:33,483] Trial 103 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,484] Trial 103 failed with value .\n", + "[W 2024-05-21 19:14:33,495] Trial 104 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,495] Trial 104 failed with value .\n", + "[W 2024-05-21 19:14:33,506] Trial 105 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,506] Trial 105 failed with value .\n", + "[W 2024-05-21 19:14:33,517] Trial 106 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,517] Trial 106 failed with value .\n", + "[W 2024-05-21 19:14:33,529] Trial 107 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,530] Trial 107 failed with value .\n", + "[W 2024-05-21 19:14:33,540] Trial 108 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,540] Trial 108 failed with value .\n", + "[W 2024-05-21 19:14:33,550] Trial 109 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,550] Trial 109 failed with value .\n", + "[W 2024-05-21 19:14:33,562] Trial 110 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,563] Trial 110 failed with value .\n", + "[W 2024-05-21 19:14:33,574] Trial 111 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,574] Trial 111 failed with value .\n", + "[W 2024-05-21 19:14:33,590] Trial 112 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,591] Trial 112 failed with value .\n", + "[W 2024-05-21 19:14:33,602] Trial 113 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,602] Trial 113 failed with value .\n", + "[W 2024-05-21 19:14:33,613] Trial 114 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,614] Trial 114 failed with value .\n", + "[W 2024-05-21 19:14:33,624] Trial 115 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,624] Trial 115 failed with value .\n", + "[W 2024-05-21 19:14:33,635] Trial 116 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,635] Trial 116 failed with value .\n", + "[W 2024-05-21 19:14:33,646] Trial 117 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,646] Trial 117 failed with value .\n", + "[W 2024-05-21 19:14:33,657] Trial 118 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,658] Trial 118 failed with value .\n", + "[W 2024-05-21 19:14:33,668] Trial 119 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,669] Trial 119 failed with value .\n", + "[W 2024-05-21 19:14:33,680] Trial 120 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,681] Trial 120 failed with value .\n", + "[W 2024-05-21 19:14:33,690] Trial 121 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,691] Trial 121 failed with value .\n", + "[W 2024-05-21 19:14:33,702] Trial 122 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,702] Trial 122 failed with value .\n", + "[W 2024-05-21 19:14:33,713] Trial 123 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,713] Trial 123 failed with value .\n", + "[W 2024-05-21 19:14:33,726] Trial 124 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,726] Trial 124 failed with value .\n", + "[W 2024-05-21 19:14:33,737] Trial 125 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,737] Trial 125 failed with value .\n", + "[W 2024-05-21 19:14:33,749] Trial 126 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,749] Trial 126 failed with value .\n", + "[W 2024-05-21 19:14:33,761] Trial 127 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,762] Trial 127 failed with value .\n", + "[W 2024-05-21 19:14:33,774] Trial 128 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,774] Trial 128 failed with value .\n", + "[W 2024-05-21 19:14:33,786] Trial 129 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,787] Trial 129 failed with value .\n", + "[W 2024-05-21 19:14:33,797] Trial 130 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,797] Trial 130 failed with value .\n", + "[W 2024-05-21 19:14:33,808] Trial 131 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,808] Trial 131 failed with value .\n", + "[W 2024-05-21 19:14:33,819] Trial 132 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,819] Trial 132 failed with value .\n", + "[W 2024-05-21 19:14:33,830] Trial 133 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,831] Trial 133 failed with value .\n", + "[W 2024-05-21 19:14:33,842] Trial 134 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,843] Trial 134 failed with value .\n", + "[W 2024-05-21 19:14:33,852] Trial 135 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,853] Trial 135 failed with value .\n", + "[W 2024-05-21 19:14:33,862] Trial 136 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,863] Trial 136 failed with value .\n", + "[W 2024-05-21 19:14:33,873] Trial 137 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,873] Trial 137 failed with value .\n", + "[W 2024-05-21 19:14:33,883] Trial 138 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,883] Trial 138 failed with value .\n", + "[W 2024-05-21 19:14:33,893] Trial 139 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,893] Trial 139 failed with value .\n", + "[W 2024-05-21 19:14:33,904] Trial 140 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,904] Trial 140 failed with value .\n", + "[W 2024-05-21 19:14:33,917] Trial 141 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,917] Trial 141 failed with value .\n", + "[W 2024-05-21 19:14:33,927] Trial 142 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,927] Trial 142 failed with value .\n", + "[W 2024-05-21 19:14:33,938] Trial 143 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,938] Trial 143 failed with value .\n", + "[W 2024-05-21 19:14:33,948] Trial 144 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,948] Trial 144 failed with value .\n", + "[W 2024-05-21 19:14:33,958] Trial 145 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,958] Trial 145 failed with value .\n", + "[W 2024-05-21 19:14:33,968] Trial 146 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,969] Trial 146 failed with value .\n", + "[W 2024-05-21 19:14:33,979] Trial 147 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,979] Trial 147 failed with value .\n", + "[W 2024-05-21 19:14:33,988] Trial 148 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,988] Trial 148 failed with value .\n", + "[W 2024-05-21 19:14:33,999] Trial 149 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:33,999] Trial 149 failed with value .\n", + "[W 2024-05-21 19:14:34,011] Trial 150 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,012] Trial 150 failed with value .\n", + "[W 2024-05-21 19:14:34,025] Trial 151 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,026] Trial 151 failed with value .\n", + "[W 2024-05-21 19:14:34,035] Trial 152 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,035] Trial 152 failed with value .\n", + "[W 2024-05-21 19:14:34,045] Trial 153 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,046] Trial 153 failed with value .\n", + "[W 2024-05-21 19:14:34,055] Trial 154 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,056] Trial 154 failed with value .\n", + "[W 2024-05-21 19:14:34,064] Trial 155 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,065] Trial 155 failed with value .\n", + "[W 2024-05-21 19:14:34,074] Trial 156 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,074] Trial 156 failed with value .\n", + "[W 2024-05-21 19:14:34,085] Trial 157 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,085] Trial 157 failed with value .\n", + "[W 2024-05-21 19:14:34,094] Trial 158 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,094] Trial 158 failed with value .\n", + "[W 2024-05-21 19:14:34,104] Trial 159 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,104] Trial 159 failed with value .\n", + "[W 2024-05-21 19:14:34,115] Trial 160 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,115] Trial 160 failed with value .\n", + "[W 2024-05-21 19:14:34,124] Trial 161 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,124] Trial 161 failed with value .\n", + "[W 2024-05-21 19:14:34,134] Trial 162 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,135] Trial 162 failed with value .\n", + "[W 2024-05-21 19:14:34,145] Trial 163 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,145] Trial 163 failed with value .\n", + "[W 2024-05-21 19:14:34,154] Trial 164 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,155] Trial 164 failed with value .\n", + "[W 2024-05-21 19:14:34,165] Trial 165 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,165] Trial 165 failed with value .\n", + "[W 2024-05-21 19:14:34,175] Trial 166 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,176] Trial 166 failed with value .\n", + "[W 2024-05-21 19:14:34,185] Trial 167 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,185] Trial 167 failed with value .\n", + "[W 2024-05-21 19:14:34,196] Trial 168 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,197] Trial 168 failed with value .\n", + "[W 2024-05-21 19:14:34,206] Trial 169 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,207] Trial 169 failed with value .\n", + "[W 2024-05-21 19:14:34,215] Trial 170 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,216] Trial 170 failed with value .\n", + "[W 2024-05-21 19:14:34,225] Trial 171 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,226] Trial 171 failed with value .\n", + "[W 2024-05-21 19:14:34,235] Trial 172 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,236] Trial 172 failed with value .\n", + "[W 2024-05-21 19:14:34,247] Trial 173 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,247] Trial 173 failed with value .\n", + "[W 2024-05-21 19:14:34,258] Trial 174 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,258] Trial 174 failed with value .\n", + "[W 2024-05-21 19:14:34,268] Trial 175 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,268] Trial 175 failed with value .\n", + "[W 2024-05-21 19:14:34,278] Trial 176 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,278] Trial 176 failed with value .\n", + "[W 2024-05-21 19:14:34,288] Trial 177 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,289] Trial 177 failed with value .\n", + "[W 2024-05-21 19:14:34,299] Trial 178 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,299] Trial 178 failed with value .\n", + "[W 2024-05-21 19:14:34,310] Trial 179 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,310] Trial 179 failed with value .\n", + "[W 2024-05-21 19:14:34,319] Trial 180 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,320] Trial 180 failed with value .\n", + "[W 2024-05-21 19:14:34,329] Trial 181 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,330] Trial 181 failed with value .\n", + "[W 2024-05-21 19:14:34,339] Trial 182 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,340] Trial 182 failed with value .\n", + "[W 2024-05-21 19:14:34,349] Trial 183 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,349] Trial 183 failed with value .\n", + "[W 2024-05-21 19:14:34,358] Trial 184 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,359] Trial 184 failed with value .\n", + "[W 2024-05-21 19:14:34,369] Trial 185 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,369] Trial 185 failed with value .\n", + "[W 2024-05-21 19:14:34,378] Trial 186 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,379] Trial 186 failed with value .\n", + "[W 2024-05-21 19:14:34,388] Trial 187 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,389] Trial 187 failed with value .\n", + "[W 2024-05-21 19:14:34,408] Trial 188 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,409] Trial 188 failed with value .\n", + "[W 2024-05-21 19:14:34,421] Trial 189 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,421] Trial 189 failed with value .\n", + "[W 2024-05-21 19:14:34,432] Trial 190 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,433] Trial 190 failed with value .\n", + "[W 2024-05-21 19:14:34,442] Trial 191 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,442] Trial 191 failed with value .\n", + "[W 2024-05-21 19:14:34,452] Trial 192 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,452] Trial 192 failed with value .\n", + "[W 2024-05-21 19:14:34,462] Trial 193 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,463] Trial 193 failed with value .\n", + "[W 2024-05-21 19:14:34,473] Trial 194 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,474] Trial 194 failed with value .\n", + "[W 2024-05-21 19:14:34,484] Trial 195 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,485] Trial 195 failed with value .\n", + "[W 2024-05-21 19:14:34,494] Trial 196 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,495] Trial 196 failed with value .\n", + "[W 2024-05-21 19:14:34,505] Trial 197 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,505] Trial 197 failed with value .\n", + "[W 2024-05-21 19:14:34,515] Trial 198 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,515] Trial 198 failed with value .\n", + "[W 2024-05-21 19:14:34,524] Trial 199 failed with parameters: {} because of the following error: The value could not be cast to float.\n", + "[W 2024-05-21 19:14:34,525] Trial 199 failed with value .\n" + ] + } + ], + "source": [ + "# Not let's run the optimization!\n", + "start = \"2024-05-01\"\n", + "end = \"2024-05-20\"\n", + "backtesting_resolution = \"1m\"\n", + "n_trials = 200\n", + "study.optimize(lambda trial: objective(trial, start, end, backtesting_resolution), n_trials=n_trials)\n" + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-05-22T00:14:34.527783Z", + "start_time": "2024-05-22T00:14:32.359422Z" + } } }, { "cell_type": "code", "execution_count": null, "outputs": [], - "source": [ - "# Not let's run the optimization!\n", - "\n", - "n_trials = 200\n", - "study.optimize(objective, n_trials=n_trials)" - ], + "source": [], "metadata": { "collapsed": false } diff --git a/quants_lab/research_notebooks/marroq/01_strategy_design_marroq.ipynb b/quants_lab/research_notebooks/marroq (old)/01_strategy_design_marroq.ipynb similarity index 100% rename from quants_lab/research_notebooks/marroq/01_strategy_design_marroq.ipynb rename to quants_lab/research_notebooks/marroq (old)/01_strategy_design_marroq.ipynb diff --git a/quants_lab/research_notebooks/marroq/02_single_controller_backtest.ipynb b/quants_lab/research_notebooks/marroq (old)/02_single_controller_backtest.ipynb similarity index 100% rename from quants_lab/research_notebooks/marroq/02_single_controller_backtest.ipynb rename to quants_lab/research_notebooks/marroq (old)/02_single_controller_backtest.ipynb diff --git a/quants_lab/research_notebooks/marroq/03_optimization_notebook.ipynb b/quants_lab/research_notebooks/marroq (old)/03_optimization_notebook.ipynb similarity index 100% rename from quants_lab/research_notebooks/marroq/03_optimization_notebook.ipynb rename to quants_lab/research_notebooks/marroq (old)/03_optimization_notebook.ipynb diff --git a/quants_lab/research_notebooks/supertrend_multitimeframe/01_strategy_design_supertrend_multitimeframe.ipynb b/quants_lab/research_notebooks/supertrend_multitimeframe(old)/01_strategy_design_supertrend_multitimeframe.ipynb similarity index 100% rename from quants_lab/research_notebooks/supertrend_multitimeframe/01_strategy_design_supertrend_multitimeframe.ipynb rename to quants_lab/research_notebooks/supertrend_multitimeframe(old)/01_strategy_design_supertrend_multitimeframe.ipynb diff --git a/quants_lab/research_notebooks/supertrend_multitimeframe/02_controller_backtest.ipynb b/quants_lab/research_notebooks/supertrend_multitimeframe(old)/02_controller_backtest.ipynb similarity index 100% rename from quants_lab/research_notebooks/supertrend_multitimeframe/02_controller_backtest.ipynb rename to quants_lab/research_notebooks/supertrend_multitimeframe(old)/02_controller_backtest.ipynb diff --git a/quants_lab/research_notebooks/supertrend_multitimeframe/03_optimization_notebook.ipynb b/quants_lab/research_notebooks/supertrend_multitimeframe(old)/03_optimization_notebook.ipynb similarity index 100% rename from quants_lab/research_notebooks/supertrend_multitimeframe/03_optimization_notebook.ipynb rename to quants_lab/research_notebooks/supertrend_multitimeframe(old)/03_optimization_notebook.ipynb