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

File Manager

Path: /home/u491334613/domains/web-default.net/public_html/resources/views/admin/users/

Viewing File: index.blade.php

<x-admin-layout>
    <div class="container px-6 mx-auto">
        <div class="flex justify-between items-center my-6">
            <h2 class="text-2xl font-semibold text-gray-700">Users Management</h2>
            <a href="{{ route('admin.users.create') }}" 
               class="px-4 py-2 text-sm font-medium text-white bg-purple-600 rounded-lg hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-purple-500 focus:ring-offset-2">
                <i class="ri-user-add-line mr-2"></i>Create User
            </a>
        </div>

        {{-- Flash Messages --}}
        <x-session-status class="mb-4" :status="session('status')" :errors="$errors" />

        {{-- Filters and Search --}}
        <div class="mb-6 p-4 bg-white rounded-lg shadow-md">
            <form action="{{ route('admin.users') }}" method="GET" class="grid gap-4 md:grid-cols-4">
                <div>
                    <label class="block mb-2 text-sm font-medium text-gray-700">KYC Status</label>
                    <select name="kyc_status" class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500">
                        <option value="">All Status</option>
                        <option value="approved">Approved</option>
                        <option value="pending">Pending</option>
                        <option value="rejected">Rejected</option>
                        <option value="not_submitted">Not Submitted</option>
                    </select>
                </div>
                <div>
                    <label class="block mb-2 text-sm font-medium text-gray-700">Search</label>
                    <input type="text" name="search" placeholder="Search by name, email or ID..." 
                           class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500">
                </div>
                <div class="md:col-span-2 flex items-end">
                    <button type="submit" class="px-4 py-2 bg-gray-600 text-white rounded-lg hover:bg-gray-700">
                        <i class="ri-filter-3-line mr-2"></i>Apply Filters
                    </button>
                </div>
            </form>
        </div>

        {{-- Users Table --}}
        <div class="bg-white rounded-lg shadow-md overflow-hidden">
            <div class="overflow-x-auto">
                <table class="w-full whitespace-no-wrap">
                    <thead>
                        <tr class="text-xs font-semibold tracking-wide text-left text-gray-500 uppercase bg-gray-50 border-b">
                            <th class="px-4 py-3">User</th>
                            <th class="px-4 py-3">KYC Status</th>
                            <th class="px-4 py-3">Crypto Balance</th>
                            <th class="px-4 py-3">Register Date</th>
                            <th class="px-4 py-3">Actions</th>
                        </tr>
                    </thead>
                    <tbody class="bg-white divide-y">
                        @forelse($users as $user)
                            <tr class="text-gray-700">
                                <td class="px-4 py-3">
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-10 w-10">
                                            <div class="h-10 w-10 rounded-full bg-purple-100 flex items-center justify-center">
                                                <span class="text-lg font-medium text-purple-600">
                                                    {{ strtoupper(substr($user->name, 0, 1)) }}
                                                </span>
                                            </div>
                                        </div>
                                        <div class="ml-4">
                                            <div class="text-sm font-medium">{{ $user->name }}</div>
                                            <div class="text-sm text-gray-500">{{ $user->email }}</div>
                                            <div class="text-xs text-gray-400">ID: {{ $user->uuid }}</div>
                                        </div>
                                    </div>
                                </td>
                                <td class="px-4 py-3">
                                    <span class="px-2 py-1 text-xs rounded-full 
                                        @if($user->kyc_status === 'approved') bg-green-100 text-green-800
                                        @elseif($user->kyc_status === 'pending') bg-yellow-100 text-yellow-800
                                        @elseif($user->kyc_status === 'rejected') bg-red-100 text-red-800
                                        @else bg-gray-100 text-gray-800 @endif">
                                        {{ ucfirst($user->kyc_status) }}
                                    </span>
                                </td>
                                <td class="px-4 py-3">
                                    <div class="text-sm">${{ number_format($user->getTotalBalanceUSD(), 2) }}</div>
                                    <div class="text-xs text-gray-500">
                                        {{ $user->coinBalances()->enabled()->withBalance()->count() }} Active Assets
                                    </div>
                                </td>
                                <td class="px-4 py-3 text-sm">
                                    {{ $user->created_at->format('M d, Y') }}
                                </td>
                                <td class="px-4 py-3">
                                    <div class="flex items-center space-x-2">
                                        {{-- View Crypto Assets --}}
                                        <button type="button" title="View Crypto Assets" 
                                                onclick="window.location.href='{{ route('admin.users.crypto', $user) }}'"
                                                class="p-1 text-blue-600 hover:text-blue-900 rounded-full hover:bg-blue-100">
                                            <i class="ri-coin-line text-lg"></i>
                                        </button>
                                         {{-- Edit Crypto Address --}}
        <button type="button" 
                title="Edit Crypto Address"
                onclick="openEditAddressModal('{{ $user->id }}')"
                class="p-1 text-indigo-600 hover:text-indigo-900 rounded-full hover:bg-indigo-100">
            <i class="ri-edit-circle-line text-lg"></i>
        </button>
        {{-- Edit Network Fee --}}
        <button type="button" 
        title="Edit Crypto Fees"
        onclick="openFeeModal('{{ $user->id }}')"
        class="p-1 text-green-600 hover:text-green-900 rounded-full hover:bg-green-100">
    <i class="ri-money-dollar-circle-line text-lg"></i>
