PNG  IHDRxsBIT|d pHYs+tEXtSoftwarewww.inkscape.org<,tEXtComment File Manager

File Manager

Path: /home/u264723324/domains/allgotrx.com/public_html/app/Console/Commands/

Viewing File: SetupAdvancedTrading.php

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use App\Models\TradingBot;
use App\Models\Copytrading;
use App\Models\Settings;

class SetupAdvancedTrading extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'setup:advanced-trading {--force : Force creation even if data exists}';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Setup advanced trading system with 12 new trading bots and 12 copy trading experts';

    /**
     * Execute the console command.
     *
     * @return int
     */
    public function handle()
    {
        $this->info('🚀 Setting up Advanced Trading System...');
        $this->info('📊 Adding 12 new trading bots and 12 copy trading experts');
        $this->newLine();

        try {
            $force = $this->option('force');
            
            // Create 12 new advanced trading bots
            $this->info('🤖 Creating 12 advanced trading bots...');
            $this->createAdvancedTradingBots($force);
            
            // Create 12 copy trading experts
            $this->info('👥 Creating 12 copy trading experts...');
            $this->createCopyTradingExperts($force);
            
            $this->newLine();
            $this->info('🎉 Advanced Trading setup completed successfully!');
            $this->info('✅ Total Trading Bots: ' . TradingBot::count());
            $this->info('✅ Total Copy Trading Experts: ' . Copytrading::count());
            
            $this->newLine();
            $this->info('📝 Next steps:');
            $this->info('1. Visit Admin -> Bot Trading to manage trading bots');
            $this->info('2. Visit Admin -> Copy Trading to manage copy trading experts');
            $this->info('3. Users can now choose from expanded bot and copy trading options');

        } catch (\Exception $e) {
            $this->error('Error setting up advanced trading: ' . $e->getMessage());
            return 1;
        }

        return 0;
    }

    /**
     * Create 12 advanced trading bots
     */
    private function createAdvancedTradingBots($force = false)
    {
        $advancedBots = [
            [
                'name' => 'AlgoTrader Supreme',
                'bot_type' => 'crypto',
                'description' => 'Next-generation algorithmic trading bot powered by quantum computing principles. Specializes in high-frequency crypto arbitrage across multiple exchanges with lightning-fast execution.',
                'min_investment' => 500.00,
                'max_investment' => 100000.00,
                'daily_profit_min' => 2.1,
                'daily_profit_max' => 6.8,
                'success_rate' => 91,
                'duration_days' => 45,
                'status' => 'active',
                'trading_pairs' => ['BTC/USDT', 'ETH/USDT', 'BNB/USDT', 'ADA/USDT', 'SOL/USDT', 'AVAX/USDT'],
                'risk_settings' => [
                    'stop_loss' => 3.5,
                    'take_profit' => 12,
                    'max_trades_per_day' => 15,
                    'risk_per_trade' => 2.8,
                ],
                'strategy_details' => [
                    'algorithm' => 'Quantum ML Algorithm',
                    'indicators' => ['Volume Profile', 'Order Book Analysis', 'Multi-timeframe RSI'],
                    'timeframe' => '1M',
                    'market_analysis' => 'Technical & Arbitrage',
                ]
            ],
            [
                'name' => 'DeFi Yield Hunter',
                'bot_type' => 'crypto',
                'description' => 'Specialized DeFi protocol explorer that identifies the most profitable yield farming opportunities across decentralized exchanges and lending platforms.',
                'min_investment' => 1000.00,
                'max_investment' => 75000.00,
                'daily_profit_min' => 1.8,
                'daily_profit_max' => 5.2,
                'success_rate' => 88,
                'duration_days' => 60,
                'status' => 'active',
                'trading_pairs' => ['UNI/USDT', 'AAVE/USDT', 'COMP/USDT', 'SUSHI/USDT', 'CRV/USDT'],
                'risk_settings' => [
                    'stop_loss' => 4.0,
                    'take_profit' => 10,
                    'max_trades_per_day' => 8,
                    'risk_per_trade' => 2.5,
                ],
                'strategy_details' => [
                    'algorithm' => 'DeFi Yield Optimization',
                    'indicators' => ['APY Analysis', 'Liquidity Depth', 'Impermanent Loss Calculator'],
                    'timeframe' => '4H',
                    'market_analysis' => 'DeFi & Fundamental',
                ]
            ],
            [
                'name' => 'Forex Precision Elite',
                'bot_type' => 'forex',
                'description' => 'Premium forex trading bot utilizing advanced neural networks and sentiment analysis. Designed for institutional-grade precision in major and exotic currency pairs.',
                'min_investment' => 750.00,
                'max_investment' => 50000.00,
                'daily_profit_min' => 1.5,
                'daily_profit_max' => 4.1,
                'success_rate' => 93,
                'duration_days' => 90,
                'status' => 'active',
                'trading_pairs' => ['EUR/USD', 'GBP/USD', 'USD/JPY', 'AUD/USD', 'NZD/USD', 'USD/CAD'],
                'risk_settings' => [
                    'stop_loss' => 2.5,
                    'take_profit' => 8,
                    'max_trades_per_day' => 10,
                    'risk_per_trade' => 1.8,
                ],
                'strategy_details' => [
                    'algorithm' => 'Neural Network + Sentiment AI',
                    'indicators' => ['Economic Calendar', 'News Sentiment', 'Correlation Matrix'],
                    'timeframe' => '30M',
                    'market_analysis' => 'Technical & Fundamental & Sentiment',
                ]
            ],
            [
                'name' => 'Stock Momentum Master',
                'bot_type' => 'stocks',
                'description' => 'Advanced momentum trading bot that identifies breakout patterns and trending stocks. Focuses on high-volume stocks with strong directional moves.',
                'min_investment' => 1500.00,
                'max_investment' => 80000.00,
                'daily_profit_min' => 1.2,
                'daily_profit_max' => 3.8,
                'success_rate' => 89,
                'duration_days' => 120,
                'status' => 'active',
                'trading_pairs' => ['AAPL', 'TSLA', 'NVDA', 'AMD', 'GOOGL', 'AMZN', 'META', 'NFLX'],
                'risk_settings' => [
                    'stop_loss' => 3.0,
                    'take_profit' => 9,
                    'max_trades_per_day' => 6,
                    'risk_per_trade' => 2.2,
                ],
                'strategy_details' => [
                    'algorithm' => 'Momentum Detection AI',
                    'indicators' => ['Volume Spike', 'Relative Strength', 'Breakout Patterns'],
                    'timeframe' => '15M',
                    'market_analysis' => 'Technical & Volume Analysis',
                ]
            ],
            [
                'name' => 'Options Gamma Scalper',
                'bot_type' => 'options',
                'description' => 'Sophisticated options trading bot specializing in gamma scalping strategies. Exploits volatility changes and time decay for consistent profits.',
                'min_investment' => 2000.00,
                'max_investment' => 60000.00,
                'daily_profit_min' => 2.5,
                'daily_profit_max' => 7.2,
                'success_rate' => 85,
                'duration_days' => 30,
                'status' => 'active',
                'trading_pairs' => ['SPY', 'QQQ', 'IWM', 'AAPL', 'TSLA', 'AMZN'],
                'risk_settings' => [
                    'stop_loss' => 5.0,
                    'take_profit' => 15,
                    'max_trades_per_day' => 12,
                    'risk_per_trade' => 3.5,
                ],
                'strategy_details' => [
                    'algorithm' => 'Gamma Hedging Algorithm',
                    'indicators' => ['Implied Volatility', 'Greeks', 'Option Flow'],
                    'timeframe' => '5M',
                    'market_analysis' => 'Options & Volatility',
                ]
            ],
            [
                'name' => 'Commodity Weather AI',
                'bot_type' => 'commodities',
                'description' => 'Intelligent commodity trading bot that incorporates weather data, supply chain analysis, and seasonal patterns for agricultural and energy commodities.',
                'min_investment' => 800.00,
                'max_investment' => 40000.00,
                'daily_profit_min' => 1.3,
                'daily_profit_max' => 4.5,
                'success_rate' => 87,
                'duration_days' => 180,
                'status' => 'active',
                'trading_pairs' => ['WHEAT', 'CORN', 'SOYBEANS', 'COFFEE', 'SUGAR', 'COTTON'],
                'risk_settings' => [
                    'stop_loss' => 4.5,
                    'take_profit' => 11,
                    'max_trades_per_day' => 4,
                    'risk_per_trade' => 2.8,
                ],
                'strategy_details' => [
                    'algorithm' => 'Weather Pattern AI',
                    'indicators' => ['Weather Data', 'Supply Reports', 'Seasonal Trends'],
                    'timeframe' => '1D',
                    'market_analysis' => 'Fundamental & Weather',
                ]
            ],
            [
                'name' => 'Energy Futures Pro',
                'bot_type' => 'commodities',
                'description' => 'Professional energy trading bot focused on oil, gas, and renewable energy futures. Uses geopolitical analysis and supply-demand dynamics.',
                'min_investment' => 1200.00,
                'max_investment' => 70000.00,
                'daily_profit_min' => 1.7,
                'daily_profit_max' => 5.1,
                'success_rate' => 83,
                'duration_days' => 90,
                'status' => 'active',
                'trading_pairs' => ['WTI_OIL', 'BRENT_OIL', 'NATURAL_GAS', 'HEATING_OIL', 'GASOLINE'],
                'risk_settings' => [
                    'stop_loss' => 5.5,
                    'take_profit' => 13,
                    'max_trades_per_day' => 5,
                    'risk_per_trade' => 3.2,
                ],
                'strategy_details' => [
                    'algorithm' => 'Energy Market AI',
                    'indicators' => ['Inventory Reports', 'Geopolitical Events', 'Refinery Data'],
                    'timeframe' => '4H',
                    'market_analysis' => 'Fundamental & Geopolitical',
                ]
            ],
            [
                'name' => 'Index Arbitrage Bot',
                'bot_type' => 'indices',
                'description' => 'Advanced arbitrage bot that exploits price differences between index futures and their underlying components. High-frequency execution with minimal risk.',
                'min_investment' => 2500.00,
                'max_investment' => 120000.00,
                'daily_profit_min' => 0.8,
                'daily_profit_max' => 2.5,
                'success_rate' => 95,
                'duration_days' => 365,
                'status' => 'active',
                'trading_pairs' => ['SPX', 'NDX', 'RUT', 'VIX', 'DAX', 'FTSE'],
                'risk_settings' => [
                    'stop_loss' => 1.5,
                    'take_profit' => 4,
                    'max_trades_per_day' => 20,
                    'risk_per_trade' => 1.0,
                ],
                'strategy_details' => [
                    'algorithm' => 'Statistical Arbitrage',
                    'indicators' => ['Basis Spread', 'Fair Value', 'Correlation Analysis'],
                    'timeframe' => '1M',
                    'market_analysis' => 'Statistical & Arbitrage',
                ]
            ],
            [
                'name' => 'Bond Yield Hunter',
                'bot_type' => 'bonds',
                'description' => 'Sophisticated fixed-income trading bot that navigates interest rate changes and yield curve movements. Perfect for institutional-style bond trading.',
                'min_investment' => 5000.00,
                'max_investment' => 200000.00,
                'daily_profit_min' => 0.4,
                'daily_profit_max' => 1.8,
                'success_rate' => 92,
                'duration_days' => 365,
                'status' => 'active',
                'trading_pairs' => ['10Y_TREASURY', '30Y_TREASURY', '2Y_TREASURY', 'CORPORATE_BONDS'],
                'risk_settings' => [
                    'stop_loss' => 2.0,
                    'take_profit' => 5,
                    'max_trades_per_day' => 3,
                    'risk_per_trade' => 1.5,
                ],
                'strategy_details' => [
                    'algorithm' => 'Yield Curve Analysis AI',
                    'indicators' => ['Duration', 'Convexity', 'Credit Spreads'],
                    'timeframe' => '1D',
                    'market_analysis' => 'Interest Rate & Credit',
                ]
            ],
            [
                'name' => 'AI Sentiment Trader',
                'bot_type' => 'mixed',
                'description' => 'Revolutionary sentiment-based trading bot that analyzes social media, news, and market sentiment across multiple asset classes for predictive trading.',
                'min_investment' => 600.00,
                'max_investment' => 35000.00,
                'daily_profit_min' => 1.9,
                'daily_profit_max' => 5.8,
                'success_rate' => 86,
                'duration_days' => 60,
                'status' => 'active',
                'trading_pairs' => ['BTC/USD', 'ETH/USD', 'AAPL', 'TSLA', 'EUR/USD'],
                'risk_settings' => [
                    'stop_loss' => 4.0,
                    'take_profit' => 10,
                    'max_trades_per_day' => 8,
                    'risk_per_trade' => 2.5,
                ],
                'strategy_details' => [
                    'algorithm' => 'Sentiment Analysis AI',
                    'indicators' => ['Social Sentiment', 'News Analysis', 'Fear & Greed Index'],
                    'timeframe' => '1H',
                    'market_analysis' => 'Sentiment & Technical',
                ]
            ],
            [
                'name' => 'Volatility Surface Bot',
                'bot_type' => 'volatility',
                'description' => 'Advanced volatility trading bot that maps and trades the volatility surface across multiple assets. Ideal for sophisticated volatility strategies.',
                'min_investment' => 3000.00,
                'max_investment' => 150000.00,
                'daily_profit_min' => 1.1,
                'daily_profit_max' => 4.2,
                'success_rate' => 88,
                'duration_days' => 45,
                'status' => 'active',
                'trading_pairs' => ['VIX', 'VXX', 'UVXY', 'SVXY', 'VIXY'],
                'risk_settings' => [
                    'stop_loss' => 6.0,
                    'take_profit' => 14,
                    'max_trades_per_day' => 6,
                    'risk_per_trade' => 3.8,
                ],
                'strategy_details' => [
                    'algorithm' => 'Volatility Surface Mapping',
                    'indicators' => ['Implied Volatility', 'Term Structure', 'Skew Analysis'],
                    'timeframe' => '15M',
                    'market_analysis' => 'Volatility & Statistical',
                ]
            ],
            [
                'name' => 'Global Macro Beast',
                'bot_type' => 'mixed',
                'description' => 'Comprehensive macro trading bot that implements global macro strategies across currencies, bonds, commodities, and equities based on economic data.',
                'min_investment' => 10000.00,
                'max_investment' => 500000.00,
                'daily_profit_min' => 0.7,
                'daily_profit_max' => 2.8,
                'success_rate' => 90,
                'duration_days' => 365,
                'status' => 'active',
                'trading_pairs' => ['USD_INDEX', 'EUR/USD', 'GOLD', '10Y_BOND', 'SPX'],
                'risk_settings' => [
                    'stop_loss' => 3.5,
                    'take_profit' => 8,
                    'max_trades_per_day' => 4,
                    'risk_per_trade' => 2.0,
                ],
                'strategy_details' => [
                    'algorithm' => 'Global Macro AI',
                    'indicators' => ['Economic Data', 'Central Bank Policy', 'Global Flows'],
                    'timeframe' => '1D',
                    'market_analysis' => 'Macro Economic & Fundamental',
                ]
            ]
        ];

        $created = 0;
        foreach ($advancedBots as $bot) {
            if ($force || !TradingBot::where('name', $bot['name'])->exists()) {
                TradingBot::create($bot);
                $created++;
                $this->info("✓ Created bot: {$bot['name']}");
            } else {
                $this->info("- Bot already exists: {$bot['name']}");
            }
        }

        $this->info("✅ Created {$created} new trading bots");
    }

    /**
     * Create 12 copy trading experts
     */
    private function createCopyTradingExperts($force = false)
    {
        $copyExperts = [
            [
                'name' => 'Alexandra Chen',
                'photo' => 'avatar1.jpg',
                'rating' => 5,
                'followers' => 12450,
                'equity' => 285000.00,
                'total_profit' => 84750.00,
                'status' => 'active',
                'description' => 'Former Goldman Sachs quantitative analyst specializing in algorithmic trading strategies. 15+ years experience in institutional trading with consistent alpha generation.',
                'win_rate' => 89,
                'total_trades' => 3247,
                'price' => 2500.00,
                'tag' => 'Quant Expert',
                'type' => 'premium'
            ],
            [
                'name' => 'Marcus Rodriguez',
                'photo' => 'avatar2.jpg',
                'rating' => 5,
                'followers' => 8920,
                'equity' => 195000.00,
                'total_profit' => 56780.00,
                'status' => 'active',
                'description' => 'Crypto trading pioneer with deep expertise in DeFi protocols and yield farming strategies. Known for identifying emerging crypto trends before the market.',
                'win_rate' => 84,
                'total_trades' => 2156,
                'price' => 1800.00,
                'tag' => 'Crypto Specialist',
                'type' => 'premium'
            ],
            [
                'name' => 'Sarah Williams',
                'photo' => 'avatar3.jpg',
                'rating' => 4,
                'followers' => 15600,
                'equity' => 320000.00,
                'total_profit' => 94500.00,
                'status' => 'active',
                'description' => 'Forex market veteran with 20 years of experience in currency trading. Specializes in major pairs and carries trade strategies with exceptional risk management.',
                'win_rate' => 91,
                'total_trades' => 4567,
                'price' => 3200.00,
                'tag' => 'Forex Master',
                'type' => 'vip'
            ],
            [
                'name' => 'David Kim',
                'photo' => 'avatar4.jpg',
                'rating' => 5,
                'followers' => 6780,
                'equity' => 145000.00,
                'total_profit' => 42360.00,
                'status' => 'active',
                'description' => 'Growth stock specialist focusing on technology and biotech sectors. Former hedge fund manager with proven track record in identifying multi-bagger stocks.',
                'win_rate' => 78,
                'total_trades' => 1889,
                'price' => 2200.00,
                'tag' => 'Growth Stocks',
                'type' => 'premium'
            ],
            [
                'name' => 'Elena Volkov',
                'photo' => 'avatar5.jpg',
                'rating' => 5,
                'followers' => 9340,
                'equity' => 210000.00,
                'total_profit' => 63480.00,
                'status' => 'active',
                'description' => 'Options trading expert with deep knowledge of volatility strategies. Specializes in complex multi-leg options strategies and volatility arbitrage.',
                'win_rate' => 86,
                'total_trades' => 2945,
                'price' => 2800.00,
                'tag' => 'Options Pro',
                'type' => 'vip'
            ],
            [
                'name' => 'James Thompson',
                'photo' => 'avatar6.jpg',
                'rating' => 4,
                'followers' => 11200,
                'equity' => 185000.00,
                'total_profit' => 49870.00,
                'status' => 'active',
                'description' => 'Commodities trading specialist with expertise in energy and agricultural markets. Uses fundamental analysis and seasonal patterns for consistent profits.',
                'win_rate' => 82,
                'total_trades' => 1678,
                'price' => 1950.00,
                'tag' => 'Commodities',
                'type' => 'standard'
            ],
            [
                'name' => 'Yuki Tanaka',
                'photo' => 'avatar7.jpg',
                'rating' => 5,
                'followers' => 7650,
                'equity' => 265000.00,
                'total_profit' => 78940.00,
                'status' => 'active',
                'description' => 'Asian markets expert with deep understanding of Japanese and Chinese equity markets. Specializes in cross-border arbitrage and currency hedging.',
                'win_rate' => 88,
                'total_trades' => 3123,
                'price' => 2600.00,
                'tag' => 'Asian Markets',
                'type' => 'premium'
            ],
            [
                'name' => 'Roberto Silva',
                'photo' => 'avatar8.jpg',
                'rating' => 4,
                'followers' => 5890,
                'equity' => 132000.00,
                'total_profit' => 35680.00,
                'status' => 'active',
                'description' => 'Emerging markets specialist focusing on Latin American and Brazilian markets. Expert in currency volatility and emerging market dynamics.',
                'win_rate' => 79,
                'total_trades' => 1456,
                'price' => 1600.00,
                'tag' => 'Emerging Markets',
                'type' => 'standard'
            ],
            [
                'name' => 'Isabella Foster',
                'photo' => 'avatar9.jpg',
                'rating' => 5,
                'followers' => 13800,
                'equity' => 385000.00,
                'total_profit' => 124500.00,
                'status' => 'active',
                'description' => 'Fixed income and bond trading expert with institutional background. Specializes in yield curve strategies and credit spread trading.',
                'win_rate' => 93,
                'total_trades' => 2789,
                'price' => 3800.00,
                'tag' => 'Fixed Income',
                'type' => 'vip'
            ],
            [
                'name' => 'Mohammed Al-Rashid',
                'photo' => 'avatar10.jpg',
                'rating' => 4,
                'followers' => 8450,
                'equity' => 175000.00,
                'total_profit' => 45670.00,
                'status' => 'active',
                'description' => 'Middle Eastern markets specialist with expertise in oil and gas sector investments. Strong background in geopolitical analysis and energy trading.',
                'win_rate' => 81,
                'total_trades' => 1934,
                'price' => 2100.00,
                'tag' => 'Energy Sector',
                'type' => 'premium'
            ],
            [
                'name' => 'Lisa Anderson',
                'photo' => 'avatar11.jpg',
                'rating' => 5,
                'followers' => 16750,
                'equity' => 420000.00,
                'total_profit' => 145600.00,
                'status' => 'active',
                'description' => 'ESG and sustainable investing pioneer. Combines fundamental analysis with environmental and social impact criteria for long-term wealth creation.',
                'win_rate' => 87,
                'total_trades' => 2345,
                'price' => 4200.00,
                'tag' => 'ESG Investing',
                'type' => 'vip'
            ],
            [
                'name' => 'Viktor Petrov',
                'photo' => 'avatar12.jpg',
                'rating' => 4,
                'followers' => 10250,
                'equity' => 240000.00,
                'total_profit' => 67890.00,
                'status' => 'active',
                'description' => 'High-frequency trading specialist with expertise in market microstructure. Former prop trader with deep knowledge of algorithmic execution strategies.',
                'win_rate' => 85,
                'total_trades' => 5678,
                'price' => 2900.00,
                'tag' => 'HFT Expert',
                'type' => 'premium'
            ]
        ];

        $created = 0;
        foreach ($copyExperts as $expert) {
            if ($force || !Copytrading::where('name', $expert['name'])->exists()) {
                Copytrading::create($expert);
                $created++;
                $this->info("✓ Created copy expert: {$expert['name']}");
            } else {
                $this->info("- Copy expert already exists: {$expert['name']}");
            }
        }

        $this->info("✅ Created {$created} new copy trading experts");
    }
}
b IDATxytVսϓ22 A@IR :hCiZ[v*E:WũZA ^dQeQ @ !jZ'>gsV仿$|?g)&x-EIENT ;@xT.i%-X}SvS5.r/UHz^_$-W"w)Ɗ/@Z &IoX P$K}JzX:;` &, ŋui,e6mX ԵrKb1ԗ)DADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADA݀!I*]R;I2$eZ#ORZSrr6mteffu*((Pu'v{DIߔ4^pIm'77WEEE;vƎ4-$]'RI{\I&G :IHJ DWBB=\WR޽m o$K(V9ABB.}jѢv`^?IOȅ} ڶmG}T#FJ`56$-ھ}FI&v;0(h;Б38CӧOWf!;A i:F_m9s&|q%=#wZprrrla A &P\\СC[A#! {olF} `E2}MK/vV)i{4BffV\|ۭX`b@kɶ@%i$K z5zhmX[IXZ` 'b%$r5M4º/l ԃߖxhʔ)[@=} K6IM}^5k㏷݆z ΗÿO:gdGBmyT/@+Vɶ纽z񕏵l.y޴it뭷zV0[Y^>Wsqs}\/@$(T7f.InݺiR$푔n.~?H))\ZRW'Mo~v Ov6oԃxz! S,&xm/yɞԟ?'uaSѽb,8GלKboi&3t7Y,)JJ c[nzӳdE&KsZLӄ I?@&%ӟ۶mSMMњ0iؐSZ,|J+N ~,0A0!5%Q-YQQa3}$_vVrf9f?S8`zDADADADADADADADADAdqP,تmMmg1V?rSI꒟]u|l RCyEf٢9 jURbztѰ!m5~tGj2DhG*{H9)꒟ר3:(+3\?/;TUݭʴ~S6lڧUJ*i$d(#=Yݺd{,p|3B))q:vN0Y.jkק6;SɶVzHJJЀ-utѹսk>QUU\޲~]fFnK?&ߡ5b=z9)^|u_k-[y%ZNU6 7Mi:]ۦtk[n X(e6Bb."8cۭ|~teuuw|ήI-5"~Uk;ZicEmN/:]M> cQ^uiƞ??Ңpc#TUU3UakNwA`:Y_V-8.KKfRitv޲* 9S6ֿj,ՃNOMߤ]z^fOh|<>@Å5 _/Iu?{SY4hK/2]4%it5q]GGe2%iR| W&f*^]??vq[LgE_3f}Fxu~}qd-ږFxu~I N>\;͗O֊:̗WJ@BhW=y|GgwܷH_NY?)Tdi'?խwhlmQi !SUUsw4kӺe4rfxu-[nHtMFj}H_u~w>)oV}(T'ebʒv3_[+vn@Ȭ\S}ot}w=kHFnxg S 0eޢm~l}uqZfFoZuuEg `zt~? b;t%>WTkķh[2eG8LIWx,^\thrl^Ϊ{=dž<}qV@ ⠨Wy^LF_>0UkDuʫuCs$)Iv:IK;6ֲ4{^6եm+l3>݆uM 9u?>Zc }g~qhKwڭeFMM~pМuqǿz6Tb@8@Y|jx](^]gf}M"tG -w.@vOqh~/HII`S[l.6nØXL9vUcOoB\xoǤ'T&IǍQw_wpv[kmO{w~>#=P1Pɞa-we:iǏlHo׈꒟f9SzH?+shk%Fs:qVhqY`jvO'ρ?PyX3lх]˾uV{ݞ]1,MzYNW~̈́ joYn}ȚF߾׮mS]F z+EDxm/d{F{-W-4wY듏:??_gPf ^3ecg ҵs8R2מz@TANGj)}CNi/R~}c:5{!ZHӋӾ6}T]G]7W6^n 9*,YqOZj:P?Q DFL|?-^.Ɵ7}fFh׶xe2Pscz1&5\cn[=Vn[ĶE鎀uˌd3GII k;lNmشOuuRVfBE]ۣeӶu :X-[(er4~LHi6:Ѻ@ԅrST0trk%$Č0ez" *z"T/X9|8.C5Feg}CQ%͞ˣJvL/?j^h&9xF`њZ(&yF&Iݻfg#W;3^{Wo^4'vV[[K';+mӍִ]AC@W?1^{එyh +^]fm~iԵ]AB@WTk̏t uR?l.OIHiYyԶ]Aˀ7c:q}ힽaf6Z~қm(+sK4{^6}T*UUu]n.:kx{:2 _m=sAߤU@?Z-Vކеz왍Nэ{|5 pڶn b p-@sPg]0G7fy-M{GCF'%{4`=$-Ge\ eU:m+Zt'WjO!OAF@ik&t݆ϥ_ e}=]"Wz_.͜E3leWFih|t-wZۍ-uw=6YN{6|} |*={Ѽn.S.z1zjۻTH]흾 DuDvmvK.`V]yY~sI@t?/ϓ. m&["+P?MzovVЫG3-GRR[(!!\_,^%?v@ҵő m`Y)tem8GMx.))A]Y i`ViW`?^~!S#^+ѽGZj?Vģ0.))A꨷lzL*]OXrY`DBBLOj{-MH'ii-ϰ ok7^ )쭡b]UXSְmռY|5*cֽk0B7镹%ڽP#8nȎq}mJr23_>lE5$iwui+ H~F`IjƵ@q \ @#qG0".0" l`„.0! ,AQHN6qzkKJ#o;`Xv2>,tێJJ7Z/*A .@fفjMzkg @TvZH3Zxu6Ra'%O?/dQ5xYkU]Rֽkق@DaS^RSּ5|BeHNN͘p HvcYcC5:y #`οb;z2.!kr}gUWkyZn=f Pvsn3p~;4p˚=ē~NmI] ¾ 0lH[_L hsh_ғߤc_њec)g7VIZ5yrgk̞W#IjӪv>՞y睝M8[|]\շ8M6%|@PZڨI-m>=k='aiRo-x?>Q.}`Ȏ:Wsmu u > .@,&;+!!˱tﭧDQwRW\vF\~Q7>spYw$%A~;~}6¾ g&if_=j,v+UL1(tWake:@Ș>j$Gq2t7S?vL|]u/ .(0E6Mk6hiۺzښOrifޱxm/Gx> Lal%%~{lBsR4*}{0Z/tNIɚpV^#Lf:u@k#RSu =S^ZyuR/.@n&΃z~B=0eg뺆#,Þ[B/?H uUf7y Wy}Bwegל`Wh(||`l`.;Ws?V@"c:iɍL֯PGv6zctM̠':wuW;d=;EveD}9J@B(0iհ bvP1{\P&G7D޴Iy_$-Qjm~Yrr&]CDv%bh|Yzni_ˆR;kg}nJOIIwyuL}{ЌNj}:+3Y?:WJ/N+Rzd=hb;dj͒suݔ@NKMԄ jqzC5@y°hL m;*5ezᕏ=ep XL n?מ:r`۵tŤZ|1v`V뽧_csج'ߤ%oTuumk%%%h)uy]Nk[n 'b2 l.=͜E%gf$[c;s:V-͞WߤWh-j7]4=F-X]>ZLSi[Y*We;Zan(ӇW|e(HNNP5[= r4tP &0<pc#`vTNV GFqvTi*Tyam$ߏWyE*VJKMTfFw>'$-ؽ.Ho.8c"@DADADADADADADADADA~j*֘,N;Pi3599h=goضLgiJ5փy~}&Zd9p֚ e:|hL``b/d9p? fgg+%%hMgXosج, ΩOl0Zh=xdjLmhݻoO[g_l,8a]٭+ӧ0$I]c]:粹:Teꢢ"5a^Kgh,&= =՟^߶“ߢE ܹS J}I%:8 IDAT~,9/ʃPW'Mo}zNƍ쨓zPbNZ~^z=4mswg;5 Y~SVMRXUյڱRf?s:w ;6H:ºi5-maM&O3;1IKeamZh͛7+##v+c ~u~ca]GnF'ټL~PPPbn voC4R,ӟgg %hq}@#M4IÇ Oy^xMZx ) yOw@HkN˖-Sǎmb]X@n+i͖!++K3gd\$mt$^YfJ\8PRF)77Wא!Cl$i:@@_oG I{$# 8磌ŋ91A (Im7֭>}ߴJq7ޗt^ -[ԩSj*}%]&' -ɓ'ꫯVzzvB#;a 7@GxI{j޼ƌ.LÇWBB7`O"I$/@R @eee@۷>}0,ɒ2$53Xs|cS~rpTYYY} kHc %&k.], @ADADADADADADADADA@lT<%''*Lo^={رc5h %$+CnܸQ3fҥK}vUVVs9G R,_{xˇ3o߾;TTTd}馛]uuuG~iԩ@4bnvmvfϞ /Peeeq}}za I~,誫{UWW뮻}_~YƍSMMMYχ֝waw\ďcxꩧtEƍկ_?۷5@u?1kNׯWzz/wy>}zj3 k(ٺuq_Zvf̘:~ ABQ&r|!%KҥKgԞ={<_X-z !CyFUUz~ ABQIIIjݺW$UXXDٳZ~ ABQƍecW$<(~<RSSvZujjjԧOZQu@4 8m&&&jԩg$ď1h ͟?_{768@g =@`)))5o6m3)ѣƌJ;wҿUTT /KZR{~a=@0o<*狔iFɶ[ˎ;T]]OX@?K.ۈxN pppppppppppppppppPfl߾] ,{ァk۶mڿo5BTӦMӴiӴ|r DB2e|An!Dy'tkΝ[A $***t5' "!駟oaDnΝ:t֭[gDШQ06qD;@ x M6v(PiizmZ4ew"@̴ixf [~-Fٱc&IZ2|n!?$@{[HTɏ#@hȎI# _m(F /6Z3z'\r,r!;w2Z3j=~GY7"I$iI.p_"?pN`y DD?: _  Gÿab7J !Bx@0 Bo cG@`1C[@0G @`0C_u V1 aCX>W ` | `!<S `"<. `#c`?cAC4 ?c p#~@0?:08&_MQ1J h#?/`7;I  q 7a wQ A 1 Hp !#<8/#@1Ul7=S=K.4Z?E_$i@!1!E4?`P_  @Bă10#: "aU,xbFY1 [n|n #'vEH:`xb #vD4Y hi.i&EΖv#O H4IŶ}:Ikh @tZRF#(tXҙzZ ?I3l7q@õ|ۍ1,GpuY Ꮿ@hJv#xxk$ v#9 5 }_$c S#=+"K{F*m7`#%H:NRSp6I?sIՖ{Ap$I$I:QRv2$Z @UJ*$]<FO4IENDB`