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

File Manager

Path: /home/u491334613/domains/chasedvault.com/public_html/secure/

Viewing File: index.php

<?php
// ---------------- Enable Errors (development mode) ----------------
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);

require_once "../config.php";
session_start();



// ---------- Helpers ----------
function param_user_id($id) {
    // Accept raw binary or 32-char hex string. Return binary for DB queries.
    if (is_string($id) && ctype_xdigit($id) && strlen($id) === 32) {
        return hex2bin($id);
    }
    return $id;
}
function safe_echo($v){ echo htmlspecialchars($v ?? '', ENT_QUOTES|ENT_SUBSTITUTE); }
function id_to_hex($bin) {
    if ($bin === null) return '';
    // if already hex string
    if (is_string($bin) && ctype_xdigit($bin) && strlen($bin) === 32) return $bin;
    return bin2hex((string)$bin);
}
// ---------------- Security: Check authentication ----------------
if (!isset($_SESSION['auth'])) {
    header("Location: ../login.php");
    exit;
}

$user_id = $_SESSION['auth'];

// ---------------- Fetch user info ----------------
$stmt = $pdo->prepare("SELECT fullname FROM users WHERE id = ?");
$stmt->execute([$user_id]);
$user = $stmt->fetch(PDO::FETCH_ASSOC);