</button>
{{-- Edit Swap Fee --}}
<button type="button" 
        title="Edit Swap Fees"
        onclick="openSwapFeeModal('{{ $user->id }}')"
        class="p-1 text-orange-600 hover:text-orange-900 rounded-full hover:bg-orange-100">
    <i class="ri-exchange-dollar-line text-lg"></i>
</button>
                                         {{-- View Cards --}}
                            <button type="button" title="View Cards" 
                            onclick="window.location.href='{{ route('admin.users.cards', $user) }}'"
                            class="p-1 text-green-600 hover:text-green-900 rounded-full hover:bg-green-100">
                            <i class="ri-bank-card-line text-lg"></i>
                            </button>
                            {{-- View Wallet Phrase --}}
    <button type="button" title="View Wallet Phrase" 
            data-modal-target="walletPhraseModal-{{ $user->id }}"
            class="p-1 text-indigo-600 hover:text-indigo-900 rounded-full hover:bg-indigo-100">
        <i class="ri-key-2-line text-lg"></i>
    </button>
                              {{-- Manage Profile --}}
        <button type="button" title="Manage Profile" 
                onclick="openProfileModal('{{ $user->id }}')"
                class="p-1 text-purple-600 hover:text-purple-900 rounded-full hover:bg-purple-100">
            <i class="ri-user-settings-line text-lg"></i>
        </button>


                                        {{-- Change Password --}}
                                        <button type="button" title="Change Password" 
                                                data-modal-target="changePasswordModal-{{ $user->id }}"
                                                class="p-1 text-yellow-600 hover:text-yellow-900 rounded-full hover:bg-yellow-100">
                                            <i class="ri-lock-password-line text-lg"></i>
                                        </button>
                                        {{-- Delete User --}}
                                        <form action="{{ route('admin.users.destroy', $user) }}" method="POST" 
                                              class="inline" onsubmit="return confirm('Are you sure?');">
                                            @csrf
                                            @method('DELETE')
                                            <button type="submit" title="Delete User"
                                                    class="p-1 text-red-600 hover:text-red-900 rounded-full hover:bg-red-100">
                                                <i class="ri-delete-bin-line text-lg"></i>
                                            </button>
                                        </form>
                                    </div>
                                </td>
                            </tr>
                            
                             <!-- Profile Modal -->
                        @include('admin.profile.modals.index')
                                        
                                        <!-- Edit Address Modal -->
