├── .dockerignore ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .htaccess ├── .vscode └── settings.json ├── Caddyfile ├── Dockerfile ├── LICENSE ├── README.md ├── application ├── .htaccess ├── cache │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── ion_auth.php │ ├── jwt.php │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── pagination.php │ ├── profiler.php │ ├── rest.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Home.php │ ├── Welcome.php │ ├── admin │ │ ├── Auth.php │ │ ├── Dashboard.php │ │ ├── Data_pemilih.php │ │ ├── Filemanager.php │ │ ├── Kandidat.php │ │ ├── Kelas.php │ │ ├── Laporan.php │ │ └── Settings.php │ ├── api │ │ ├── Users.php │ │ └── Vote.php │ ├── index.html │ └── user │ │ └── Userauth.php ├── core │ └── index.html ├── helpers │ ├── exportexcel_helper.php │ ├── general_helper.php │ ├── index.html │ └── my_helper.php ├── hooks │ └── index.html ├── index.html ├── language │ ├── arabic │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── bengali │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── bulgarian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── catalan │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── croatian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── czech │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── danish │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── dutch │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── english │ │ ├── auth_lang.php │ │ ├── index.html │ │ └── ion_auth_lang.php │ ├── estonian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── filipino │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── finnish │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── french │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── german │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── greek │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── hungarian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── index.html │ ├── indonesian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── italian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── japanese │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── korean │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── lithuanian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── norwegian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── persian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── pirate │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── polish │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── portuguese │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── romanian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── russian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── slovak │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── slovenian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── spanish │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── swedish │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── thai │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── turkish │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── ukrainian │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── vietnamese │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ ├── zh_cn │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php │ └── zh_tw │ │ ├── auth_lang.php │ │ └── ion_auth_lang.php ├── libraries │ ├── Authorization_Token.php │ ├── Elfinder_lib.php │ ├── Ion_auth.php │ ├── elfinder │ │ ├── .tmp │ │ │ └── .htaccess │ │ ├── MySQLStorage.sql │ │ ├── autoload.php │ │ ├── connector.minimal.php │ │ ├── editors │ │ │ ├── OnlineConvert │ │ │ │ └── editor.php │ │ │ ├── ZipArchive │ │ │ │ └── editor.php │ │ │ ├── ZohoOffice │ │ │ │ └── editor.php │ │ │ └── editor.php │ │ ├── elFinder.class.php │ │ ├── elFinderConnector.class.php │ │ ├── elFinderFlysystemGoogleDriveNetmount.php │ │ ├── elFinderPlugin.php │ │ ├── elFinderSession.php │ │ ├── elFinderSessionInterface.php │ │ ├── elFinderVolumeBox.class.php │ │ ├── elFinderVolumeDriver.class.php │ │ ├── elFinderVolumeDropbox.class.php │ │ ├── elFinderVolumeDropbox2.class.php │ │ ├── elFinderVolumeFTP.class.php │ │ ├── elFinderVolumeGoogleDrive.class.php │ │ ├── elFinderVolumeGroup.class.php │ │ ├── elFinderVolumeLocalFileSystem.class.php │ │ ├── elFinderVolumeMySQL.class.php │ │ ├── elFinderVolumeOneDrive.class.php │ │ ├── elFinderVolumeTrash.class.php │ │ ├── elFinderVolumeTrashMySQL.class.php │ │ ├── libs │ │ │ └── GdBmp.php │ │ ├── mime.types │ │ ├── plugins │ │ │ ├── AutoResize │ │ │ │ └── plugin.php │ │ │ ├── AutoRotate │ │ │ │ └── plugin.php │ │ │ ├── Normalizer │ │ │ │ └── plugin.php │ │ │ ├── Sanitizer │ │ │ │ └── plugin.php │ │ │ └── Watermark │ │ │ │ ├── logo.png │ │ │ │ └── plugin.php │ │ └── resources │ │ │ ├── image.png │ │ │ └── video.png │ └── index.html ├── logs │ └── index.html ├── models │ ├── Api_model.php │ ├── Dashboard_model.php │ ├── Data_pemilih_model.php │ ├── Home_model.php │ ├── Ion_auth_model.php │ ├── Kandidat_model.php │ ├── Kelas_model.php │ ├── Laporan_model.php │ ├── Setting_model.php │ ├── Userauth_model.php │ └── index.html ├── third_party │ └── index.html └── views │ ├── back │ ├── auth │ │ ├── change_password.php │ │ ├── create_group.php │ │ ├── create_user.php │ │ ├── deactivate_user.php │ │ ├── edit_group.php │ │ ├── edit_user.php │ │ ├── email │ │ │ ├── activate.tpl.php │ │ │ └── forgot_password.tpl.php │ │ ├── forgot_password.php │ │ ├── group.php │ │ ├── index.php │ │ ├── login.php │ │ └── reset_password.php │ ├── dashboard.php │ ├── data_pemilih │ │ ├── data_pemilih_cetak.php │ │ ├── data_pemilih_form.php │ │ ├── data_pemilih_import.php │ │ ├── data_pemilih_list.php │ │ └── data_pemilih_read.php │ ├── filemanager.php │ ├── footer.php │ ├── head.php │ ├── js.php │ ├── kandidat │ │ ├── kandidat_form.php │ │ ├── kandidat_list.php │ │ └── kandidat_read.php │ ├── kelas │ │ ├── kelas_cetak.php │ │ ├── kelas_form.php │ │ ├── kelas_import.php │ │ ├── kelas_list.php │ │ └── kelas_read.php │ ├── laporan │ │ └── daftar_hadir.php │ ├── meta.php │ ├── settings.php │ └── sidebar.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 │ ├── front │ ├── footer.php │ ├── home.php │ ├── js.php │ ├── login.php │ ├── main.php │ ├── meta.php │ ├── mobile │ │ └── home.php │ ├── navbar.php │ ├── terimakasih.php │ └── vote.php │ ├── index.html │ └── welcome_message.php ├── assets ├── bootstrap │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js ├── css │ ├── aos.css │ ├── bootstrap.min.css │ ├── elfinder.full.css │ ├── elfinder.min.css │ ├── style.css │ └── theme.css ├── datatables │ ├── dataTables.bootstrap.css │ ├── dataTables.bootstrap.js │ ├── images │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ └── jquery.dataTables.js ├── img │ ├── arrows-active.png │ ├── arrows-normal.png │ ├── crop.gif │ ├── dialogs.png │ ├── edit_aceeditor.png │ ├── edit_ckeditor.png │ ├── edit_ckeditor5.png │ ├── edit_codemirror.png │ ├── edit_creativecloud.png │ ├── edit_onlineconvert.png │ ├── edit_pixlreditor.png │ ├── edit_pixlrexpress.png │ ├── edit_simplemde.png │ ├── edit_tinymce.png │ ├── edit_tuiimgedit.png │ ├── edit_zohooffice.png │ ├── editor-icons.png │ ├── icons-big.png │ ├── icons-big.svg │ ├── icons-small.png │ ├── logo.png │ ├── progress.gif │ ├── quicklook-bg.png │ ├── quicklook-icons.png │ ├── resize.png │ ├── spinner-mini.gif │ ├── toolbar.png │ ├── trashmesh.png │ ├── tui-icon-a.svg │ ├── tui-icon-b.svg │ ├── tui-icon-c.svg │ ├── tui-icon-d.svg │ ├── ui-icons_ffffff_256x240.png │ ├── volume_icon_box.png │ ├── volume_icon_box.svg │ ├── volume_icon_dropbox.png │ ├── volume_icon_dropbox.svg │ ├── volume_icon_ftp.png │ ├── volume_icon_ftp.svg │ ├── volume_icon_googledrive.png │ ├── volume_icon_googledrive.svg │ ├── volume_icon_local.png │ ├── volume_icon_local.svg │ ├── volume_icon_network.png │ ├── volume_icon_network.svg │ ├── volume_icon_onedrive.png │ ├── volume_icon_onedrive.svg │ ├── volume_icon_sql.png │ ├── volume_icon_sql.svg │ ├── volume_icon_trash.png │ ├── volume_icon_trash.svg │ ├── volume_icon_zip.png │ └── volume_icon_zip.svg ├── js │ ├── Countup.js │ ├── aos.js │ ├── bootstrap.min.js │ ├── elfinder.full.js │ ├── elfinder.min.js │ ├── extras │ │ ├── editors.default.js │ │ ├── editors.default.min.js │ │ ├── quicklook.googledocs.js │ │ └── quicklook.googledocs.min.js │ ├── i18n │ │ ├── elfinder.LANG.js │ │ ├── elfinder.ar.js │ │ ├── elfinder.bg.js │ │ ├── elfinder.ca.js │ │ ├── elfinder.cs.js │ │ ├── elfinder.da.js │ │ ├── elfinder.de.js │ │ ├── elfinder.el.js │ │ ├── elfinder.es.js │ │ ├── elfinder.fa.js │ │ ├── elfinder.fallback.js │ │ ├── elfinder.fo.js │ │ ├── elfinder.fr.js │ │ ├── elfinder.fr_CA.js │ │ ├── elfinder.he.js │ │ ├── elfinder.hr.js │ │ ├── elfinder.hu.js │ │ ├── elfinder.id.js │ │ ├── elfinder.it.js │ │ ├── elfinder.ja.js │ │ ├── elfinder.ko.js │ │ ├── elfinder.nl.js │ │ ├── elfinder.no.js │ │ ├── elfinder.pl.js │ │ ├── elfinder.pt_BR.js │ │ ├── elfinder.ro.js │ │ ├── elfinder.ru.js │ │ ├── elfinder.si.js │ │ ├── elfinder.sk.js │ │ ├── elfinder.sl.js │ │ ├── elfinder.sr.js │ │ ├── elfinder.sv.js │ │ ├── elfinder.tr.js │ │ ├── elfinder.ug_CN.js │ │ ├── elfinder.uk.js │ │ ├── elfinder.vi.js │ │ ├── elfinder.zh_CN.js │ │ ├── elfinder.zh_TW.js │ │ └── help │ │ │ ├── cs.html.js │ │ │ ├── en.html.js │ │ │ ├── es.html.js │ │ │ ├── ja.html.js │ │ │ ├── ko.html.js │ │ │ ├── pl.html.js │ │ │ ├── ru.html.js │ │ │ └── sk.html.js │ ├── jquery-1.11.2.min.js │ ├── jquery-3.3.1.min.js │ ├── main.js │ ├── moment-timezone.js │ ├── momentjs.min.js │ ├── popper.min.js │ └── proxy │ │ └── elFinderSupportVer1.js ├── sample │ ├── kelas │ │ ├── sample-csv.csv │ │ ├── sample-xls.xls │ │ └── sample-xlsx.xlsx │ └── pemilih │ │ ├── sample-csv.csv │ │ ├── sample-xls.xls │ │ └── sample-xlsx.xlsx ├── sounds │ └── rm.wav ├── template │ ├── backend │ │ ├── bower_components │ │ │ ├── Flot │ │ │ │ ├── flot.jquery.json │ │ │ │ ├── jquery.colorhelpers.js │ │ │ │ ├── jquery.flot.canvas.js │ │ │ │ ├── jquery.flot.categories.js │ │ │ │ ├── jquery.flot.crosshair.js │ │ │ │ ├── jquery.flot.errorbars.js │ │ │ │ ├── jquery.flot.fillbetween.js │ │ │ │ ├── jquery.flot.image.js │ │ │ │ ├── jquery.flot.js │ │ │ │ ├── jquery.flot.navigate.js │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ ├── jquery.flot.selection.js │ │ │ │ ├── jquery.flot.stack.js │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ ├── jquery.flot.threshold.js │ │ │ │ ├── jquery.flot.time.js │ │ │ │ └── jquery.js │ │ │ ├── Ionicons │ │ │ │ ├── css │ │ │ │ │ ├── ionicons.css │ │ │ │ │ └── ionicons.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── ionicons.eot │ │ │ │ │ ├── ionicons.svg │ │ │ │ │ ├── ionicons.ttf │ │ │ │ │ └── ionicons.woff │ │ │ ├── PACE │ │ │ │ ├── pace.js │ │ │ │ └── pace.min.js │ │ │ ├── bootstrap-colorpicker │ │ │ │ └── dist │ │ │ │ │ ├── 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 │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-datepicker.css │ │ │ │ │ ├── bootstrap-datepicker.css.map │ │ │ │ │ ├── bootstrap-datepicker.min.css │ │ │ │ │ ├── bootstrap-datepicker.standalone.css │ │ │ │ │ ├── bootstrap-datepicker.standalone.css.map │ │ │ │ │ ├── bootstrap-datepicker.standalone.min.css │ │ │ │ │ ├── bootstrap-datepicker3.css │ │ │ │ │ ├── bootstrap-datepicker3.css.map │ │ │ │ │ ├── bootstrap-datepicker3.min.css │ │ │ │ │ ├── bootstrap-datepicker3.standalone.css │ │ │ │ │ ├── bootstrap-datepicker3.standalone.css.map │ │ │ │ │ └── bootstrap-datepicker3.standalone.min.css │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ │ └── bootstrap-datepicker.min.js │ │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ ├── bootstrap-daterangepicker │ │ │ │ ├── daterangepicker.css │ │ │ │ ├── daterangepicker.js │ │ │ │ └── daterangepicker.scss │ │ │ ├── bootstrap │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── npm.js │ │ │ ├── chart.js │ │ │ │ └── Chart.js │ │ │ ├── datatables.net-bs │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ └── dataTables.bootstrap.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ └── dataTables.bootstrap.min.js │ │ │ ├── datatables.net │ │ │ │ └── js │ │ │ │ │ ├── jquery.dataTables.js │ │ │ │ │ └── jquery.dataTables.min.js │ │ │ ├── eve-raphael │ │ │ │ └── eve.js │ │ │ ├── fastclick │ │ │ │ └── lib │ │ │ │ │ └── fastclick.js │ │ │ ├── font-awesome │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ ├── font-awesome.css.map │ │ │ │ │ └── font-awesome.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── fullcalendar │ │ │ │ └── dist │ │ │ │ │ ├── fullcalendar.css │ │ │ │ │ ├── fullcalendar.d.ts │ │ │ │ │ ├── fullcalendar.js │ │ │ │ │ ├── fullcalendar.min.css │ │ │ │ │ ├── fullcalendar.min.js │ │ │ │ │ ├── fullcalendar.print.css │ │ │ │ │ ├── fullcalendar.print.min.css │ │ │ │ │ ├── gcal.js │ │ │ │ │ ├── gcal.min.js │ │ │ │ │ ├── locale-all.js │ │ │ │ │ └── locale │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar-dz.js │ │ │ │ │ ├── ar-kw.js │ │ │ │ │ ├── ar-ly.js │ │ │ │ │ ├── ar-ma.js │ │ │ │ │ ├── ar-sa.js │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── be.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-at.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en-ie.js │ │ │ │ │ ├── en-nz.js │ │ │ │ │ ├── es-do.js │ │ │ │ │ ├── es-us.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr-ch.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lb.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ms-my.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl-be.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh-hk.js │ │ │ │ │ └── zh-tw.js │ │ │ ├── inputmask │ │ │ │ └── dist │ │ │ │ │ ├── inputmask │ │ │ │ │ ├── bindings │ │ │ │ │ │ └── inputmask.binding.js │ │ │ │ │ ├── dependencyLibs │ │ │ │ │ │ ├── inputmask.dependencyLib.jqlite.js │ │ │ │ │ │ ├── inputmask.dependencyLib.jquery.js │ │ │ │ │ │ └── inputmask.dependencyLib.js │ │ │ │ │ ├── global │ │ │ │ │ │ ├── document.js │ │ │ │ │ │ └── window.js │ │ │ │ │ ├── inputmask.date.extensions.js │ │ │ │ │ ├── inputmask.extensions.js │ │ │ │ │ ├── inputmask.js │ │ │ │ │ ├── inputmask.numeric.extensions.js │ │ │ │ │ ├── inputmask.phone.extensions.js │ │ │ │ │ ├── inputmask.regex.extensions.js │ │ │ │ │ ├── jquery.inputmask.js │ │ │ │ │ └── phone-codes │ │ │ │ │ │ ├── phone-be.js │ │ │ │ │ │ ├── phone-nl.js │ │ │ │ │ │ ├── phone-ru.js │ │ │ │ │ │ ├── phone-uk.js │ │ │ │ │ │ └── phone.js │ │ │ │ │ ├── jquery.inputmask.bundle.js │ │ │ │ │ └── min │ │ │ │ │ ├── inputmask │ │ │ │ │ ├── inputmask.date.extensions.min.js │ │ │ │ │ ├── inputmask.extensions.min.js │ │ │ │ │ ├── inputmask.min.js │ │ │ │ │ ├── inputmask.numeric.extensions.min.js │ │ │ │ │ ├── inputmask.phone.extensions.min.js │ │ │ │ │ ├── inputmask.regex.extensions.min.js │ │ │ │ │ └── jquery.inputmask.min.js │ │ │ │ │ └── jquery.inputmask.bundle.min.js │ │ │ ├── ion.rangeSlider │ │ │ │ ├── css │ │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ │ └── ion.rangeSlider.min.css │ │ │ │ └── js │ │ │ │ │ ├── ion.rangeSlider.js │ │ │ │ │ └── ion.rangeSlider.min.js │ │ │ ├── jquery-knob │ │ │ │ └── dist │ │ │ │ │ └── jquery.knob.min.js │ │ │ ├── jquery-slimscroll │ │ │ │ ├── jquery.slimscroll.js │ │ │ │ └── jquery.slimscroll.min.js │ │ │ ├── jquery-sparkline │ │ │ │ └── dist │ │ │ │ │ ├── jquery.sparkline.js │ │ │ │ │ └── jquery.sparkline.min.js │ │ │ ├── jquery-ui │ │ │ │ ├── jquery-ui.js │ │ │ │ └── jquery-ui.min.js │ │ │ ├── jquery │ │ │ │ └── dist │ │ │ │ │ ├── core.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── jquery.min.map │ │ │ │ │ ├── jquery.slim.js │ │ │ │ │ ├── jquery.slim.min.js │ │ │ │ │ └── jquery.slim.min.map │ │ │ ├── jvectormap │ │ │ │ ├── jquery-jvectormap.css │ │ │ │ ├── jquery-jvectormap.js │ │ │ │ └── jquery-mousewheel.js │ │ │ ├── mocha │ │ │ │ ├── mocha.css │ │ │ │ └── mocha.js │ │ │ ├── moment │ │ │ │ ├── min │ │ │ │ │ ├── locales.js │ │ │ │ │ ├── locales.min.js │ │ │ │ │ ├── moment-with-locales.js │ │ │ │ │ ├── moment-with-locales.min.js │ │ │ │ │ └── moment.min.js │ │ │ │ └── moment.js │ │ │ ├── morris.js │ │ │ │ ├── morris.css │ │ │ │ ├── morris.js │ │ │ │ └── morris.min.js │ │ │ ├── raphael │ │ │ │ ├── raphael.js │ │ │ │ ├── raphael.min.js │ │ │ │ ├── raphael.no-deps.js │ │ │ │ └── raphael.no-deps.min.js │ │ │ ├── seiyria-bootstrap-slider │ │ │ │ └── dist │ │ │ │ │ ├── bootstrap-slider.js │ │ │ │ │ ├── bootstrap-slider.min.js │ │ │ │ │ └── css │ │ │ │ │ ├── bootstrap-slider.css │ │ │ │ │ └── bootstrap-slider.min.css │ │ │ └── select2 │ │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ │ │ └── js │ │ │ │ ├── i18n │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── dsb.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hsb.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── ps.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ │ ├── select2.full.js │ │ │ │ ├── select2.full.min.js │ │ │ │ ├── select2.js │ │ │ │ └── select2.min.js │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── adminlte.css │ │ │ │ ├── adminlte.css.map │ │ │ │ ├── adminlte.min.css │ │ │ │ ├── adminlte.min.css.map │ │ │ │ ├── alt │ │ │ │ │ ├── AdminLTE-bootstrap-social.css │ │ │ │ │ ├── AdminLTE-bootstrap-social.min.css │ │ │ │ │ ├── AdminLTE-fullcalendar.css │ │ │ │ │ ├── AdminLTE-fullcalendar.min.css │ │ │ │ │ ├── AdminLTE-select2.css │ │ │ │ │ ├── AdminLTE-select2.min.css │ │ │ │ │ ├── AdminLTE-without-plugins.css │ │ │ │ │ └── AdminLTE-without-plugins.min.css │ │ │ │ └── skins │ │ │ │ │ ├── _all-skins.css │ │ │ │ │ ├── _all-skins.min.css │ │ │ │ │ ├── skin-black-light.css │ │ │ │ │ ├── skin-black-light.min.css │ │ │ │ │ ├── skin-black.css │ │ │ │ │ ├── skin-black.min.css │ │ │ │ │ ├── skin-blue-light.css │ │ │ │ │ ├── skin-blue-light.min.css │ │ │ │ │ ├── skin-blue.css │ │ │ │ │ ├── skin-blue.min.css │ │ │ │ │ ├── skin-green-light.css │ │ │ │ │ ├── skin-green-light.min.css │ │ │ │ │ ├── skin-green.css │ │ │ │ │ ├── skin-green.min.css │ │ │ │ │ ├── skin-purple-light.css │ │ │ │ │ ├── skin-purple-light.min.css │ │ │ │ │ ├── skin-purple.css │ │ │ │ │ ├── skin-purple.min.css │ │ │ │ │ ├── skin-red-light.css │ │ │ │ │ ├── skin-red-light.min.css │ │ │ │ │ ├── skin-red.css │ │ │ │ │ ├── skin-red.min.css │ │ │ │ │ ├── skin-yellow-light.css │ │ │ │ │ ├── skin-yellow-light.min.css │ │ │ │ │ ├── skin-yellow.css │ │ │ │ │ └── skin-yellow.min.css │ │ │ ├── img │ │ │ │ ├── avatar.png │ │ │ │ ├── avatar04.png │ │ │ │ ├── avatar2.png │ │ │ │ ├── avatar3.png │ │ │ │ ├── avatar5.png │ │ │ │ ├── credit │ │ │ │ │ ├── american-express.png │ │ │ │ │ ├── cirrus.png │ │ │ │ │ ├── mastercard.png │ │ │ │ │ ├── mestro.png │ │ │ │ │ ├── paypal.png │ │ │ │ │ ├── paypal2.png │ │ │ │ │ └── visa.png │ │ │ │ ├── default-50x50.gif │ │ │ │ ├── icons.png │ │ │ │ ├── photo1.png │ │ │ │ ├── photo2.png │ │ │ │ ├── photo3.jpg │ │ │ │ ├── photo4.jpg │ │ │ │ ├── user1-128x128.jpg │ │ │ │ ├── user2-160x160.jpg │ │ │ │ ├── user3-128x128.jpg │ │ │ │ ├── user4-128x128.jpg │ │ │ │ ├── user5-128x128.jpg │ │ │ │ ├── user6-128x128.jpg │ │ │ │ ├── user7-128x128.jpg │ │ │ │ └── user8-128x128.jpg │ │ │ └── js │ │ │ │ ├── adminlte.js │ │ │ │ ├── adminlte.min.js │ │ │ │ ├── demo.js │ │ │ │ └── pages │ │ │ │ ├── dashboard.js │ │ │ │ └── dashboard2.js │ │ └── plugins │ │ │ ├── bootstrap-slider │ │ │ ├── bootstrap-slider.js │ │ │ └── slider.css │ │ │ ├── bootstrap-wysihtml5 │ │ │ ├── bootstrap3-wysihtml5.all.js │ │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ │ ├── bootstrap3-wysihtml5.css │ │ │ └── bootstrap3-wysihtml5.min.css │ │ │ ├── iCheck │ │ │ ├── all.css │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.css │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ ├── icheck.js │ │ │ ├── icheck.min.js │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── line.css │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.css │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ └── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.css │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── input-mask │ │ │ ├── jquery.inputmask.date.extensions.js │ │ │ ├── jquery.inputmask.extensions.js │ │ │ ├── jquery.inputmask.js │ │ │ ├── jquery.inputmask.numeric.extensions.js │ │ │ ├── jquery.inputmask.phone.extensions.js │ │ │ ├── jquery.inputmask.regex.extensions.js │ │ │ └── phone-codes │ │ │ │ ├── phone-be.json │ │ │ │ ├── phone-codes.json │ │ │ │ └── readme.txt │ │ │ ├── jQueryUI │ │ │ ├── jquery-ui.js │ │ │ └── jquery-ui.min.js │ │ │ ├── jvectormap │ │ │ ├── jquery-jvectormap-1.2.2.css │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ ├── jquery-jvectormap-usa-en.js │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ │ ├── pace │ │ │ ├── pace.css │ │ │ ├── pace.js │ │ │ ├── pace.min.css │ │ │ └── pace.min.js │ │ │ ├── seiyria-bootstrap-slider │ │ │ ├── bootstrap-slider.js │ │ │ ├── bootstrap-slider.min.js │ │ │ └── css │ │ │ │ ├── bootstrap-slider.css │ │ │ │ └── bootstrap-slider.min.css │ │ │ └── timepicker │ │ │ ├── bootstrap-timepicker.css │ │ │ ├── bootstrap-timepicker.js │ │ │ ├── bootstrap-timepicker.min.css │ │ │ └── bootstrap-timepicker.min.js │ └── frontend │ │ ├── css │ │ ├── adminlte.css │ │ ├── adminlte.css.map │ │ ├── adminlte.min.css │ │ ├── adminlte.min.css.map │ │ ├── heroic-features.css │ │ └── main.css │ │ ├── index.html │ │ ├── plugins │ │ ├── chart.js │ │ │ ├── Chart.bundle.js │ │ │ ├── Chart.bundle.min.js │ │ │ ├── Chart.css │ │ │ ├── Chart.js │ │ │ ├── Chart.min.css │ │ │ └── Chart.min.js │ │ ├── chartjs-plugin-labels.min.js │ │ └── fontawesome-free │ │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ ├── 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 │ │ └── vendor │ │ ├── bootstrap │ │ ├── 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 │ │ └── jquery │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map └── uploads │ ├── 001.xlsx │ ├── 01.xlsx │ ├── 011.xlsx │ ├── 012.xlsx │ ├── kandidat │ ├── 64898_0_QS_Etikett_QV02WE.jpg │ ├── Asset_3099.png │ ├── MPK_VEC.png │ └── OSMASA.jpg │ └── tmb │ ├── l1_a2FuZGlkYXRcT1NNQVNBLmpwZw1574074124.png │ └── l1_a2FuZGlkYXRcTVBLX1ZFQy5wbmc1574074124.png ├── composer.json ├── composer.lock ├── docker-compose.yml ├── evoting-with-dataset.sql ├── evoting.sql ├── harviacode ├── core │ ├── bootstrap.min.css │ ├── create_config_pagination.php │ ├── create_controller.php │ ├── create_exportexcel_helper.php │ ├── create_libraries_datatables.php │ ├── create_model.php │ ├── create_pdf_library.php │ ├── create_view_form.php │ ├── create_view_list.php │ ├── create_view_list_datatables.php │ ├── create_view_list_doc.php │ ├── create_view_list_pdf.php │ ├── create_view_read.php │ ├── harviacode.php │ ├── helper.php │ ├── process.php │ ├── setting.php │ └── settingjson.cfg ├── index.php └── output │ ├── config │ └── index.php │ ├── controllers │ └── index.php │ ├── helpers │ └── index.php │ ├── models │ └── index.php │ └── views │ └── index.php ├── 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 └── vendor ├── autoload.php ├── chriskacerguis └── codeigniter-restserver │ ├── .github │ └── FUNDING.yml │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── language │ ├── bulgarian │ │ ├── index.html │ │ └── rest_controller_lang.php │ ├── dutch │ │ ├── index.html │ │ └── rest_controller_lang.php │ ├── english │ │ ├── index.html │ │ └── rest_controller_lang.php │ ├── french │ │ ├── index.html │ │ └── rest_controller_lang.php │ ├── german │ │ ├── index.html │ │ └── rest_controller_lang.php │ ├── greek │ │ └── rest_controller_lang.php │ ├── index.html │ ├── indonesia │ │ ├── index.html │ │ └── rest_controller_lang.php │ ├── italian │ │ ├── index.html │ │ └── rest_controller_lang.php │ ├── korean │ │ ├── index.html │ │ └── rest_controller_lang.php │ ├── portuguese-brazilian │ │ ├── index.html │ │ └── rest_controller_lang.php │ ├── romanian │ │ ├── index.html │ │ └── rest_controller_lang.php │ ├── serbian_cyr │ │ ├── index.html │ │ └── rest_controller_lang.php │ ├── serbian_lat │ │ ├── index.html │ │ └── rest_controller_lang.php │ ├── simplified-chinese │ │ ├── index.html │ │ └── rest_controller_lang.php │ ├── spanish │ │ ├── index.html │ │ └── rest_controller_lang.php │ ├── traditional-chinese │ │ ├── index.html │ │ └── rest_controller_lang.php │ └── turkish │ │ ├── index.html │ │ └── rest_controller_lang.php │ └── src │ ├── Format.php │ ├── RestController.php │ ├── auth │ ├── apikey.php │ ├── basic.php │ └── ldap.php │ ├── index.html │ └── rest.php ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json ├── ezyang └── htmlpurifier │ ├── CREDITS │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── composer.json │ └── library │ ├── HTMLPurifier.auto.php │ ├── HTMLPurifier.autoload-legacy.php │ ├── HTMLPurifier.autoload.php │ ├── HTMLPurifier.composer.php │ ├── HTMLPurifier.func.php │ ├── HTMLPurifier.includes.php │ ├── HTMLPurifier.kses.php │ ├── HTMLPurifier.path.php │ ├── HTMLPurifier.php │ ├── HTMLPurifier.safe-includes.php │ └── HTMLPurifier │ ├── Arborize.php │ ├── AttrCollections.php │ ├── AttrDef.php │ ├── AttrDef │ ├── CSS.php │ ├── CSS │ │ ├── AlphaValue.php │ │ ├── Background.php │ │ ├── BackgroundPosition.php │ │ ├── Border.php │ │ ├── Color.php │ │ ├── Composite.php │ │ ├── DenyElementDecorator.php │ │ ├── Filter.php │ │ ├── Font.php │ │ ├── FontFamily.php │ │ ├── Ident.php │ │ ├── ImportantDecorator.php │ │ ├── Length.php │ │ ├── ListStyle.php │ │ ├── Multiple.php │ │ ├── Number.php │ │ ├── Percentage.php │ │ ├── TextDecoration.php │ │ └── URI.php │ ├── Clone.php │ ├── Enum.php │ ├── HTML │ │ ├── Bool.php │ │ ├── Class.php │ │ ├── Color.php │ │ ├── FrameTarget.php │ │ ├── ID.php │ │ ├── Length.php │ │ ├── LinkTypes.php │ │ ├── MultiLength.php │ │ ├── Nmtokens.php │ │ └── Pixels.php │ ├── Integer.php │ ├── Lang.php │ ├── Switch.php │ ├── Text.php │ ├── URI.php │ └── URI │ │ ├── Email.php │ │ ├── Email │ │ └── SimpleCheck.php │ │ ├── Host.php │ │ ├── IPv4.php │ │ └── IPv6.php │ ├── AttrTransform.php │ ├── AttrTransform │ ├── Background.php │ ├── BdoDir.php │ ├── BgColor.php │ ├── BoolToCSS.php │ ├── Border.php │ ├── EnumToCSS.php │ ├── ImgRequired.php │ ├── ImgSpace.php │ ├── Input.php │ ├── Lang.php │ ├── Length.php │ ├── Name.php │ ├── NameSync.php │ ├── Nofollow.php │ ├── SafeEmbed.php │ ├── SafeObject.php │ ├── SafeParam.php │ ├── ScriptRequired.php │ ├── TargetBlank.php │ ├── TargetNoopener.php │ ├── TargetNoreferrer.php │ └── Textarea.php │ ├── AttrTypes.php │ ├── AttrValidator.php │ ├── Bootstrap.php │ ├── CSSDefinition.php │ ├── ChildDef.php │ ├── ChildDef │ ├── Chameleon.php │ ├── Custom.php │ ├── Empty.php │ ├── List.php │ ├── Optional.php │ ├── Required.php │ ├── StrictBlockquote.php │ └── Table.php │ ├── Config.php │ ├── ConfigSchema.php │ ├── ConfigSchema │ ├── Builder │ │ ├── ConfigSchema.php │ │ └── Xml.php │ ├── Exception.php │ ├── Interchange.php │ ├── Interchange │ │ ├── Directive.php │ │ └── Id.php │ ├── InterchangeBuilder.php │ ├── Validator.php │ ├── ValidatorAtom.php │ ├── schema.ser │ └── schema │ │ ├── Attr.AllowedClasses.txt │ │ ├── Attr.AllowedFrameTargets.txt │ │ ├── Attr.AllowedRel.txt │ │ ├── Attr.AllowedRev.txt │ │ ├── Attr.ClassUseCDATA.txt │ │ ├── Attr.DefaultImageAlt.txt │ │ ├── Attr.DefaultInvalidImage.txt │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ ├── Attr.DefaultTextDir.txt │ │ ├── Attr.EnableID.txt │ │ ├── Attr.ForbiddenClasses.txt │ │ ├── Attr.ID.HTML5.txt │ │ ├── Attr.IDBlacklist.txt │ │ ├── Attr.IDBlacklistRegexp.txt │ │ ├── Attr.IDPrefix.txt │ │ ├── Attr.IDPrefixLocal.txt │ │ ├── AutoFormat.AutoParagraph.txt │ │ ├── AutoFormat.Custom.txt │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ ├── AutoFormat.Linkify.txt │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ ├── AutoFormat.PurifierLinkify.txt │ │ ├── AutoFormat.RemoveEmpty.Predicate.txt │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ ├── AutoFormat.RemoveEmpty.txt │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ ├── CSS.AllowDuplicates.txt │ │ ├── CSS.AllowImportant.txt │ │ ├── CSS.AllowTricky.txt │ │ ├── CSS.AllowedFonts.txt │ │ ├── CSS.AllowedProperties.txt │ │ ├── CSS.DefinitionRev.txt │ │ ├── CSS.ForbiddenProperties.txt │ │ ├── CSS.MaxImgLength.txt │ │ ├── CSS.Proprietary.txt │ │ ├── CSS.Trusted.txt │ │ ├── Cache.DefinitionImpl.txt │ │ ├── Cache.SerializerPath.txt │ │ ├── Cache.SerializerPermissions.txt │ │ ├── Core.AggressivelyFixLt.txt │ │ ├── Core.AggressivelyRemoveScript.txt │ │ ├── Core.AllowHostnameUnderscore.txt │ │ ├── Core.AllowParseManyTags.txt │ │ ├── Core.CollectErrors.txt │ │ ├── Core.ColorKeywords.txt │ │ ├── Core.ConvertDocumentToFragment.txt │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ ├── Core.DisableExcludes.txt │ │ ├── Core.EnableIDNA.txt │ │ ├── Core.Encoding.txt │ │ ├── Core.EscapeInvalidChildren.txt │ │ ├── Core.EscapeInvalidTags.txt │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ ├── Core.HiddenElements.txt │ │ ├── Core.Language.txt │ │ ├── Core.LegacyEntityDecoder.txt │ │ ├── Core.LexerImpl.txt │ │ ├── Core.MaintainLineNumbers.txt │ │ ├── Core.NormalizeNewlines.txt │ │ ├── Core.RemoveInvalidImg.txt │ │ ├── Core.RemoveProcessingInstructions.txt │ │ ├── Core.RemoveScriptContents.txt │ │ ├── Filter.Custom.txt │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ ├── Filter.ExtractStyleBlocks.txt │ │ ├── Filter.YouTube.txt │ │ ├── HTML.Allowed.txt │ │ ├── HTML.AllowedAttributes.txt │ │ ├── HTML.AllowedComments.txt │ │ ├── HTML.AllowedCommentsRegexp.txt │ │ ├── HTML.AllowedElements.txt │ │ ├── HTML.AllowedModules.txt │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ ├── HTML.BlockWrapper.txt │ │ ├── HTML.CoreModules.txt │ │ ├── HTML.CustomDoctype.txt │ │ ├── HTML.DefinitionID.txt │ │ ├── HTML.DefinitionRev.txt │ │ ├── HTML.Doctype.txt │ │ ├── HTML.FlashAllowFullScreen.txt │ │ ├── HTML.ForbiddenAttributes.txt │ │ ├── HTML.ForbiddenElements.txt │ │ ├── HTML.Forms.txt │ │ ├── HTML.MaxImgLength.txt │ │ ├── HTML.Nofollow.txt │ │ ├── HTML.Parent.txt │ │ ├── HTML.Proprietary.txt │ │ ├── HTML.SafeEmbed.txt │ │ ├── HTML.SafeIframe.txt │ │ ├── HTML.SafeObject.txt │ │ ├── HTML.SafeScripting.txt │ │ ├── HTML.Strict.txt │ │ ├── HTML.TargetBlank.txt │ │ ├── HTML.TargetNoopener.txt │ │ ├── HTML.TargetNoreferrer.txt │ │ ├── HTML.TidyAdd.txt │ │ ├── HTML.TidyLevel.txt │ │ ├── HTML.TidyRemove.txt │ │ ├── HTML.Trusted.txt │ │ ├── HTML.XHTML.txt │ │ ├── Output.CommentScriptContents.txt │ │ ├── Output.FixInnerHTML.txt │ │ ├── Output.FlashCompat.txt │ │ ├── Output.Newline.txt │ │ ├── Output.SortAttr.txt │ │ ├── Output.TidyFormat.txt │ │ ├── Test.ForceNoIconv.txt │ │ ├── URI.AllowedSchemes.txt │ │ ├── URI.Base.txt │ │ ├── URI.DefaultScheme.txt │ │ ├── URI.DefinitionID.txt │ │ ├── URI.DefinitionRev.txt │ │ ├── URI.Disable.txt │ │ ├── URI.DisableExternal.txt │ │ ├── URI.DisableExternalResources.txt │ │ ├── URI.DisableResources.txt │ │ ├── URI.Host.txt │ │ ├── URI.HostBlacklist.txt │ │ ├── URI.MakeAbsolute.txt │ │ ├── URI.Munge.txt │ │ ├── URI.MungeResources.txt │ │ ├── URI.MungeSecretKey.txt │ │ ├── URI.OverrideAllowedSchemes.txt │ │ ├── URI.SafeIframeRegexp.txt │ │ └── info.ini │ ├── ContentSets.php │ ├── Context.php │ ├── Definition.php │ ├── DefinitionCache.php │ ├── DefinitionCache │ ├── Decorator.php │ ├── Decorator │ │ ├── Cleanup.php │ │ ├── Memory.php │ │ └── Template.php.in │ ├── Null.php │ ├── Serializer.php │ └── Serializer │ │ └── README │ ├── DefinitionCacheFactory.php │ ├── Doctype.php │ ├── DoctypeRegistry.php │ ├── ElementDef.php │ ├── Encoder.php │ ├── EntityLookup.php │ ├── EntityLookup │ └── entities.ser │ ├── EntityParser.php │ ├── ErrorCollector.php │ ├── ErrorStruct.php │ ├── Exception.php │ ├── Filter.php │ ├── Filter │ ├── ExtractStyleBlocks.php │ └── YouTube.php │ ├── Generator.php │ ├── HTMLDefinition.php │ ├── HTMLModule.php │ ├── HTMLModule │ ├── Bdo.php │ ├── CommonAttributes.php │ ├── Edit.php │ ├── Forms.php │ ├── Hypertext.php │ ├── Iframe.php │ ├── Image.php │ ├── Legacy.php │ ├── List.php │ ├── Name.php │ ├── Nofollow.php │ ├── NonXMLCommonAttributes.php │ ├── Object.php │ ├── Presentation.php │ ├── Proprietary.php │ ├── Ruby.php │ ├── SafeEmbed.php │ ├── SafeObject.php │ ├── SafeScripting.php │ ├── Scripting.php │ ├── StyleAttribute.php │ ├── Tables.php │ ├── Target.php │ ├── TargetBlank.php │ ├── TargetNoopener.php │ ├── TargetNoreferrer.php │ ├── Text.php │ ├── Tidy.php │ ├── Tidy │ │ ├── Name.php │ │ ├── Proprietary.php │ │ ├── Strict.php │ │ ├── Transitional.php │ │ ├── XHTML.php │ │ └── XHTMLAndHTML4.php │ └── XMLCommonAttributes.php │ ├── HTMLModuleManager.php │ ├── IDAccumulator.php │ ├── Injector.php │ ├── Injector │ ├── AutoParagraph.php │ ├── DisplayLinkURI.php │ ├── Linkify.php │ ├── PurifierLinkify.php │ ├── RemoveEmpty.php │ ├── RemoveSpansWithoutAttributes.php │ └── SafeObject.php │ ├── Language.php │ ├── Language │ └── messages │ │ └── en.php │ ├── LanguageFactory.php │ ├── Length.php │ ├── Lexer.php │ ├── Lexer │ ├── DOMLex.php │ ├── DirectLex.php │ └── PH5P.php │ ├── Node.php │ ├── Node │ ├── Comment.php │ ├── Element.php │ └── Text.php │ ├── PercentEncoder.php │ ├── Printer.php │ ├── Printer │ ├── CSSDefinition.php │ ├── ConfigForm.css │ ├── ConfigForm.js │ ├── ConfigForm.php │ └── HTMLDefinition.php │ ├── PropertyList.php │ ├── PropertyListIterator.php │ ├── Queue.php │ ├── Strategy.php │ ├── Strategy │ ├── Composite.php │ ├── Core.php │ ├── FixNesting.php │ ├── MakeWellFormed.php │ ├── RemoveForeignElements.php │ └── ValidateAttributes.php │ ├── StringHash.php │ ├── StringHashParser.php │ ├── TagTransform.php │ ├── TagTransform │ ├── Font.php │ └── Simple.php │ ├── Token.php │ ├── Token │ ├── Comment.php │ ├── Empty.php │ ├── End.php │ ├── Start.php │ ├── Tag.php │ └── Text.php │ ├── TokenFactory.php │ ├── URI.php │ ├── URIDefinition.php │ ├── URIFilter.php │ ├── URIFilter │ ├── DisableExternal.php │ ├── DisableExternalResources.php │ ├── DisableResources.php │ ├── HostBlacklist.php │ ├── MakeAbsolute.php │ ├── Munge.php │ └── SafeIframe.php │ ├── URIParser.php │ ├── URIScheme.php │ ├── URIScheme │ ├── data.php │ ├── file.php │ ├── ftp.php │ ├── http.php │ ├── https.php │ ├── mailto.php │ ├── news.php │ ├── nntp.php │ └── tel.php │ ├── URISchemeRegistry.php │ ├── UnitConverter.php │ ├── VarParser.php │ ├── VarParser │ ├── Flexible.php │ └── Native.php │ ├── VarParserException.php │ └── Zipper.php ├── firebase └── php-jwt │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── BeforeValidException.php │ ├── ExpiredException.php │ ├── JWT.php │ └── SignatureInvalidException.php ├── maennchen └── zipstream-php │ ├── .github │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── psalm.xml │ ├── src │ ├── Bigint.php │ ├── DeflateStream.php │ ├── Exception.php │ ├── Exception │ │ ├── EncodingException.php │ │ ├── FileNotFoundException.php │ │ ├── FileNotReadableException.php │ │ ├── IncompatibleOptionsException.php │ │ ├── OverflowException.php │ │ └── StreamNotReadableException.php │ ├── File.php │ ├── Option │ │ ├── Archive.php │ │ ├── File.php │ │ ├── Method.php │ │ └── Version.php │ ├── Stream.php │ └── ZipStream.php │ └── test │ ├── BigintTest.php │ ├── ZipStreamTest.php │ ├── bootstrap.php │ └── bug │ └── BugHonorFileTimeTest.php ├── markbaker ├── complex │ ├── README.md │ ├── classes │ │ ├── Autoloader.php │ │ ├── Bootstrap.php │ │ └── src │ │ │ ├── Complex.php │ │ │ ├── Exception.php │ │ │ ├── functions │ │ │ ├── abs.php │ │ │ ├── acos.php │ │ │ ├── acosh.php │ │ │ ├── acot.php │ │ │ ├── acoth.php │ │ │ ├── acsc.php │ │ │ ├── acsch.php │ │ │ ├── argument.php │ │ │ ├── asec.php │ │ │ ├── asech.php │ │ │ ├── asin.php │ │ │ ├── asinh.php │ │ │ ├── atan.php │ │ │ ├── atanh.php │ │ │ ├── conjugate.php │ │ │ ├── cos.php │ │ │ ├── cosh.php │ │ │ ├── cot.php │ │ │ ├── coth.php │ │ │ ├── csc.php │ │ │ ├── csch.php │ │ │ ├── exp.php │ │ │ ├── inverse.php │ │ │ ├── ln.php │ │ │ ├── log10.php │ │ │ ├── log2.php │ │ │ ├── negative.php │ │ │ ├── pow.php │ │ │ ├── rho.php │ │ │ ├── sec.php │ │ │ ├── sech.php │ │ │ ├── sin.php │ │ │ ├── sinh.php │ │ │ ├── sqrt.php │ │ │ ├── tan.php │ │ │ ├── tanh.php │ │ │ └── theta.php │ │ │ └── operations │ │ │ ├── add.php │ │ │ ├── divideby.php │ │ │ ├── divideinto.php │ │ │ ├── multiply.php │ │ │ └── subtract.php │ ├── composer.json │ ├── examples │ │ ├── complexTest.php │ │ ├── testFunctions.php │ │ └── testOperations.php │ └── license.md └── matrix │ ├── .github │ └── workflows │ │ └── main.yaml │ ├── README.md │ ├── buildPhar.php │ ├── classes │ └── src │ │ ├── Builder.php │ │ ├── Decomposition │ │ ├── Decomposition.php │ │ ├── LU.php │ │ └── QR.php │ │ ├── Exception.php │ │ ├── Functions.php │ │ ├── Matrix.php │ │ ├── Operators │ │ ├── Addition.php │ │ ├── DirectSum.php │ │ ├── Division.php │ │ ├── Multiplication.php │ │ ├── Operator.php │ │ └── Subtraction.php │ │ ├── functions │ │ ├── adjoint.php │ │ ├── antidiagonal.php │ │ ├── cofactors.php │ │ ├── determinant.php │ │ ├── diagonal.php │ │ ├── identity.php │ │ ├── inverse.php │ │ ├── minors.php │ │ ├── trace.php │ │ └── transpose.php │ │ └── operations │ │ ├── add.php │ │ ├── directsum.php │ │ ├── divideby.php │ │ ├── divideinto.php │ │ ├── multiply.php │ │ └── subtract.php │ ├── composer.json │ ├── examples │ └── test.php │ ├── infection.json.dist │ ├── license.md │ └── phpstan.neon ├── myclabs └── php-enum │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ ├── psalm.xml │ └── src │ ├── Enum.php │ └── PHPUnit │ └── Comparator.php ├── phpoffice └── phpspreadsheet │ ├── .phpcs.xml.dist │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── PhpSpreadsheet │ ├── Calculation │ ├── Calculation.php │ ├── Category.php │ ├── Database.php │ ├── DateTime.php │ ├── Engine │ │ ├── CyclicReferenceStack.php │ │ └── Logger.php │ ├── Engineering.php │ ├── Engineering │ │ └── ConvertUOM.php │ ├── Exception.php │ ├── ExceptionHandler.php │ ├── Financial.php │ ├── FormulaParser.php │ ├── FormulaToken.php │ ├── Functions.php │ ├── Logical.php │ ├── LookupRef.php │ ├── MathTrig.php │ ├── Statistical.php │ ├── TextData.php │ ├── Token │ │ └── Stack.php │ ├── Web.php │ ├── functionlist.txt │ └── locale │ │ ├── bg │ │ ├── config │ │ └── functions │ │ ├── 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 │ ├── Cell │ ├── AddressHelper.php │ ├── AdvancedValueBinder.php │ ├── Cell.php │ ├── Coordinate.php │ ├── DataType.php │ ├── DataValidation.php │ ├── DataValidator.php │ ├── DefaultValueBinder.php │ ├── Hyperlink.php │ ├── IValueBinder.php │ └── StringValueBinder.php │ ├── Chart │ ├── Axis.php │ ├── Chart.php │ ├── DataSeries.php │ ├── DataSeriesValues.php │ ├── Exception.php │ ├── GridLines.php │ ├── Layout.php │ ├── Legend.php │ ├── PlotArea.php │ ├── Properties.php │ ├── Renderer │ │ ├── IRenderer.php │ │ ├── JpGraph.php │ │ └── PHP Charting Libraries.txt │ └── Title.php │ ├── Collection │ ├── Cells.php │ ├── CellsFactory.php │ └── Memory.php │ ├── Comment.php │ ├── DefinedName.php │ ├── Document │ ├── Properties.php │ └── Security.php │ ├── DocumentGenerator.php │ ├── Exception.php │ ├── HashTable.php │ ├── Helper │ ├── Html.php │ └── Sample.php │ ├── IComparable.php │ ├── IOFactory.php │ ├── NamedFormula.php │ ├── NamedRange.php │ ├── Reader │ ├── BaseReader.php │ ├── Csv.php │ ├── DefaultReadFilter.php │ ├── Exception.php │ ├── Gnumeric.php │ ├── Gnumeric │ │ └── PageSetup.php │ ├── Html.php │ ├── IReadFilter.php │ ├── IReader.php │ ├── Ods.php │ ├── Ods │ │ ├── PageSettings.php │ │ └── Properties.php │ ├── Security │ │ └── XmlScanner.php │ ├── Slk.php │ ├── Xls.php │ ├── Xls │ │ ├── Color.php │ │ ├── Color │ │ │ ├── BIFF5.php │ │ │ ├── BIFF8.php │ │ │ └── BuiltIn.php │ │ ├── ErrorCode.php │ │ ├── Escher.php │ │ ├── MD5.php │ │ ├── RC4.php │ │ └── Style │ │ │ ├── Border.php │ │ │ └── FillPattern.php │ ├── Xlsx.php │ ├── Xlsx │ │ ├── AutoFilter.php │ │ ├── BaseParserClass.php │ │ ├── Chart.php │ │ ├── ColumnAndRowAttributes.php │ │ ├── ConditionalStyles.php │ │ ├── DataValidations.php │ │ ├── Hyperlinks.php │ │ ├── PageSetup.php │ │ ├── Properties.php │ │ ├── SheetViewOptions.php │ │ ├── SheetViews.php │ │ ├── Styles.php │ │ └── Theme.php │ ├── Xml.php │ └── Xml │ │ └── PageSettings.php │ ├── ReferenceHelper.php │ ├── RichText │ ├── ITextElement.php │ ├── RichText.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 │ ├── File.php │ ├── Font.php │ ├── JAMA │ │ ├── CHANGELOG.TXT │ │ ├── CholeskyDecomposition.php │ │ ├── EigenvalueDecomposition.php │ │ ├── LUDecomposition.php │ │ ├── Matrix.php │ │ ├── QRDecomposition.php │ │ ├── SingularValueDecomposition.php │ │ └── utils │ │ │ └── Maths.php │ ├── OLE.php │ ├── OLE │ │ ├── ChainedBlockStream.php │ │ ├── PPS.php │ │ └── PPS │ │ │ ├── File.php │ │ │ └── Root.php │ ├── OLERead.php │ ├── PasswordHasher.php │ ├── StringHelper.php │ ├── TimeZone.php │ ├── Trend │ │ ├── BestFit.php │ │ ├── ExponentialBestFit.php │ │ ├── LinearBestFit.php │ │ ├── LogarithmicBestFit.php │ │ ├── PolynomialBestFit.php │ │ ├── PowerBestFit.php │ │ └── Trend.php │ ├── XMLWriter.php │ └── Xls.php │ ├── Spreadsheet.php │ ├── Style │ ├── Alignment.php │ ├── Border.php │ ├── Borders.php │ ├── Color.php │ ├── Conditional.php │ ├── Fill.php │ ├── Font.php │ ├── NumberFormat.php │ ├── Protection.php │ ├── Style.php │ └── Supervisor.php │ ├── Worksheet │ ├── AutoFilter.php │ ├── AutoFilter │ │ ├── Column.php │ │ └── Column │ │ │ └── Rule.php │ ├── BaseDrawing.php │ ├── CellIterator.php │ ├── Column.php │ ├── ColumnCellIterator.php │ ├── ColumnDimension.php │ ├── ColumnIterator.php │ ├── Dimension.php │ ├── Drawing.php │ ├── Drawing │ │ └── Shadow.php │ ├── HeaderFooter.php │ ├── HeaderFooterDrawing.php │ ├── Iterator.php │ ├── MemoryDrawing.php │ ├── PageMargins.php │ ├── PageSetup.php │ ├── Protection.php │ ├── Row.php │ ├── RowCellIterator.php │ ├── RowDimension.php │ ├── RowIterator.php │ ├── SheetView.php │ └── Worksheet.php │ └── Writer │ ├── BaseWriter.php │ ├── Csv.php │ ├── Exception.php │ ├── Html.php │ ├── IWriter.php │ ├── Ods.php │ ├── Ods │ ├── Cell │ │ └── Comment.php │ ├── Content.php │ ├── Formula.php │ ├── Meta.php │ ├── MetaInf.php │ ├── Mimetype.php │ ├── NamedExpressions.php │ ├── Settings.php │ ├── Styles.php │ ├── Thumbnails.php │ └── WriterPart.php │ ├── Pdf.php │ ├── Pdf │ ├── Dompdf.php │ ├── Mpdf.php │ └── Tcpdf.php │ ├── Xls.php │ ├── Xls │ ├── BIFFwriter.php │ ├── Escher.php │ ├── Font.php │ ├── Parser.php │ ├── Workbook.php │ ├── Worksheet.php │ └── Xf.php │ ├── Xlsx.php │ └── Xlsx │ ├── Chart.php │ ├── Comments.php │ ├── ContentTypes.php │ ├── DefinedNames.php │ ├── DocProps.php │ ├── Drawing.php │ ├── Rels.php │ ├── RelsRibbon.php │ ├── RelsVBA.php │ ├── StringTable.php │ ├── Style.php │ ├── Theme.php │ ├── Workbook.php │ ├── Worksheet.php │ ├── WriterPart.php │ └── Xlfn.php ├── psr ├── http-client │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ClientExceptionInterface.php │ │ ├── ClientInterface.php │ │ ├── NetworkExceptionInterface.php │ │ └── RequestExceptionInterface.php ├── http-factory │ ├── .gitignore │ ├── .pullapprove.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── RequestFactoryInterface.php │ │ ├── ResponseFactoryInterface.php │ │ ├── ServerRequestFactoryInterface.php │ │ ├── StreamFactoryInterface.php │ │ ├── UploadedFileFactoryInterface.php │ │ └── UriFactoryInterface.php ├── http-message │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── MessageInterface.php │ │ ├── RequestInterface.php │ │ ├── ResponseInterface.php │ │ ├── ServerRequestInterface.php │ │ ├── StreamInterface.php │ │ ├── UploadedFileInterface.php │ │ └── UriInterface.php └── simple-cache │ ├── .editorconfig │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ └── src │ ├── CacheException.php │ ├── CacheInterface.php │ └── InvalidArgumentException.php └── symfony └── polyfill-mbstring ├── LICENSE ├── Mbstring.php ├── README.md ├── Resources └── unidata │ ├── lowerCase.php │ ├── titleCaseRegexp.php │ └── upperCase.php ├── bootstrap.php ├── bootstrap80.php └── composer.json /.dockerignore: -------------------------------------------------------------------------------- 1 | Caddyfile 2 | 3 | .github 4 | .vscode -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/.htaccess -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/Caddyfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/README.md -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/.htaccess -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/ion_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/ion_auth.php -------------------------------------------------------------------------------- /application/config/jwt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/jwt.php -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/memcached.php -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/migration.php -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/pagination.php -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/rest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/rest.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/controllers/Home.php -------------------------------------------------------------------------------- /application/controllers/Welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/controllers/Welcome.php -------------------------------------------------------------------------------- /application/controllers/admin/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/controllers/admin/Auth.php -------------------------------------------------------------------------------- /application/controllers/admin/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/controllers/admin/Dashboard.php -------------------------------------------------------------------------------- /application/controllers/admin/Data_pemilih.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/controllers/admin/Data_pemilih.php -------------------------------------------------------------------------------- /application/controllers/admin/Filemanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/controllers/admin/Filemanager.php -------------------------------------------------------------------------------- /application/controllers/admin/Kandidat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/controllers/admin/Kandidat.php -------------------------------------------------------------------------------- /application/controllers/admin/Kelas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/controllers/admin/Kelas.php -------------------------------------------------------------------------------- /application/controllers/admin/Laporan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/controllers/admin/Laporan.php -------------------------------------------------------------------------------- /application/controllers/admin/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/controllers/admin/Settings.php -------------------------------------------------------------------------------- /application/controllers/api/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/controllers/api/Users.php -------------------------------------------------------------------------------- /application/controllers/api/Vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/controllers/api/Vote.php -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/controllers/index.html -------------------------------------------------------------------------------- /application/controllers/user/Userauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/controllers/user/Userauth.php -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/core/index.html -------------------------------------------------------------------------------- /application/helpers/exportexcel_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/helpers/exportexcel_helper.php -------------------------------------------------------------------------------- /application/helpers/general_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/helpers/general_helper.php -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/helpers/index.html -------------------------------------------------------------------------------- /application/helpers/my_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/helpers/my_helper.php -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/arabic/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/arabic/auth_lang.php -------------------------------------------------------------------------------- /application/language/arabic/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/arabic/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/bengali/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/bengali/auth_lang.php -------------------------------------------------------------------------------- /application/language/bengali/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/bengali/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/bulgarian/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/bulgarian/auth_lang.php -------------------------------------------------------------------------------- /application/language/bulgarian/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/bulgarian/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/catalan/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/catalan/auth_lang.php -------------------------------------------------------------------------------- /application/language/catalan/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/catalan/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/croatian/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/croatian/auth_lang.php -------------------------------------------------------------------------------- /application/language/croatian/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/croatian/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/czech/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/czech/auth_lang.php -------------------------------------------------------------------------------- /application/language/czech/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/czech/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/danish/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/danish/auth_lang.php -------------------------------------------------------------------------------- /application/language/danish/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/danish/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/dutch/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/dutch/auth_lang.php -------------------------------------------------------------------------------- /application/language/dutch/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/dutch/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/english/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/english/auth_lang.php -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/english/index.html -------------------------------------------------------------------------------- /application/language/english/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/english/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/estonian/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/estonian/auth_lang.php -------------------------------------------------------------------------------- /application/language/estonian/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/estonian/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/filipino/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/filipino/auth_lang.php -------------------------------------------------------------------------------- /application/language/filipino/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/filipino/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/finnish/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/finnish/auth_lang.php -------------------------------------------------------------------------------- /application/language/finnish/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/finnish/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/french/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/french/auth_lang.php -------------------------------------------------------------------------------- /application/language/french/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/french/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/german/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/german/auth_lang.php -------------------------------------------------------------------------------- /application/language/german/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/german/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/greek/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/greek/auth_lang.php -------------------------------------------------------------------------------- /application/language/greek/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/greek/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/hungarian/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/hungarian/auth_lang.php -------------------------------------------------------------------------------- /application/language/hungarian/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/hungarian/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/index.html -------------------------------------------------------------------------------- /application/language/indonesian/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/indonesian/auth_lang.php -------------------------------------------------------------------------------- /application/language/indonesian/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/indonesian/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/italian/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/italian/auth_lang.php -------------------------------------------------------------------------------- /application/language/italian/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/italian/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/japanese/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/japanese/auth_lang.php -------------------------------------------------------------------------------- /application/language/japanese/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/japanese/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/korean/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/korean/auth_lang.php -------------------------------------------------------------------------------- /application/language/korean/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/korean/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/lithuanian/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/lithuanian/auth_lang.php -------------------------------------------------------------------------------- /application/language/lithuanian/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/lithuanian/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/norwegian/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/norwegian/auth_lang.php -------------------------------------------------------------------------------- /application/language/norwegian/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/norwegian/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/persian/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/persian/auth_lang.php -------------------------------------------------------------------------------- /application/language/persian/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/persian/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/pirate/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/pirate/auth_lang.php -------------------------------------------------------------------------------- /application/language/pirate/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/pirate/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/polish/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/polish/auth_lang.php -------------------------------------------------------------------------------- /application/language/polish/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/polish/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/portuguese/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/portuguese/auth_lang.php -------------------------------------------------------------------------------- /application/language/portuguese/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/portuguese/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/romanian/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/romanian/auth_lang.php -------------------------------------------------------------------------------- /application/language/romanian/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/romanian/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/russian/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/russian/auth_lang.php -------------------------------------------------------------------------------- /application/language/russian/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/russian/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/slovak/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/slovak/auth_lang.php -------------------------------------------------------------------------------- /application/language/slovak/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/slovak/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/slovenian/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/slovenian/auth_lang.php -------------------------------------------------------------------------------- /application/language/slovenian/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/slovenian/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/spanish/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/spanish/auth_lang.php -------------------------------------------------------------------------------- /application/language/spanish/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/spanish/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/swedish/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/swedish/auth_lang.php -------------------------------------------------------------------------------- /application/language/swedish/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/swedish/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/thai/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/thai/auth_lang.php -------------------------------------------------------------------------------- /application/language/thai/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/thai/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/turkish/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/turkish/auth_lang.php -------------------------------------------------------------------------------- /application/language/turkish/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/turkish/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/ukrainian/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/ukrainian/auth_lang.php -------------------------------------------------------------------------------- /application/language/ukrainian/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/ukrainian/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/vietnamese/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/vietnamese/auth_lang.php -------------------------------------------------------------------------------- /application/language/vietnamese/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/vietnamese/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/zh_cn/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/zh_cn/auth_lang.php -------------------------------------------------------------------------------- /application/language/zh_cn/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/zh_cn/ion_auth_lang.php -------------------------------------------------------------------------------- /application/language/zh_tw/auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/zh_tw/auth_lang.php -------------------------------------------------------------------------------- /application/language/zh_tw/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/language/zh_tw/ion_auth_lang.php -------------------------------------------------------------------------------- /application/libraries/Authorization_Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/Authorization_Token.php -------------------------------------------------------------------------------- /application/libraries/Elfinder_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/Elfinder_lib.php -------------------------------------------------------------------------------- /application/libraries/Ion_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/Ion_auth.php -------------------------------------------------------------------------------- /application/libraries/elfinder/.tmp/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/elfinder/.tmp/.htaccess -------------------------------------------------------------------------------- /application/libraries/elfinder/MySQLStorage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/elfinder/MySQLStorage.sql -------------------------------------------------------------------------------- /application/libraries/elfinder/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/elfinder/autoload.php -------------------------------------------------------------------------------- /application/libraries/elfinder/connector.minimal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/elfinder/connector.minimal.php -------------------------------------------------------------------------------- /application/libraries/elfinder/editors/editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/elfinder/editors/editor.php -------------------------------------------------------------------------------- /application/libraries/elfinder/elFinder.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/elfinder/elFinder.class.php -------------------------------------------------------------------------------- /application/libraries/elfinder/elFinderPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/elfinder/elFinderPlugin.php -------------------------------------------------------------------------------- /application/libraries/elfinder/elFinderSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/elfinder/elFinderSession.php -------------------------------------------------------------------------------- /application/libraries/elfinder/libs/GdBmp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/elfinder/libs/GdBmp.php -------------------------------------------------------------------------------- /application/libraries/elfinder/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/elfinder/mime.types -------------------------------------------------------------------------------- /application/libraries/elfinder/resources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/elfinder/resources/image.png -------------------------------------------------------------------------------- /application/libraries/elfinder/resources/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/elfinder/resources/video.png -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/libraries/index.html -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/logs/index.html -------------------------------------------------------------------------------- /application/models/Api_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/models/Api_model.php -------------------------------------------------------------------------------- /application/models/Dashboard_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/models/Dashboard_model.php -------------------------------------------------------------------------------- /application/models/Data_pemilih_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/models/Data_pemilih_model.php -------------------------------------------------------------------------------- /application/models/Home_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/models/Home_model.php -------------------------------------------------------------------------------- /application/models/Ion_auth_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/models/Ion_auth_model.php -------------------------------------------------------------------------------- /application/models/Kandidat_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/models/Kandidat_model.php -------------------------------------------------------------------------------- /application/models/Kelas_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/models/Kelas_model.php -------------------------------------------------------------------------------- /application/models/Laporan_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/models/Laporan_model.php -------------------------------------------------------------------------------- /application/models/Setting_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/models/Setting_model.php -------------------------------------------------------------------------------- /application/models/Userauth_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/models/Userauth_model.php -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/models/index.html -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/third_party/index.html -------------------------------------------------------------------------------- /application/views/back/auth/change_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/auth/change_password.php -------------------------------------------------------------------------------- /application/views/back/auth/create_group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/auth/create_group.php -------------------------------------------------------------------------------- /application/views/back/auth/create_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/auth/create_user.php -------------------------------------------------------------------------------- /application/views/back/auth/deactivate_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/auth/deactivate_user.php -------------------------------------------------------------------------------- /application/views/back/auth/edit_group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/auth/edit_group.php -------------------------------------------------------------------------------- /application/views/back/auth/edit_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/auth/edit_user.php -------------------------------------------------------------------------------- /application/views/back/auth/email/activate.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/auth/email/activate.tpl.php -------------------------------------------------------------------------------- /application/views/back/auth/forgot_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/auth/forgot_password.php -------------------------------------------------------------------------------- /application/views/back/auth/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/auth/group.php -------------------------------------------------------------------------------- /application/views/back/auth/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/auth/index.php -------------------------------------------------------------------------------- /application/views/back/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/auth/login.php -------------------------------------------------------------------------------- /application/views/back/auth/reset_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/auth/reset_password.php -------------------------------------------------------------------------------- /application/views/back/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/dashboard.php -------------------------------------------------------------------------------- /application/views/back/filemanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/filemanager.php -------------------------------------------------------------------------------- /application/views/back/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/footer.php -------------------------------------------------------------------------------- /application/views/back/head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/head.php -------------------------------------------------------------------------------- /application/views/back/js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/js.php -------------------------------------------------------------------------------- /application/views/back/kandidat/kandidat_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/kandidat/kandidat_form.php -------------------------------------------------------------------------------- /application/views/back/kandidat/kandidat_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/kandidat/kandidat_list.php -------------------------------------------------------------------------------- /application/views/back/kandidat/kandidat_read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/kandidat/kandidat_read.php -------------------------------------------------------------------------------- /application/views/back/kelas/kelas_cetak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/kelas/kelas_cetak.php -------------------------------------------------------------------------------- /application/views/back/kelas/kelas_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/kelas/kelas_form.php -------------------------------------------------------------------------------- /application/views/back/kelas/kelas_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/kelas/kelas_import.php -------------------------------------------------------------------------------- /application/views/back/kelas/kelas_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/kelas/kelas_list.php -------------------------------------------------------------------------------- /application/views/back/kelas/kelas_read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/kelas/kelas_read.php -------------------------------------------------------------------------------- /application/views/back/laporan/daftar_hadir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/laporan/daftar_hadir.php -------------------------------------------------------------------------------- /application/views/back/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/meta.php -------------------------------------------------------------------------------- /application/views/back/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/settings.php -------------------------------------------------------------------------------- /application/views/back/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/back/sidebar.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/errors/cli/error_404.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/errors/cli/error_db.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/errors/cli/error_exception.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/errors/cli/error_general.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/errors/cli/error_php.php -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/errors/cli/index.html -------------------------------------------------------------------------------- /application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/errors/html/error_404.php -------------------------------------------------------------------------------- /application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/errors/html/error_db.php -------------------------------------------------------------------------------- /application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/errors/html/error_exception.php -------------------------------------------------------------------------------- /application/views/errors/html/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/errors/html/error_general.php -------------------------------------------------------------------------------- /application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/errors/html/error_php.php -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/errors/html/index.html -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/errors/index.html -------------------------------------------------------------------------------- /application/views/front/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/front/footer.php -------------------------------------------------------------------------------- /application/views/front/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/front/home.php -------------------------------------------------------------------------------- /application/views/front/js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/front/js.php -------------------------------------------------------------------------------- /application/views/front/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/front/login.php -------------------------------------------------------------------------------- /application/views/front/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/front/main.php -------------------------------------------------------------------------------- /application/views/front/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/front/meta.php -------------------------------------------------------------------------------- /application/views/front/mobile/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/front/mobile/home.php -------------------------------------------------------------------------------- /application/views/front/navbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/front/navbar.php -------------------------------------------------------------------------------- /application/views/front/terimakasih.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/front/terimakasih.php -------------------------------------------------------------------------------- /application/views/front/vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/front/vote.php -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/index.html -------------------------------------------------------------------------------- /application/views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/application/views/welcome_message.php -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /assets/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /assets/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/css/aos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/css/aos.css -------------------------------------------------------------------------------- /assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/css/elfinder.full.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/css/elfinder.full.css -------------------------------------------------------------------------------- /assets/css/elfinder.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/css/elfinder.min.css -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/css/theme.css -------------------------------------------------------------------------------- /assets/datatables/dataTables.bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/datatables/dataTables.bootstrap.css -------------------------------------------------------------------------------- /assets/datatables/dataTables.bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/datatables/dataTables.bootstrap.js -------------------------------------------------------------------------------- /assets/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /assets/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /assets/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/datatables/images/sort_both.png -------------------------------------------------------------------------------- /assets/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /assets/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /assets/datatables/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/datatables/jquery.dataTables.js -------------------------------------------------------------------------------- /assets/img/arrows-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/arrows-active.png -------------------------------------------------------------------------------- /assets/img/arrows-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/arrows-normal.png -------------------------------------------------------------------------------- /assets/img/crop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/crop.gif -------------------------------------------------------------------------------- /assets/img/dialogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/dialogs.png -------------------------------------------------------------------------------- /assets/img/edit_aceeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/edit_aceeditor.png -------------------------------------------------------------------------------- /assets/img/edit_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/edit_ckeditor.png -------------------------------------------------------------------------------- /assets/img/edit_ckeditor5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/edit_ckeditor5.png -------------------------------------------------------------------------------- /assets/img/edit_codemirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/edit_codemirror.png -------------------------------------------------------------------------------- /assets/img/edit_creativecloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/edit_creativecloud.png -------------------------------------------------------------------------------- /assets/img/edit_onlineconvert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/edit_onlineconvert.png -------------------------------------------------------------------------------- /assets/img/edit_pixlreditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/edit_pixlreditor.png -------------------------------------------------------------------------------- /assets/img/edit_pixlrexpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/edit_pixlrexpress.png -------------------------------------------------------------------------------- /assets/img/edit_simplemde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/edit_simplemde.png -------------------------------------------------------------------------------- /assets/img/edit_tinymce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/edit_tinymce.png -------------------------------------------------------------------------------- /assets/img/edit_tuiimgedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/edit_tuiimgedit.png -------------------------------------------------------------------------------- /assets/img/edit_zohooffice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/edit_zohooffice.png -------------------------------------------------------------------------------- /assets/img/editor-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/editor-icons.png -------------------------------------------------------------------------------- /assets/img/icons-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/icons-big.png -------------------------------------------------------------------------------- /assets/img/icons-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/icons-big.svg -------------------------------------------------------------------------------- /assets/img/icons-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/icons-small.png -------------------------------------------------------------------------------- /assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/logo.png -------------------------------------------------------------------------------- /assets/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/progress.gif -------------------------------------------------------------------------------- /assets/img/quicklook-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/quicklook-bg.png -------------------------------------------------------------------------------- /assets/img/quicklook-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/quicklook-icons.png -------------------------------------------------------------------------------- /assets/img/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/resize.png -------------------------------------------------------------------------------- /assets/img/spinner-mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/spinner-mini.gif -------------------------------------------------------------------------------- /assets/img/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/toolbar.png -------------------------------------------------------------------------------- /assets/img/trashmesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/trashmesh.png -------------------------------------------------------------------------------- /assets/img/tui-icon-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/tui-icon-a.svg -------------------------------------------------------------------------------- /assets/img/tui-icon-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/tui-icon-b.svg -------------------------------------------------------------------------------- /assets/img/tui-icon-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/tui-icon-c.svg -------------------------------------------------------------------------------- /assets/img/tui-icon-d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/tui-icon-d.svg -------------------------------------------------------------------------------- /assets/img/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /assets/img/volume_icon_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_box.png -------------------------------------------------------------------------------- /assets/img/volume_icon_box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_box.svg -------------------------------------------------------------------------------- /assets/img/volume_icon_dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_dropbox.png -------------------------------------------------------------------------------- /assets/img/volume_icon_dropbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_dropbox.svg -------------------------------------------------------------------------------- /assets/img/volume_icon_ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_ftp.png -------------------------------------------------------------------------------- /assets/img/volume_icon_ftp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_ftp.svg -------------------------------------------------------------------------------- /assets/img/volume_icon_googledrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_googledrive.png -------------------------------------------------------------------------------- /assets/img/volume_icon_googledrive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_googledrive.svg -------------------------------------------------------------------------------- /assets/img/volume_icon_local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_local.png -------------------------------------------------------------------------------- /assets/img/volume_icon_local.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_local.svg -------------------------------------------------------------------------------- /assets/img/volume_icon_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_network.png -------------------------------------------------------------------------------- /assets/img/volume_icon_network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_network.svg -------------------------------------------------------------------------------- /assets/img/volume_icon_onedrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_onedrive.png -------------------------------------------------------------------------------- /assets/img/volume_icon_onedrive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_onedrive.svg -------------------------------------------------------------------------------- /assets/img/volume_icon_sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_sql.png -------------------------------------------------------------------------------- /assets/img/volume_icon_sql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_sql.svg -------------------------------------------------------------------------------- /assets/img/volume_icon_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_trash.png -------------------------------------------------------------------------------- /assets/img/volume_icon_trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_trash.svg -------------------------------------------------------------------------------- /assets/img/volume_icon_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_zip.png -------------------------------------------------------------------------------- /assets/img/volume_icon_zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/img/volume_icon_zip.svg -------------------------------------------------------------------------------- /assets/js/Countup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/Countup.js -------------------------------------------------------------------------------- /assets/js/aos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/aos.js -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/js/elfinder.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/elfinder.full.js -------------------------------------------------------------------------------- /assets/js/elfinder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/elfinder.min.js -------------------------------------------------------------------------------- /assets/js/extras/editors.default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/extras/editors.default.js -------------------------------------------------------------------------------- /assets/js/extras/editors.default.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/extras/editors.default.min.js -------------------------------------------------------------------------------- /assets/js/extras/quicklook.googledocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/extras/quicklook.googledocs.js -------------------------------------------------------------------------------- /assets/js/extras/quicklook.googledocs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/extras/quicklook.googledocs.min.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.LANG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.LANG.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.ar.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.bg.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.ca.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.cs.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.da.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.de.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.el.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.es.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.fa.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.fallback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.fallback.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.fo.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.fr.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.fr_CA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.fr_CA.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.he.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.hr.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.hu.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.id.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.it.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.ja.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.ko.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.nl.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.no.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.pl.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.pt_BR.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.ro.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.ru.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.si.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.sk.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.sl.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.sr.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.sv.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.tr.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.ug_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.ug_CN.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.uk.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.vi.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.zh_CN.js -------------------------------------------------------------------------------- /assets/js/i18n/elfinder.zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/elfinder.zh_TW.js -------------------------------------------------------------------------------- /assets/js/i18n/help/cs.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/help/cs.html.js -------------------------------------------------------------------------------- /assets/js/i18n/help/en.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/help/en.html.js -------------------------------------------------------------------------------- /assets/js/i18n/help/es.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/help/es.html.js -------------------------------------------------------------------------------- /assets/js/i18n/help/ja.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/help/ja.html.js -------------------------------------------------------------------------------- /assets/js/i18n/help/ko.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/help/ko.html.js -------------------------------------------------------------------------------- /assets/js/i18n/help/pl.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/help/pl.html.js -------------------------------------------------------------------------------- /assets/js/i18n/help/ru.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/help/ru.html.js -------------------------------------------------------------------------------- /assets/js/i18n/help/sk.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/i18n/help/sk.html.js -------------------------------------------------------------------------------- /assets/js/jquery-1.11.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/jquery-1.11.2.min.js -------------------------------------------------------------------------------- /assets/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/js/moment-timezone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/moment-timezone.js -------------------------------------------------------------------------------- /assets/js/momentjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/momentjs.min.js -------------------------------------------------------------------------------- /assets/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/popper.min.js -------------------------------------------------------------------------------- /assets/js/proxy/elFinderSupportVer1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/js/proxy/elFinderSupportVer1.js -------------------------------------------------------------------------------- /assets/sample/kelas/sample-csv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/sample/kelas/sample-csv.csv -------------------------------------------------------------------------------- /assets/sample/kelas/sample-xls.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/sample/kelas/sample-xls.xls -------------------------------------------------------------------------------- /assets/sample/kelas/sample-xlsx.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/sample/kelas/sample-xlsx.xlsx -------------------------------------------------------------------------------- /assets/sample/pemilih/sample-csv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/sample/pemilih/sample-csv.csv -------------------------------------------------------------------------------- /assets/sample/pemilih/sample-xls.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/sample/pemilih/sample-xls.xls -------------------------------------------------------------------------------- /assets/sample/pemilih/sample-xlsx.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/sample/pemilih/sample-xlsx.xlsx -------------------------------------------------------------------------------- /assets/sounds/rm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/sounds/rm.wav -------------------------------------------------------------------------------- /assets/template/backend/bower_components/Flot/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/bower_components/Flot/jquery.js -------------------------------------------------------------------------------- /assets/template/backend/bower_components/PACE/pace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/bower_components/PACE/pace.js -------------------------------------------------------------------------------- /assets/template/backend/bower_components/mocha/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/bower_components/mocha/mocha.css -------------------------------------------------------------------------------- /assets/template/backend/bower_components/mocha/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/bower_components/mocha/mocha.js -------------------------------------------------------------------------------- /assets/template/backend/dist/css/adminlte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/css/adminlte.css -------------------------------------------------------------------------------- /assets/template/backend/dist/css/adminlte.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/css/adminlte.css.map -------------------------------------------------------------------------------- /assets/template/backend/dist/css/adminlte.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/css/adminlte.min.css -------------------------------------------------------------------------------- /assets/template/backend/dist/css/adminlte.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/css/adminlte.min.css.map -------------------------------------------------------------------------------- /assets/template/backend/dist/css/skins/_all-skins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/css/skins/_all-skins.css -------------------------------------------------------------------------------- /assets/template/backend/dist/css/skins/skin-black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/css/skins/skin-black.css -------------------------------------------------------------------------------- /assets/template/backend/dist/css/skins/skin-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/css/skins/skin-blue.css -------------------------------------------------------------------------------- /assets/template/backend/dist/css/skins/skin-blue.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/css/skins/skin-blue.min.css -------------------------------------------------------------------------------- /assets/template/backend/dist/css/skins/skin-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/css/skins/skin-green.css -------------------------------------------------------------------------------- /assets/template/backend/dist/css/skins/skin-purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/css/skins/skin-purple.css -------------------------------------------------------------------------------- /assets/template/backend/dist/css/skins/skin-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/css/skins/skin-red.css -------------------------------------------------------------------------------- /assets/template/backend/dist/css/skins/skin-red.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/css/skins/skin-red.min.css -------------------------------------------------------------------------------- /assets/template/backend/dist/css/skins/skin-yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/css/skins/skin-yellow.css -------------------------------------------------------------------------------- /assets/template/backend/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/avatar.png -------------------------------------------------------------------------------- /assets/template/backend/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/avatar04.png -------------------------------------------------------------------------------- /assets/template/backend/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/avatar2.png -------------------------------------------------------------------------------- /assets/template/backend/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/avatar3.png -------------------------------------------------------------------------------- /assets/template/backend/dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/avatar5.png -------------------------------------------------------------------------------- /assets/template/backend/dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /assets/template/backend/dist/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/credit/mastercard.png -------------------------------------------------------------------------------- /assets/template/backend/dist/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/credit/mestro.png -------------------------------------------------------------------------------- /assets/template/backend/dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /assets/template/backend/dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /assets/template/backend/dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/credit/visa.png -------------------------------------------------------------------------------- /assets/template/backend/dist/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/default-50x50.gif -------------------------------------------------------------------------------- /assets/template/backend/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/icons.png -------------------------------------------------------------------------------- /assets/template/backend/dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/photo1.png -------------------------------------------------------------------------------- /assets/template/backend/dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/photo2.png -------------------------------------------------------------------------------- /assets/template/backend/dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/photo3.jpg -------------------------------------------------------------------------------- /assets/template/backend/dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/photo4.jpg -------------------------------------------------------------------------------- /assets/template/backend/dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /assets/template/backend/dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /assets/template/backend/dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /assets/template/backend/dist/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/user4-128x128.jpg -------------------------------------------------------------------------------- /assets/template/backend/dist/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/user5-128x128.jpg -------------------------------------------------------------------------------- /assets/template/backend/dist/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/user6-128x128.jpg -------------------------------------------------------------------------------- /assets/template/backend/dist/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/user7-128x128.jpg -------------------------------------------------------------------------------- /assets/template/backend/dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /assets/template/backend/dist/js/adminlte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/js/adminlte.js -------------------------------------------------------------------------------- /assets/template/backend/dist/js/adminlte.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/js/adminlte.min.js -------------------------------------------------------------------------------- /assets/template/backend/dist/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/js/demo.js -------------------------------------------------------------------------------- /assets/template/backend/dist/js/pages/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/js/pages/dashboard.js -------------------------------------------------------------------------------- /assets/template/backend/dist/js/pages/dashboard2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/dist/js/pages/dashboard2.js -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/all.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/_all.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/aero.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/aero.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/blue.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/blue.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/flat.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/flat.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/green.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/green.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/grey.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/grey.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/orange.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/orange.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/pink.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/pink.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/purple.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/purple.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/red.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/yellow.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/icheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/icheck.js -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/icheck.min.js -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/line/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/line/_all.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/line/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/line/aero.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/line/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/line/blue.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/line/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/line/green.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/line/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/line/grey.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/line/line.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/line/line.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/line/line.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/line/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/line/orange.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/line/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/line/pink.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/line/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/line/purple.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/line/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/line/red.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/line/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/line/yellow.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/minimal/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/minimal/red.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/minimal/red.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/square/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/square/_all.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/square/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/square/aero.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/square/aero.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/square/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/square/blue.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/square/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/square/grey.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/square/grey.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/square/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/square/pink.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/square/pink.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/square/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/square/red.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/iCheck/square/red.png -------------------------------------------------------------------------------- /assets/template/backend/plugins/jQueryUI/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/jQueryUI/jquery-ui.js -------------------------------------------------------------------------------- /assets/template/backend/plugins/pace/pace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/pace/pace.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/pace/pace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/pace/pace.js -------------------------------------------------------------------------------- /assets/template/backend/plugins/pace/pace.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/pace/pace.min.css -------------------------------------------------------------------------------- /assets/template/backend/plugins/pace/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/backend/plugins/pace/pace.min.js -------------------------------------------------------------------------------- /assets/template/frontend/css/adminlte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/frontend/css/adminlte.css -------------------------------------------------------------------------------- /assets/template/frontend/css/adminlte.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/frontend/css/adminlte.css.map -------------------------------------------------------------------------------- /assets/template/frontend/css/adminlte.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/frontend/css/adminlte.min.css -------------------------------------------------------------------------------- /assets/template/frontend/css/adminlte.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/frontend/css/adminlte.min.css.map -------------------------------------------------------------------------------- /assets/template/frontend/css/heroic-features.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/frontend/css/heroic-features.css -------------------------------------------------------------------------------- /assets/template/frontend/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/frontend/css/main.css -------------------------------------------------------------------------------- /assets/template/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/frontend/index.html -------------------------------------------------------------------------------- /assets/template/frontend/plugins/chart.js/Chart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/frontend/plugins/chart.js/Chart.css -------------------------------------------------------------------------------- /assets/template/frontend/plugins/chart.js/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/frontend/plugins/chart.js/Chart.js -------------------------------------------------------------------------------- /assets/template/frontend/plugins/chart.js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/frontend/plugins/chart.js/Chart.min.js -------------------------------------------------------------------------------- /assets/template/frontend/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/frontend/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /assets/template/frontend/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/frontend/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /assets/template/frontend/vendor/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/frontend/vendor/jquery/jquery.min.map -------------------------------------------------------------------------------- /assets/template/frontend/vendor/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/template/frontend/vendor/jquery/jquery.slim.js -------------------------------------------------------------------------------- /assets/uploads/001.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/uploads/001.xlsx -------------------------------------------------------------------------------- /assets/uploads/01.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/uploads/01.xlsx -------------------------------------------------------------------------------- /assets/uploads/011.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/uploads/011.xlsx -------------------------------------------------------------------------------- /assets/uploads/012.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/uploads/012.xlsx -------------------------------------------------------------------------------- /assets/uploads/kandidat/64898_0_QS_Etikett_QV02WE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/uploads/kandidat/64898_0_QS_Etikett_QV02WE.jpg -------------------------------------------------------------------------------- /assets/uploads/kandidat/Asset_3099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/uploads/kandidat/Asset_3099.png -------------------------------------------------------------------------------- /assets/uploads/kandidat/MPK_VEC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/uploads/kandidat/MPK_VEC.png -------------------------------------------------------------------------------- /assets/uploads/kandidat/OSMASA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/assets/uploads/kandidat/OSMASA.jpg -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/composer.lock -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /evoting-with-dataset.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/evoting-with-dataset.sql -------------------------------------------------------------------------------- /evoting.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/evoting.sql -------------------------------------------------------------------------------- /harviacode/core/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/bootstrap.min.css -------------------------------------------------------------------------------- /harviacode/core/create_config_pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/create_config_pagination.php -------------------------------------------------------------------------------- /harviacode/core/create_controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/create_controller.php -------------------------------------------------------------------------------- /harviacode/core/create_exportexcel_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/create_exportexcel_helper.php -------------------------------------------------------------------------------- /harviacode/core/create_libraries_datatables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/create_libraries_datatables.php -------------------------------------------------------------------------------- /harviacode/core/create_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/create_model.php -------------------------------------------------------------------------------- /harviacode/core/create_pdf_library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/create_pdf_library.php -------------------------------------------------------------------------------- /harviacode/core/create_view_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/create_view_form.php -------------------------------------------------------------------------------- /harviacode/core/create_view_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/create_view_list.php -------------------------------------------------------------------------------- /harviacode/core/create_view_list_datatables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/create_view_list_datatables.php -------------------------------------------------------------------------------- /harviacode/core/create_view_list_doc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/create_view_list_doc.php -------------------------------------------------------------------------------- /harviacode/core/create_view_list_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/create_view_list_pdf.php -------------------------------------------------------------------------------- /harviacode/core/create_view_read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/create_view_read.php -------------------------------------------------------------------------------- /harviacode/core/harviacode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/harviacode.php -------------------------------------------------------------------------------- /harviacode/core/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/helper.php -------------------------------------------------------------------------------- /harviacode/core/process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/process.php -------------------------------------------------------------------------------- /harviacode/core/setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/core/setting.php -------------------------------------------------------------------------------- /harviacode/core/settingjson.cfg: -------------------------------------------------------------------------------- 1 | { 2 | "target": "output/", 3 | "copyassets": "0" 4 | } -------------------------------------------------------------------------------- /harviacode/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/index.php -------------------------------------------------------------------------------- /harviacode/output/config/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/output/config/index.php -------------------------------------------------------------------------------- /harviacode/output/controllers/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/output/controllers/index.php -------------------------------------------------------------------------------- /harviacode/output/helpers/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/output/helpers/index.php -------------------------------------------------------------------------------- /harviacode/output/models/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/output/models/index.php -------------------------------------------------------------------------------- /harviacode/output/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/harviacode/output/views/index.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/index.php -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/.htaccess -------------------------------------------------------------------------------- /system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/Benchmark.php -------------------------------------------------------------------------------- /system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/Common.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/Controller.php -------------------------------------------------------------------------------- /system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/Exceptions.php -------------------------------------------------------------------------------- /system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/Hooks.php -------------------------------------------------------------------------------- /system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/Input.php -------------------------------------------------------------------------------- /system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/Lang.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/Log.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/Output.php -------------------------------------------------------------------------------- /system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/Router.php -------------------------------------------------------------------------------- /system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/Security.php -------------------------------------------------------------------------------- /system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/URI.php -------------------------------------------------------------------------------- /system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/Utf8.php -------------------------------------------------------------------------------- /system/core/compat/hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/compat/hash.php -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/compat/index.html -------------------------------------------------------------------------------- /system/core/compat/mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/compat/mbstring.php -------------------------------------------------------------------------------- /system/core/compat/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/compat/password.php -------------------------------------------------------------------------------- /system/core/compat/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/compat/standard.php -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/core/index.html -------------------------------------------------------------------------------- /system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/DB.php -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/DB_driver.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_query_builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/DB_query_builder.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/cubrid/cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/cubrid/cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/cubrid/cubrid_result.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/cubrid/cubrid_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/ibase/ibase_driver.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/ibase/ibase_forge.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/ibase/ibase_result.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/ibase/ibase_utility.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/ibase/index.html -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/pdo/subdrivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/postgre/postgre_driver.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/postgre/postgre_result.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/postgre/postgre_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/sqlite/sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/sqlite/sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/sqlite/sqlite_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/sqlite/sqlite_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/sqlite3/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/sqlite3/sqlite3_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/sqlite3/sqlite3_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/sqlite3/sqlite3_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/sqlite3/sqlite3_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/sqlsrv/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/sqlsrv/sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/sqlsrv/sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/sqlsrv/sqlsrv_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/drivers/sqlsrv/sqlsrv_utility.php -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/database/index.html -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/array_helper.php -------------------------------------------------------------------------------- /system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/download_helper.php -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/email_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/language_helper.php -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/number_helper.php -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/security_helper.php -------------------------------------------------------------------------------- /system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/string_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/index.html -------------------------------------------------------------------------------- /system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/language/english/calendar_lang.php -------------------------------------------------------------------------------- /system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/language/english/date_lang.php -------------------------------------------------------------------------------- /system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/language/english/db_lang.php -------------------------------------------------------------------------------- /system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/language/english/email_lang.php -------------------------------------------------------------------------------- /system/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/language/english/form_validation_lang.php -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/language/english/index.html -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/language/english/migration_lang.php -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/language/english/number_lang.php -------------------------------------------------------------------------------- /system/language/english/pagination_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/language/english/pagination_lang.php -------------------------------------------------------------------------------- /system/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/language/english/profiler_lang.php -------------------------------------------------------------------------------- /system/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Cache/drivers/Cache_apc.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Cache/drivers/Cache_dummy.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Cache/drivers/Cache_file.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Cache/drivers/Cache_memcached.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Cache/drivers/Cache_redis.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_wincache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Cache/drivers/Cache_wincache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Cache/drivers/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Cache/index.html -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Driver.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Encryption.php -------------------------------------------------------------------------------- /system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Javascript.php -------------------------------------------------------------------------------- /system/libraries/Javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Javascript/Jquery.php -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Javascript/index.html -------------------------------------------------------------------------------- /system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Migration.php -------------------------------------------------------------------------------- /system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Pagination.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Session/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Session/Session.php -------------------------------------------------------------------------------- /system/libraries/Session/SessionHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Session/SessionHandlerInterface.php -------------------------------------------------------------------------------- /system/libraries/Session/Session_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Session/Session_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Session/drivers/index.html -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Session/index.html -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Typography.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/User_agent.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/system/libraries/index.html -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/chriskacerguis/codeigniter-restserver/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: chriskacerguis -------------------------------------------------------------------------------- /vendor/chriskacerguis/codeigniter-restserver/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | vendor 3 | .idea -------------------------------------------------------------------------------- /vendor/chriskacerguis/codeigniter-restserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/chriskacerguis/codeigniter-restserver/LICENSE -------------------------------------------------------------------------------- /vendor/chriskacerguis/codeigniter-restserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/chriskacerguis/codeigniter-restserver/README.md -------------------------------------------------------------------------------- /vendor/chriskacerguis/codeigniter-restserver/src/auth/apikey.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/chriskacerguis/codeigniter-restserver/src/auth/basic.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/chriskacerguis/codeigniter-restserver/src/auth/ldap.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/ezyang/htmlpurifier/CREDITS -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/ezyang/htmlpurifier/LICENSE -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/ezyang/htmlpurifier/README.md -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/VERSION: -------------------------------------------------------------------------------- 1 | 4.13.0 -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/ezyang/htmlpurifier/composer.json -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/ezyang/htmlpurifier/library/HTMLPurifier.php -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "HTML Purifier" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/firebase/php-jwt/LICENSE -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/firebase/php-jwt/README.md -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/firebase/php-jwt/composer.json -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/BeforeValidException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/firebase/php-jwt/src/BeforeValidException.php -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/ExpiredException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/firebase/php-jwt/src/ExpiredException.php -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/JWT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/firebase/php-jwt/src/JWT.php -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: zipstream 2 | -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/.gitignore -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/.travis.yml -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/LICENSE -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/README.md -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/composer.json -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/psalm.xml -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/src/Bigint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/src/Bigint.php -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/src/DeflateStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/src/DeflateStream.php -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/src/Exception.php -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/src/File.php -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/src/Option/Archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/src/Option/Archive.php -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/src/Option/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/src/Option/File.php -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/src/Option/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/src/Option/Method.php -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/src/Option/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/src/Option/Version.php -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/src/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/src/Stream.php -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/src/ZipStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/src/ZipStream.php -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/test/BigintTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/test/BigintTest.php -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/test/ZipStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/test/ZipStreamTest.php -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/test/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/maennchen/zipstream-php/test/bootstrap.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/README.md -------------------------------------------------------------------------------- /vendor/markbaker/complex/classes/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/classes/Autoloader.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/classes/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/classes/Bootstrap.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/classes/src/Complex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/classes/src/Complex.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/classes/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/classes/src/Exception.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/classes/src/functions/abs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/classes/src/functions/abs.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/classes/src/functions/cos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/classes/src/functions/cos.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/classes/src/functions/cot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/classes/src/functions/cot.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/classes/src/functions/csc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/classes/src/functions/csc.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/classes/src/functions/exp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/classes/src/functions/exp.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/classes/src/functions/ln.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/classes/src/functions/ln.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/classes/src/functions/pow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/classes/src/functions/pow.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/classes/src/functions/rho.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/classes/src/functions/rho.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/classes/src/functions/sec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/classes/src/functions/sec.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/classes/src/functions/sin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/classes/src/functions/sin.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/classes/src/functions/tan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/classes/src/functions/tan.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/composer.json -------------------------------------------------------------------------------- /vendor/markbaker/complex/examples/complexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/examples/complexTest.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/examples/testFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/examples/testFunctions.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/examples/testOperations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/examples/testOperations.php -------------------------------------------------------------------------------- /vendor/markbaker/complex/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/complex/license.md -------------------------------------------------------------------------------- /vendor/markbaker/matrix/.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/matrix/.github/workflows/main.yaml -------------------------------------------------------------------------------- /vendor/markbaker/matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/matrix/README.md -------------------------------------------------------------------------------- /vendor/markbaker/matrix/buildPhar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/matrix/buildPhar.php -------------------------------------------------------------------------------- /vendor/markbaker/matrix/classes/src/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/matrix/classes/src/Builder.php -------------------------------------------------------------------------------- /vendor/markbaker/matrix/classes/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/matrix/classes/src/Exception.php -------------------------------------------------------------------------------- /vendor/markbaker/matrix/classes/src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/matrix/classes/src/Functions.php -------------------------------------------------------------------------------- /vendor/markbaker/matrix/classes/src/Matrix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/matrix/classes/src/Matrix.php -------------------------------------------------------------------------------- /vendor/markbaker/matrix/classes/src/operations/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/matrix/classes/src/operations/add.php -------------------------------------------------------------------------------- /vendor/markbaker/matrix/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/matrix/composer.json -------------------------------------------------------------------------------- /vendor/markbaker/matrix/examples/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/matrix/examples/test.php -------------------------------------------------------------------------------- /vendor/markbaker/matrix/infection.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/matrix/infection.json.dist -------------------------------------------------------------------------------- /vendor/markbaker/matrix/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/matrix/license.md -------------------------------------------------------------------------------- /vendor/markbaker/matrix/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/markbaker/matrix/phpstan.neon -------------------------------------------------------------------------------- /vendor/myclabs/php-enum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/myclabs/php-enum/LICENSE -------------------------------------------------------------------------------- /vendor/myclabs/php-enum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/myclabs/php-enum/README.md -------------------------------------------------------------------------------- /vendor/myclabs/php-enum/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/myclabs/php-enum/SECURITY.md -------------------------------------------------------------------------------- /vendor/myclabs/php-enum/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/myclabs/php-enum/composer.json -------------------------------------------------------------------------------- /vendor/myclabs/php-enum/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/myclabs/php-enum/psalm.xml -------------------------------------------------------------------------------- /vendor/myclabs/php-enum/src/Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/myclabs/php-enum/src/Enum.php -------------------------------------------------------------------------------- /vendor/myclabs/php-enum/src/PHPUnit/Comparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/myclabs/php-enum/src/PHPUnit/Comparator.php -------------------------------------------------------------------------------- /vendor/phpoffice/phpspreadsheet/.phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/phpoffice/phpspreadsheet/.phpcs.xml.dist -------------------------------------------------------------------------------- /vendor/phpoffice/phpspreadsheet/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/phpoffice/phpspreadsheet/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/phpoffice/phpspreadsheet/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/phpoffice/phpspreadsheet/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/phpoffice/phpspreadsheet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/phpoffice/phpspreadsheet/LICENSE -------------------------------------------------------------------------------- /vendor/phpoffice/phpspreadsheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/phpoffice/phpspreadsheet/README.md -------------------------------------------------------------------------------- /vendor/phpoffice/phpspreadsheet/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/phpoffice/phpspreadsheet/composer.json -------------------------------------------------------------------------------- /vendor/psr/http-client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-client/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/psr/http-client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-client/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-client/README.md -------------------------------------------------------------------------------- /vendor/psr/http-client/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-client/composer.json -------------------------------------------------------------------------------- /vendor/psr/http-client/src/ClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-client/src/ClientInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-factory/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor/ 3 | -------------------------------------------------------------------------------- /vendor/psr/http-factory/.pullapprove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-factory/.pullapprove.yml -------------------------------------------------------------------------------- /vendor/psr/http-factory/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-factory/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-factory/README.md -------------------------------------------------------------------------------- /vendor/psr/http-factory/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-factory/composer.json -------------------------------------------------------------------------------- /vendor/psr/http-factory/src/StreamFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-factory/src/StreamFactoryInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-factory/src/UriFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-factory/src/UriFactoryInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-message/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-message/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/psr/http-message/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-message/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-message/README.md -------------------------------------------------------------------------------- /vendor/psr/http-message/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-message/composer.json -------------------------------------------------------------------------------- /vendor/psr/http-message/src/MessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-message/src/MessageInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-message/src/RequestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-message/src/RequestInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-message/src/ResponseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-message/src/ResponseInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-message/src/ServerRequestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-message/src/ServerRequestInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-message/src/StreamInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-message/src/StreamInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-message/src/UploadedFileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-message/src/UploadedFileInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-message/src/UriInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/http-message/src/UriInterface.php -------------------------------------------------------------------------------- /vendor/psr/simple-cache/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/simple-cache/.editorconfig -------------------------------------------------------------------------------- /vendor/psr/simple-cache/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/simple-cache/LICENSE.md -------------------------------------------------------------------------------- /vendor/psr/simple-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/simple-cache/README.md -------------------------------------------------------------------------------- /vendor/psr/simple-cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/simple-cache/composer.json -------------------------------------------------------------------------------- /vendor/psr/simple-cache/src/CacheException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/simple-cache/src/CacheException.php -------------------------------------------------------------------------------- /vendor/psr/simple-cache/src/CacheInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/psr/simple-cache/src/CacheInterface.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/symfony/polyfill-mbstring/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/Mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/symfony/polyfill-mbstring/Mbstring.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/symfony/polyfill-mbstring/README.md -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/symfony/polyfill-mbstring/bootstrap.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/bootstrap80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/symfony/polyfill-mbstring/bootstrap80.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manh21/eVoting/HEAD/vendor/symfony/polyfill-mbstring/composer.json --------------------------------------------------------------------------------