// ---------------- Fetch accounts ----------------
$stmt = $pdo->prepare("
    SELECT id, account_number, currency, balance 
    FROM accounts 
    WHERE user_id = ?
");
$stmt->execute([$user_id]);
$accounts = $stmt->fetchAll(PDO::FETCH_ASSOC);

// ---------------- Fetch recent transactions (last 5) ----------------
$stmt = $pdo->prepare("
    SELECT id, status, amount, from_account_id, to_account_id, metadata, created_at
    FROM transactions
    WHERE from_account_id IN (SELECT id FROM accounts WHERE user_id = ?)
       OR to_account_id IN (SELECT id FROM accounts WHERE user_id = ?)
    ORDER BY created_at DESC
    LIMIT 5
");
$stmt->execute([$user_id, $user_id]);
$transactions = $stmt->fetchAll(PDO::FETCH_ASSOC);

// ---------------- Fetch messages (latest 5) ----------------
try {
    $stmt = $pdo->prepare("
        SELECT id, title, body, status, is_broadcast, created_at
        FROM messages
        WHERE user_id = ? OR is_broadcast = 1
        ORDER BY created_at DESC
        LIMIT 5
    ");
    $stmt->execute([$user_id]);
    $messages = $stmt->fetchAll(PDO::FETCH_ASSOC);

    $stmtC = $pdo->prepare("
        SELECT COUNT(*) 
        FROM messages 
        WHERE (user_id = ? OR is_broadcast = 1) 
          AND status <> 'seen'
    ");
    $stmtC->execute([$user_id]);
    $unreadMessages = (int)$stmtC->fetchColumn();

} catch (Exception $e) {
    $messages = [];
    $unreadMessages = 0;
}

// ---------------- Fetch notifications (latest 5) ----------------
try {
    $stmt = $pdo->prepare("
        SELECT id, title, body, status, created_at
        FROM notifications
        WHERE user_id = ? OR is_broadcast = 1
        ORDER BY created_at DESC
        LIMIT 5
    ");
    $stmt->execute([$user_id]);
    $notifications = $stmt->fetchAll(PDO::FETCH_ASSOC);

    $stmtC = $pdo->prepare("
        SELECT COUNT(*) 
        FROM notifications 
        WHERE (user_id = ? OR is_broadcast = 1) 
          AND status <> 'seen'
    ");
    $stmtC->execute([$user_id]);
    $unreadNotifs = (int)$stmtC->fetchColumn();

} catch (Exception $e) {
    $notifications = [];
    $unreadNotifs = 0;
}

// ---------------- Timezone (Auto) ----------------
if (!empty($_SESSION['timezone'])) {
    date_default_timezone_set($_SESSION['timezone']);
} else {
    date_default_timezone_set(ini_get('date.timezone') ?: 'UTC');
}

// ---------------- Greeting Logic ----------------
$hour = (int) date('H');

if ($hour < 12)        $greet = "Good morning";
else if ($hour < 17)   $greet = "Good afternoon";
else if ($hour < 21)   $greet = "Good evening";
else                   $greet = "Good night";

$nameParts = explode(" ", trim($user['fullname']));
$firstName = ucfirst(strtolower($nameParts[0] ?? ''));
$greetingMessage = $greet . " " . $firstName;
?>

 
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <title>Chasedvault-style Dashboard — Demo</title>

  <!-- Fonts & Icons -->
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap" rel="stylesheet">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
  <link rel="stylesheet" href="style.css">

  
</head>
<body>
  <main class="app" role="main" aria-label="Bank dashboard">

    <!-- header Bar -->
   <?php include "header.php" ?>
 
    <!-- Accounts -->
     <section class="accounts" style="font-family:'Segoe UI',sans-serif;color:#0c2340;">
  <div class="hdr" style="font-weight:600;font-size:17px;margin-bottom:10px;">
    Bank accounts (<?= count($accounts) ?>)
  </div>

  <div class="body">
    <?php foreach ($accounts as $acc): ?>
      <div class="account-row" style="display:flex;justify-content:space-between;align-items:center;padding:14px 0;border-bottom:1px solid #e5e8ec;">
        
        <div>
          <div class="acc-title" style="font-weight:600;font-size:15px;">
            TOTAL CHECKING <?= htmlspecialchars($acc['account_number']) ?> (<?= $acc['currency'] ?>)
          </div>
          <div style="font-size:13px;color:#6b7280;margin-top:4px;">Available balance</div>
        </div>

        <div style="text-align:right;">
          <div class="balance" style="font-size:20px;font-weight:600;color:#0c2340;display:flex;align-items:center;justify-content:flex-end;gap:8px;">
            <?= $acc['currency'] ?> 
            <span class="hidden-balance" style="letter-spacing:2px;">••••••</span>
            <span class="real-balance" style="display:none;"><?= number_format($acc['balance'], 2) ?></span>

            <!-- Eye toggle -->
            <button class="toggle-visibility" 
              style="background:none;border:none;cursor:pointer;outline:none;display:flex;align-items:center;">
              
              <!-- Open eye -->
              <svg class="eye-open" xmlns="http://www.w3.org/2000/svg" fill="none" 
                viewBox="0 0 24 24" stroke-width="1.7" stroke="#4b5563" width="22" height="22">
                <path stroke-linecap="round" stroke-linejoin="round"
                  d="M2.036 12.322a1.012 1.012 0 010-.644
                  C3.423 7.51 7.36 4.5 12 4.5
                  c4.64 0 8.577 3.01 9.964 7.178
                  .07.204.07.44 0 .644
                  C20.577 16.49 16.64 19.5 12 19.5
                  c-4.64 0-8.577-3.01-9.964-7.178z" />
                <path stroke-linecap="round" stroke-linejoin="round"
                  d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
              </svg>

              <!-- Closed eye -->
              <svg class="eye-closed" xmlns="http://www.w3.org/2000/svg" fill="none"
                viewBox="0 0 24 24" stroke-width="1.7" stroke="#4b5563"
                width="22" height="22" style="display:none;">
                <path stroke-linecap="round" stroke-linejoin="round"
                  d="M3.98 8.223A10.477 10.477 0 001.934 12
                  c1.6 3.908 5.59 7 10.066 7
                  1.463 0 2.867-.293 4.156-.822M6.228 6.228
                  A10.45 10.45 0 0112 5
                  c4.477 0 8.466 3.092 10.066 7
                  a10.523 10.523 0 01-4.293 4.772M6.228 6.228
                  L3 3m3.228 3.228l3.65 3.65m7.894 7.894
                  L21 21m-3.228-3.228l-3.65-3.65
                  m0 0a3 3 0 10-4.243-4.243
                  m4.243 4.243L9.88 9.88" />
              </svg>
            </button>
          </div>

          <div style="font-size:12px;color:#6b7280;margin-top:4px;">Available balance</div>
        </div>

      </div>
    <?php endforeach; ?>
  </div>


  

  <div class="link-ext" style="margin-top:14px;color:#1a73e8;cursor:pointer;font-weight:500;">
    Link external accounts
  </div>
</section>


 

<script>
  document.querySelectorAll('.toggle-visibility').forEach(btn => {
    btn.addEventListener('click', () => {
      const row = btn.closest('.account-row');
      const hiddenBalance = row.querySelector('.hidden-balance');
      const realBalance = row.querySelector('.real-balance');
      const eyeOpen = btn.querySelector('.eye-open');
      const eyeClosed = btn.querySelector('.eye-closed');

      const isHidden = hiddenBalance.style.display !== 'none';

      hiddenBalance.style.display = isHidden ? 'none' : 'inline';
      realBalance.style.display = isHidden ? 'inline' : 'none';

      eyeOpen.style.display = isHidden ? 'none' : 'inline';
      eyeClosed.style.display = isHidden ? 'inline' : 'none';

      // Add transition effect
      [hiddenBalance, realBalance].forEach(el => {
        el.style.transition = 'opacity 0.2s ease';
        el.style.opacity = isHidden ? '1' : '0.7';
      });
    });
  });
</script>








    <!-- Explore Products -->
<h3 style="font-family: ui-sans-serif, system-ui, sans-serif; margin-top: 24px; margin-bottom: 12px; font-size: 1.125rem; /* 18px */ font-weight: 600; color: #1f2937; /* text-gray-800 */">Explore more products</h3>

<div class="products" 
     style="display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 12px; padding: 12px 2px; -webkit-overflow-scrolling: touch; scrollbar-width: thin;">

  <a href="cards.php" class="product" 
     style="font-family: ui-sans-serif, system-ui, sans-serif; display: flex; align-items: center; gap: 12px; padding: 12px; background-color: #f9fafb; /* bg-gray-50 */ border: 1px solid #e5e7eb; /* border-gray-200 */ border-radius: 8px; /* rounded-lg */ text-decoration: none; color: #374151; /* text-gray-700 */ font-weight: 500; /* font-medium */
            flex-shrink: 0; /* IMPORTANT: Prevents item from shrinking */
            width: 250px; /* Sets a fixed width to ensure scrolling */"
     onmouseover="this.style.backgroundColor='#f3f4f6' /* bg-gray-100 */" 
     onmouseout="this.style.backgroundColor='#f9fafb' /* bg-gray-50 */">
    
    <div class="p-ico" style="display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex-shrink: 0; border-radius: 9999px; /* rounded-full */ background-color: #dbeafe; /* bg-blue-100 */ color: #1d4ed8; /* text-blue-700 */ font-weight: 600; font-size: 0.875rem; /* text-sm */">C</div>
    <div style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">Credit cards</div>
  </a>

  <a href="check.php" class="product" 
     style="font-family: ui-sans-serif, system-ui, sans-serif; display: flex; align-items: center; gap: 12px; padding: 12px; background-color: #f9fafb; /* bg-gray-50 */ border: 1px solid #e5e7eb; /* border-gray-200 */ border-radius: 8px; /* rounded-lg */ text-decoration: none; color: #374151; /* text-gray-700 */ font-weight: 500; /* font-medium */
            flex-shrink: 0; /* IMPORTANT: Prevents item from shrinking */
            width: 250px; /* Sets a fixed width to ensure scrolling */"
     onmouseover="this.style.backgroundColor='#f3f4f6' /* bg-gray-100 */" 
     onmouseout="this.style.backgroundColor='#f9fafb' /* bg-gray-50 */">
    
    <div class="p-ico" style="display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex-shrink: 0; border-radius: 9999px; /* rounded-full */ background-color: #dcfce7; /* bg-green-100 */ color: #15803d; /* text-green-700 */ font-weight: 600; font-size: 0.875rem; /* text-sm */">CK</div>
    <div style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">Checking</div>
  </a>
  
  <a href="savings.php" class="product" 
     style="font-family: ui-sans-serif, system-ui, sans-serif; display: flex; align-items: center; gap: 12px; padding: 12px; background-color: #f9fafb; /* bg-gray-50 */ border: 1px solid #e5e7eb; /* border-gray-200 */ border-radius: 8px; /* rounded-lg */ text-decoration: none; color: #374151; /* text-gray-700 */ font-weight: 500; /* font-medium */
            flex-shrink: 0; /* IMPORTANT: Prevents item from shrinking */
            width: 250px; /* Sets a fixed width to ensure scrolling */"
     onmouseover="this.style.backgroundColor='#f3f4f6' /* bg-gray-100 */" 
     onmouseout="this.style.backgroundColor='#f9fafb' /* bg-gray-50 */">
    
    <div class="p-ico" style="display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex-shrink: 0; border-radius: 9999px; /* rounded-full */ background-color: #e0e7ff; /* bg-indigo-100 */ color: #4338ca; /* text-indigo-700 */ font-weight: 600; font-size: 0.875rem; /* text-sm */">S</div>
    <div style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">Savings & CDs</div>
  </a>

  <a href="business.php" class="product" 
     style="font-family: ui-sans-serif, system-ui, sans-serif; display: flex; align-items: center; gap: 12px; padding: 12px; background-color: #f9fafb; /* bg-gray-50 */ border: 1px solid #e5e7eb; /* border-gray-200 */ border-radius: 8px; /* rounded-lg */ text-decoration: none; color: #374151; /* text-gray-700 */ font-weight: 500; /* font-medium */
            flex-shrink: 0; /* IMPORTANT: Prevents item from shrinking */
            width: 250px; /* Sets a fixed width to ensure scrolling */"
     onmouseover="this.style.backgroundColor='#f3f4f6' /* bg-gray-100 */" 
     onmouseout="this.style.backgroundColor='#f9fafb' /* bg-gray-50 */">
    
    <div class="p-ico" style="display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex-shrink: 0; border-radius: 9999px; /* rounded-full */ background-color: #fef3c7; /* bg-amber-100 */ color: #b45309; /* text-amber-700 */ font-weight: 600; font-size: 0.875rem; /* text-sm */">B</div>
    <div style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">Business</div>
  </a>

  <a href="mailto:support@Chasedvault.com" class="product" 
     style="font-family: ui-sans-serif, system-ui, sans-serif; display: flex; align-items: center; gap: 12px; padding: 12px; background-color: #f9fafb; /* bg-gray-50 */ border: 1px solid #e5e7eb; /* border-gray-200 */ border-radius: 8px; /* rounded-lg */ text-decoration: none; color: #374151; /* text-gray-700 */ font-weight: 500; /* font-medium */
            flex-shrink: 0; /* IMPORTANT: Prevents item from shrinking */
            width: 250px; /* Sets a fixed width to ensure scrolling */"
     onmouseover="this.style.backgroundColor='#f3f4f6' /* bg-gray-100 */" 
     onmouseout="this.style.backgroundColor='#f9fafb' /* bg-gray-50 */">
    
    <div class="p-ico" style="display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex-shrink: 0; border-radius: 9999px; /* rounded-full */ background-color: #f3e8ff; /* bg-purple-100 */ color: #7e22ce; /* text-purple-700 */ font-weight: 600; font-size: 0.875rem; /* text-sm */">A</div>
    <div style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">Work with our advisors</div>
  </a>
</div>

<div class="explore-cta" style="margin-top: 24px;">
  <a href="products.php" style="text-decoration: none;">
    <button class="explore-btn" 
            style="font-family: ui-sans-serif, system-ui, sans-serif; width: 100%; padding: 12px 20px; background-color: #2563eb; /* bg-blue-600 */ color: white; font-weight: 600; /* font-semibold */ font-size: 0.875rem; /* text-sm */ border: none; border-radius: 8px; /* rounded-lg */ cursor: pointer;"
            onmouseover="this.style.backgroundColor='#1d4ed8' /* bg-blue-700 */" 
            onmouseout="this.style.backgroundColor='#2563eb' /* bg-blue-600 */">
      Explore products
    </button>
  </a>
</div> 



    <br>
    <br>  
    
    
    
    <h2 style="
  font-family: ui-sans-serif, system-ui, sans-serif;
  color: #1f2937; /* text-gray-800 */
  font-weight: 600; /* font-semibold */
  font-size: 1.125rem; /* 18px / text-lg */
  margin-top: 24px; /* mt-6 */
  margin-bottom: 16px; /* mb-4 */
  border-bottom: 1px solid #e5e7eb; /* border-b border-gray-200 */
  padding-bottom: 8px; /* pb-2 */
">
  Recent Transactions
</h2>

<div class="explore-cta" style="margin-bottom: 16px; /* mb-4 */">
  <a href="transactions.php" style="text-decoration: none;">
    <button class="explore-btn" 
            style="font-family: ui-sans-serif, system-ui, sans-serif; width: 100%; padding: 10px 16px; /* py-2.5 px-4 */ background-color: #2563eb; /* bg-blue-600 */ color: white; font-weight: 600; /* font-semibold */ font-size: 0.875rem; /* text-sm */ border: none; border-radius: 8px; /* rounded-lg */ cursor: pointer;"
            onmouseover="this.style.backgroundColor='#1d4ed8' /* bg-blue-700 */" 
            onmouseout="this.style.backgroundColor='#2563eb' /* bg-blue-600 */">
      Browse All Transactions
    </button>
  </a>
</div>

<table style="
  width: 100%;
  border-collapse: collapse;
  font-family: ui-sans-serif, system-ui, sans-serif;
  background: #ffffff;
  border-radius: 8px; /* rounded-lg */
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1); /* shadow */
">
  <thead style="
    background: #f9fafb; /* bg-gray-50 */
    color: #6b7280; /* text-gray-500 */
    font-size: 0.75rem; /* 12px / text-xs */
    text-transform: uppercase;
    letter-spacing: 0.05em; /* tracking-wider */
  ">
    <tr>
      <th style="text-align: left; padding: 12px 16px; /* py-3 px-4 */ font-weight: 500; /* font-medium */">Description</th>
      <th style="text-align: center; padding: 12px 16px; /* py-3 px-4 */ font-weight: 500; /* font-medium */">Amount</th> <th style="text-align: center; padding: 12px 16px; /* py-3 px-4 */ font-weight: 500; /* font-medium */">Status</th>
      <th style="text-align: center; padding: 12px 16px; /* py-3 px-4 */ font-weight: 500; /* font-medium */">Date</th> </tr>
  </thead>
  <tbody>
    <?php if($transactions): ?>
      <?php foreach($transactions as $t): ?>
        <?php 
          $meta = json_decode($t['metadata'] ?? "{}", true);
          $desc = $meta['narration'] ?? ($meta['description'] ?? "Transaction");
          $isDebit = ($t['from_account_id'] !== null && in_array($t['from_account_id'], array_column($accounts, 'id')));
        ?>
        <tr style="
          border-bottom: 1px solid #e5e7eb; /* border-b border-gray-200 */
          transition: background 0.2s ease;
          cursor: default;
        " onmouseover="this.style.backgroundColor='#f9fafb' /* bg-gray-50 */" onmouseout="this.style.backgroundColor='transparent'">
          
          <td style="padding: 16px 16px; /* py-4 px-4 */ color: #374151; /* text-gray-700 */ font-size: 0.875rem; /* text-sm */">
            <?= htmlspecialchars($desc) ?>
          </td>
          
          <td style="padding: 16px 16px; /* py-4 px-4 */ text-align: center; font-weight: 600; /* font-semibold */ color: <?= $isDebit ? '#dc2626' : '#16a34a' ?>; /* text-red-600 / text-green-600 */
              font-size: 0.875rem; /* text-sm */">
            <?= $isDebit ? '-' : '+' ?><?= number_format($t['amount'], 2) ?>
          </td>
          
          <td style="padding: 16px 16px; /* py-4 px-4 */ text-align: center;">
            <?php
              $status = ucfirst($t['status']);
              $colors = match(strtolower($t['status'])) {
                'pending' => ['bg' => '#fef3c7', 'text' => '#b45309'], /* bg-yellow-100, text-yellow-700 */
                'completed' => ['bg' => '#dcfce7', 'text' => '#15803d'], /* bg-green-100, text-green-700 */
                'failed' => ['bg' => '#fee2e2', 'text' => '#b91c1c'], /* bg-red-100, text-red-700 */
                default => ['bg' => '#f1f5f9', 'text' => '#475569'], /* bg-slate-100, text-slate-600 */
              };
            ?>
            <span style="
              background: <?= $colors['bg'] ?>;
              color: <?= $colors['text'] ?>;
              padding: 4px 12px; /* py-1 px-3 */
              border-radius: 9999px; /* rounded-full */
              font-size: 0.75rem; /* 12px / text-xs */
              font-weight: 600; /* font-semibold */
            "><?= $status ?></span>
          </td>
          
          <td style="padding: 16px 16px; /* py-4 px-4 */ text-align: center; color: #6b7280; /* text-gray-500 */ font-size: 0.875rem; /* text-sm */"> <?= date("M d, Y", strtotime($t['created_at'])) ?>
          </td>
        </tr>
      <?php endforeach; ?>
    <?php else: ?>
      <tr>
        <td colspan="4" style="
          text-align: center;
          color: #9ca3af; /* text-gray-400 */
          padding: 24px 16px; /* py-6 px-4 */
          font-size: 0.875rem; /* text-sm */
        ">
          No transactions yet
        </td>
      </tr>
    <?php endif; ?>
  </tbody>
</table>


    <br>
    <br>      
  </main>


  

  <!-- Bottom Navigation -->
  <?php include "nav.php" ?>
</body>
</html>
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`