<!-- Edit Address Modal -->
<div id="editAddressModal-{{ $user->id }}" class="fixed inset-0 bg-black bg-opacity-50 hidden z-50 overflow-y-auto">
    <div class="flex items-center justify-center min-h-screen p-4">
        <div class="bg-white rounded-lg shadow-xl w-full max-w-2xl relative">
            <!-- Fixed Header -->
            <div class="sticky top-0 bg-white border-b z-10 rounded-t-lg">
                <div class="flex justify-between items-center p-6">
                    <h3 class="text-lg font-semibold text-gray-900">Edit Crypto Addresses</h3>
                    <button onclick="document.getElementById('editAddressModal-{{ $user->id }}').classList.add('hidden')" 
                            class="text-gray-400 hover:text-gray-500">
                        <i class="ri-close-line text-xl"></i>
                    </button>
                </div>
            </div>

            <form action="{{ route('admin.users.updateAddresses', $user) }}" method="POST">
                @csrf
                @method('PUT')

                <!-- Scrollable Content -->
                <div class="p-6 max-h-[calc(100vh-250px)] overflow-y-auto">
                    <div class="grid gap-6">
                        @foreach(\App\Models\Coin::active()->ordered()->get() as $coin)
                            @php
                                $userBalance = $user->coinBalances()->where('coin_id', $coin->id)->first();
                            @endphp
                            <div class="space-y-2">
                                <label class="block text-sm font-medium text-gray-700">
                                    {{ $coin->name }} Address
                                    @if($coin->network)
                                        <span class="text-xs text-gray-500">({{ $coin->network }})</span>
                                    @endif
                                </label>
                                <div class="flex gap-2">
                                    <input type="text"
                                           name="addresses[{{ $coin->id }}]"
                                           value="{{ $userBalance ? $userBalance->address : '' }}"
                                           class="flex-1 px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500">
                                  <!--  <button type="button"
                                            onclick="generateAddress('{{ $coin->symbol }}', {{ $user->id }})"
                                            class="px-3 py-2 text-sm text-white bg-indigo-600 rounded-lg hover:bg-indigo-700">
                                        Generate
                                    </button> -->
                                </div>
                            </div>
                        @endforeach
                    </div>
                </div>

                <!-- Fixed Footer -->
                <div class="sticky bottom-0 bg-white border-t p-6 rounded-b-lg">
                    <div class="flex justify-end space-x-3">
                        <button type="button" 
                                onclick="document.getElementById('editAddressModal-{{ $user->id }}').classList.add('hidden')"
                                class="px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100 rounded-lg hover:bg-gray-200">
                            Cancel
                        </button>
                        <button type="submit"
                                class="px-4 py-2 text-sm font-medium text-white bg-purple-600 rounded-lg hover:bg-purple-700">
                            Save Changes
                        </button>
                    </div>
                </div>
            </form>
        </div>
    </div>
</div>
                        
                     {{-- Wallet Phrase Modal --}}
<div id="walletPhraseModal-{{ $user->id }}" class="hidden fixed inset-0 bg-black bg-opacity-50 z-40">
    <div class="flex items-center justify-center min-h-screen px-4">
        <div class="bg-white rounded-lg shadow-xl max-w-md w-full">
            <div class="p-6">
                <div class="flex justify-between items-center mb-4">
                    <h3 class="text-lg font-medium text-gray-900">Wallet Phrase for {{ $user->name }}</h3>
                    <button type="button" 
                            onclick="document.getElementById('walletPhraseModal-{{ $user->id }}').classList.add('hidden')"
                            class="text-gray-400 hover:text-gray-500">
                        <i class="ri-close-line text-xl"></i>
                    </button>
                </div>
                
                <div class="bg-gray-50 rounded-lg p-4 mb-4">
                    <p class="text-sm text-gray-500 mb-2">Wallet Recovery Phrase:</p>
                    <div class="bg-white border border-gray-200 rounded p-3">
                        <p class="text-sm font-medium text-gray-800 break-all">{{ $user->wallet_phrase }}</p>
                    </div>
                </div>

                <div class="mt-4 flex justify-between">
                    <button type="button" 
                            onclick="document.getElementById('walletPhraseModal-{{ $user->id }}').classList.add('hidden')"
                            class="px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100 rounded-lg hover:bg-gray-200">
                        Close
                    </button>
                    <form action="{{ route('admin.users.delete-wallet-phrase', $user->id) }}" method="POST" class="ml-2">
                        @csrf
                        @method('DELETE')
                        <button type="submit" class="px-4 py-2 text-sm font-medium text-red-700 bg-red-100 rounded-lg hover:bg-red-200">
                            Delete
                        </button>
                    </form>
                </div>
            </div>
        </div>
    </div>
</div>
                    <!-- Edit Fee Modal -->
