├── .htaccess ├── README.md ├── application ├── .htaccess ├── cache │ ├── frame_1.dat │ ├── frame_2.dat │ ├── index.html │ ├── mask_0 │ │ ├── mask_21_0.dat │ │ └── mask_25_0.dat │ ├── mask_1 │ │ ├── mask_21_1.dat │ │ └── mask_25_1.dat │ ├── mask_2 │ │ ├── mask_21_2.dat │ │ └── mask_25_2.dat │ ├── mask_3 │ │ ├── mask_21_3.dat │ │ └── mask_25_3.dat │ ├── mask_4 │ │ ├── mask_21_4.dat │ │ └── mask_25_4.dat │ ├── mask_5 │ │ ├── mask_21_5.dat │ │ └── mask_25_5.dat │ ├── mask_6 │ │ ├── mask_21_6.dat │ │ └── mask_25_6.dat │ └── mask_7 │ │ ├── mask_21_7.dat │ │ └── mask_25_7.dat ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Auth.php │ ├── Cetak.php │ ├── Dashboard.php │ ├── Kartu.php │ ├── Sekolah.php │ ├── Siswa.php │ └── index.html ├── core │ └── index.html ├── helpers │ ├── cardschool_helper.php │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ └── index.html │ └── index.html ├── libraries │ ├── Ciqrcode.php │ ├── PHPExcel.php │ ├── PHPExcel │ │ ├── Autoloader.php │ │ ├── CachedObjectStorage │ │ │ ├── APC.php │ │ │ ├── CacheBase.php │ │ │ ├── DiscISAM.php │ │ │ ├── ICache.php │ │ │ ├── Igbinary.php │ │ │ ├── Memcache.php │ │ │ ├── Memory.php │ │ │ ├── MemoryGZip.php │ │ │ ├── MemorySerialized.php │ │ │ ├── PHPTemp.php │ │ │ ├── SQLite.php │ │ │ ├── SQLite3.php │ │ │ └── Wincache.php │ │ ├── CachedObjectStorageFactory.php │ │ ├── CalcEngine │ │ │ ├── CyclicReferenceStack.php │ │ │ └── Logger.php │ │ ├── Calculation.php │ │ ├── Calculation │ │ │ ├── Database.php │ │ │ ├── DateTime.php │ │ │ ├── Engineering.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── Financial.php │ │ │ ├── FormulaParser.php │ │ │ ├── FormulaToken.php │ │ │ ├── Function.php │ │ │ ├── Functions.php │ │ │ ├── Logical.php │ │ │ ├── LookupRef.php │ │ │ ├── MathTrig.php │ │ │ ├── Statistical.php │ │ │ ├── TextData.php │ │ │ ├── Token │ │ │ │ └── Stack.php │ │ │ └── functionlist.txt │ │ ├── Cell.php │ │ ├── Cell │ │ │ ├── AdvancedValueBinder.php │ │ │ ├── DataType.php │ │ │ ├── DataValidation.php │ │ │ ├── DefaultValueBinder.php │ │ │ ├── Hyperlink.php │ │ │ └── IValueBinder.php │ │ ├── Chart.php │ │ ├── Chart │ │ │ ├── DataSeries.php │ │ │ ├── DataSeriesValues.php │ │ │ ├── Exception.php │ │ │ ├── Layout.php │ │ │ ├── Legend.php │ │ │ ├── PlotArea.php │ │ │ ├── Renderer │ │ │ │ ├── PHP Charting Libraries.txt │ │ │ │ └── jpgraph.php │ │ │ └── Title.php │ │ ├── Comment.php │ │ ├── DocumentProperties.php │ │ ├── DocumentSecurity.php │ │ ├── Exception.php │ │ ├── HashTable.php │ │ ├── IComparable.php │ │ ├── IOFactory.php │ │ ├── NamedRange.php │ │ ├── Reader │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── DefaultReadFilter.php │ │ │ ├── Excel2003XML.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ └── Theme.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── Escher.php │ │ │ │ ├── MD5.php │ │ │ │ └── RC4.php │ │ │ ├── Exception.php │ │ │ ├── Gnumeric.php │ │ │ ├── HTML.php │ │ │ ├── IReadFilter.php │ │ │ ├── IReader.php │ │ │ ├── OOCalc.php │ │ │ └── SYLK.php │ │ ├── ReferenceHelper.php │ │ ├── RichText.php │ │ ├── RichText │ │ │ ├── ITextElement.php │ │ │ ├── Run.php │ │ │ └── TextElement.php │ │ ├── Settings.php │ │ ├── Shared │ │ │ ├── CodePage.php │ │ │ ├── Date.php │ │ │ ├── Drawing.php │ │ │ ├── Escher.php │ │ │ ├── Escher │ │ │ │ ├── DgContainer.php │ │ │ │ ├── DgContainer │ │ │ │ │ ├── SpgrContainer.php │ │ │ │ │ └── SpgrContainer │ │ │ │ │ │ └── SpContainer.php │ │ │ │ ├── DggContainer.php │ │ │ │ └── DggContainer │ │ │ │ │ ├── BstoreContainer.php │ │ │ │ │ └── BstoreContainer │ │ │ │ │ ├── BSE.php │ │ │ │ │ └── BSE │ │ │ │ │ └── Blip.php │ │ │ ├── Excel5.php │ │ │ ├── File.php │ │ │ ├── Font.php │ │ │ ├── JAMA │ │ │ │ ├── CHANGELOG.TXT │ │ │ │ ├── CholeskyDecomposition.php │ │ │ │ ├── EigenvalueDecomposition.php │ │ │ │ ├── LUDecomposition.php │ │ │ │ ├── Matrix.php │ │ │ │ ├── QRDecomposition.php │ │ │ │ ├── SingularValueDecomposition.php │ │ │ │ └── utils │ │ │ │ │ ├── Error.php │ │ │ │ │ └── Maths.php │ │ │ ├── OLE.php │ │ │ ├── OLE │ │ │ │ ├── ChainedBlockStream.php │ │ │ │ ├── PPS.php │ │ │ │ └── PPS │ │ │ │ │ ├── File.php │ │ │ │ │ └── Root.php │ │ │ ├── OLERead.php │ │ │ ├── PCLZip │ │ │ │ ├── gnu-lgpl.txt │ │ │ │ ├── pclzip.lib.php │ │ │ │ └── readme.txt │ │ │ ├── PasswordHasher.php │ │ │ ├── String.php │ │ │ ├── TimeZone.php │ │ │ ├── XMLWriter.php │ │ │ ├── ZipArchive.php │ │ │ ├── ZipStreamWrapper.php │ │ │ └── trend │ │ │ │ ├── bestFitClass.php │ │ │ │ ├── exponentialBestFitClass.php │ │ │ │ ├── linearBestFitClass.php │ │ │ │ ├── logarithmicBestFitClass.php │ │ │ │ ├── polynomialBestFitClass.php │ │ │ │ ├── powerBestFitClass.php │ │ │ │ └── trendClass.php │ │ ├── Style.php │ │ ├── Style │ │ │ ├── Alignment.php │ │ │ ├── Border.php │ │ │ ├── Borders.php │ │ │ ├── Color.php │ │ │ ├── Conditional.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── NumberFormat.php │ │ │ ├── Protection.php │ │ │ └── Supervisor.php │ │ ├── Worksheet.php │ │ ├── Worksheet │ │ │ ├── AutoFilter.php │ │ │ ├── AutoFilter │ │ │ │ ├── Column.php │ │ │ │ └── Column │ │ │ │ │ └── Rule.php │ │ │ ├── BaseDrawing.php │ │ │ ├── CellIterator.php │ │ │ ├── ColumnDimension.php │ │ │ ├── Drawing.php │ │ │ ├── Drawing │ │ │ │ └── Shadow.php │ │ │ ├── HeaderFooter.php │ │ │ ├── HeaderFooterDrawing.php │ │ │ ├── MemoryDrawing.php │ │ │ ├── PageMargins.php │ │ │ ├── PageSetup.php │ │ │ ├── Protection.php │ │ │ ├── Row.php │ │ │ ├── RowDimension.php │ │ │ ├── RowIterator.php │ │ │ └── SheetView.php │ │ ├── WorksheetIterator.php │ │ ├── Writer │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ ├── Comments.php │ │ │ │ ├── ContentTypes.php │ │ │ │ ├── DocProps.php │ │ │ │ ├── Drawing.php │ │ │ │ ├── Rels.php │ │ │ │ ├── RelsRibbon.php │ │ │ │ ├── RelsVBA.php │ │ │ │ ├── StringTable.php │ │ │ │ ├── Style.php │ │ │ │ ├── Theme.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── WriterPart.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── BIFFwriter.php │ │ │ │ ├── Escher.php │ │ │ │ ├── Font.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── Xf.php │ │ │ ├── Exception.php │ │ │ ├── HTML.php │ │ │ ├── IWriter.php │ │ │ ├── PDF.php │ │ │ └── PDF │ │ │ │ ├── Core.php │ │ │ │ ├── DomPDF.php │ │ │ │ ├── mPDF.php │ │ │ │ └── tcPDF.php │ │ └── locale │ │ │ ├── bg │ │ │ └── config │ │ │ ├── cs │ │ │ ├── config │ │ │ └── functions │ │ │ ├── da │ │ │ ├── config │ │ │ └── functions │ │ │ ├── de │ │ │ ├── config │ │ │ └── functions │ │ │ ├── en │ │ │ └── uk │ │ │ │ └── config │ │ │ ├── es │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fi │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fr │ │ │ ├── config │ │ │ └── functions │ │ │ ├── hu │ │ │ ├── config │ │ │ └── functions │ │ │ ├── it │ │ │ ├── config │ │ │ └── functions │ │ │ ├── nl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── no │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pt │ │ │ ├── br │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ ├── config │ │ │ └── functions │ │ │ ├── ru │ │ │ ├── config │ │ │ └── functions │ │ │ ├── sv │ │ │ ├── config │ │ │ └── functions │ │ │ └── tr │ │ │ ├── config │ │ │ └── functions │ ├── index copy.html │ ├── index.html │ └── qrcode │ │ ├── phpqrcode.php │ │ ├── qrbitstream.php │ │ ├── qrconfig.php │ │ ├── qrconst.php │ │ ├── qrencode.php │ │ ├── qrimage.php │ │ ├── qrinput.php │ │ ├── qrlib.php │ │ ├── qrmask.php │ │ ├── qrrscode.php │ │ ├── qrspec.php │ │ ├── qrsplit.php │ │ └── qrtools.php ├── logs │ └── index.html ├── models │ ├── Adminmodel.php │ ├── Kartu_model.php │ ├── Sekolah_model.php │ ├── Siswa_model.php │ └── index.html ├── third_party │ └── index.html └── views │ ├── admin │ ├── dashboard.php │ ├── kartu.php │ ├── sekolah.php │ └── siswa.php │ ├── cetak_semua.php │ ├── cetak_semua2.php │ ├── contoh.php │ ├── contoh2.php │ ├── error.php │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── index.php │ ├── masuk.php │ ├── print.php │ ├── print2.php │ ├── smkfinal.php │ ├── templates │ ├── footer.php │ ├── header.php │ └── print.php │ └── welcome_message.php ├── asset ├── fileimport │ ├── master.xlsx │ ├── master1.xlsx │ ├── master11.xlsx │ ├── master12.xlsx │ ├── master121.xlsx │ ├── master13.xlsx │ ├── master14.xlsx │ ├── master15.xlsx │ ├── master2.xlsx │ ├── master21.xlsx │ ├── master3.xlsx │ ├── master4.xlsx │ ├── master5.xlsx │ ├── master51.xlsx │ ├── master52.xlsx │ ├── master53.xlsx │ ├── master6.xlsx │ └── ~$master.xlsx └── kartu │ ├── contoh.png │ ├── contoh2.png │ ├── desain │ ├── birunom.png │ └── kpel2.png │ ├── dinas │ ├── 1f3920e722fa59abbe6365d482d595e0.jpg │ ├── twh.png │ └── unnamed.png │ ├── foto │ └── muhammad andri fahrizal.png │ ├── logo │ ├── 126311.png │ ├── 1f3920e722fa59abbe6365d482d595e0.jpg │ ├── ai.png │ ├── smklogo.png │ ├── twh.png │ └── unnamed.png │ ├── qr │ ├── 123456.png │ ├── 20010.png │ ├── 20011.png │ ├── 20012.png │ ├── 20013.png │ ├── 20014.png │ ├── 20015.png │ ├── 20016.png │ ├── 20017.png │ ├── 20018.png │ ├── 20019.png │ ├── 20020.png │ ├── 20021.png │ ├── 20022.png │ ├── 20023.png │ ├── 20024.png │ ├── 20026.png │ ├── 20027.png │ ├── 20028.png │ ├── 20029.png │ ├── 20030.png │ ├── 20031.png │ ├── 20032.png │ ├── 20033.png │ ├── 20035.png │ ├── 20036.png │ ├── 20037.png │ ├── 20038.png │ ├── 20039.png │ ├── 20040.png │ ├── 20041.png │ ├── 20042.png │ ├── 20043.png │ ├── 20045.png │ ├── 20046.png │ ├── 20047.png │ ├── 20048.png │ ├── 20049.png │ ├── 20050.png │ ├── 20051.png │ ├── 20052.png │ ├── 20053.png │ ├── 20054.png │ ├── 20055.png │ ├── 20056.png │ ├── 20057.png │ ├── 20058.png │ ├── 20059.png │ ├── 20060.png │ ├── 20061.png │ ├── 20063.png │ ├── 20064.png │ ├── 20066.png │ ├── 20067.png │ ├── 20068.png │ ├── 20069.png │ ├── 20070.png │ ├── 20072.png │ ├── 20073.png │ ├── 20074.png │ ├── 20075.png │ ├── 20076.png │ ├── 20077.png │ ├── 20078.png │ ├── 20079.png │ ├── 20080.png │ ├── 20081.png │ ├── 20082.png │ ├── 20083.png │ ├── 20084.png │ ├── 20086.png │ ├── 20088.png │ ├── 20089.png │ └── test.png │ ├── stempel │ └── STEMPEL-SMK.png │ └── ttd │ └── Kepsek_copy.png ├── assets ├── bootstrap-4.3.1-dist │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── images │ ├── 123.png │ └── Test.png └── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ ├── bootstrap.min.js.map │ └── jquery-3.4.1.min.js ├── erzetid_kapel.sql ├── index.php ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Log.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ ├── compat │ │ ├── hash.php │ │ ├── index.html │ │ ├── mbstring.php │ │ ├── password.php │ │ └── standard.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_query_builder.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── ibase │ │ │ ├── ibase_driver.php │ │ │ ├── ibase_forge.php │ │ │ ├── ibase_result.php │ │ │ ├── ibase_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ ├── pdo_utility.php │ │ │ └── subdrivers │ │ │ │ ├── index.html │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ └── pdo_sqlsrv_forge.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ ├── sqlite3 │ │ │ ├── index.html │ │ │ ├── sqlite3_driver.php │ │ │ ├── sqlite3_forge.php │ │ │ ├── sqlite3_result.php │ │ │ └── sqlite3_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ ├── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ ├── Cache_memcached.php │ │ ├── Cache_redis.php │ │ ├── Cache_wincache.php │ │ └── index.html │ └── index.html │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Encryption.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Javascript │ ├── Jquery.php │ └── index.html │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session │ ├── Session.php │ ├── SessionHandlerInterface.php │ ├── Session_driver.php │ ├── drivers │ │ ├── Session_database_driver.php │ │ ├── Session_files_driver.php │ │ ├── Session_memcached_driver.php │ │ ├── Session_redis_driver.php │ │ └── index.html │ └── index.html │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ └── index.html ├── user_guide ├── .buildinfo ├── DCO.html ├── _downloads │ └── ELDocs.tmbundle.zip ├── _images │ ├── appflowchart.gif │ └── smile.gif ├── _static │ ├── ajax-loader.gif │ ├── basic.css │ ├── ci-icon.ico │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── css │ │ ├── badge_only.css │ │ ├── citheme.css │ │ └── theme.css │ ├── doctools.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── images │ │ └── ci-icon.ico │ ├── jquery-3.1.0.js │ ├── jquery.js │ ├── js │ │ ├── oldtheme.js │ │ └── theme.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore-1.3.1.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js ├── changelog.html ├── contributing │ └── index.html ├── database │ ├── caching.html │ ├── call_function.html │ ├── configuration.html │ ├── connecting.html │ ├── db_driver_reference.html │ ├── examples.html │ ├── forge.html │ ├── helpers.html │ ├── index.html │ ├── metadata.html │ ├── queries.html │ ├── query_builder.html │ ├── results.html │ ├── transactions.html │ └── utilities.html ├── documentation │ └── index.html ├── general │ ├── alternative_php.html │ ├── ancillary_classes.html │ ├── autoloader.html │ ├── caching.html │ ├── cli.html │ ├── common_functions.html │ ├── compatibility_functions.html │ ├── controllers.html │ ├── core_classes.html │ ├── creating_drivers.html │ ├── creating_libraries.html │ ├── credits.html │ ├── drivers.html │ ├── environments.html │ ├── errors.html │ ├── helpers.html │ ├── hooks.html │ ├── index.html │ ├── libraries.html │ ├── managing_apps.html │ ├── models.html │ ├── profiling.html │ ├── requirements.html │ ├── reserved_names.html │ ├── routing.html │ ├── security.html │ ├── styleguide.html │ ├── urls.html │ ├── views.html │ └── welcome.html ├── genindex.html ├── helpers │ ├── array_helper.html │ ├── captcha_helper.html │ ├── cookie_helper.html │ ├── date_helper.html │ ├── directory_helper.html │ ├── download_helper.html │ ├── email_helper.html │ ├── file_helper.html │ ├── form_helper.html │ ├── html_helper.html │ ├── index.html │ ├── inflector_helper.html │ ├── language_helper.html │ ├── number_helper.html │ ├── path_helper.html │ ├── security_helper.html │ ├── smiley_helper.html │ ├── string_helper.html │ ├── text_helper.html │ ├── typography_helper.html │ ├── url_helper.html │ └── xml_helper.html ├── index.html ├── installation │ ├── downloads.html │ ├── index.html │ ├── troubleshooting.html │ ├── upgrade_120.html │ ├── upgrade_130.html │ ├── upgrade_131.html │ ├── upgrade_132.html │ ├── upgrade_133.html │ ├── upgrade_140.html │ ├── upgrade_141.html │ ├── upgrade_150.html │ ├── upgrade_152.html │ ├── upgrade_153.html │ ├── upgrade_154.html │ ├── upgrade_160.html │ ├── upgrade_161.html │ ├── upgrade_162.html │ ├── upgrade_163.html │ ├── upgrade_170.html │ ├── upgrade_171.html │ ├── upgrade_172.html │ ├── upgrade_200.html │ ├── upgrade_201.html │ ├── upgrade_202.html │ ├── upgrade_203.html │ ├── upgrade_210.html │ ├── upgrade_211.html │ ├── upgrade_212.html │ ├── upgrade_213.html │ ├── upgrade_214.html │ ├── upgrade_220.html │ ├── upgrade_221.html │ ├── upgrade_222.html │ ├── upgrade_223.html │ ├── upgrade_300.html │ ├── upgrade_301.html │ ├── upgrade_302.html │ ├── upgrade_303.html │ ├── upgrade_304.html │ ├── upgrade_305.html │ ├── upgrade_306.html │ ├── upgrade_310.html │ ├── upgrade_311.html │ ├── upgrade_3110.html │ ├── upgrade_3111.html │ ├── upgrade_312.html │ ├── upgrade_313.html │ ├── upgrade_314.html │ ├── upgrade_315.html │ ├── upgrade_316.html │ ├── upgrade_317.html │ ├── upgrade_318.html │ ├── upgrade_319.html │ ├── upgrade_b11.html │ └── upgrading.html ├── libraries │ ├── benchmark.html │ ├── caching.html │ ├── calendar.html │ ├── cart.html │ ├── config.html │ ├── email.html │ ├── encrypt.html │ ├── encryption.html │ ├── file_uploading.html │ ├── form_validation.html │ ├── ftp.html │ ├── image_lib.html │ ├── index.html │ ├── input.html │ ├── javascript.html │ ├── language.html │ ├── loader.html │ ├── migration.html │ ├── output.html │ ├── pagination.html │ ├── parser.html │ ├── security.html │ ├── sessions.html │ ├── table.html │ ├── trackback.html │ ├── typography.html │ ├── unit_testing.html │ ├── uri.html │ ├── user_agent.html │ ├── xmlrpc.html │ └── zip.html ├── license.html ├── objects.inv ├── overview │ ├── appflow.html │ ├── at_a_glance.html │ ├── features.html │ ├── getting_started.html │ ├── goals.html │ ├── index.html │ └── mvc.html ├── search.html ├── searchindex.js └── tutorial │ ├── conclusion.html │ ├── create_news_items.html │ ├── index.html │ ├── news_section.html │ └── static_pages.html └── vendor ├── plugins ├── RWD-Table-Patterns │ ├── dist │ │ ├── css │ │ │ ├── rwd-table.css │ │ │ └── rwd-table.min.css │ │ └── js │ │ │ ├── rwd-table.js │ │ │ └── rwd-table.min.js │ └── src │ │ ├── js │ │ └── rwd-table.js │ │ └── less │ │ └── rwd-table.less ├── alertify │ ├── css │ │ └── alertify.css │ └── js │ │ ├── alertify.js │ │ └── ngAlertify.js ├── bootstrap-colorpicker │ ├── css │ │ ├── bootstrap-colorpicker.css │ │ ├── bootstrap-colorpicker.css.map │ │ ├── bootstrap-colorpicker.min.css │ │ └── bootstrap-colorpicker.min.css.map │ ├── img │ │ └── bootstrap-colorpicker │ │ │ ├── alpha-horizontal.png │ │ │ ├── alpha.png │ │ │ ├── hue-horizontal.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ └── js │ │ ├── bootstrap-colorpicker.js │ │ └── bootstrap-colorpicker.min.js ├── bootstrap-datepicker │ ├── css │ │ └── bootstrap-datepicker.min.css │ └── js │ │ └── bootstrap-datepicker.min.js ├── bootstrap-inputmask │ └── bootstrap-inputmask.min.js ├── bootstrap-maxlength │ ├── bootstrap-maxlength.js │ ├── bootstrap-maxlength.min.js │ └── src │ │ └── bootstrap-maxlength.js ├── bootstrap-rating │ ├── bootstrap-rating.css │ └── bootstrap-rating.min.js ├── bootstrap-touchspin │ ├── css │ │ └── jquery.bootstrap-touchspin.min.css │ └── js │ │ └── jquery.bootstrap-touchspin.min.js ├── c3 │ ├── c3.css │ ├── c3.js │ ├── c3.min.css │ └── c3.min.js ├── chartist │ ├── css │ │ ├── chartist.css │ │ └── chartist.min.css │ └── js │ │ ├── chartist-plugin-tooltip.min.js │ │ └── chartist.min.js ├── chartjs │ └── chart.min.js ├── countdown │ └── jquery.countdown.min.js ├── d3 │ ├── d3.js │ └── d3.min.js ├── datatables │ ├── buttons.bootstrap4.min.css │ ├── buttons.bootstrap4.min.js │ ├── buttons.colVis.min.js │ ├── buttons.html5.min.js │ ├── buttons.print.min.js │ ├── dataTables.bootstrap4.min.css │ ├── dataTables.bootstrap4.min.js │ ├── dataTables.buttons.min.js │ ├── dataTables.responsive.min.js │ ├── jquery.dataTables.min.js │ ├── json │ │ └── scroller-demo.json │ ├── jszip.min.js │ ├── pdfmake.min.js │ ├── responsive.bootstrap4.min.css │ ├── responsive.bootstrap4.min.js │ └── vfs_fonts.js ├── flot-chart │ ├── curvedLines.js │ ├── jquery.flot.crosshair.js │ ├── jquery.flot.min.js │ ├── jquery.flot.orderBars.min.js │ ├── jquery.flot.pie.js │ ├── jquery.flot.resize.js │ ├── jquery.flot.selection.js │ ├── jquery.flot.stack.js │ ├── jquery.flot.time.js │ └── jquery.flot.tooltip.min.js ├── fullcalendar │ ├── css │ │ └── fullcalendar.min.css │ └── js │ │ └── fullcalendar.min.js ├── gmaps │ ├── gmaps.js │ ├── gmaps.min.js │ ├── gmaps.min.js.map │ └── lib │ │ ├── gmaps.controls.js │ │ ├── gmaps.core.js │ │ ├── gmaps.events.js │ │ ├── gmaps.geofences.js │ │ ├── gmaps.geometry.js │ │ ├── gmaps.layers.js │ │ ├── gmaps.map_types.js │ │ ├── gmaps.markers.js │ │ ├── gmaps.native_extensions.js │ │ ├── gmaps.overlays.js │ │ ├── gmaps.routes.js │ │ ├── gmaps.static.js │ │ ├── gmaps.streetview.js │ │ ├── gmaps.styles.js │ │ └── gmaps.utils.js ├── ion-rangeslider │ ├── css │ │ ├── ion.rangeSlider.css │ │ └── ion.rangeSlider.min.css │ └── js │ │ ├── ion.rangeSlider.js │ │ └── ion.rangeSlider.min.js ├── jquery-knob │ ├── excanvas.js │ └── jquery.knob.js ├── jquery-ui │ ├── jquery-ui.min.css │ └── jquery-ui.min.js ├── jvectormap │ ├── gdp-data.js │ ├── jquery-jvectormap-2.0.2.css │ ├── jquery-jvectormap-2.0.2.min.js │ ├── jquery-jvectormap-europe-mill-en.js │ ├── jquery-jvectormap-uk-mill-en.js │ ├── jquery-jvectormap-us-aea-en.js │ ├── jquery-jvectormap-us-il-chicago-mill-en.js │ └── jquery-jvectormap-world-mill-en.js ├── magnific-popup │ ├── jquery.magnific-popup.js │ ├── jquery.magnific-popup.min.js │ └── magnific-popup.css ├── moment │ └── moment.js ├── morris │ ├── morris.css │ ├── morris.js │ └── morris.min.js ├── nestable │ ├── jquery.nestable.css │ └── jquery.nestable.js ├── parsleyjs │ └── parsley.min.js ├── raphael │ └── raphael.min.js ├── summernote │ ├── font │ │ ├── summernote.eot │ │ ├── summernote.ttf │ │ └── summernote.woff │ ├── lang │ │ ├── summernote-ar-AR.js │ │ ├── summernote-ar-AR.min.js │ │ ├── summernote-bg-BG.js │ │ ├── summernote-bg-BG.min.js │ │ ├── summernote-ca-ES.js │ │ ├── summernote-ca-ES.min.js │ │ ├── summernote-cs-CZ.js │ │ ├── summernote-cs-CZ.min.js │ │ ├── summernote-da-DK.js │ │ ├── summernote-da-DK.min.js │ │ ├── summernote-de-DE.js │ │ ├── summernote-de-DE.min.js │ │ ├── summernote-el-GR.js │ │ ├── summernote-el-GR.min.js │ │ ├── summernote-es-ES.js │ │ ├── summernote-es-ES.min.js │ │ ├── summernote-es-EU.js │ │ ├── summernote-es-EU.min.js │ │ ├── summernote-fa-IR.js │ │ ├── summernote-fa-IR.min.js │ │ ├── summernote-fi-FI.js │ │ ├── summernote-fi-FI.min.js │ │ ├── summernote-fr-FR.js │ │ ├── summernote-fr-FR.min.js │ │ ├── summernote-gl-ES.js │ │ ├── summernote-gl-ES.min.js │ │ ├── summernote-he-IL.js │ │ ├── summernote-he-IL.min.js │ │ ├── summernote-hr-HR.js │ │ ├── summernote-hr-HR.min.js │ │ ├── summernote-hu-HU.js │ │ ├── summernote-hu-HU.min.js │ │ ├── summernote-id-ID.js │ │ ├── summernote-id-ID.min.js │ │ ├── summernote-it-IT.js │ │ ├── summernote-it-IT.min.js │ │ ├── summernote-ja-JP.js │ │ ├── summernote-ja-JP.min.js │ │ ├── summernote-ko-KR.js │ │ ├── summernote-ko-KR.min.js │ │ ├── summernote-lt-LT.js │ │ ├── summernote-lt-LT.min.js │ │ ├── summernote-lt-LV.js │ │ ├── summernote-lt-LV.min.js │ │ ├── summernote-mn-MN.js │ │ ├── summernote-mn-MN.min.js │ │ ├── summernote-nb-NO.js │ │ ├── summernote-nb-NO.min.js │ │ ├── summernote-nl-NL.js │ │ ├── summernote-nl-NL.min.js │ │ ├── summernote-pl-PL.js │ │ ├── summernote-pl-PL.min.js │ │ ├── summernote-pt-BR.js │ │ ├── summernote-pt-BR.min.js │ │ ├── summernote-pt-PT.js │ │ ├── summernote-pt-PT.min.js │ │ ├── summernote-ro-RO.js │ │ ├── summernote-ro-RO.min.js │ │ ├── summernote-ru-RU.js │ │ ├── summernote-ru-RU.min.js │ │ ├── summernote-sk-SK.js │ │ ├── summernote-sk-SK.min.js │ │ ├── summernote-sl-SI.js │ │ ├── summernote-sl-SI.min.js │ │ ├── summernote-sr-RS-Latin.js │ │ ├── summernote-sr-RS-Latin.min.js │ │ ├── summernote-sr-RS.js │ │ ├── summernote-sr-RS.min.js │ │ ├── summernote-sv-SE.js │ │ ├── summernote-sv-SE.min.js │ │ ├── summernote-ta-IN.js │ │ ├── summernote-ta-IN.min.js │ │ ├── summernote-th-TH.js │ │ ├── summernote-th-TH.min.js │ │ ├── summernote-tr-TR.js │ │ ├── summernote-tr-TR.min.js │ │ ├── summernote-uk-UA.js │ │ ├── summernote-uk-UA.min.js │ │ ├── summernote-vi-VN.js │ │ ├── summernote-vi-VN.min.js │ │ ├── summernote-zh-CN.js │ │ ├── summernote-zh-CN.min.js │ │ ├── summernote-zh-TW.js │ │ └── summernote-zh-TW.min.js │ ├── summernote-bs4.css │ └── summernote-bs4.min.js ├── sweet-alert2 │ ├── sweetalert2.all.js │ ├── sweetalert2.all.min.js │ ├── sweetalert2.css │ ├── sweetalert2.js │ ├── sweetalert2.min.css │ └── sweetalert2.min.js └── x-editable │ ├── css │ └── bootstrap-editable.css │ ├── img │ ├── clear.png │ └── loading.gif │ └── js │ ├── bootstrap-editable.js │ └── bootstrap-editable.min.js └── vertical ├── advanced-alertify.html ├── advanced-lightbox.html ├── advanced-nestable.html ├── advanced-rangeslider.html ├── advanced-rating.html ├── advanced-sweet-alert.html ├── assets ├── css │ ├── bootstrap.min.css │ ├── icons.css │ ├── icons.css.map │ ├── style.css │ ├── style.css.map │ ├── typicons.css │ └── typicons.css.map ├── fonts │ ├── dripicons-v2.eot │ ├── dripicons-v2.svg │ ├── dripicons-v2.ttf │ ├── dripicons-v2.woff │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ ├── fa-solid-900.woff2 │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ ├── ionicons.woff │ ├── ionicons.woff2 │ ├── materialdesignicons-webfont.eot │ ├── materialdesignicons-webfont.svg │ ├── materialdesignicons-webfont.ttf │ ├── materialdesignicons-webfont.woff │ ├── materialdesignicons-webfont.woff2 │ ├── themify.eot │ ├── themify.svg │ ├── themify.ttf │ ├── themify.woff │ ├── typicons.eot │ ├── typicons.scss │ ├── typicons.svg │ ├── typicons.ttf │ └── typicons.woff ├── icons │ ├── css │ │ ├── dripicons.css │ │ ├── dripicons.css.map │ │ ├── materialdesignicons.css │ │ ├── materialdesignicons.css.map │ │ ├── themify-icons.css │ │ ├── themify-icons.css.map │ │ ├── typicons.css │ │ └── typicons.css.map │ ├── dripicons │ │ ├── dripicons.scss │ │ └── fonts │ │ │ ├── dripicons-v2.eot │ │ │ ├── dripicons-v2.svg │ │ │ ├── dripicons-v2.ttf │ │ │ └── dripicons-v2.woff │ ├── font-awesome │ │ ├── css │ │ │ ├── fontawesome.css │ │ │ └── fontawesome.css.map │ │ └── scss │ │ │ └── fontawesome.scss │ ├── ionicons │ │ ├── css │ │ │ ├── ionicons.min.css │ │ │ └── ionicons.min.css.map │ │ └── scss │ │ │ ├── ionicons.min.css │ │ │ └── ionicons.min.scss │ ├── material-design │ │ ├── css │ │ │ ├── materialdesignicons.css │ │ │ ├── materialdesignicons.css.map │ │ │ ├── materialdesignicons.min.css │ │ │ └── materialdesignicons.min.css.map │ │ ├── fonts │ │ │ ├── materialdesignicons-webfont.eot │ │ │ ├── materialdesignicons-webfont.svg │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ ├── materialdesignicons-webfont.woff │ │ │ └── materialdesignicons-webfont.woff2 │ │ └── materialdesignicons.scss │ ├── themify-icons │ │ ├── fonts │ │ │ ├── themify.eot │ │ │ ├── themify.svg │ │ │ ├── themify.ttf │ │ │ └── themify.woff │ │ ├── ie7 │ │ │ ├── ie7.css │ │ │ └── ie7.js │ │ ├── themify-icons.css │ │ └── themify-icons.scss │ └── typicons │ │ ├── typicons.eot │ │ ├── typicons.min.css │ │ ├── typicons.scss │ │ ├── typicons.svg │ │ ├── typicons.ttf │ │ └── typicons.woff ├── images │ ├── favicon.ico │ ├── logo-dark.png │ ├── logo.png │ ├── small │ │ ├── img-1.jpg │ │ ├── img-2.jpg │ │ ├── img-3.jpg │ │ ├── img-4.jpg │ │ ├── img-5.jpg │ │ ├── img-6.jpg │ │ └── img-7.jpg │ └── users │ │ ├── avatar-1.jpg │ │ ├── avatar-10.jpg │ │ ├── avatar-2.jpg │ │ ├── avatar-3.jpg │ │ ├── avatar-4.jpg │ │ ├── avatar-5.jpg │ │ ├── avatar-6.jpg │ │ ├── avatar-7.jpg │ │ ├── avatar-8.jpg │ │ └── avatar-9.jpg ├── js │ ├── app.js │ ├── bootstrap.bundle.min.js │ ├── detect.js │ ├── fastclick.js │ ├── jquery.blockUI.js │ ├── jquery.min.js │ ├── jquery.nicescroll.js │ ├── jquery.scrollTo.min.js │ ├── jquery.slimscroll.js │ ├── modernizr.min.js │ └── waves.js ├── pages │ ├── alertify-init.js │ ├── c3-chart-init.js │ ├── calendar-init.js │ ├── chartist.init.js │ ├── chartjs.init.js │ ├── countdown.int.js │ ├── dashboard.int.js │ ├── datatables.init.js │ ├── flot.init.js │ ├── form-advanced.js │ ├── gmaps.js │ ├── jvectormap.init.js │ ├── lightbox.js │ ├── morris.init.js │ ├── myscript.js │ ├── nestable-init.js │ ├── rangeslider-init.js │ ├── rating-init.js │ ├── sweet-alert.init.js │ └── xeditable.js └── scss │ ├── _account-pages.scss │ ├── _alertify.scss │ ├── _alerts.scss │ ├── _bootstrap-custom.scss │ ├── _buttons.scss │ ├── _calendar.scss │ ├── _card.scss │ ├── _charts.scss │ ├── _demo-only.scss │ ├── _footer.scss │ ├── _form-advanced.scss │ ├── _form-editor.scss │ ├── _form-elements.scss │ ├── _form-upload.scss │ ├── _form-validation.scss │ ├── _general.scss │ ├── _helper.scss │ ├── _loader.scss │ ├── _maps.scss │ ├── _menu.scss │ ├── _nestable.scss │ ├── _page-head.scss │ ├── _pagination.scss │ ├── _popover-tooltips.scss │ ├── _progressbar.scss │ ├── _range-slider.scss │ ├── _summernote.scss │ ├── _sweet-alert.scss │ ├── _tables.scss │ ├── _timeline.scss │ ├── _topbar.scss │ ├── _typeahead.scss │ ├── _variables.scss │ ├── _waves.scss │ ├── _widgets.scss │ ├── icons.scss │ └── style.scss ├── calendar.html ├── charts-c3.html ├── charts-chartist.html ├── charts-chartjs.html ├── charts-flot.html ├── charts-morris.html ├── charts-other.html ├── extras-comingsoon.html ├── extras-faqs.html ├── extras-invoice.html ├── extras-maintenance.html ├── extras-pricing.html ├── extras-timeline.html ├── form-advanced.html ├── form-editors.html ├── form-elements.html ├── form-mask.html ├── form-summernote.html ├── form-uploads.html ├── form-validation.html ├── form-xeditable.html ├── icons-dripicons.html ├── icons-fontawesome.html ├── icons-ion.html ├── icons-material.html ├── icons-themify.html ├── icons-typicons.html ├── index.html ├── maps-google.html ├── maps-vector.html ├── pages-404.html ├── pages-500.html ├── pages-blank.html ├── pages-lock-screen.html ├── pages-login.html ├── pages-recoverpw.html ├── pages-register.html ├── tables-basic.html ├── tables-datatable.html ├── tables-editable.html ├── tables-responsive.html ├── ui-alerts.html ├── ui-badge.html ├── ui-buttons.html ├── ui-cards.html ├── ui-carousel.html ├── ui-dropdowns.html ├── ui-grid.html ├── ui-images.html ├── ui-modals.html ├── ui-navs.html ├── ui-pagination.html ├── ui-popover-tooltips.html ├── ui-progressbars.html ├── ui-spinner.html ├── ui-tabs-accordions.html ├── ui-typography.html └── ui-video.html /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Options -Indexes 3 | RewriteEngine on 4 | # SecFilterEngine Off 5 | # SecFilterScanPOST Off 6 | DirectoryIndex index.php 7 | RewriteCond %{REQUEST_FILENAME} !-f 8 | RewriteCond %{REQUEST_FILENAME} !-d 9 | 10 | RewriteRule ^(.*)$ index.php/$1 [L] 11 | 12 | 13 | RewriteRule ^(.*)$ index.php?/$1 [L] 14 | 15 | 16 | 17 | 18 | ErrorDocument 404 /index.php 19 | 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Kartu pelajar dengan codeigniter 2 | 1. HTML 3 | 2. Javascript 4 | 5 | Fitur 6 | 1. Upload data siswa 7 | 2. QR Generator 8 | 3. Cetak/print kartu 9 | 4. Management sekolah 10 | 5. Upload logo, dinas, stempel, tanda tangan 11 | 6. Upload background kartu 12 | 7. 2 Layout kartu 13 | -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/cache/frame_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/frame_1.dat -------------------------------------------------------------------------------- /application/cache/frame_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/frame_2.dat -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/cache/mask_0/mask_21_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_0/mask_21_0.dat -------------------------------------------------------------------------------- /application/cache/mask_0/mask_25_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_0/mask_25_0.dat -------------------------------------------------------------------------------- /application/cache/mask_1/mask_21_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_1/mask_21_1.dat -------------------------------------------------------------------------------- /application/cache/mask_1/mask_25_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_1/mask_25_1.dat -------------------------------------------------------------------------------- /application/cache/mask_2/mask_21_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_2/mask_21_2.dat -------------------------------------------------------------------------------- /application/cache/mask_2/mask_25_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_2/mask_25_2.dat -------------------------------------------------------------------------------- /application/cache/mask_3/mask_21_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_3/mask_21_3.dat -------------------------------------------------------------------------------- /application/cache/mask_3/mask_25_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_3/mask_25_3.dat -------------------------------------------------------------------------------- /application/cache/mask_4/mask_21_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_4/mask_21_4.dat -------------------------------------------------------------------------------- /application/cache/mask_4/mask_25_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_4/mask_25_4.dat -------------------------------------------------------------------------------- /application/cache/mask_5/mask_21_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_5/mask_21_5.dat -------------------------------------------------------------------------------- /application/cache/mask_5/mask_25_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_5/mask_25_5.dat -------------------------------------------------------------------------------- /application/cache/mask_6/mask_21_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_6/mask_21_6.dat -------------------------------------------------------------------------------- /application/cache/mask_6/mask_25_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_6/mask_25_6.dat -------------------------------------------------------------------------------- /application/cache/mask_7/mask_21_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_7/mask_21_7.dat -------------------------------------------------------------------------------- /application/cache/mask_7/mask_25_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/application/cache/mask_7/mask_25_7.dat -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | load->model('Sekolah_model'); 12 | $this->load->model('Siswa_model'); 13 | } 14 | 15 | public function index() 16 | { 17 | $data = $this->Sekolah_model->get_by_id(); 18 | $id = $data['id_desain']; 19 | if ($id == 1) { 20 | $this->contoh(); 21 | } else { 22 | $this->contoh2(); 23 | } 24 | } 25 | public function contoh() 26 | { 27 | $data['sekolah'] = $this->Sekolah_model->get_by_id(); 28 | $this->load->view('contoh', $data); 29 | } 30 | public function contoh2() 31 | { 32 | $data['sekolah'] = $this->Sekolah_model->get_by_id(); 33 | $this->load->view('contoh2', $data); 34 | } 35 | public function semua() 36 | { 37 | $data = $this->Sekolah_model->get_by_id(); 38 | $id = $data['id_desain']; 39 | if ($id == 1) { 40 | $this->cetak_semua(); 41 | } else { 42 | $this->cetak_semua2(); 43 | } 44 | } 45 | 46 | public function cetak_semua() 47 | { 48 | $data['sekolah'] = $this->Sekolah_model->get_by_id(); 49 | $data['siswa'] = $this->Siswa_model->json(); 50 | $this->load->view('cetak_semua', $data); 51 | } 52 | 53 | public function cetak_semua2() 54 | { 55 | $data['sekolah'] = $this->Sekolah_model->get_by_id(); 56 | $data['siswa'] = $this->Siswa_model->json(); 57 | $this->load->view('cetak_semua2', $data); 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /application/controllers/Dashboard.php: -------------------------------------------------------------------------------- 1 | load->model('Sekolah_model'); 12 | $this->load->model('Siswa_model'); 13 | } 14 | 15 | public function index() 16 | { 17 | $data['sekolah'] = $this->Sekolah_model->get_by_id(); 18 | $data['total_siswa'] = $this->Siswa_model->count_all(); 19 | $data['total_sekolah'] = $this->Sekolah_model->count_all(); 20 | $data['title'] = "Dashboard"; 21 | $data['siswa'] = $this->Siswa_model->json(); 22 | $this->load->view('templates/header', $data); 23 | $this->load->view('admin/dashboard', $data); 24 | $this->load->view('templates/footer', $data); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/cardschool_helper.php: -------------------------------------------------------------------------------- 1 | session->userdata('username')) { 7 | redirect('auth'); 8 | } else { 9 | $username = $ci->session->userdata('username'); 10 | $aksesAdmin = $ci->db->get_where('admin', ['username' => $username])->row_array(); 11 | if ($aksesAdmin['level'] !== '9') { 12 | $ci->session->set_flashdata('message', ''); // Buat session flashdata 13 | redirect('auth/error'); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/PHPExcel/Calculation/Exception.php: -------------------------------------------------------------------------------- 1 | line = $line; 49 | $e->file = $file; 50 | throw $e; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /application/libraries/PHPExcel/Calculation/ExceptionHandler.php: -------------------------------------------------------------------------------- 1 | line = $line; 49 | $e->file = $file; 50 | throw $e; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /application/libraries/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt: -------------------------------------------------------------------------------- 1 | ChartDirector 2 | http://www.advsofteng.com/cdphp.html 3 | 4 | GraPHPite 5 | http://graphpite.sourceforge.net/ 6 | 7 | JpGraph 8 | http://www.aditus.nu/jpgraph/ 9 | 10 | LibChart 11 | http://naku.dohcrew.com/libchart/pages/introduction/ 12 | 13 | pChart 14 | http://pchart.sourceforge.net/ 15 | 16 | TeeChart 17 | http://www.steema.com/products/teechart/overview.html 18 | -------------------------------------------------------------------------------- /application/libraries/PHPExcel/Exception.php: -------------------------------------------------------------------------------- 1 | line = $line; 49 | $e->file = $file; 50 | throw $e; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /application/libraries/PHPExcel/IComparable.php: -------------------------------------------------------------------------------- 1 | line = $line; 49 | $e->file = $file; 50 | throw $e; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /application/libraries/PHPExcel/Reader/IReadFilter.php: -------------------------------------------------------------------------------- 1 | abs($b)) { 16 | $r = $b / $a; 17 | $r = abs($a) * sqrt(1 + $r * $r); 18 | } elseif ($b != 0) { 19 | $r = $a / $b; 20 | $r = abs($b) * sqrt(1 + $r * $r); 21 | } else { 22 | $r = 0.0; 23 | } 24 | return $r; 25 | } // function hypo() 26 | 27 | 28 | /** 29 | * Mike Bommarito's version. 30 | * Compute n-dimensional hyotheneuse. 31 | * 32 | function hypot() { 33 | $s = 0; 34 | foreach (func_get_args() as $d) { 35 | if (is_numeric($d)) { 36 | $s += pow($d, 2); 37 | } else { 38 | throw new PHPExcel_Calculation_Exception(JAMAError(ArgumentTypeException)); 39 | } 40 | } 41 | return sqrt($s); 42 | } 43 | */ 44 | -------------------------------------------------------------------------------- /application/libraries/PHPExcel/Writer/Exception.php: -------------------------------------------------------------------------------- 1 | line = $line; 49 | $e->file = $file; 50 | throw $e; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /application/libraries/PHPExcel/Writer/IWriter.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/qrcode/qrconfig.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * PHP QR Code is distributed under LGPL 3 11 | * Copyright (C) 2010 Dominik Dzienia 12 | * 13 | * This library is free software; you can redistribute it and/or 14 | * modify it under the terms of the GNU Lesser General Public 15 | * License as published by the Free Software Foundation; either 16 | * version 3 of the License, or any later version. 17 | * 18 | * This library is distributed in the hope that it will be useful, 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 21 | * Lesser General Public License for more details. 22 | * 23 | * You should have received a copy of the GNU Lesser General Public 24 | * License along with this library; if not, write to the Free Software 25 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 26 | */ 27 | 28 | $QR_BASEDIR = dirname(__FILE__).DIRECTORY_SEPARATOR; 29 | 30 | // Required libs 31 | 32 | include $QR_BASEDIR."qrconst.php"; 33 | include $QR_BASEDIR."qrconfig.php"; 34 | include $QR_BASEDIR."qrtools.php"; 35 | include $QR_BASEDIR."qrspec.php"; 36 | include $QR_BASEDIR."qrimage.php"; 37 | include $QR_BASEDIR."qrinput.php"; 38 | include $QR_BASEDIR."qrbitstream.php"; 39 | include $QR_BASEDIR."qrsplit.php"; 40 | include $QR_BASEDIR."qrrscode.php"; 41 | include $QR_BASEDIR."qrmask.php"; 42 | include $QR_BASEDIR."qrencode.php"; 43 | 44 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/Adminmodel.php: -------------------------------------------------------------------------------- 1 | db->where('username', $username); // Untuk menambahkan Where Clause : username='$username' 7 | $result = $this->db->get('admin')->row_array(); // Untuk mengeksekusi dan mengambil data hasil query 8 | return $result; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /application/models/Kartu_model.php: -------------------------------------------------------------------------------- 1 | db->update($this->table, $data, $where); 12 | return $this->db->affected_rows(); 13 | } 14 | 15 | public function tambah_kartu($data) 16 | { 17 | $this->db->insert($this->table, $data); 18 | return $this->db->affected_rows(); 19 | } 20 | 21 | public function count_all() 22 | { 23 | $this->db->from($this->table); 24 | return $this->db->count_all_results(); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /application/models/Sekolah_model.php: -------------------------------------------------------------------------------- 1 | db->update($this->table, $data, $where); 12 | return $this->db->affected_rows(); 13 | } 14 | public function get_by_id() 15 | { 16 | return $this->db->get_where($this->table, ['id' => 1])->row_array(); 17 | } 18 | public function json() 19 | { 20 | return $this->db->get('siswa')->result(); 21 | } 22 | 23 | public function count_all() 24 | { 25 | $this->db->from($this->table); 26 | return $this->db->count_all_results(); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 404 Page Not Found 8 | 57 | 58 | 59 |
60 |

