Membuat widget table generator di blogger

Hello sobat Bloggermuda kali ini admin akan menjelaskan mrngenai cara membuat widget table generator di blogger untuk membuat tabel secara otomatis

Table Generator

Apa itu table generator? table generator merupakan alat untuk membuat table secara otomatis lengkap dengan hasil kode yang siap di gunakan, format kode table yang di gunakan adalah format HTML sehingga anda bisa menyalin hasil kode anda untuk di tampilkan di blog anda

Contoh Tampilan

Berikut Ini contoh tampilan dari Widget Table generator di blogger, silahkan periksa menggunakan tombol di bawah ini

Cara pembuatan

  1. Login ke blogger menggunakan akun google milikmu
  2. Selanjutnya silahkan pergi ke menu Halaman
  3. Kemudian kamu bisa buat halaman baru dan berikan judul sesuai keinginan kamu
  4. Selanjutnya salin seluruh kode untuk membuat widget Table generator di blogger secara otomatis di bawah ini, dan tempelkan di dalam halaman tersebut
  5. <!DOCTYPE html>
    <html lang="id">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Pembuat Tabel Blogger Otomatis By Bloggermuda.com</title>
        <style>
            :root {
                --primary-color: #333;
                --secondary-color: #f8f9fa;
                --accent-color: #555;
                --border-color: #ddd;
                --success-color: #198754;
            }
            
            * {
                box-sizing: border-box;
                margin: 0;
                padding: 0;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            }
            
            body {
                background-color: #f5f5f5;
                color: #333;
                line-height: 1.6;
                padding: 0;
            }
            
            .rah-container {
                max-width: 1200px;
                margin: 0 auto;
                background-color: white;
                border-radius: 8px;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                padding: 20px;
            }
            
            .rah-header {
                text-align: center;
                margin-bottom: 30px;
                padding-bottom: 15px;
                border-bottom: 1px solid var(--border-color);
            }
            
            .rah-header h1 {
                font-size: 24px;
                color: var(--primary-color);
                margin-bottom: 10px;
            }
            
            .rah-header p {
                color: #666;
                font-size: 14px;
            }
            
            .rah-form-group {
                margin-bottom: 20px;
            }
            
            .rah-label {
                display: block;
                margin-bottom: 8px;
                font-weight: 500;
                color: var(--primary-color);
            }
            
            .rah-input {
                width: 100%;
                padding: 10px;
                border: 1px solid var(--border-color);
                border-radius: 4px;
                font-size: 14px;
            }
            
            .rah-color-input {
                height: 40px;
            }
            
            .rah-row {
                display: flex;
                flex-wrap: wrap;
                margin: 0 -10px;
            }
            
            .rah-col {
                flex: 1;
                padding: 0 10px;
                min-width: 250px;
            }
            
            .rah-btn {
                background-color: var(--primary-color);
                color: white;
                border: none;
                padding: 12px 20px;
                border-radius: 4px;
                cursor: pointer;
                font-size: 16px;
                font-weight: 500;
                transition: background-color 0.3s;
                display: inline-block;
            }
            
            .rah-btn:hover {
                background-color: #000;
            }
            
            .rah-btn-group {
                display: flex;
                gap: 10px;
                margin-top: 20px;
                margin-bottom: 20px;
                justify-content: center;
            }
            
            .rah-table-preview {
                margin-top: 30px;
                border: 1px solid var(--border-color);
                padding: 15px;
                border-radius: 4px;
                background-color: var(--secondary-color);
                overflow-x: auto;
            }
            
            .rah-preview-title {
                font-size: 18px;
                margin-bottom: 15px;
                color: var(--primary-color);
                font-weight: 600;
            }
            
            .rah-code-output {
                background-color: #f8f9fa;
                border: 1px solid var(--border-color);
                border-radius: 4px;
                padding: 15px;
                margin-top: 20px;
                overflow-x: auto;
                position: relative;
            }
            
            .rah-copy-btn {
                position: absolute;
                top: 10px;
                right: 10px;
                background-color: var(--primary-color);
                color: white;
                border: none;
                border-radius: 4px;
                padding: 6px 12px;
                font-size: 12px;
                cursor: pointer;
            }
            
            .rah-copy-btn:hover {
                background-color: #000;
            }
            
            .rah-pre {
                white-space: pre-wrap;
                word-wrap: break-word;
                font-family: monospace;
                font-size: 14px;
                line-height: 1.5;
                color: inherit;
                margin: 0;
            }
            
            .rah-success-message {
                background-color: var(--success-color);
                color: white;
                padding: 8px 12px;
                border-radius: 4px;
                display: none;
                margin-top: 15px;
                text-align: center;
            }
            
            .rah-tabel {
                width: 100%;
                border-collapse: collapse;
                border-spacing: 0;
                margin: 0 0 20px 0;
                border-radius: 5px;
                overflow: hidden;
                box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            }
            
            .rah-tabel th,
            .rah-tabel td {
                padding: 12px 15px;
                text-align: left;
                border-bottom: 1px solid #ddd;
            }
            
            .rah-tabel th {
                background-color: var(--header-bg-color);
                color: var(--header-text-color);
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                font-size: 14px;
            }
            
            .rah-tabel tr:nth-child(even) {
                background-color: var(--even-row-bg-color);
            }
            
            .rah-tabel tr:nth-child(odd) {
                background-color: var(--odd-row-bg-color);
            }
            
            .rah-tabel tr:hover {
                background-color: var(--hover-color);
            }
            
            .rah-tabel td {
                color: var(--cell-text-color);
            }
            
            @media screen and (max-width: 600px) {
                .rah-tabel {
                    display: block;
                    overflow-x: auto;
                }
            }
            
            .rah-input-group {
                display: flex;
                gap: 10px;
                margin-bottom: 15px;
            }
            
            .rah-input-group input,
            .rah-input-group select {
                flex: 1;
            }
            
            .rah-tab-container {
                margin-bottom: 20px;
            }
            
            .rah-tab-buttons {
                display: flex;
                border-bottom: 1px solid var(--border-color);
                margin-bottom: 20px;
            }
            
            .rah-tab-btn {
                padding: 10px 20px;
                background-color: transparent;
                border: none;
                cursor: pointer;
                font-weight: 500;
                color: #666;
                border-bottom: 3px solid transparent;
            }
            
            .rah-tab-btn.active {
                color: var(--primary-color);
                border-bottom: 3px solid var(--primary-color);
            }
            
            .rah-tab-content {
                display: none;
            }
            
            .rah-tab-content.active {
                display: block;
            }
        </style>
    </head>
    <body>
        <div class="rah-container">
            <div class="rah-header">
                <h1>Pembuat Tabel Responsif untuk Blogger</h1>
                <p>Buat tabel keren dan responsif untuk blog Anda dengan mudah</p>
            </div>
            
            <div class="rah-tab-container">
                <div class="rah-tab-buttons">
                    <button class="rah-tab-btn active" data-tab="basic">Set</button>
                    <button class="rah-tab-btn" data-tab="style">Style</button>
                    <button class="rah-tab-btn" data-tab="data">Data</button>
                    <button class="rah-tab-btn" data-tab="code">Salin</button>
                </div>
                
                <div class="rah-tab-content active" id="basic-tab">
                    <div class="rah-row">
                        <div class="rah-col">
                            <div class="rah-form-group">
                                <label class="rah-label" for="rowCount">Jumlah Baris</label>
                                <input type="number" id="rowCount" class="rah-input" value="5" min="1" max="100">
                            </div>
                        </div>
                        <div class="rah-col">
                            <div class="rah-form-group">
                                <label class="rah-label" for="colCount">Jumlah Kolom</label>
                                <input type="number" id="colCount" class="rah-input" value="3" min="1" max="20">
                            </div>
                        </div>
                    </div>
                    
                    <div class="rah-form-group">
                        <label class="rah-label" for="tableTitle">Judul Tabel (opsional)</label>
                        <input type="text" id="tableTitle" class="rah-input" placeholder="Masukkan judul tabel">
                    </div>
                    
                    <div class="rah-btn-group">
                        <button id="updateTable" class="rah-btn">Perbarui Tabel</button>
                        <button id="resetTable" class="rah-btn">Reset</button>
                    </div>
                </div>
                
                <div class="rah-tab-content" id="style-tab">
                    <div class="rah-row">
                        <div class="rah-col">
                            <div class="rah-form-group">
                                <label class="rah-label" for="headerBgColor">Warna Latar Header</label>
                                <input type="color" id="headerBgColor" class="rah-input rah-color-input" value="#333333">
                            </div>
                        </div>
                        <div class="rah-col">
                            <div class="rah-form-group">
                                <label class="rah-label" for="headerTextColor">Warna Teks Header</label>
                                <input type="color" id="headerTextColor" class="rah-input rah-color-input" value="#ffffff">
                            </div>
                        </div>
                    </div>
                    
                    <div class="rah-row">
                        <div class="rah-col">
                            <div class="rah-form-group">
                                <label class="rah-label" for="oddRowColor">Warna Baris Ganjil</label>
                                <input type="color" id="oddRowColor" class="rah-input rah-color-input" value="#ffffff">
                            </div>
                        </div>
                        <div class="rah-col">
                            <div class="rah-form-group">
                                <label class="rah-label" for="evenRowColor">Warna Baris Genap</label>
                                <input type="color" id="evenRowColor" class="rah-input rah-color-input" value="#f5f5f5">
                            </div>
                        </div>
                    </div>
                    
                    <div class="rah-row">
                        <div class="rah-col">
                            <div class="rah-form-group">
                                <label class="rah-label" for="cellTextColor">Warna Teks Data</label>
                                <input type="color" id="cellTextColor" class="rah-input rah-color-input" value="#333333">
                            </div>
                        </div>
                        <div class="rah-col">
                            <div class="rah-form-group">
                                <label class="rah-label" for="hoverColor">Warna Hover</label>
                                <input type="color" id="hoverColor" class="rah-input rah-color-input" value="#e9e9e9">
                            </div>
                        </div>
                    </div>
                    
                    <div class="rah-form-group">
                        <label class="rah-label" for="borderStyle">Gaya Border</label>
                        <select id="borderStyle" class="rah-input">
                            <option value="normal">Normal</option>
                            <option value="borderless">Tanpa Border</option>
                            <option value="horizontal">Horizontal</option>
                        </select>
                    </div>
                    
                    <div class="rah-btn-group">
                        <button id="applyStyle" class="rah-btn">Terapkan Gaya</button>
                    </div>
                </div>
                
                <div class="rah-tab-content" id="data-tab">
                    <div class="rah-form-group">
                        <label class="rah-label">Isi Tabel</label>
                        <div id="tableDataContainer" class="rah-data-container">
                            <!-- Table data inputs will be generated here -->
                        </div>
                    </div>
                    
                    <div class="rah-btn-group">
                        <button id="updateData" class="rah-btn">Perbarui Data</button>
                    </div>
                </div>
                
                <div class="rah-tab-content" id="code-tab">
                    <div class="rah-code-output">
                        <button class="rah-copy-btn" id="copyHtmlBtn">Salin Kode</button>
                        <pre><code id="htmlOutput" class="rah-pre"></code></pre>
                    </div>
                    
                    <div class="rah-success-message" id="copySuccess">
                        Kode berhasil disalin!
                    </div>
                    
                    <div class="rah-btn-group">
                        <button id="generateCode" class="rah-btn">Buat Kode</button>
                    </div>
                </div>
            </div>
            
            <div class="rah-table-preview">
                <div class="rah-preview-title">Pratinjau Tabel</div>
                <div id="tablePreview"></div>
            </div>
        </div>
    
        <script>
          const _0x5b22e1=_0x1732;(function(_0x50b379,_0x2e9e6a){const _0x822f47=_0x1732,_0x469943=_0x50b379();while(!![]){try{const _0x1e0d90=-parseInt(_0x822f47(0x1b4))/(0x239d+0x12eb+-0x3687)*(parseInt(_0x822f47(0x27c))/(0x47*0x3b+-0xc1*-0x1+-0x5b4*0x3))+parseInt(_0x822f47(0x264))/(0xc64+-0x1832+-0x1*-0xbd1)*(parseInt(_0x822f47(0x287))/(-0x128*0x1f+0x5*-0x1f2+0x48f*0xa))+-parseInt(_0x822f47(0x28c))/(-0xd68+0x212+0xb5b)*(-parseInt(_0x822f47(0x1e9))/(0x1539+-0x7e1*-0x3+-0x2cd6))+-parseInt(_0x822f47(0x1e7))/(-0x1a16+-0x23d5+0x3df2)+-parseInt(_0x822f47(0x1e5))/(0x10ca+-0x97a+-0x748)*(-parseInt(_0x822f47(0x1fb))/(0x11c1+-0x1*0x239f+0x11e7))+-parseInt(_0x822f47(0x2d1))/(-0x1*-0x26f1+-0xf*-0x31+0x29c6*-0x1)*(parseInt(_0x822f47(0x2c9))/(-0x1295*-0x1+-0x385+0x1*-0xf05))+-parseInt(_0x822f47(0x266))/(-0x17b+-0x687*0x1+-0x80e*-0x1)*(-parseInt(_0x822f47(0x2e3))/(0x46*-0x83+0x2ac+-0xb11*-0x3));if(_0x1e0d90===_0x2e9e6a)break;else _0x469943['push'](_0x469943['shift']());}catch(_0x487ade){_0x469943['push'](_0x469943['shift']());}}}(_0x15b8,0x92a62+-0x859a9*0x2+0x1089b1));let tableData=[],rowCount=0xe6e+-0x6*-0x445+-0x2807,colCount=-0x1e0a+-0x3f1*0x8+0x3d95,tableTitle='',headerBgColor=_0x5b22e1(0x2a4),headerTextColor=_0x5b22e1(0x1f0),oddRowColor=_0x5b22e1(0x1f0),evenRowColor=_0x5b22e1(0x2f1),cellTextColor=_0x5b22e1(0x2a4),hoverColor=_0x5b22e1(0x259),borderStyle=_0x5b22e1(0x2db);function initApp(){const _0x16f348=_0x5b22e1,_0x511a35={'RkwmK':_0x16f348(0x280)+_0x16f348(0x23f)+'|7','egzbX':function(_0x5effcb){return _0x5effcb();},'tpIOk':_0x16f348(0x2e6),'zJuZd':_0x16f348(0x2da),'eFpfY':_0x16f348(0x2b9),'aIiqs':_0x16f348(0x2fe)+'r','RhrfU':_0x16f348(0x274)+_0x16f348(0x1c6),'SZQvv':_0x16f348(0x1e6)+'or','KHbwi':_0x16f348(0x1f9)+_0x16f348(0x2ae),'uTZto':_0x16f348(0x232)+_0x16f348(0x2ae)},_0x1626f7=_0x511a35[_0x16f348(0x29e)][_0x16f348(0x2e4)]('|');let _0x483a57=0x941+0x1a*0x158+-0x2c31;while(!![]){switch(_0x1626f7[_0x483a57++]){case'0':_0x511a35[_0x16f348(0x1c5)](initTableData);continue;case'1':document[_0x16f348(0x234)+_0x16f348(0x1c4)](_0x511a35[_0x16f348(0x2b1)])[_0x16f348(0x1fd)]=hoverColor;continue;case'2':document[_0x16f348(0x234)+_0x16f348(0x1c4)](_0x511a35[_0x16f348(0x1b7)])[_0x16f348(0x1fd)]=rowCount;continue;case'3':document[_0x16f348(0x234)+_0x16f348(0x1c4)](_0x511a35[_0x16f348(0x310)])[_0x16f348(0x1fd)]=colCount;continue;case'4':document[_0x16f348(0x234)+_0x16f348(0x1c4)](_0x511a35[_0x16f348(0x2a5)])[_0x16f348(0x1fd)]=oddRowColor;continue;case'5':document[_0x16f348(0x234)+_0x16f348(0x1c4)](_0x511a35[_0x16f348(0x247)])[_0x16f348(0x1fd)]=headerTextColor;continue;case'6':_0x511a35[_0x16f348(0x1c5)](generateTable);continue;case'7':_0x511a35[_0x16f348(0x1c5)](setupEventListeners);continue;case'8':document[_0x16f348(0x234)+_0x16f348(0x1c4)](_0x511a35[_0x16f348(0x1c1)])[_0x16f348(0x1fd)]=evenRowColor;continue;case'9':document[_0x16f348(0x234)+_0x16f348(0x1c4)](_0x511a35[_0x16f348(0x2e2)])[_0x16f348(0x1fd)]=cellTextColor;continue;case'10':document[_0x16f348(0x234)+_0x16f348(0x1c4)](_0x511a35[_0x16f348(0x24b)])[_0x16f348(0x1fd)]=headerBgColor;continue;}break;}}function _0x1732(_0x5b6a2c,_0xbca12c){const _0x1ab1c0=_0x15b8();return _0x1732=function(_0x4ef557,_0x499afc){_0x4ef557=_0x4ef557-(-0x1966+0xe05+0x1*0xd13);let _0x12c6d6=_0x1ab1c0[_0x4ef557];return _0x12c6d6;},_0x1732(_0x5b6a2c,_0xbca12c);}function initTableData(){const _0x1a966d=_0x5b22e1,_0x1f1b1f={'bxefW':function(_0x26e694,_0x16a3ee){return _0x26e694<_0x16a3ee;},'BHHJj':function(_0x345bf4,_0x56811e){return _0x345bf4===_0x56811e;},'jznrM':function(_0x5d9d60,_0x3fbcd1){return _0x5d9d60+_0x3fbcd1;},'lOFwp':function(_0x1b7801){return _0x1b7801();}};tableData=[];for(let _0xce81d0=0x115d+-0x1*0xf67+0x1f6*-0x1;_0x1f1b1f[_0x1a966d(0x2e1)](_0xce81d0,rowCount);_0xce81d0++){let _0x365909=[];for(let _0x14f96f=0x13*0x79+-0x1c96+0x1*0x139b;_0x1f1b1f[_0x1a966d(0x2e1)](_0x14f96f,colCount);_0x14f96f++){_0x1f1b1f[_0x1a966d(0x2be)](_0xce81d0,0x249+0x31*0x81+0x8fe*-0x3)?_0x365909[_0x1a966d(0x285)](_0x1a966d(0x231)+_0x1f1b1f[_0x1a966d(0x23a)](_0x14f96f,0x161*-0xa+0x1*0x76e+0x9*0xb5)):_0x365909[_0x1a966d(0x285)](_0x1a966d(0x296)+_0xce81d0+','+_0x1f1b1f[_0x1a966d(0x23a)](_0x14f96f,0x22eb+0x5*-0x235+0x17e1*-0x1));}tableData[_0x1a966d(0x285)](_0x365909);}_0x1f1b1f[_0x1a966d(0x2e9)](updateTableDataInputs);}function updateTableDataInputs(){const _0xe86de=_0x5b22e1,_0x5670c6={'LnUqY':function(_0x1198d7,_0x34529f){return _0x1198d7(_0x34529f);},'SWNwO':_0xe86de(0x2ba)+_0xe86de(0x24a),'raAOp':function(_0x326607,_0x39a98c){return _0x326607<_0x39a98c;},'ATBiQ':_0xe86de(0x2d4),'gjfOv':_0xe86de(0x2a8),'YejYd':_0xe86de(0x20c),'UQKRe':_0xe86de(0x1be)+_0xe86de(0x261),'aoHsw':_0xe86de(0x22d),'DdUra':_0xe86de(0x302),'dMvvt':function(_0x126c7f,_0x534437){return _0x126c7f===_0x534437;},'weUxB':function(_0xc93193,_0x4a9367){return _0xc93193+_0x4a9367;},'rMTqN':function(_0x129130,_0xebbde5){return _0x129130+_0xebbde5;},'XyrPD':_0xe86de(0x224),'TvSva':_0xe86de(0x202),'vwdUd':_0xe86de(0x203)},_0x3bce90=document[_0xe86de(0x234)+_0xe86de(0x1c4)](_0x5670c6[_0xe86de(0x297)]);_0x3bce90[_0xe86de(0x23b)]='';for(let _0x491b3e=-0x19d3+0x2408*-0x1+0x1*0x3ddb;_0x5670c6[_0xe86de(0x298)](_0x491b3e,rowCount);_0x491b3e++){const _0x24c736=document[_0xe86de(0x1e8)+_0xe86de(0x2ad)](_0x5670c6[_0xe86de(0x20a)]);_0x24c736[_0xe86de(0x215)]=_0x5670c6[_0xe86de(0x228)];for(let _0x5c03fe=0x2b*0x7f+-0x1385*0x2+-0x3*-0x5e7;_0x5670c6[_0xe86de(0x298)](_0x5c03fe,colCount);_0x5c03fe++){const _0x5d47e4=document[_0xe86de(0x1e8)+_0xe86de(0x2ad)](_0x5670c6[_0xe86de(0x20a)]);_0x5d47e4[_0xe86de(0x215)]=_0x5670c6[_0xe86de(0x1ba)];const _0x156eeb=document[_0xe86de(0x1e8)+_0xe86de(0x2ad)](_0x5670c6[_0xe86de(0x20a)]);_0x156eeb[_0xe86de(0x215)]=_0x5670c6[_0xe86de(0x2a7)];const _0x2d40b1=document[_0xe86de(0x1e8)+_0xe86de(0x2ad)](_0x5670c6[_0xe86de(0x1da)]);_0x2d40b1[_0xe86de(0x215)]=_0x5670c6[_0xe86de(0x2e0)],_0x2d40b1[_0xe86de(0x2ee)+'t']=_0x5670c6[_0xe86de(0x277)](_0x491b3e,-0xd*0x4d+-0x11d5+-0xadf*-0x2)?_0xe86de(0x231)+_0x5670c6[_0xe86de(0x2cb)](_0x5c03fe,0x339+-0x1c6c*-0x1+0x1c2*-0x12):_0xe86de(0x1c2)+_0x491b3e+_0xe86de(0x2cf)+_0x5670c6[_0xe86de(0x1f1)](_0x5c03fe,-0x1152+-0x1*0x2de+0x3*0x6bb);const _0x5c502f=document[_0xe86de(0x1e8)+_0xe86de(0x2ad)](_0x5670c6[_0xe86de(0x1bc)]);_0x5c502f[_0xe86de(0x219)]=_0x5670c6[_0xe86de(0x263)],_0x5c502f[_0xe86de(0x215)]=_0x5670c6[_0xe86de(0x21d)],_0x5c502f[_0xe86de(0x1fd)]=tableData[_0x491b3e][_0x5c03fe],_0x5c502f[_0xe86de(0x20f)][_0xe86de(0x2d2)]=_0x491b3e,_0x5c502f[_0xe86de(0x20f)][_0xe86de(0x2c2)]=_0x5c03fe,_0x5c502f[_0xe86de(0x2a6)+_0xe86de(0x244)](_0x5670c6[_0xe86de(0x1bc)],function(){const _0x18ec3d=_0xe86de;tableData[_0x5670c6[_0x18ec3d(0x1f6)](parseInt,this[_0x18ec3d(0x20f)][_0x18ec3d(0x2d2)])][_0x5670c6[_0x18ec3d(0x1f6)](parseInt,this[_0x18ec3d(0x20f)][_0x18ec3d(0x2c2)])]=this[_0x18ec3d(0x1fd)];}),_0x156eeb[_0xe86de(0x22c)+'d'](_0x2d40b1),_0x156eeb[_0xe86de(0x22c)+'d'](_0x5c502f),_0x5d47e4[_0xe86de(0x22c)+'d'](_0x156eeb),_0x24c736[_0xe86de(0x22c)+'d'](_0x5d47e4);}_0x3bce90[_0xe86de(0x22c)+'d'](_0x24c736);}}function _0x15b8(){const _0x3f687e=['in:\x200\x200\x2020','push','Borders\x20*/','4bbdJBR','logger\x20*/','whMTz','\x20\x20</tbody>','\x0a\x20\x20\x20\x20borde','6145HlIYbp','borderStyl','\x20\x20\x20\x20<tr>\x0a','th,\x20td','\x20\x20\x20overflo','-size:\x2014p','<table\x20cla',';\x0a\x20\x20\x20\x20font','ng:\x2012px\x201','-tab','teks\x20','SWNwO','raAOp','FAiPw','select','iVssg','<h3>','sYFcy','RkwmK','ow-bg-colo','Vfmzw','gLNVl','\x20Tabel\x20Res','tabel\x20tr:n','#333333','aIiqs','addEventLi','UQKRe','rah-row','rtwdX','dth:\x20600px','a\x20screen\x20a','\x0a\x20\x20\x20\x20\x20\x20\x20\x20d','ent','lor','VlpsM',';\x0a}\x0a\x0a.rah-','tpIOk','WLuqz','sGvcm','ODgcl','<td>','ing:\x200.5px','|13|4','<th>','colCount','tableDataC','oPAKY','dSrYT','isplay:\x20bl','BHHJj','</th>\x0a','sXhfm',';\x22>','col','1|2|10|3|8','wgSAu','copyHtmlBt','ponsif\x20Blo','rm:\x20upperc',';\x20--hover-','3663fPUSXm','-bg-color:','weUxB','Tsicv','ext-color:','iLesc',',\x20Kolom\x20','QMPwe','6880dZXkyl','row','Loaded','div','\x200.1);\x0a}\x0a\x0a','5px;\x0a\x20\x20\x20\x20t','\x20backgroun','ase;\x0a\x20\x20\x20\x20l','zCZIi','rowCount','normal','border-rad','afiJy','UNvAR','1|5|9|16|0','DdUra','bxefW','KHbwi','65TojPCq','split','\x20th,\x0a.rah-','hoverColor','nqEsW','\x20\x20\x20\x20overfl','lOFwp','WeAaU','\x20\x20\x20\x20\x20\x20<td>','r:\x20','ad><tbody>','textConten',';\x20--odd-ro','ext-align:','#f5f5f5','OqPNi','ollapse;\x0a\x20',';\x20--header','\x20left;\x0a\x20\x20\x20','CrysA','LxJcm',';\x0a}\x0a\x0a@medi','\x20\x20backgrou','</td>','border','gZZou','</th>','oddRowColo','ah-tabel\x20{','nd-color:\x20','lyDFZ','rah-label','\x0a\x20\x20\x20\x20width','gger\x20*/\x0a.r','zwnAS','querySelec','table','th-child(o','1|14|15|12',':\x20100%;\x0a\x20\x20','3|4|7|5|2|','|7|18|20|1','color:\x20','</tbody></','ow:\x20hidden','eFpfY','-text-colo','TvJJE','bel\x22\x20style','\x20border-bo','12481XemGKm','vpwuH','fqffo','zJuZd','orderless\x20','rder-right','YejYd','Sszmk','XyrPD','remove','rah-form-g','ToRpK','add','SZQvv','Baris\x20','body','ById','egzbX','Color','execComman','4|2|0|1|3','removeChil','logger\x20-\x20H','bbyyx','-weight:\x206','ZBfkg','solid\x20#ddd','kNRDS','x;\x0a}\x0a\x0a.rah','PYruG','WBFiA','Ziwgy','YnrEx','w-x:\x20auto;','</h3>\x0a','spacing:\x200','bel\x22>\x0a','ss=\x22rah-ta','aoHsw','tablePrevi','LMHno','generateCo','\x20\x20<thead>\x0a','AjVcs','logger\x20-\x20B','.rah-tabel','jFSNH','|6|17|19|2','copy','408728auWMBB','evenRowCol','3491775qysFQo','createElem','1668VkNDck','tabel\x20td\x20{','eCEWm','updateTabl','horizontal','HoytJ','DOMContent','#ffffff','rMTqN','dd)\x20{\x0a\x20\x20\x20\x20','nth-child(','rQnCT','TWLed','LnUqY','AXrLP','r:\x20none;','cellTextCo','classList','27EDuPwx','nd\x20(max-wi','value','ppVgq','maePl','<tr>','\x0a\x20\x20<tbody>','text','rah-input','MtPsZ','jgcmK','copySucces','</tr>','\x0a\x20\x20\x20\x20backg','htmlOutput','ATBiQ','</tr></the','rah-col','WPRkH','OAfIN','dataset','jTlda','\x0a\x20\x20\x20\x20paddi',';\x20--cell-t','borderRigh','replace','className',';\x20--even-r','htauy','\x20\x20\x20border-','type','\x0a\x20\x20\x20\x20}\x0a}\x0a<','table>','rFjuo','vwdUd','shadow:\x200\x20','.rah-tab-b','ne;\x0a\x20\x20\x20\x20bo','textarea','.rah-tab-c','style','input','tabel\x20th\x20{','QPBrN','LtuPO','gjfOv','ock;\x0a\x20\x20\x20\x20\x20','round-colo','mpZTH','appendChil','label','lkscO','etter-spac','resetTable','Header\x20','headerBgCo','AfxvO','getElement','\x20\x20\x20\x20\x20\x20<th>','even)\x20{\x0a\x20\x20',';\x0a\x20\x20\x20\x20colo','IYJtz','w-bg-color','jznrM','innerHTML','\x0a\x20\x20\x20\x20color','ius:\x205px;\x0a','borderLeft','|8|9|1|0|6','\x20\x20</thead>','click','tabel\x20tr:h','block','stener','tableTitle','SyfXE','RhrfU','borderless','none','ontainer','uTZto','active','zsHeQ','esponsif\x20B','00;\x0a\x20\x20\x20\x20te','ttom:\x201px\x20','forEach','ZYQrP','<style>\x0a/*','orizontal\x20','/style>','xt-transfo','</td>\x0a','px\x200;\x0a\x20\x20\x20\x20','#e9e9e9','\x0a</table>','DskmJ','tor','\x20\x20\x20\x20</tr>\x0a','r-left:\x20no','DrXnd','applyStyle','roup','-tabel\x20tr:','TvSva','783177GzrDSC',')\x20{\x0a\x20\x20\x20\x20.r','2636724LTHBsW','-color:\x20','1|0|6','<thead><tr','</h3>','updateData','iUzLI','display','=\x22--header','sPjib','ontent',';\x0a\x20\x20\x20\x20box-','tab','\x20\x20border-c','headerText','0\x2020px\x20rgb','/*\x20Tabel\x20R','dMvvt','over\x20{\x0a\x20\x20\x20','d-color:\x20',';\x0a\x20\x20\x20\x20marg','background','86EDldPp','RKnGP','a(0,\x200,\x200,','torAll','2|3|10|5|4',':\x20none;','ollapse:\x20c','mpmxf'];_0x15b8=function(){return _0x3f687e;};return _0x15b8();}function setupEventListeners(){const _0x8ad4c2=_0x5b22e1,_0x22db70={'dSrYT':_0x8ad4c2(0x21f)+'tn','Ziwgy':_0x8ad4c2(0x24c),'vpwuH':_0x8ad4c2(0x222)+_0x8ad4c2(0x270),'afiJy':_0x8ad4c2(0x241),'OqPNi':_0x8ad4c2(0x1c8),'ppVgq':_0x8ad4c2(0x245),'LxJcm':function(_0x1f1fde){return _0x1f1fde();},'TvJJE':function(_0x5de7c1,_0x67aec2){return _0x5de7c1(_0x67aec2);},'zwnAS':_0x8ad4c2(0x2b9),'zCZIi':function(_0x255b72){return _0x255b72();},'ToRpK':function(_0x8a91e6,_0x391dac){return _0x8a91e6(_0x391dac);},'iUzLI':_0x8ad4c2(0x2da),'gZZou':_0x8ad4c2(0x2c3)+_0x8ad4c2(0x1e3)+_0x8ad4c2(0x2df)+_0x8ad4c2(0x30c)+_0x8ad4c2(0x309)+_0x8ad4c2(0x2b7),'jgcmK':_0x8ad4c2(0x2a4),'OAfIN':_0x8ad4c2(0x2db),'htauy':_0x8ad4c2(0x1f0),'rQnCT':_0x8ad4c2(0x232)+_0x8ad4c2(0x2ae),'bbyyx':_0x8ad4c2(0x1e6)+'or','QMPwe':_0x8ad4c2(0x28d)+'e','mpZTH':function(_0x35a021){return _0x35a021();},'MtPsZ':_0x8ad4c2(0x1f9)+_0x8ad4c2(0x2ae),'WLuqz':_0x8ad4c2(0x2e6),'nqEsW':_0x8ad4c2(0x2f1),'CrysA':_0x8ad4c2(0x274)+_0x8ad4c2(0x1c6),'sPjib':_0x8ad4c2(0x2fe)+'r','lyDFZ':_0x8ad4c2(0x259),'zsHeQ':_0x8ad4c2(0x30b)+_0x8ad4c2(0x268),'wgSAu':_0x8ad4c2(0x249),'kNRDS':_0x8ad4c2(0x209),'AXrLP':_0x8ad4c2(0x221),'RKnGP':_0x8ad4c2(0x1e4),'PYruG':_0x8ad4c2(0x206)+'s','fqffo':_0x8ad4c2(0x243),'gLNVl':function(_0x1c4840,_0x11f265,_0x5b52d3){return _0x1c4840(_0x11f265,_0x5b52d3);},'YnrEx':_0x8ad4c2(0x1ec)+'e','sYFcy':_0x8ad4c2(0x230),'FAiPw':_0x8ad4c2(0x260),'ODgcl':_0x8ad4c2(0x26b),'jFSNH':_0x8ad4c2(0x1dd)+'de','AjVcs':_0x8ad4c2(0x2c5)+'n'};document[_0x8ad4c2(0x306)+_0x8ad4c2(0x27f)](_0x22db70[_0x8ad4c2(0x2bc)])[_0x8ad4c2(0x251)](_0x404a12=>{const _0x3704e2=_0x8ad4c2,_0x1a2d68={'HoytJ':_0x22db70[_0x3704e2(0x1d3)]};_0x404a12[_0x3704e2(0x2a6)+_0x3704e2(0x244)](_0x22db70[_0x3704e2(0x2dd)],function(){const _0x12ecc2=_0x3704e2,_0x2991d7=this[_0x12ecc2(0x20f)][_0x12ecc2(0x272)];document[_0x12ecc2(0x306)+_0x12ecc2(0x27f)](_0x22db70[_0x12ecc2(0x2bc)])[_0x12ecc2(0x251)](_0x1c1cb4=>{const _0x1eebef=_0x12ecc2;_0x1c1cb4[_0x1eebef(0x1fa)][_0x1eebef(0x1bd)](_0x1a2d68[_0x1eebef(0x1ee)]);}),this[_0x12ecc2(0x1fa)][_0x12ecc2(0x1c0)](_0x22db70[_0x12ecc2(0x1d3)]),document[_0x12ecc2(0x306)+_0x12ecc2(0x27f)](_0x22db70[_0x12ecc2(0x1b5)])[_0x12ecc2(0x251)](_0x48b5e6=>{const _0xca2738=_0x12ecc2;_0x48b5e6[_0xca2738(0x1fa)][_0xca2738(0x1bd)](_0x1a2d68[_0xca2738(0x1ee)]);}),document[_0x12ecc2(0x234)+_0x12ecc2(0x1c4)](_0x2991d7+_0x12ecc2(0x295))[_0x12ecc2(0x1fa)][_0x12ecc2(0x1c0)](_0x22db70[_0x12ecc2(0x1d3)]);});}),document[_0x8ad4c2(0x234)+_0x8ad4c2(0x1c4)](_0x22db70[_0x8ad4c2(0x1d4)])[_0x8ad4c2(0x2a6)+_0x8ad4c2(0x244)](_0x22db70[_0x8ad4c2(0x2dd)],function(){const _0x497327=_0x8ad4c2,_0x541d26=_0x22db70[_0x497327(0x2f2)][_0x497327(0x2e4)]('|');let _0x8a311b=0x1c27+0x10a9+-0xef*0x30;while(!![]){switch(_0x541d26[_0x8a311b++]){case'0':tableTitle=document[_0x497327(0x234)+_0x497327(0x1c4)](_0x22db70[_0x497327(0x1fe)])[_0x497327(0x1fd)];continue;case'1':_0x22db70[_0x497327(0x2f7)](initTableData);continue;case'2':colCount=_0x22db70[_0x497327(0x312)](parseInt,document[_0x497327(0x234)+_0x497327(0x1c4)](_0x22db70[_0x497327(0x305)])[_0x497327(0x1fd)]);continue;case'3':_0x22db70[_0x497327(0x2d9)](generateTable);continue;case'4':rowCount=_0x22db70[_0x497327(0x1bf)](parseInt,document[_0x497327(0x234)+_0x497327(0x1c4)](_0x22db70[_0x497327(0x26c)])[_0x497327(0x1fd)]);continue;}break;}}),document[_0x8ad4c2(0x234)+_0x8ad4c2(0x1c4)](_0x22db70[_0x8ad4c2(0x29d)])[_0x8ad4c2(0x2a6)+_0x8ad4c2(0x244)](_0x22db70[_0x8ad4c2(0x2dd)],function(){const _0x85f9ab=_0x8ad4c2,_0x90adae=_0x22db70[_0x85f9ab(0x2fc)][_0x85f9ab(0x2e4)]('|');let _0x29adaa=0x2*-0x958+0x24+-0x128c*-0x1;while(!![]){switch(_0x90adae[_0x29adaa++]){case'0':document[_0x85f9ab(0x234)+_0x85f9ab(0x1c4)](_0x22db70[_0x85f9ab(0x1fe)])[_0x85f9ab(0x1fd)]=tableTitle;continue;case'1':rowCount=-0x352*-0x9+0x2e9+0xa*-0x347;continue;case'2':colCount=-0x841*-0x1+0x5d0+-0xe*0x101;continue;case'3':headerBgColor=_0x22db70[_0x85f9ab(0x205)];continue;case'4':_0x22db70[_0x85f9ab(0x2d9)](generateTable);continue;case'5':borderStyle=_0x22db70[_0x85f9ab(0x20e)];continue;case'6':oddRowColor=_0x22db70[_0x85f9ab(0x217)];continue;case'7':document[_0x85f9ab(0x234)+_0x85f9ab(0x1c4)](_0x22db70[_0x85f9ab(0x1f4)])[_0x85f9ab(0x1fd)]=headerBgColor;continue;case'8':headerTextColor=_0x22db70[_0x85f9ab(0x217)];continue;case'9':document[_0x85f9ab(0x234)+_0x85f9ab(0x1c4)](_0x22db70[_0x85f9ab(0x26c)])[_0x85f9ab(0x1fd)]=rowCount;continue;case'10':tableTitle='';continue;case'11':document[_0x85f9ab(0x234)+_0x85f9ab(0x1c4)](_0x22db70[_0x85f9ab(0x1cb)])[_0x85f9ab(0x1fd)]=evenRowColor;continue;case'12':document[_0x85f9ab(0x234)+_0x85f9ab(0x1c4)](_0x22db70[_0x85f9ab(0x2d0)])[_0x85f9ab(0x1fd)]=borderStyle;continue;case'13':_0x22db70[_0x85f9ab(0x22b)](initTableData);continue;case'14':document[_0x85f9ab(0x234)+_0x85f9ab(0x1c4)](_0x22db70[_0x85f9ab(0x204)])[_0x85f9ab(0x1fd)]=cellTextColor;continue;case'15':document[_0x85f9ab(0x234)+_0x85f9ab(0x1c4)](_0x22db70[_0x85f9ab(0x2b2)])[_0x85f9ab(0x1fd)]=hoverColor;continue;case'16':document[_0x85f9ab(0x234)+_0x85f9ab(0x1c4)](_0x22db70[_0x85f9ab(0x305)])[_0x85f9ab(0x1fd)]=colCount;continue;case'17':evenRowColor=_0x22db70[_0x85f9ab(0x2e7)];continue;case'18':document[_0x85f9ab(0x234)+_0x85f9ab(0x1c4)](_0x22db70[_0x85f9ab(0x2f6)])[_0x85f9ab(0x1fd)]=headerTextColor;continue;case'19':cellTextColor=_0x22db70[_0x85f9ab(0x205)];continue;case'20':document[_0x85f9ab(0x234)+_0x85f9ab(0x1c4)](_0x22db70[_0x85f9ab(0x26f)])[_0x85f9ab(0x1fd)]=oddRowColor;continue;case'21':hoverColor=_0x22db70[_0x85f9ab(0x301)];continue;}break;}}),document[_0x8ad4c2(0x234)+_0x8ad4c2(0x1c4)](_0x22db70[_0x8ad4c2(0x299)])[_0x8ad4c2(0x2a6)+_0x8ad4c2(0x244)](_0x22db70[_0x8ad4c2(0x2dd)],function(){const _0x2bf764=_0x8ad4c2,_0x5bc741=_0x22db70[_0x2bf764(0x24d)][_0x2bf764(0x2e4)]('|');let _0x57be73=-0x1af*-0x8+0x1448+-0x90*0x3c;while(!![]){switch(_0x5bc741[_0x57be73++]){case'0':borderStyle=document[_0x2bf764(0x234)+_0x2bf764(0x1c4)](_0x22db70[_0x2bf764(0x2d0)])[_0x2bf764(0x1fd)];continue;case'1':hoverColor=document[_0x2bf764(0x234)+_0x2bf764(0x1c4)](_0x22db70[_0x2bf764(0x2b2)])[_0x2bf764(0x1fd)];continue;case'2':cellTextColor=document[_0x2bf764(0x234)+_0x2bf764(0x1c4)](_0x22db70[_0x2bf764(0x204)])[_0x2bf764(0x1fd)];continue;case'3':headerBgColor=document[_0x2bf764(0x234)+_0x2bf764(0x1c4)](_0x22db70[_0x2bf764(0x1f4)])[_0x2bf764(0x1fd)];continue;case'4':headerTextColor=document[_0x2bf764(0x234)+_0x2bf764(0x1c4)](_0x22db70[_0x2bf764(0x2f6)])[_0x2bf764(0x1fd)];continue;case'5':evenRowColor=document[_0x2bf764(0x234)+_0x2bf764(0x1c4)](_0x22db70[_0x2bf764(0x1cb)])[_0x2bf764(0x1fd)];continue;case'6':_0x22db70[_0x2bf764(0x22b)](generateTable);continue;case'7':oddRowColor=document[_0x2bf764(0x234)+_0x2bf764(0x1c4)](_0x22db70[_0x2bf764(0x26f)])[_0x2bf764(0x1fd)];continue;}break;}}),document[_0x8ad4c2(0x234)+_0x8ad4c2(0x1c4)](_0x22db70[_0x8ad4c2(0x2b4)])[_0x8ad4c2(0x2a6)+_0x8ad4c2(0x244)](_0x22db70[_0x8ad4c2(0x2dd)],function(){const _0x40d1be=_0x8ad4c2;_0x22db70[_0x40d1be(0x2f7)](generateTable);}),document[_0x8ad4c2(0x234)+_0x8ad4c2(0x1c4)](_0x22db70[_0x8ad4c2(0x1e2)])[_0x8ad4c2(0x2a6)+_0x8ad4c2(0x244)](_0x22db70[_0x8ad4c2(0x2dd)],function(){const _0x2c545c=_0x8ad4c2;_0x22db70[_0x2c545c(0x2d9)](generateCode);}),document[_0x8ad4c2(0x234)+_0x8ad4c2(0x1c4)](_0x22db70[_0x8ad4c2(0x1df)])[_0x8ad4c2(0x2a6)+_0x8ad4c2(0x244)](_0x22db70[_0x8ad4c2(0x2dd)],function(){const _0x3c3d57=_0x8ad4c2,_0x315239={'LMHno':_0x22db70[_0x3c3d57(0x2c4)]},_0x369970=document[_0x3c3d57(0x234)+_0x3c3d57(0x1c4)](_0x22db70[_0x3c3d57(0x1cf)]),_0x1564ea=document[_0x3c3d57(0x1e8)+_0x3c3d57(0x2ad)](_0x22db70[_0x3c3d57(0x1f7)]);_0x1564ea[_0x3c3d57(0x1fd)]=_0x369970[_0x3c3d57(0x2ee)+'t'],document[_0x3c3d57(0x1c3)][_0x3c3d57(0x22c)+'d'](_0x1564ea),_0x1564ea[_0x3c3d57(0x29a)](),document[_0x3c3d57(0x1c7)+'d'](_0x22db70[_0x3c3d57(0x27d)]),document[_0x3c3d57(0x1c3)][_0x3c3d57(0x1c9)+'d'](_0x1564ea);const _0x4b9f4e=document[_0x3c3d57(0x234)+_0x3c3d57(0x1c4)](_0x22db70[_0x3c3d57(0x1d1)]);_0x4b9f4e[_0x3c3d57(0x223)][_0x3c3d57(0x26d)]=_0x22db70[_0x3c3d57(0x1b6)],_0x22db70[_0x3c3d57(0x2a1)](setTimeout,function(){const _0x2bb613=_0x3c3d57;_0x4b9f4e[_0x2bb613(0x223)][_0x2bb613(0x26d)]=_0x315239[_0x2bb613(0x1dc)];},-0x29f*-0x7+0x2e*0x3d+0x1*-0x157f);});}function generateTable(){const _0x1e5d42=_0x5b22e1,_0x4e6ca8={'sXhfm':_0x1e5d42(0x249),'lkscO':_0x1e5d42(0x1db)+'ew','IYJtz':_0x1e5d42(0x269)+'>','DrXnd':function(_0x1ee62b,_0x2d729c){return _0x1ee62b<_0x2d729c;},'Sszmk':_0x1e5d42(0x20b)+_0x1e5d42(0x2ed),'Tsicv':function(_0xd90c81,_0x501394){return _0xd90c81<_0x501394;},'DskmJ':_0x1e5d42(0x200),'ZYQrP':function(_0xe9c3e9,_0x18d71d){return _0xe9c3e9<_0x18d71d;},'TWLed':_0x1e5d42(0x207),'rFjuo':_0x1e5d42(0x30e)+_0x1e5d42(0x21b),'WPRkH':_0x1e5d42(0x307),'AfxvO':function(_0x5d50b1,_0x1c8126){return _0x5d50b1===_0x1c8126;},'ZBfkg':_0x1e5d42(0x248),'QPBrN':_0x1e5d42(0x28f),'rtwdX':_0x1e5d42(0x1ed)},_0x1589f6=document[_0x1e5d42(0x234)+_0x1e5d42(0x1c4)](_0x4e6ca8[_0x1e5d42(0x22e)]);let _0x250b7d='';tableTitle&&(_0x250b7d+=_0x1e5d42(0x29c)+tableTitle+_0x1e5d42(0x26a));_0x250b7d+=_0x1e5d42(0x292)+_0x1e5d42(0x1d9)+_0x1e5d42(0x1b2)+_0x1e5d42(0x26e)+_0x1e5d42(0x2ca)+'\x20'+headerBgColor+(_0x1e5d42(0x2f4)+_0x1e5d42(0x311)+_0x1e5d42(0x2ec))+headerTextColor+(_0x1e5d42(0x2ef)+_0x1e5d42(0x239)+':\x20')+oddRowColor+(_0x1e5d42(0x216)+_0x1e5d42(0x29f)+_0x1e5d42(0x2ec))+evenRowColor+(_0x1e5d42(0x212)+_0x1e5d42(0x2cd)+'\x20')+cellTextColor+(_0x1e5d42(0x2c8)+_0x1e5d42(0x30d))+hoverColor+_0x1e5d42(0x2c1),_0x250b7d+=_0x4e6ca8[_0x1e5d42(0x238)];for(let _0x1ad9aa=0x45b+-0x1dcc*0x1+-0xa7*-0x27;_0x4e6ca8[_0x1e5d42(0x25f)](_0x1ad9aa,colCount);_0x1ad9aa++){_0x250b7d+=_0x1e5d42(0x2b8)+tableData[-0x6f*-0xd+0x3*0x6d3+-0x1a1c][_0x1ad9aa]+_0x1e5d42(0x2fd);}_0x250b7d+=_0x4e6ca8[_0x1e5d42(0x1bb)];for(let _0x5ef337=0x1486+-0x8a7+-0xbde;_0x4e6ca8[_0x1e5d42(0x2cc)](_0x5ef337,rowCount);_0x5ef337++){_0x250b7d+=_0x4e6ca8[_0x1e5d42(0x25b)];for(let _0x22b894=-0x1*-0xd69+-0x467+-0x481*0x2;_0x4e6ca8[_0x1e5d42(0x252)](_0x22b894,colCount);_0x22b894++){_0x250b7d+=_0x1e5d42(0x2b5)+tableData[_0x5ef337][_0x22b894]+_0x1e5d42(0x2fa);}_0x250b7d+=_0x4e6ca8[_0x1e5d42(0x1f5)];}_0x250b7d+=_0x4e6ca8[_0x1e5d42(0x21c)],_0x1589f6[_0x1e5d42(0x23b)]=_0x250b7d;const _0x1e7ebe=_0x1589f6[_0x1e5d42(0x306)+_0x1e5d42(0x25c)](_0x4e6ca8[_0x1e5d42(0x20d)]);if(_0x1e7ebe){if(_0x4e6ca8[_0x1e5d42(0x233)](borderStyle,_0x4e6ca8[_0x1e5d42(0x1cd)]))_0x1e7ebe[_0x1e5d42(0x223)][_0x1e5d42(0x2fb)]=_0x4e6ca8[_0x1e5d42(0x2c0)],_0x1e7ebe[_0x1e5d42(0x306)+_0x1e5d42(0x27f)](_0x4e6ca8[_0x1e5d42(0x226)])[_0x1e5d42(0x251)](_0x54ccd2=>{const _0x57e00b=_0x1e5d42;_0x54ccd2[_0x57e00b(0x223)][_0x57e00b(0x2fb)]=_0x4e6ca8[_0x57e00b(0x2c0)];});else _0x4e6ca8[_0x1e5d42(0x233)](borderStyle,_0x4e6ca8[_0x1e5d42(0x2a9)])&&(_0x1e7ebe[_0x1e5d42(0x223)][_0x1e5d42(0x2fb)]=_0x4e6ca8[_0x1e5d42(0x2c0)],_0x1e7ebe[_0x1e5d42(0x306)+_0x1e5d42(0x27f)](_0x4e6ca8[_0x1e5d42(0x226)])[_0x1e5d42(0x251)](_0x2fc01b=>{const _0x21aeaf=_0x1e5d42;_0x2fc01b[_0x21aeaf(0x223)][_0x21aeaf(0x23e)]=_0x4e6ca8[_0x21aeaf(0x2c0)],_0x2fc01b[_0x21aeaf(0x223)][_0x21aeaf(0x213)+'t']=_0x4e6ca8[_0x21aeaf(0x2c0)];}));}}function generateCode(){const _0x28fa8f=_0x5b22e1,_0x3b9e5e={'iLesc':_0x28fa8f(0x209),'oPAKY':_0x28fa8f(0x1de)+_0x28fa8f(0x28e),'mpmxf':function(_0x5634d6,_0x3ff0e0){return _0x5634d6<_0x3ff0e0;},'eCEWm':_0x28fa8f(0x25d)+_0x28fa8f(0x240)+_0x28fa8f(0x201)+'\x0a','VlpsM':_0x28fa8f(0x28e),'maePl':_0x28fa8f(0x25d),'sGvcm':_0x28fa8f(0x28a)+_0x28fa8f(0x25a),'iVssg':function(_0x214414,_0x2fa87e){return _0x214414===_0x2fa87e;},'whMTz':_0x28fa8f(0x248),'SyfXE':_0x28fa8f(0x276)+_0x28fa8f(0x24e)+_0x28fa8f(0x288),'WeAaU':_0x28fa8f(0x276)+_0x28fa8f(0x24e)+_0x28fa8f(0x1e0)+_0x28fa8f(0x1b8)+'*/','UNvAR':_0x28fa8f(0x1e1)+_0x28fa8f(0x2e5)+_0x28fa8f(0x1ea),'LtuPO':_0x28fa8f(0x1e1)+_0x28fa8f(0x2e5)+_0x28fa8f(0x1ea)+_0x28fa8f(0x28b)+_0x28fa8f(0x1f8),'jTlda':_0x28fa8f(0x1ed),'Vfmzw':_0x28fa8f(0x276)+_0x28fa8f(0x24e)+_0x28fa8f(0x1ca)+_0x28fa8f(0x254)+_0x28fa8f(0x286),'WBFiA':_0x28fa8f(0x1e1)+_0x28fa8f(0x2e5)+_0x28fa8f(0x1ea)+_0x28fa8f(0x28b)+_0x28fa8f(0x25e)+_0x28fa8f(0x220)+_0x28fa8f(0x1b9)+_0x28fa8f(0x281)},_0x26b76c=document[_0x28fa8f(0x234)+_0x28fa8f(0x1c4)](_0x3b9e5e[_0x28fa8f(0x2ce)]);let _0x50364='';_0x50364+=_0x28fa8f(0x253)+_0x28fa8f(0x2a2)+_0x28fa8f(0x2c6)+_0x28fa8f(0x304)+_0x28fa8f(0x2ff)+_0x28fa8f(0x303)+_0x28fa8f(0x30a)+_0x28fa8f(0x273)+_0x28fa8f(0x282)+_0x28fa8f(0x2f3)+_0x28fa8f(0x218)+_0x28fa8f(0x1d7)+_0x28fa8f(0x27a)+_0x28fa8f(0x284)+_0x28fa8f(0x258)+_0x28fa8f(0x2dc)+_0x28fa8f(0x23d)+_0x28fa8f(0x2e8)+_0x28fa8f(0x30f)+_0x28fa8f(0x271)+_0x28fa8f(0x21e)+_0x28fa8f(0x275)+_0x28fa8f(0x27e)+_0x28fa8f(0x2d5)+_0x28fa8f(0x1e1)+_0x28fa8f(0x2e5)+_0x28fa8f(0x1ea)+_0x28fa8f(0x211)+_0x28fa8f(0x294)+_0x28fa8f(0x2d6)+_0x28fa8f(0x2f0)+_0x28fa8f(0x2f5)+_0x28fa8f(0x1b3)+_0x28fa8f(0x250)+_0x28fa8f(0x1ce)+_0x28fa8f(0x2b0)+_0x28fa8f(0x225)+_0x28fa8f(0x208)+_0x28fa8f(0x22a)+_0x28fa8f(0x2ec)+headerBgColor+(_0x28fa8f(0x237)+_0x28fa8f(0x2ec))+headerTextColor+(_0x28fa8f(0x293)+_0x28fa8f(0x1cc)+_0x28fa8f(0x24f)+_0x28fa8f(0x256)+_0x28fa8f(0x2c7)+_0x28fa8f(0x2d8)+_0x28fa8f(0x22f)+_0x28fa8f(0x2b6)+_0x28fa8f(0x293)+_0x28fa8f(0x291)+_0x28fa8f(0x1d0)+_0x28fa8f(0x262)+_0x28fa8f(0x1f3)+_0x28fa8f(0x236)+_0x28fa8f(0x2f9)+_0x28fa8f(0x300))+evenRowColor+(_0x28fa8f(0x2b0)+_0x28fa8f(0x2a3)+_0x28fa8f(0x308)+_0x28fa8f(0x1f2)+_0x28fa8f(0x27b)+_0x28fa8f(0x267))+oddRowColor+(_0x28fa8f(0x2b0)+_0x28fa8f(0x242)+_0x28fa8f(0x278)+_0x28fa8f(0x2d7)+_0x28fa8f(0x279))+hoverColor+(_0x28fa8f(0x2b0)+_0x28fa8f(0x1ea)+_0x28fa8f(0x23c)+':\x20')+cellTextColor+(_0x28fa8f(0x2f8)+_0x28fa8f(0x2ab)+_0x28fa8f(0x1fc)+_0x28fa8f(0x2aa)+_0x28fa8f(0x265)+_0x28fa8f(0x2ff)+_0x28fa8f(0x2ac)+_0x28fa8f(0x2bd)+_0x28fa8f(0x229)+_0x28fa8f(0x290)+_0x28fa8f(0x1d5)+_0x28fa8f(0x21a)+_0x28fa8f(0x255)),_0x50364+='\x0a\x0a';tableTitle&&(_0x50364+=_0x28fa8f(0x29c)+tableTitle+_0x28fa8f(0x1d6));_0x50364+=_0x28fa8f(0x292)+_0x28fa8f(0x1d9)+_0x28fa8f(0x1d8),_0x50364+=_0x3b9e5e[_0x28fa8f(0x2bb)];for(let _0x7c276=0x1ad6+0x1*0xca+-0x8*0x374;_0x3b9e5e[_0x28fa8f(0x283)](_0x7c276,colCount);_0x7c276++){_0x50364+=_0x28fa8f(0x235)+tableData[0x1707+-0x548+-0x11bf][_0x7c276]+_0x28fa8f(0x2bf);}_0x50364+=_0x3b9e5e[_0x28fa8f(0x1eb)];for(let _0xa021b8=-0x521+-0x2385*0x1+0xd8d*0x3;_0x3b9e5e[_0x28fa8f(0x283)](_0xa021b8,rowCount);_0xa021b8++){_0x50364+=_0x3b9e5e[_0x28fa8f(0x2af)];for(let _0x400de9=-0x2*0x476+0x85d*0x3+-0x1*0x102b;_0x3b9e5e[_0x28fa8f(0x283)](_0x400de9,colCount);_0x400de9++){_0x50364+=_0x28fa8f(0x2eb)+tableData[_0xa021b8][_0x400de9]+_0x28fa8f(0x257);}_0x50364+=_0x3b9e5e[_0x28fa8f(0x1ff)];}_0x50364+=_0x3b9e5e[_0x28fa8f(0x2b3)];if(_0x3b9e5e[_0x28fa8f(0x29b)](borderStyle,_0x3b9e5e[_0x28fa8f(0x289)]))_0x50364=_0x50364[_0x28fa8f(0x214)](_0x3b9e5e[_0x28fa8f(0x246)],_0x3b9e5e[_0x28fa8f(0x2ea)]),_0x50364=_0x50364[_0x28fa8f(0x214)](_0x3b9e5e[_0x28fa8f(0x2de)],_0x3b9e5e[_0x28fa8f(0x227)]);else _0x3b9e5e[_0x28fa8f(0x29b)](borderStyle,_0x3b9e5e[_0x28fa8f(0x210)])&&(_0x50364=_0x50364[_0x28fa8f(0x214)](_0x3b9e5e[_0x28fa8f(0x246)],_0x3b9e5e[_0x28fa8f(0x2a0)]),_0x50364=_0x50364[_0x28fa8f(0x214)](_0x3b9e5e[_0x28fa8f(0x2de)],_0x3b9e5e[_0x28fa8f(0x1d2)]));_0x26b76c[_0x28fa8f(0x2ee)+'t']=_0x50364;}document[_0x5b22e1(0x2a6)+_0x5b22e1(0x244)](_0x5b22e1(0x1ef)+_0x5b22e1(0x2d3),initApp);
        </script>
    </body>
    </html>
  6. Jika sudah silahkan publikasin halaman dan lihat bagaimana hasilnya

About the author

Bloggermuda.com
Belajar dan menghasilkan adalah kegemaran saya, salam cuan

Post a Comment