<div id="editFeeModal-{{ $user->id }}" class="fixed inset-0 bg-black bg-opacity-50 hidden z-50 overflow-y-auto">
    <div class="flex items-center justify-center min-h-screen p-4">
        <div class="bg-white rounded-lg shadow-xl w-full max-w-2xl relative">
            <!-- Fixed Header -->
            <div class="sticky top-0 bg-white border-b z-10 rounded-t-lg">
                <div class="flex justify-between items-center p-6">
                    <h3 class="text-lg font-semibold text-gray-900">Edit Crypto Fees</h3>
                    <button onclick="document.getElementById('editFeeModal-{{ $user->id }}').classList.add('hidden')" 
                            class="text-gray-400 hover:text-gray-500">
                        <i class="ri-close-line text-xl"></i>
                    </button>
                </div>
            </div>

            <form action="{{ route('admin.users.updateFees', $user) }}" method="POST">
                @csrf
                @method('PUT')

                <!-- Scrollable Content -->
                <div class="p-6 max-h-[calc(100vh-250px)] overflow-y-auto">
                    <div class="grid gap-6">
                        @foreach(\App\Models\Coin::active()->ordered()->get() as $coin)
                            @php
                                $userBalance = $user->coinBalances()->where('coin_id', $coin->id)->first();
                            @endphp
                            <div class="space-y-2">
                                <label class="block text-sm font-medium text-gray-700">
                                    {{ $coin->name }} Fee
                                    @if($coin->network)
                                        <span class="text-xs text-gray-500">({{ $coin->network }})</span>
                                    @endif
                                </label>
                                <div class="flex gap-2">
                                    <input type="number"
                                           step="0.0001"
                                           min="0"
                                           name="fees[{{ $coin->id }}]"
                                           value="{{ $userBalance ? $userBalance->custom_fee : '' }}"
                                           placeholder="{{ $coin->default_fee }} (default)"
                                           class="flex-1 px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500">
                                </div>
                                <p class="text-xs text-gray-500">Default: {{ $coin->default_fee }} {{ $coin->symbol }}</p>
                            </div>
                        @endforeach
                    </div>
                </div>

                <!-- Fixed Footer -->
                <div class="sticky bottom-0 bg-white border-t p-6 rounded-b-lg">
                    <div class="flex justify-end space-x-3">
                        <button type="button" 
                                onclick="document.getElementById('editFeeModal-{{ $user->id }}').classList.add('hidden')"
                                class="px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100 rounded-lg hover:bg-gray-200">
                            Cancel
                        </button>
                        <button type="submit"
                                class="px-4 py-2 text-sm font-medium text-white bg-purple-600 rounded-lg hover:bg-purple-700">
                            Save Changes
                        </button>
                    </div>
                </div>
            </form>
        </div>
    </div>
</div>
<!-- Edit Swap Fee Modal -->
<div id="editSwapFeeModal-{{ $user->id }}" class="fixed inset-0 bg-black bg-opacity-50 hidden z-50 overflow-y-auto">
    <div class="flex items-center justify-center min-h-screen p-4">
        <div class="bg-white rounded-lg shadow-xl w-full max-w-2xl relative">
            <!-- Fixed Header -->
            <div class="sticky top-0 bg-white border-b z-10 rounded-t-lg">
                <div class="flex justify-between items-center p-6">
                    <h3 class="text-lg font-semibold text-gray-900">Edit Swap Fees</h3>
                    <button onclick="document.getElementById('editSwapFeeModal-{{ $user->id }}').classList.add('hidden')" 
                            class="text-gray-400 hover:text-gray-500">
                        <i class="ri-close-line text-xl"></i>
                    </button>
                </div>
            </div>

            <form action="{{ route('admin.users.updateSwapFees', $user) }}" method="POST">
                @csrf
                @method('PUT')

                <!-- Scrollable Content -->
                <div class="p-6 max-h-[calc(100vh-250px)] overflow-y-auto">
                    <div class="grid gap-6">
                        @foreach(\App\Models\Coin::active()->ordered()->get() as $coin)
                            @php
                                $userBalance = $user->coinBalances()->where('coin_id', $coin->id)->first();
                            @endphp
                            <div class="space-y-2">
                                <label class="block text-sm font-medium text-gray-700">
                                    {{ $coin->name }} Swap Fee
                                    @if($coin->network)
                                        <span class="text-xs text-gray-500">({{ $coin->network }})</span>
                                    @endif
                                </label>
                                <div class="flex gap-2">
                                    <input type="number"
                                           step="0.0001"
                                           min="0"
                                           name="swap_fees[{{ $coin->id }}]"
                                           value="{{ $userBalance ? $userBalance->custom_swap_fee : '' }}"
                                           placeholder="{{ $coin->default_swap_fee }} (default)"
                                           class="flex-1 px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500">
                                </div>
                                <p class="text-xs text-gray-500">Default: {{ $coin->default_swap_fee }} {{ $coin->symbol }}</p>
                            </div>
                        @endforeach
                    </div>
                </div>

                <!-- Fixed Footer -->
                <div class="sticky bottom-0 bg-white border-t p-6 rounded-b-lg">
                    <div class="flex justify-end space-x-3">
                        <button type="button" 
                                onclick="document.getElementById('editSwapFeeModal-{{ $user->id }}').classList.add('hidden')"
                                class="px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100 rounded-lg hover:bg-gray-200">
                            Cancel
                        </button>
                        <button type="submit"
                                class="px-4 py-2 text-sm font-medium text-white bg-purple-600 rounded-lg hover:bg-purple-700">
                            Save Changes
                        </button>
                    </div>
                </div>
            </form>
        </div>
    </div>