61 | 62 |
63 | 64 | -------------------------------------------------------------------------------- /application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Database Error 8 | 57 | 58 | 59 |
60 |

61 | 62 |
63 | 64 | -------------------------------------------------------------------------------- /application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

An uncaught Exception was encountered

8 | 9 |

Type:

10 |

Message:

11 |

Filename: getFile(); ?>

12 |

Line Number: getLine(); ?>

13 | 14 | 15 | 16 |

Backtrace:

17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 |
-------------------------------------------------------------------------------- /application/views/errors/html/error_general.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Error 8 | 57 | 58 | 59 |
60 |

61 | 62 |
63 | 64 | -------------------------------------------------------------------------------- /application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

A PHP Error was encountered

8 | 9 |

Severity:

10 |

Message:

11 |

Filename:

12 |

Line Number:

13 | 14 | 15 | 16 |

Backtrace:

17 | 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
-------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/welcome_message.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |

Dynamically Add or Remove input fields in PHP with JQuery

5 |
6 |
7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 |
15 |
16 |
-------------------------------------------------------------------------------- /asset/fileimport/master.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master1.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master11.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master11.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master12.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master12.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master121.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master121.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master13.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master13.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master14.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master14.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master15.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master15.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master2.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master21.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master21.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master3.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master4.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master5.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master5.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master51.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master51.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master52.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master52.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master53.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master53.xlsx -------------------------------------------------------------------------------- /asset/fileimport/master6.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/fileimport/master6.xlsx -------------------------------------------------------------------------------- /asset/fileimport/~$master.xlsx: -------------------------------------------------------------------------------- 1 | Coyyyy Coyyyy -------------------------------------------------------------------------------- /asset/kartu/contoh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/contoh.png -------------------------------------------------------------------------------- /asset/kartu/contoh2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/contoh2.png -------------------------------------------------------------------------------- /asset/kartu/desain/birunom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/desain/birunom.png -------------------------------------------------------------------------------- /asset/kartu/desain/kpel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/desain/kpel2.png -------------------------------------------------------------------------------- /asset/kartu/dinas/1f3920e722fa59abbe6365d482d595e0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/dinas/1f3920e722fa59abbe6365d482d595e0.jpg -------------------------------------------------------------------------------- /asset/kartu/dinas/twh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/dinas/twh.png -------------------------------------------------------------------------------- /asset/kartu/dinas/unnamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/dinas/unnamed.png -------------------------------------------------------------------------------- /asset/kartu/foto/muhammad andri fahrizal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/foto/muhammad andri fahrizal.png -------------------------------------------------------------------------------- /asset/kartu/logo/126311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/logo/126311.png -------------------------------------------------------------------------------- /asset/kartu/logo/1f3920e722fa59abbe6365d482d595e0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/logo/1f3920e722fa59abbe6365d482d595e0.jpg -------------------------------------------------------------------------------- /asset/kartu/logo/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/logo/ai.png -------------------------------------------------------------------------------- /asset/kartu/logo/smklogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/logo/smklogo.png -------------------------------------------------------------------------------- /asset/kartu/logo/twh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/logo/twh.png -------------------------------------------------------------------------------- /asset/kartu/logo/unnamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/logo/unnamed.png -------------------------------------------------------------------------------- /asset/kartu/qr/123456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/123456.png -------------------------------------------------------------------------------- /asset/kartu/qr/20010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20010.png -------------------------------------------------------------------------------- /asset/kartu/qr/20011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20011.png -------------------------------------------------------------------------------- /asset/kartu/qr/20012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20012.png -------------------------------------------------------------------------------- /asset/kartu/qr/20013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20013.png -------------------------------------------------------------------------------- /asset/kartu/qr/20014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20014.png -------------------------------------------------------------------------------- /asset/kartu/qr/20015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20015.png -------------------------------------------------------------------------------- /asset/kartu/qr/20016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20016.png -------------------------------------------------------------------------------- /asset/kartu/qr/20017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20017.png -------------------------------------------------------------------------------- /asset/kartu/qr/20018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20018.png -------------------------------------------------------------------------------- /asset/kartu/qr/20019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20019.png -------------------------------------------------------------------------------- /asset/kartu/qr/20020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20020.png -------------------------------------------------------------------------------- /asset/kartu/qr/20021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20021.png -------------------------------------------------------------------------------- /asset/kartu/qr/20022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20022.png -------------------------------------------------------------------------------- /asset/kartu/qr/20023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20023.png -------------------------------------------------------------------------------- /asset/kartu/qr/20024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20024.png -------------------------------------------------------------------------------- /asset/kartu/qr/20026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20026.png -------------------------------------------------------------------------------- /asset/kartu/qr/20027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20027.png -------------------------------------------------------------------------------- /asset/kartu/qr/20028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20028.png -------------------------------------------------------------------------------- /asset/kartu/qr/20029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20029.png -------------------------------------------------------------------------------- /asset/kartu/qr/20030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20030.png -------------------------------------------------------------------------------- /asset/kartu/qr/20031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20031.png -------------------------------------------------------------------------------- /asset/kartu/qr/20032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20032.png -------------------------------------------------------------------------------- /asset/kartu/qr/20033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20033.png -------------------------------------------------------------------------------- /asset/kartu/qr/20035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20035.png -------------------------------------------------------------------------------- /asset/kartu/qr/20036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20036.png -------------------------------------------------------------------------------- /asset/kartu/qr/20037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20037.png -------------------------------------------------------------------------------- /asset/kartu/qr/20038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20038.png -------------------------------------------------------------------------------- /asset/kartu/qr/20039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20039.png -------------------------------------------------------------------------------- /asset/kartu/qr/20040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20040.png -------------------------------------------------------------------------------- /asset/kartu/qr/20041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20041.png -------------------------------------------------------------------------------- /asset/kartu/qr/20042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20042.png -------------------------------------------------------------------------------- /asset/kartu/qr/20043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20043.png -------------------------------------------------------------------------------- /asset/kartu/qr/20045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20045.png -------------------------------------------------------------------------------- /asset/kartu/qr/20046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20046.png -------------------------------------------------------------------------------- /asset/kartu/qr/20047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20047.png -------------------------------------------------------------------------------- /asset/kartu/qr/20048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20048.png -------------------------------------------------------------------------------- /asset/kartu/qr/20049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20049.png -------------------------------------------------------------------------------- /asset/kartu/qr/20050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20050.png -------------------------------------------------------------------------------- /asset/kartu/qr/20051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20051.png -------------------------------------------------------------------------------- /asset/kartu/qr/20052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20052.png -------------------------------------------------------------------------------- /asset/kartu/qr/20053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20053.png -------------------------------------------------------------------------------- /asset/kartu/qr/20054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20054.png -------------------------------------------------------------------------------- /asset/kartu/qr/20055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20055.png -------------------------------------------------------------------------------- /asset/kartu/qr/20056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20056.png -------------------------------------------------------------------------------- /asset/kartu/qr/20057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20057.png -------------------------------------------------------------------------------- /asset/kartu/qr/20058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20058.png -------------------------------------------------------------------------------- /asset/kartu/qr/20059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20059.png -------------------------------------------------------------------------------- /asset/kartu/qr/20060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20060.png -------------------------------------------------------------------------------- /asset/kartu/qr/20061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20061.png -------------------------------------------------------------------------------- /asset/kartu/qr/20063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20063.png -------------------------------------------------------------------------------- /asset/kartu/qr/20064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20064.png -------------------------------------------------------------------------------- /asset/kartu/qr/20066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20066.png -------------------------------------------------------------------------------- /asset/kartu/qr/20067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20067.png -------------------------------------------------------------------------------- /asset/kartu/qr/20068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20068.png -------------------------------------------------------------------------------- /asset/kartu/qr/20069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20069.png -------------------------------------------------------------------------------- /asset/kartu/qr/20070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20070.png -------------------------------------------------------------------------------- /asset/kartu/qr/20072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20072.png -------------------------------------------------------------------------------- /asset/kartu/qr/20073.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20073.png -------------------------------------------------------------------------------- /asset/kartu/qr/20074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20074.png -------------------------------------------------------------------------------- /asset/kartu/qr/20075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20075.png -------------------------------------------------------------------------------- /asset/kartu/qr/20076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20076.png -------------------------------------------------------------------------------- /asset/kartu/qr/20077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20077.png -------------------------------------------------------------------------------- /asset/kartu/qr/20078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20078.png -------------------------------------------------------------------------------- /asset/kartu/qr/20079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20079.png -------------------------------------------------------------------------------- /asset/kartu/qr/20080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20080.png -------------------------------------------------------------------------------- /asset/kartu/qr/20081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20081.png -------------------------------------------------------------------------------- /asset/kartu/qr/20082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20082.png -------------------------------------------------------------------------------- /asset/kartu/qr/20083.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20083.png -------------------------------------------------------------------------------- /asset/kartu/qr/20084.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20084.png -------------------------------------------------------------------------------- /asset/kartu/qr/20086.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20086.png -------------------------------------------------------------------------------- /asset/kartu/qr/20088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20088.png -------------------------------------------------------------------------------- /asset/kartu/qr/20089.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/20089.png -------------------------------------------------------------------------------- /asset/kartu/qr/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/qr/test.png -------------------------------------------------------------------------------- /asset/kartu/stempel/STEMPEL-SMK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/stempel/STEMPEL-SMK.png -------------------------------------------------------------------------------- /asset/kartu/ttd/Kepsek_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/asset/kartu/ttd/Kepsek_copy.png -------------------------------------------------------------------------------- /assets/images/123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/assets/images/123.png -------------------------------------------------------------------------------- /assets/images/Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/assets/images/Test.png -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /user_guide/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: 6b49d1813643817be290c380a3028e52 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /user_guide/_downloads/ELDocs.tmbundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_downloads/ELDocs.tmbundle.zip -------------------------------------------------------------------------------- /user_guide/_images/appflowchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_images/appflowchart.gif -------------------------------------------------------------------------------- /user_guide/_images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_images/smile.gif -------------------------------------------------------------------------------- /user_guide/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/ajax-loader.gif -------------------------------------------------------------------------------- /user_guide/_static/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/ci-icon.ico -------------------------------------------------------------------------------- /user_guide/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/comment-bright.png -------------------------------------------------------------------------------- /user_guide/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/comment-close.png -------------------------------------------------------------------------------- /user_guide/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/comment.png -------------------------------------------------------------------------------- /user_guide/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/down-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/down.png -------------------------------------------------------------------------------- /user_guide/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/file.png -------------------------------------------------------------------------------- /user_guide/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /user_guide/_static/images/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/images/ci-icon.ico -------------------------------------------------------------------------------- /user_guide/_static/js/oldtheme.js: -------------------------------------------------------------------------------- 1 | $( document ).ready(function() { 2 | // Shift nav in mobile when clicking the menu. 3 | $(document).on('click', "[data-toggle='wy-nav-top']", function() { 4 | $("[data-toggle='wy-nav-shift']").toggleClass("shift"); 5 | $("[data-toggle='rst-versions']").toggleClass("shift"); 6 | }); 7 | // Close menu when you click a link. 8 | $(document).on('click', ".wy-menu-vertical .current ul li a", function() { 9 | $("[data-toggle='wy-nav-shift']").removeClass("shift"); 10 | $("[data-toggle='rst-versions']").toggleClass("shift"); 11 | }); 12 | $(document).on('click', "[data-toggle='rst-current-version']", function() { 13 | $("[data-toggle='rst-versions']").toggleClass("shift-up"); 14 | }); 15 | // Make tables responsive 16 | $("table.docutils:not(.field-list)").wrap("
"); 17 | }); 18 | 19 | window.SphinxRtdTheme = (function (jquery) { 20 | var stickyNav = (function () { 21 | var navBar, 22 | win, 23 | stickyNavCssClass = 'stickynav', 24 | applyStickNav = function () { 25 | if (navBar.height() <= win.height()) { 26 | navBar.addClass(stickyNavCssClass); 27 | } else { 28 | navBar.removeClass(stickyNavCssClass); 29 | } 30 | }, 31 | enable = function () { 32 | applyStickNav(); 33 | win.on('resize', applyStickNav); 34 | }, 35 | init = function () { 36 | navBar = jquery('nav.wy-nav-side:first'); 37 | win = jquery(window); 38 | }; 39 | jquery(init); 40 | return { 41 | enable : enable 42 | }; 43 | }()); 44 | return { 45 | StickyNav : stickyNav 46 | }; 47 | }($)); 48 | -------------------------------------------------------------------------------- /user_guide/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/minus.png -------------------------------------------------------------------------------- /user_guide/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/plus.png -------------------------------------------------------------------------------- /user_guide/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/up-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/_static/up.png -------------------------------------------------------------------------------- /user_guide/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/user_guide/objects.inv -------------------------------------------------------------------------------- /vendor/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["src/less/colorpicker.less"],"names":[],"mappings":";;;;;;;;AAqBA,wBACE,MAAA,MACA,OAAA,MAXA,iBAAsB,iDAatB,OAAA,UACA,MAAA,KACA,0BACE,QAAA,MACA,OAAA,IACA,MAAA,IACA,OAAA,IAAA,MAAA,KAfF,sBAAA,IACA,mBAAA,IACA,cAAA,IAeE,SAAA,SACA,IAAA,EACA,KAAA,EACA,OAAA,KAAA,EAAA,EAAA,KACA,4BACE,QAAA,MACA,OAAA,IACA,MAAA,IACA,OAAA,IAAA,MAAA,KAzBJ,sBAAA,IACA,mBAAA,IACA,cAAA,IA8BF,mBADA,iBAEE,MAAA,KACA,OAAA,MACA,MAAA,KACA,OAAA,WACA,YAAA,IACA,cAAA,IAIiB,qBADF,mBAEf,QAAA,MACA,OAAA,IACA,WAAA,KACA,WAAA,IAAA,MAAA,KACA,SAAA,SACA,IAAA,EACA,KAAA,EACA,MAAA,KACA,WAAA,KAGF,iBA1DE,iBAAsB,0CA8DxB,mBA9DE,iBAAsB,4CAgEtB,QAAA,KAKF,mBADA,iBADA,wBAGE,gBAAA,QAGF,aACE,QAAA,IACA,UAAA,MACA,WAAA,IAxEA,sBAAA,IACA,mBAAA,IACA,cAAA,IAwEA,QAAA,KAIU,mBADA,oBAEV,QAAA,MACA,QAAA,GACA,YAAA,EAGU,mBACV,MAAA,KAGU,oBACV,QAAA,GACA,QAAA,aACA,YAAA,IAAA,MAAA,YACA,aAAA,IAAA,MAAA,YACA,cAAA,IAAA,MAAA,KACA,oBAAA,eACA,SAAA,SACA,IAAA,KACA,KAAA,IAGU,mBACV,QAAA,GACA,QAAA,aACA,YAAA,IAAA,MAAA,YACA,aAAA,IAAA,MAAA,YACA,cAAA,IAAA,MAAA,KACA,SAAA,SACA,IAAA,KACA,KAAA,IAGW,iBACX,SAAA,SAGU,oCACV,UAAA,MAGkC,uDAClC,QAAA,MAGF,mBACE,OAAA,KACA,WAAA,IACA,MAAA,KAlIA,iBAAsB,4CAoItB,oBAAA,EAAA,KAGiB,uBACjB,OAAA,KAGF,uBACE,QAAA,KACA,OAAA,KACA,WAAA,IACA,MAAA,KAGqB,yBACrB,OAAA,QACA,MAAA,KACA,OAAA,KACA,MAAA,KAGuB,2BACvB,YAAA,IAI2B,+BADW,0CAEtC,QAAA,aACA,OAAA,QACA,OAAA,KACA,eAAA,SACA,MAAA,KAGU,gCACV,SAAA,SACA,QAAA,aACA,MAAA,KACA,QAAA,KAGU,oCACV,MAAA,MACA,UAAA,MACA,OAAA,KAGkC,4DAClC,cAAA,IAGkC,uDAClC,MAAA,MAIkC,uDADA,qDAElC,MAAA,MACA,OAAA,KACA,MAAA,KACA,OAAA,WACA,YAAA,EACA,cAAA,IAIqD,yDADF,uDAEnD,QAAA,MACA,OAAA,KACA,WAAA,KACA,SAAA,SACA,IAAA,EACA,KAAA,EACA,MAAA,IACA,OAAA,KACA,WAAA,EAGkC,qDAlNlC,iBAAsB,qDAsNY,uDAtNlC,iBAAsB,uDA0NZ,gCACV,QAAA,KAGU,iCACV,QAAA,MAGiB,wCACjB,QAAA,aAGgB,0BAChB,KAAA,KACA,MAAA,IAGgB,yBAChB,KAAA,KACA,MAAA,IAGmB,6BACnB,aAAA,EACA,YAAA,EAGmB,4BACnB,aAAA,EACA,YAAA"} -------------------------------------------------------------------------------- /vendor/plugins/bootstrap-colorpicker/img/bootstrap-colorpicker/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/vendor/plugins/bootstrap-colorpicker/img/bootstrap-colorpicker/alpha-horizontal.png -------------------------------------------------------------------------------- /vendor/plugins/bootstrap-colorpicker/img/bootstrap-colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/vendor/plugins/bootstrap-colorpicker/img/bootstrap-colorpicker/alpha.png -------------------------------------------------------------------------------- /vendor/plugins/bootstrap-colorpicker/img/bootstrap-colorpicker/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/vendor/plugins/bootstrap-colorpicker/img/bootstrap-colorpicker/hue-horizontal.png -------------------------------------------------------------------------------- /vendor/plugins/bootstrap-colorpicker/img/bootstrap-colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/vendor/plugins/bootstrap-colorpicker/img/bootstrap-colorpicker/hue.png -------------------------------------------------------------------------------- /vendor/plugins/bootstrap-colorpicker/img/bootstrap-colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fahrizalm14/kartu-pelajar/5389d50a04d4f199d52929876806acbac86bf4f5/vendor/plugins/bootstrap-colorpicker/img/bootstrap-colorpicker/saturation.png -------------------------------------------------------------------------------- /vendor/plugins/bootstrap-rating/bootstrap-rating.css: -------------------------------------------------------------------------------- 1 | .symbol { 2 | display: inline-block; 3 | border-radius: 50%; 4 | border: 5px double white; 5 | width: 30px; 6 | height: 30px; 7 | } 8 | 9 | .symbol-empty { 10 | background-color: #ccc; 11 | } 12 | 13 | .symbol-filled { 14 | background-color: black; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/plugins/bootstrap-touchspin/css/jquery.bootstrap-touchspin.min.css: -------------------------------------------------------------------------------- 1 | .bootstrap-touchspin .input-group-btn-vertical{position:absolute;right:0;height:100%;z-index:11}.bootstrap-touchspin .input-group-btn-vertical>.btn{position:absolute;right:0;height:50%;padding:0;width:2em;text-align:center;line-height:1}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-radius:0 4px 0 0;top:0}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{border-radius:0 0 4px 0;bottom:0} -------------------------------------------------------------------------------- /vendor/plugins/datatables/buttons.bootstrap4.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap integration for DataTables' Buttons 3 | ©2016 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs4","datatables.net-buttons"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);if(!b||!b.fn.dataTable)b=require("datatables.net-bs4")(a,b).$;b.fn.dataTable.Buttons||require("datatables.net-buttons")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c){var a=c.fn.dataTable;c.extend(!0,a.Buttons.defaults,{dom:{container:{className:"dt-buttons btn-group"}, 6 | button:{className:"btn btn-secondary"},collection:{tag:"div",className:"dt-button-collection dropdown-menu",button:{tag:"a",className:"dt-button dropdown-item"}}}});a.ext.buttons.collection.className+=" dropdown-toggle";return a.Buttons}); 7 | -------------------------------------------------------------------------------- /vendor/plugins/datatables/buttons.print.min.js: -------------------------------------------------------------------------------- 1 | (function(e){"function"===typeof define&&define.amd?define(["jquery","datatables.net","datatables.net-buttons"],function(d){return e(d,window,document)}):"object"===typeof exports?module.exports=function(d,a){d||(d=window);if(!a||!a.fn.dataTable)a=require("datatables.net")(d,a).$;a.fn.dataTable.Buttons||require("datatables.net-buttons")(d,a);return e(a,d,d.document)}:e(jQuery,window,document)})(function(e,d,a){var i=e.fn.dataTable,g=a.createElement("a");i.ext.buttons.print={className:"buttons-print", 2 | text:function(c){return c.i18n("buttons.print","Print")},action:function(c,b,a,f){c=b.buttons.exportData(f.exportOptions);a=function(c,a){for(var b="",d=0,e=c.length;d"+c[d]+"";return b+""};b='';f.header&&(b+=""+a(c.header,"th")+"");for(var b=b+"",j=0,i=c.body.length;j";f.footer&&c.footer&&(b+=""+a(c.footer,"th")+"");var h=d.open("",""),c=f.title; 3 | "function"===typeof c&&(c=c());-1!==c.indexOf("*")&&(c=c.replace("*",e("title").text()));h.document.close();var k=""+c+"";e("style, link").each(function(){var c=k,b=e(this).clone()[0],a;"link"===b.nodeName.toLowerCase()&&(g.href=b.href,a=g.host,-1===a.indexOf("/")&&0!==g.pathname.indexOf("/")&&(a+="/"),b.href=g.protocol+"//"+a+g.pathname+g.search);k=c+b.outerHTML});h.document.head.innerHTML=k;h.document.body.innerHTML="

"+c+"

"+f.message+"
"+b;f.customize&&f.customize(h); 4 | setTimeout(function(){f.autoPrint&&(h.print(),h.close())},250)},title:"*",message:"",exportOptions:{},header:!0,footer:!1,autoPrint:!0,customize:null};return i.Buttons}); 5 | -------------------------------------------------------------------------------- /vendor/plugins/datatables/responsive.bootstrap4.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap 4 integration for DataTables' Responsive 3 | ©2016 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs4","datatables.net-responsive"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);if(!b||!b.fn.dataTable)b=require("datatables.net-bs4")(a,b).$;b.fn.dataTable.Responsive||require("datatables.net-responsive")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c){var a=c.fn.dataTable,b=a.Responsive.display,g=b.modal,d=c('