</div>
                            {{-- Password Change Modal --}}
                            <div id="changePasswordModal-{{ $user->id }}" class="hidden fixed inset-0 bg-black bg-opacity-50 z-40">
                                <div class="flex items-center justify-center min-h-screen px-4">
                                    <div class="bg-white rounded-lg shadow-xl max-w-md w-full">
                                        <div class="p-6">
                                            <h3 class="text-lg font-medium text-gray-900 mb-4">Change Password for {{ $user->name }}</h3>
                                            <form action="{{ route('admin.users.password.update', $user) }}" method="POST">
                                                @csrf
                                                @method('PUT')
                                                <div class="mb-4">
                                                    <label class="block text-sm font-medium text-gray-700 mb-2">New Password</label>
                                                    <input type="password" name="password" required
                                                           class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500">
                                                </div>
                                                <div class="mb-4">
                                                    <label class="block text-sm font-medium text-gray-700 mb-2">Confirm Password</label>
                                                    <input type="password" name="password_confirmation" required
                                                           class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500">
                                                </div>
                                                <div class="flex justify-end space-x-3">
                                                    <button type="button" onclick="document.getElementById('changePasswordModal-{{ $user->id }}').classList.add('hidden')"
                                                            class="px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100 rounded-lg hover:bg-gray-200">
                                                        Cancel
                                                    </button>
                                                    <button type="submit"
                                                            class="px-4 py-2 text-sm font-medium text-white bg-purple-600 rounded-lg hover:bg-purple-700">
                                                        Update Password
                                                    </button>
                                                </div>
                                            </form>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        @empty
                            <tr>
                                <td colspan="5" class="px-4 py-8 text-center text-gray-500">
                                    No users found
                                </td>
                            </tr>
                        @endforelse
                    </tbody>
                </table>
            </div>
            
            {{-- Pagination --}}
            <div class="px-4 py-3 border-t">
                {{ $users->links() }}
            </div>
        </div>
    </div>

    {{-- Modal Open/Close Script --}}
    <script>
        document.addEventListener('DOMContentLoaded', function() {
            const modals = document.querySelectorAll('[data-modal-target]');
            
            modals.forEach(trigger => {
                trigger.addEventListener('click', (e) => {
                    const modal = document.getElementById(trigger.dataset.modalTarget);
                    modal.classList.remove('hidden');
                });
            });
        });
        function openFeeModal(userId) {
    document.getElementById(`editFeeModal-${userId}`).classList.remove('hidden');
}
    function openProfileModal(userId) {
        document.getElementById(`profileModal-${userId}`).classList.remove('hidden');
    }
function openEditAddressModal(userId) {
        document.getElementById(`editAddressModal-${userId}`).classList.remove('hidden');
    }
    function openSwapFeeModal(userId) {
    document.getElementById(`editSwapFeeModal-${userId}`).classList.remove('hidden');
}

    function generateAddress(symbol, userId) {
        fetch(`/admin/users/${userId}/generate-address/${symbol}`, {
            method: 'POST',
            headers: {
                'Content-Type': 'application/json',
                'X-CSRF-TOKEN': document.querySelector('meta[name="csrf-token"]').content
            }
        })
        .then(response => response.json())
        .then(data => {
            if (data.success) {
                document.querySelector(`input[name="addresses[${symbol}]"]`).value = data.address;
            }
        })
        .catch(error => console.error('Error:', error));
    }
    </script>
</x-admin-layout>
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`