├── .DS_Store ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── Procfile ├── README.md ├── app ├── Console │ ├── Commands │ │ ├── BackupAllData.php │ │ ├── CreateRepositoryCommand.php │ │ ├── MakeCrudCommand.php │ │ ├── MakeServiceCommand.php │ │ ├── RestoreAllData.php │ │ └── data │ │ │ ├── NameRepository.php.dummy │ │ │ ├── NameService.php.dummy │ │ │ └── crud │ │ │ ├── apicontroller.php.dummy │ │ │ ├── controller.php.dummy │ │ │ ├── controller2.php.dummy │ │ │ ├── export.php.dummy │ │ │ ├── files │ │ │ └── student.json │ │ │ ├── import.php.dummy │ │ │ ├── menu.json.dummy │ │ │ ├── migration.php.dummy │ │ │ ├── model.php.dummy │ │ │ ├── permission.json.dummy │ │ │ ├── request.php.dummy │ │ │ ├── route.php.dummy │ │ │ ├── seeder.php.dummy │ │ │ └── views │ │ │ ├── export-excel-example.blade.php.dummy │ │ │ ├── export-pdf.blade.php.dummy │ │ │ ├── export-print.blade.php.dummy │ │ │ ├── form.blade.php.dummy │ │ │ ├── index.blade.php.dummy │ │ │ └── index2.blade.php.dummy │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Exports │ ├── ActivityLogExport.php │ ├── CrudExampleExport.php │ ├── GeneralExport.php │ ├── PermissionExport.php │ ├── PermissionGroupExport.php │ └── RoleExampleExport.php ├── Helpers │ ├── ArrayHelper.php │ ├── DateTimeHelper.php │ ├── FileHelper.php │ ├── Helper.php │ ├── LogHelper.php │ ├── MessageHelper.php │ ├── NumberHelper.php │ ├── ResponseHelper.php │ ├── StringHelper.php │ └── otherhelper.php ├── Http │ ├── Controllers │ │ ├── ActivityLogController.php │ │ ├── Api │ │ │ ├── AuthController.php │ │ │ ├── RegionController.php │ │ │ ├── RoleController.php │ │ │ ├── UserManagementController.php │ │ │ └── YoutubeController.php │ │ ├── AuthController.php │ │ ├── BackupDatabaseController.php │ │ ├── Controller.php │ │ ├── CrudController.php │ │ ├── CrudExampleController.php │ │ ├── DashboardController.php │ │ ├── DropboxController.php │ │ ├── GroupMenuController.php │ │ ├── MenuManagementController.php │ │ ├── NotificationController.php │ │ ├── PermissionController.php │ │ ├── PermissionGroupController.php │ │ ├── ProfileController.php │ │ ├── RequestLogController.php │ │ ├── RoleController.php │ │ ├── SettingController.php │ │ ├── StislaController.php │ │ ├── TestingController.php │ │ ├── UbuntuController.php │ │ ├── UserManagementController.php │ │ └── YoutubeController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── EnsureAppKey.php │ │ ├── FileManagerPermission.php │ │ ├── LogRequestMiddleware.php │ │ ├── OverrideConfig.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ ├── VerifyCsrfToken.php │ │ └── ViewShare.php │ └── Requests │ │ ├── CrudExampleRequest.php │ │ ├── ForgotPasswordRequest.php │ │ ├── GroupMenuRequest.php │ │ ├── ImportExcelRequest.php │ │ ├── LoginRequest.php │ │ ├── MenuRequest.php │ │ ├── PermissionGroupRequest.php │ │ ├── PermissionRequest.php │ │ ├── ProfileRequest.php │ │ ├── RegisterRequest.php │ │ ├── ResetPasswordRequest.php │ │ ├── RoleRequest.php │ │ ├── SettingRequest.php │ │ └── UserRequest.php ├── Imports │ ├── CrudExampleImport.php │ ├── PermissionGroupImport.php │ ├── PermissionImport.php │ ├── RoleImport.php │ └── UserImport.php ├── Jobs │ ├── BackupDatabaseJob.php │ ├── EditFileJob.php │ └── ShellJob.php ├── Mail │ ├── ForgotPasswordMail.php │ ├── TestingMail.php │ └── VerificationAccountMail.php ├── Models │ ├── ActivityLog.php │ ├── CommandHistory.php │ ├── CrudExample.php │ ├── LogRequest.php │ ├── Menu.php │ ├── MenuGroup.php │ ├── Notification.php │ ├── PermissionGroup.php │ ├── Region.php │ ├── RequestLog.php │ ├── Setting.php │ └── User.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Repositories │ ├── ActivityLogRepository.php │ ├── CrudExampleRepository.php │ ├── EmailRepository.php │ ├── MenuGroupRepository.php │ ├── MenuRepository.php │ ├── NotificationRepository.php │ ├── PermissionGroupRepository.php │ ├── PermissionRepository.php │ ├── RegionRepository.php │ ├── Repository.php │ ├── RepositoryAbstract.php │ ├── RequestLogRepository.php │ ├── SettingRepository.php │ └── UserRepository.php └── Services │ ├── AuthService.php │ ├── CommandService.php │ ├── DatabaseService.php │ ├── DropBoxService.php │ ├── EmailService.php │ ├── FileService.php │ ├── GeneralService.php │ ├── PDFService.php │ └── YoutubeService.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── captcha.php ├── cloudinary.php ├── cors.php ├── database.php ├── datatables.php ├── debugbar.php ├── excel.php ├── filesystems.php ├── hashing.php ├── jwt.php ├── lfm.php ├── logging.php ├── logviewer.php ├── mail.php ├── permission.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── stisla.php ├── view.php └── youtube.php ├── constants.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2021_05_10_041418_create_settings_table.php │ ├── 2021_06_18_200839_create_permission_tables.php │ ├── 2021_07_18_100149_create_crud_examples_table.php │ ├── 2022_02_19_213049_create_permission_groups_table.php │ ├── 2022_02_19_213152_change_permission_group_table.php │ ├── 2022_02_19_225036_create_activity_logs_table.php │ ├── 2022_03_06_105428_create_menu_groups_table.php │ ├── 2022_03_06_105458_create_menus_table.php │ ├── 2022_03_07_165342_create_notifications_table.php │ ├── 2022_06_24_164915_create_regions_table.php │ ├── 2022_12_20_205308_create_jobs_table.php │ ├── 2022_12_26_164137_create_command_histories_table.php │ └── 2023_03_12_145057_create_log_requests_table.php └── seeders │ ├── CrudExampleSeeder.php │ ├── DatabaseSeeder.php │ ├── MenuSeeder.php │ ├── NotificationSeeder.php │ ├── RegionSeeder.php │ ├── RolePermissionSeeder.php │ ├── SettingSeeder.php │ ├── TestingSeeder.php │ ├── UserSeeder.php │ └── data │ └── regions.sql ├── lang ├── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php └── id.json ├── notes.txt ├── package.json ├── phpunit.xml ├── public ├── .DS_Store ├── .htaccess ├── assets │ ├── css │ │ ├── export-pdf.css │ │ ├── export-pdf.min.css │ │ ├── materialize.css │ │ ├── style.css │ │ ├── style.min.css │ │ └── themes │ │ │ ├── all-themes.css │ │ │ ├── all-themes.min.css │ │ │ ├── theme-amber.css │ │ │ ├── theme-amber.min.css │ │ │ ├── theme-black.css │ │ │ ├── theme-black.min.css │ │ │ ├── theme-blue-grey.css │ │ │ ├── theme-blue-grey.min.css │ │ │ ├── theme-blue.css │ │ │ ├── theme-blue.min.css │ │ │ ├── theme-brown.css │ │ │ ├── theme-brown.min.css │ │ │ ├── theme-cyan.css │ │ │ ├── theme-cyan.min.css │ │ │ ├── theme-deep-orange.css │ │ │ ├── theme-deep-orange.min.css │ │ │ ├── theme-deep-purple.css │ │ │ ├── theme-deep-purple.min.css │ │ │ ├── theme-green.css │ │ │ ├── theme-green.min.css │ │ │ ├── theme-grey.css │ │ │ ├── theme-grey.min.css │ │ │ ├── theme-indigo.css │ │ │ ├── theme-indigo.min.css │ │ │ ├── theme-light-blue.css │ │ │ ├── theme-light-blue.min.css │ │ │ ├── theme-lime.css │ │ │ ├── theme-lime.min.css │ │ │ ├── theme-orange.css │ │ │ ├── theme-orange.min.css │ │ │ ├── theme-pink.css │ │ │ ├── theme-pink.min.css │ │ │ ├── theme-purple.css │ │ │ ├── theme-purple.min.css │ │ │ ├── theme-red.css │ │ │ ├── theme-red.min.css │ │ │ ├── theme-teal.css │ │ │ ├── theme-teal.min.css │ │ │ ├── theme-yellow.css │ │ │ └── theme-yellow.min.css │ ├── icons │ │ └── favicon.ico │ ├── images │ │ ├── 8352e57b-fd2e-428f-bb65-9b6c03b0a079.jpeg │ │ ├── animation-bg.jpg │ │ ├── image-gallery │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 15.jpg │ │ │ ├── 16.jpg │ │ │ ├── 17.jpg │ │ │ ├── 18.jpg │ │ │ ├── 19.jpg │ │ │ ├── 2.jpg │ │ │ ├── 20.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ ├── 9.jpg │ │ │ └── thumb │ │ │ │ ├── thumb-1.jpg │ │ │ │ ├── thumb-10.jpg │ │ │ │ ├── thumb-11.jpg │ │ │ │ ├── thumb-12.jpg │ │ │ │ ├── thumb-13.jpg │ │ │ │ ├── thumb-14.jpg │ │ │ │ ├── thumb-15.jpg │ │ │ │ ├── thumb-16.jpg │ │ │ │ ├── thumb-17.jpg │ │ │ │ ├── thumb-18.jpg │ │ │ │ ├── thumb-19.jpg │ │ │ │ ├── thumb-2.jpg │ │ │ │ ├── thumb-20.jpg │ │ │ │ ├── thumb-3.jpg │ │ │ │ ├── thumb-4.jpg │ │ │ │ ├── thumb-5.jpg │ │ │ │ ├── thumb-6.jpg │ │ │ │ ├── thumb-7.jpg │ │ │ │ ├── thumb-8.jpg │ │ │ │ └── thumb-9.jpg │ │ ├── jcb.png │ │ ├── logo.png │ │ ├── mastercard.png │ │ ├── paypal.png │ │ ├── profile-post-image.jpg │ │ ├── screenshot.png │ │ ├── thumbs-up.png │ │ ├── user-img-background.jpg │ │ ├── user-lg.jpg │ │ ├── user.jpg │ │ ├── user.png │ │ └── visa.png │ ├── js │ │ ├── admin.js │ │ ├── demo.js │ │ ├── helpers.js │ │ ├── pages │ │ │ ├── cards │ │ │ │ ├── basic.js │ │ │ │ └── colored.js │ │ │ ├── charts │ │ │ │ ├── chartjs.js │ │ │ │ ├── flot.js │ │ │ │ ├── jquery-knob.js │ │ │ │ ├── morris.js │ │ │ │ └── sparkline.js │ │ │ ├── examples │ │ │ │ ├── forgot-password.js │ │ │ │ ├── profile.js │ │ │ │ ├── sign-in.js │ │ │ │ └── sign-up.js │ │ │ ├── forms │ │ │ │ ├── advanced-form-elements.js │ │ │ │ ├── basic-form-elements.js │ │ │ │ ├── editors.js │ │ │ │ ├── form-validation.js │ │ │ │ └── form-wizard.js │ │ │ ├── index.js │ │ │ ├── maps │ │ │ │ ├── google.js │ │ │ │ └── jvectormap.js │ │ │ ├── medias │ │ │ │ └── image-gallery.js │ │ │ ├── tables │ │ │ │ ├── editable-table.js │ │ │ │ └── jquery-datatable.js │ │ │ ├── ui │ │ │ │ ├── animations.js │ │ │ │ ├── dialogs.js │ │ │ │ ├── modals.js │ │ │ │ ├── notifications.js │ │ │ │ ├── range-sliders.js │ │ │ │ ├── sortable-nestable.js │ │ │ │ └── tooltips-popovers.js │ │ │ └── widgets │ │ │ │ └── infobox │ │ │ │ ├── infobox-1.js │ │ │ │ ├── infobox-2.js │ │ │ │ ├── infobox-3.js │ │ │ │ ├── infobox-4.js │ │ │ │ └── infobox-5.js │ │ └── script.js │ └── plugins │ │ ├── animate-css │ │ ├── animate.css │ │ └── animate.min.css │ │ ├── autosize │ │ ├── autosize.js │ │ └── autosize.min.js │ │ ├── bootstrap-colorpicker │ │ ├── css │ │ │ ├── bootstrap-colorpicker.css │ │ │ ├── bootstrap-colorpicker.css.map │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ └── bootstrap-colorpicker.min.css.map │ │ ├── img │ │ │ └── bootstrap-colorpicker │ │ │ │ ├── alpha-horizontal.png │ │ │ │ ├── alpha.png │ │ │ │ ├── hue-horizontal.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ └── js │ │ │ ├── bootstrap-colorpicker.js │ │ │ └── bootstrap-colorpicker.min.js │ │ ├── bootstrap-datepicker │ │ ├── css │ │ │ ├── bootstrap-datepicker.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.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-material-datetimepicker │ │ ├── css │ │ │ └── bootstrap-material-datetimepicker.css │ │ ├── font │ │ │ ├── Material-Design-Icons.eot │ │ │ ├── Material-Design-Icons.svg │ │ │ ├── Material-Design-Icons.ttf │ │ │ ├── Material-Design-Icons.woff │ │ │ └── Material-Design-Icons.woff2 │ │ └── js │ │ │ └── bootstrap-material-datetimepicker.js │ │ ├── bootstrap-notify │ │ ├── bootstrap-notify.js │ │ └── bootstrap-notify.min.js │ │ ├── bootstrap-select │ │ ├── css │ │ │ ├── bootstrap-select.css │ │ │ ├── bootstrap-select.css.map │ │ │ └── bootstrap-select.min.css │ │ └── js │ │ │ ├── bootstrap-select.js │ │ │ ├── bootstrap-select.js.map │ │ │ ├── bootstrap-select.min.js │ │ │ └── i18n │ │ │ ├── defaults-ar_AR.js │ │ │ ├── defaults-ar_AR.min.js │ │ │ ├── defaults-bg_BG.js │ │ │ ├── defaults-bg_BG.min.js │ │ │ ├── defaults-cro_CRO.js │ │ │ ├── defaults-cro_CRO.min.js │ │ │ ├── defaults-cs_CZ.js │ │ │ ├── defaults-cs_CZ.min.js │ │ │ ├── defaults-da_DK.js │ │ │ ├── defaults-da_DK.min.js │ │ │ ├── defaults-de_DE.js │ │ │ ├── defaults-de_DE.min.js │ │ │ ├── defaults-en_US.js │ │ │ ├── defaults-en_US.min.js │ │ │ ├── defaults-es_CL.js │ │ │ ├── defaults-es_CL.min.js │ │ │ ├── defaults-eu.js │ │ │ ├── defaults-eu.min.js │ │ │ ├── defaults-fa_IR.js │ │ │ ├── defaults-fa_IR.min.js │ │ │ ├── defaults-fi_FI.js │ │ │ ├── defaults-fi_FI.min.js │ │ │ ├── defaults-fr_FR.js │ │ │ ├── defaults-fr_FR.min.js │ │ │ ├── defaults-hu_HU.js │ │ │ ├── defaults-hu_HU.min.js │ │ │ ├── defaults-id_ID.js │ │ │ ├── defaults-id_ID.min.js │ │ │ ├── defaults-it_IT.js │ │ │ ├── defaults-it_IT.min.js │ │ │ ├── defaults-ko_KR.js │ │ │ ├── defaults-ko_KR.min.js │ │ │ ├── defaults-lt_LT.js │ │ │ ├── defaults-lt_LT.min.js │ │ │ ├── defaults-nb_NO.js │ │ │ ├── defaults-nb_NO.min.js │ │ │ ├── defaults-nl_NL.js │ │ │ ├── defaults-nl_NL.min.js │ │ │ ├── defaults-pl_PL.js │ │ │ ├── defaults-pl_PL.min.js │ │ │ ├── defaults-pt_BR.js │ │ │ ├── defaults-pt_BR.min.js │ │ │ ├── defaults-pt_PT.js │ │ │ ├── defaults-pt_PT.min.js │ │ │ ├── defaults-ro_RO.js │ │ │ ├── defaults-ro_RO.min.js │ │ │ ├── defaults-ru_RU.js │ │ │ ├── defaults-ru_RU.min.js │ │ │ ├── defaults-sk_SK.js │ │ │ ├── defaults-sk_SK.min.js │ │ │ ├── defaults-sl_SI.js │ │ │ ├── defaults-sl_SI.min.js │ │ │ ├── defaults-sv_SE.js │ │ │ ├── defaults-sv_SE.min.js │ │ │ ├── defaults-tr_TR.js │ │ │ ├── defaults-tr_TR.min.js │ │ │ ├── defaults-ua_UA.js │ │ │ ├── defaults-ua_UA.min.js │ │ │ ├── defaults-zh_CN.js │ │ │ ├── defaults-zh_CN.min.js │ │ │ ├── defaults-zh_TW.js │ │ │ └── defaults-zh_TW.min.js │ │ ├── bootstrap-tagsinput │ │ ├── bootstrap-tagsinput-angular.js │ │ ├── bootstrap-tagsinput-angular.min.js │ │ ├── bootstrap-tagsinput-typeahead.css │ │ ├── bootstrap-tagsinput.css │ │ ├── bootstrap-tagsinput.js │ │ └── bootstrap-tagsinput.min.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── 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 │ │ ├── chartjs │ │ ├── Chart.bundle.js │ │ ├── Chart.bundle.min.js │ │ ├── Chart.js │ │ └── Chart.min.js │ │ ├── chosen │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ ├── chosen.css │ │ ├── chosen.jquery.js │ │ ├── chosen.jquery.min.js │ │ ├── chosen.min.css │ │ ├── chosen.proto.js │ │ └── chosen.proto.min.js │ │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── bower.json │ │ ├── ckeditor.js │ │ ├── composer.json │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── package.json │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── adobeair │ │ │ │ └── plugin.js │ │ │ ├── ajax │ │ │ │ └── plugin.js │ │ │ ├── autoembed │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── autogrow │ │ │ │ └── plugin.js │ │ │ ├── autolink │ │ │ │ └── plugin.js │ │ │ ├── bbcode │ │ │ │ └── plugin.js │ │ │ ├── bidi │ │ │ │ ├── icons │ │ │ │ │ ├── bidiltr.png │ │ │ │ │ ├── bidirtl.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ ├── bidiltr.png │ │ │ │ │ │ └── bidirtl.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── codesnippet │ │ │ │ ├── dialogs │ │ │ │ │ └── codesnippet.js │ │ │ │ ├── icons │ │ │ │ │ ├── codesnippet.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── codesnippet.png │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── lib │ │ │ │ │ └── highlight │ │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.ru.md │ │ │ │ │ │ ├── highlight.pack.js │ │ │ │ │ │ └── styles │ │ │ │ │ │ ├── arta.css │ │ │ │ │ │ ├── ascetic.css │ │ │ │ │ │ ├── atelier-dune.dark.css │ │ │ │ │ │ ├── atelier-dune.light.css │ │ │ │ │ │ ├── atelier-forest.dark.css │ │ │ │ │ │ ├── atelier-forest.light.css │ │ │ │ │ │ ├── atelier-heath.dark.css │ │ │ │ │ │ ├── atelier-heath.light.css │ │ │ │ │ │ ├── atelier-lakeside.dark.css │ │ │ │ │ │ ├── atelier-lakeside.light.css │ │ │ │ │ │ ├── atelier-seaside.dark.css │ │ │ │ │ │ ├── atelier-seaside.light.css │ │ │ │ │ │ ├── brown_paper.css │ │ │ │ │ │ ├── brown_papersq.png │ │ │ │ │ │ ├── dark.css │ │ │ │ │ │ ├── default.css │ │ │ │ │ │ ├── docco.css │ │ │ │ │ │ ├── far.css │ │ │ │ │ │ ├── foundation.css │ │ │ │ │ │ ├── github.css │ │ │ │ │ │ ├── googlecode.css │ │ │ │ │ │ ├── idea.css │ │ │ │ │ │ ├── ir_black.css │ │ │ │ │ │ ├── magula.css │ │ │ │ │ │ ├── mono-blue.css │ │ │ │ │ │ ├── monokai.css │ │ │ │ │ │ ├── monokai_sublime.css │ │ │ │ │ │ ├── obsidian.css │ │ │ │ │ │ ├── paraiso.dark.css │ │ │ │ │ │ ├── paraiso.light.css │ │ │ │ │ │ ├── pojoaque.css │ │ │ │ │ │ ├── pojoaque.jpg │ │ │ │ │ │ ├── railscasts.css │ │ │ │ │ │ ├── rainbow.css │ │ │ │ │ │ ├── school_book.css │ │ │ │ │ │ ├── school_book.png │ │ │ │ │ │ ├── solarized_dark.css │ │ │ │ │ │ ├── solarized_light.css │ │ │ │ │ │ ├── sunburst.css │ │ │ │ │ │ ├── tomorrow-night-blue.css │ │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ │ ├── tomorrow-night.css │ │ │ │ │ │ ├── tomorrow.css │ │ │ │ │ │ ├── vs.css │ │ │ │ │ │ ├── xcode.css │ │ │ │ │ │ └── zenburn.css │ │ │ │ └── plugin.js │ │ │ ├── codesnippetgeshi │ │ │ │ └── plugin.js │ │ │ ├── colorbutton │ │ │ │ ├── icons │ │ │ │ │ ├── bgcolor.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── bgcolor.png │ │ │ │ │ │ └── textcolor.png │ │ │ │ │ └── textcolor.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── colordialog │ │ │ │ ├── dialogs │ │ │ │ │ ├── colordialog.css │ │ │ │ │ └── colordialog.js │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── devtools │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── dialogadvtab │ │ │ │ └── plugin.js │ │ │ ├── div │ │ │ │ ├── dialogs │ │ │ │ │ └── div.js │ │ │ │ ├── icons │ │ │ │ │ ├── creatediv.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── creatediv.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── divarea │ │ │ │ └── plugin.js │ │ │ ├── docprops │ │ │ │ ├── dialogs │ │ │ │ │ └── docprops.js │ │ │ │ ├── icons │ │ │ │ │ ├── docprops-rtl.png │ │ │ │ │ ├── docprops.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ ├── docprops-rtl.png │ │ │ │ │ │ └── docprops.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── embed │ │ │ │ ├── icons │ │ │ │ │ ├── embed.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── embed.png │ │ │ │ └── plugin.js │ │ │ ├── embedbase │ │ │ │ ├── dialogs │ │ │ │ │ └── embedbase.js │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── embedsemantic │ │ │ │ ├── icons │ │ │ │ │ ├── embedsemantic.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── embedsemantic.png │ │ │ │ └── plugin.js │ │ │ ├── filetools │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── find │ │ │ │ ├── dialogs │ │ │ │ │ └── find.js │ │ │ │ ├── icons │ │ │ │ │ ├── find-rtl.png │ │ │ │ │ ├── find.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── find-rtl.png │ │ │ │ │ │ ├── find.png │ │ │ │ │ │ └── replace.png │ │ │ │ │ └── replace.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ ├── icons │ │ │ │ │ ├── flash.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── flash.png │ │ │ │ ├── images │ │ │ │ │ └── placeholder.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── font │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ ├── icons │ │ │ │ │ ├── button.png │ │ │ │ │ ├── checkbox.png │ │ │ │ │ ├── form.png │ │ │ │ │ ├── hiddenfield.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ ├── checkbox.png │ │ │ │ │ │ ├── form.png │ │ │ │ │ │ ├── hiddenfield.png │ │ │ │ │ │ ├── imagebutton.png │ │ │ │ │ │ ├── radio.png │ │ │ │ │ │ ├── select-rtl.png │ │ │ │ │ │ ├── select.png │ │ │ │ │ │ ├── textarea-rtl.png │ │ │ │ │ │ ├── textarea.png │ │ │ │ │ │ ├── textfield-rtl.png │ │ │ │ │ │ └── textfield.png │ │ │ │ │ ├── imagebutton.png │ │ │ │ │ ├── radio.png │ │ │ │ │ ├── select-rtl.png │ │ │ │ │ ├── select.png │ │ │ │ │ ├── textarea-rtl.png │ │ │ │ │ ├── textarea.png │ │ │ │ │ ├── textfield-rtl.png │ │ │ │ │ └── textfield.png │ │ │ │ ├── images │ │ │ │ │ └── hiddenfield.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── iframe.png │ │ │ │ │ └── iframe.png │ │ │ │ ├── images │ │ │ │ │ └── placeholder.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── iframedialog │ │ │ │ └── plugin.js │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── image2 │ │ │ │ ├── dialogs │ │ │ │ │ └── image2.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── image.png │ │ │ │ │ └── image.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── indentblock │ │ │ │ └── plugin.js │ │ │ ├── justify │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ │ └── justifyright.png │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ └── justifyright.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── language │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── language.png │ │ │ │ │ └── language.png │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── lineutils │ │ │ │ └── plugin.js │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ ├── dialogs │ │ │ │ │ └── liststyle.js │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── mathjax │ │ │ │ ├── dialogs │ │ │ │ │ └── mathjax.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── mathjax.png │ │ │ │ │ └── mathjax.png │ │ │ │ ├── images │ │ │ │ │ └── loader.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── newpage │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── newpage-rtl.png │ │ │ │ │ │ └── newpage.png │ │ │ │ │ ├── newpage-rtl.png │ │ │ │ │ └── newpage.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── notification │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── notificationaggregator │ │ │ │ └── plugin.js │ │ │ ├── pagebreak │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── pagebreak-rtl.png │ │ │ │ │ │ └── pagebreak.png │ │ │ │ │ ├── pagebreak-rtl.png │ │ │ │ │ └── pagebreak.png │ │ │ │ ├── images │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── panelbutton │ │ │ │ └── plugin.js │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── placeholder │ │ │ │ ├── dialogs │ │ │ │ │ └── placeholder.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── placeholder.png │ │ │ │ │ └── placeholder.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── preview │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── preview-rtl.png │ │ │ │ │ │ └── preview.png │ │ │ │ │ ├── preview-rtl.png │ │ │ │ │ └── preview.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── preview.html │ │ │ ├── print │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── print.png │ │ │ │ │ └── print.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── save │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── save.png │ │ │ │ │ └── save.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── selectall │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── selectall.png │ │ │ │ │ └── selectall.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── sharedspace │ │ │ │ └── plugin.js │ │ │ ├── showblocks │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── showblocks-rtl.png │ │ │ │ │ │ └── showblocks.png │ │ │ │ │ ├── showblocks-rtl.png │ │ │ │ │ └── showblocks.png │ │ │ │ ├── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── smiley.png │ │ │ │ │ └── smiley.png │ │ │ │ ├── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ └── wink_smile.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── sourcedialog │ │ │ │ ├── dialogs │ │ │ │ │ └── sourcedialog.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── sourcedialog-rtl.png │ │ │ │ │ │ └── sourcedialog.png │ │ │ │ │ ├── sourcedialog-rtl.png │ │ │ │ │ └── sourcedialog.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── stylesheetparser │ │ │ │ └── plugin.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tableresize │ │ │ │ └── plugin.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── templates-rtl.png │ │ │ │ │ │ └── templates.png │ │ │ │ │ ├── templates-rtl.png │ │ │ │ │ └── templates.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── uicolor │ │ │ │ ├── dialogs │ │ │ │ │ └── uicolor.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── uicolor.png │ │ │ │ │ └── uicolor.png │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── yui │ │ │ │ │ ├── assets │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ ├── hue_thumb.png │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ ├── picker_thumb.png │ │ │ │ │ └── yui.css │ │ │ │ │ └── yui.js │ │ │ ├── uploadimage │ │ │ │ └── plugin.js │ │ │ ├── uploadwidget │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── widget │ │ │ │ ├── images │ │ │ │ │ └── handle.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ └── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ └── xml │ │ │ │ └── plugin.js │ │ ├── samples │ │ │ ├── css │ │ │ │ └── samples.css │ │ │ ├── img │ │ │ │ ├── github-top.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── header-separator.png │ │ │ │ ├── logo.png │ │ │ │ └── navigation-tip.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── sample.js │ │ │ │ └── sf.js │ │ │ ├── old │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── autogrow │ │ │ │ │ └── autogrow.html │ │ │ │ ├── bbcode │ │ │ │ │ └── bbcode.html │ │ │ │ ├── codesnippet │ │ │ │ │ └── codesnippet.html │ │ │ │ ├── datafiltering.html │ │ │ │ ├── devtools │ │ │ │ │ └── devtools.html │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── divarea │ │ │ │ │ └── divarea.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── docprops │ │ │ │ │ └── docprops.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── image2 │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── image1.jpg │ │ │ │ │ │ └── image2.jpg │ │ │ │ │ └── image2.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── mathjax │ │ │ │ │ └── mathjax.html │ │ │ │ ├── placeholder │ │ │ │ │ └── placeholder.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── sharedspace │ │ │ │ │ └── sharedspace.html │ │ │ │ ├── sourcedialog │ │ │ │ │ └── sourcedialog.html │ │ │ │ ├── stylesheetparser │ │ │ │ │ ├── assets │ │ │ │ │ │ └── sample.css │ │ │ │ │ └── stylesheetparser.html │ │ │ │ ├── tabindex.html │ │ │ │ ├── tableresize │ │ │ │ │ └── tableresize.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uicolor │ │ │ │ │ └── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ ├── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ │ └── xhtmlstyle.html │ │ │ └── toolbarconfigurator │ │ │ │ ├── css │ │ │ │ └── fontello.css │ │ │ │ ├── font │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.json │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.svg │ │ │ │ ├── fontello.ttf │ │ │ │ └── fontello.woff │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ ├── toolbarmodifier.js │ │ │ │ └── toolbartextmodifier.js │ │ │ │ └── lib │ │ │ │ └── codemirror │ │ │ │ ├── LICENSE │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── javascript.js │ │ │ │ ├── neo.css │ │ │ │ ├── show-hint.css │ │ │ │ └── show-hint.js │ │ ├── skins │ │ │ ├── kama │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── spinner.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ └── toolbar_start.gif │ │ │ │ ├── readme.md │ │ │ │ └── skin.js │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ └── styles.js │ │ ├── dropzone │ │ ├── basic.css │ │ ├── dropzone-amd-module.js │ │ ├── dropzone.css │ │ ├── dropzone.js │ │ └── min │ │ │ ├── basic.min.css │ │ │ ├── dropzone-amd-module.min.js │ │ │ ├── dropzone.min.css │ │ │ └── dropzone.min.js │ │ ├── editable-table │ │ └── mindmup-editabletable.js │ │ ├── flot-charts │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── 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 │ │ ├── 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 │ │ ├── gmaps │ │ ├── Gruntfile.js │ │ ├── gmaps.js │ │ └── gmaps.min.js │ │ ├── ion-rangeslider │ │ ├── css │ │ │ ├── ion.rangeSlider.css │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ ├── ion.rangeSlider.skinHTML5.css │ │ │ ├── ion.rangeSlider.skinModern.css │ │ │ ├── ion.rangeSlider.skinNice.css │ │ │ ├── ion.rangeSlider.skinSimple.css │ │ │ └── normalize.css │ │ ├── img │ │ │ ├── sprite-skin-flat.png │ │ │ ├── sprite-skin-modern.png │ │ │ ├── sprite-skin-nice.png │ │ │ └── sprite-skin-simple.png │ │ └── js │ │ │ ├── ion.rangeSlider.js │ │ │ └── ion.rangeSlider.min.js │ │ ├── jquery-cookie │ │ └── jquery.cookie.js │ │ ├── jquery-countto │ │ └── jquery.countTo.js │ │ ├── jquery-datatable │ │ ├── extensions │ │ │ └── export │ │ │ │ ├── buttons.flash.min.js │ │ │ │ ├── buttons.html5.min.js │ │ │ │ ├── buttons.print.min.js │ │ │ │ ├── dataTables.buttons.min.js │ │ │ │ ├── jszip.min.js │ │ │ │ ├── pdfmake.min.js │ │ │ │ └── vfs_fonts.js │ │ ├── jquery.dataTables.js │ │ └── skin │ │ │ └── bootstrap │ │ │ ├── css │ │ │ ├── dataTables.bootstrap.css │ │ │ └── dataTables.bootstrap.min.css │ │ │ ├── images │ │ │ ├── Sorting icons.psd │ │ │ ├── favicon.ico │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ │ └── js │ │ │ ├── dataTables.bootstrap.js │ │ │ └── dataTables.bootstrap.min.js │ │ ├── jquery-inputmask │ │ ├── inputmask │ │ │ ├── inputmask.date.extensions.js │ │ │ ├── inputmask.dependencyLib.jquery.js │ │ │ ├── inputmask.extensions.js │ │ │ ├── inputmask.js │ │ │ ├── inputmask.numeric.extensions.js │ │ │ ├── inputmask.phone.extensions.js │ │ │ ├── inputmask.regex.extensions.js │ │ │ └── jquery.inputmask.js │ │ └── jquery.inputmask.bundle.js │ │ ├── jquery-knob │ │ └── jquery.knob.min.js │ │ ├── jquery-slimscroll │ │ └── jquery.slimscroll.js │ │ ├── jquery-sparkline │ │ ├── jquery.sparkline.js │ │ └── src │ │ │ ├── base.js │ │ │ ├── chart-bar.js │ │ │ ├── chart-box.js │ │ │ ├── chart-bullet.js │ │ │ ├── chart-discrete.js │ │ │ ├── chart-line.js │ │ │ ├── chart-pie.js │ │ │ ├── chart-tristate.js │ │ │ ├── defaults.js │ │ │ ├── footer.js │ │ │ ├── header.js │ │ │ ├── interact.js │ │ │ ├── jquery.sparkline.js │ │ │ ├── rangemap.js │ │ │ ├── simpledraw.js │ │ │ ├── utils.js │ │ │ ├── vcanvas-base.js │ │ │ ├── vcanvas-canvas.js │ │ │ └── vcanvas-vml.js │ │ ├── jquery-spinner │ │ ├── css │ │ │ ├── bootstrap-spinner.css │ │ │ ├── bootstrap-spinner.css.map │ │ │ └── bootstrap-spinner.min.css │ │ └── js │ │ │ ├── jquery.spinner.js │ │ │ └── jquery.spinner.min.js │ │ ├── jquery-steps │ │ ├── jquery.steps.css │ │ ├── jquery.steps.js │ │ └── jquery.steps.min.js │ │ ├── jquery-validation │ │ ├── additional-methods.js │ │ ├── jquery.validate.js │ │ └── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_az │ │ │ ├── messages_bg.js │ │ │ ├── messages_bn_BD.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_da.js │ │ │ ├── messages_de.js │ │ │ ├── messages_el.js │ │ │ ├── messages_es.js │ │ │ ├── messages_es_AR.js │ │ │ ├── messages_es_PE.js │ │ │ ├── messages_et.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_ge.js │ │ │ ├── messages_gl.js │ │ │ ├── messages_he.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_hy_AM.js │ │ │ ├── messages_id.js │ │ │ ├── messages_is.js │ │ │ ├── messages_it.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_mk.js │ │ │ ├── messages_my.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_no.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_si.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sr_lat.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_th.js │ │ │ ├── messages_tj.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── methods_de.js │ │ │ ├── methods_es_CL.js │ │ │ ├── methods_fi.js │ │ │ ├── methods_nl.js │ │ │ └── methods_pt.js │ │ ├── jquery │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ │ ├── jvectormap │ │ ├── jquery-jvectormap-1.2.2.css │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ └── jquery-jvectormap-world-mill-en.js │ │ ├── light-gallery │ │ ├── css │ │ │ ├── lg-fb-comment-box.css │ │ │ ├── lg-fb-comment-box.min.css │ │ │ ├── lg-transitions.css │ │ │ ├── lg-transitions.min.css │ │ │ ├── lightgallery.css │ │ │ └── lightgallery.min.css │ │ ├── fonts │ │ │ ├── lg.eot │ │ │ ├── lg.svg │ │ │ ├── lg.ttf │ │ │ └── lg.woff │ │ ├── img │ │ │ ├── loading.gif │ │ │ ├── video-play.png │ │ │ ├── vimeo-play.png │ │ │ └── youtube-play.png │ │ └── js │ │ │ ├── lg-autoplay.js │ │ │ ├── lg-autoplay.min.js │ │ │ ├── lg-fullscreen.js │ │ │ ├── lg-fullscreen.min.js │ │ │ ├── lg-hash.js │ │ │ ├── lg-hash.min.js │ │ │ ├── lg-pager.js │ │ │ ├── lg-pager.min.js │ │ │ ├── lg-thumbnail.js │ │ │ ├── lg-thumbnail.min.js │ │ │ ├── lg-video.js │ │ │ ├── lg-video.min.js │ │ │ ├── lg-zoom.js │ │ │ ├── lg-zoom.min.js │ │ │ ├── lightgallery-all.js │ │ │ ├── lightgallery-all.min.js │ │ │ ├── lightgallery.js │ │ │ └── lightgallery.min.js │ │ ├── material-design-iconic-font │ │ ├── css │ │ │ ├── material-design-iconic-font.css │ │ │ └── material-design-iconic-font.min.css │ │ └── fonts │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ └── Material-Design-Iconic-Font.woff2 │ │ ├── materialize-css │ │ ├── css │ │ │ ├── materialize.css │ │ │ └── materialize.min.css │ │ ├── fonts │ │ │ └── roboto │ │ │ │ ├── Roboto-Bold.eot │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── Roboto-Bold.woff │ │ │ │ ├── Roboto-Bold.woff2 │ │ │ │ ├── Roboto-Light.eot │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ ├── Roboto-Light.woff │ │ │ │ ├── Roboto-Light.woff2 │ │ │ │ ├── Roboto-Medium.eot │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ ├── Roboto-Medium.woff │ │ │ │ ├── Roboto-Medium.woff2 │ │ │ │ ├── Roboto-Regular.eot │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── Roboto-Regular.woff │ │ │ │ ├── Roboto-Regular.woff2 │ │ │ │ ├── Roboto-Thin.eot │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ ├── Roboto-Thin.woff │ │ │ │ └── Roboto-Thin.woff2 │ │ └── js │ │ │ ├── materialize.js │ │ │ └── materialize.min.js │ │ ├── momentjs │ │ ├── ender.js │ │ ├── moment.js │ │ └── package.js │ │ ├── morrisjs │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bower.json │ │ ├── bower.travis.json │ │ ├── examples │ │ │ ├── _template.html │ │ │ ├── area-as-line.html │ │ │ ├── area.html │ │ │ ├── bar-colors.html │ │ │ ├── bar-no-axes.html │ │ │ ├── bar.html │ │ │ ├── days.html │ │ │ ├── decimal-custom-hover.html │ │ │ ├── diagonal-xlabels-bar.html │ │ │ ├── diagonal-xlabels.html │ │ │ ├── donut-colors.html │ │ │ ├── donut-formatter.html │ │ │ ├── donut.html │ │ │ ├── dst.html │ │ │ ├── events.html │ │ │ ├── goals.html │ │ │ ├── lib │ │ │ │ ├── example.css │ │ │ │ └── example.js │ │ │ ├── months-no-smooth.html │ │ │ ├── negative.html │ │ │ ├── no-grid.html │ │ │ ├── non-continuous.html │ │ │ ├── non-date.html │ │ │ ├── quarters.html │ │ │ ├── resize.html │ │ │ ├── stacked_bars.html │ │ │ ├── timestamps.html │ │ │ ├── updating.html │ │ │ ├── weeks.html │ │ │ └── years.html │ │ ├── less │ │ │ └── morris.core.less │ │ ├── lib │ │ │ ├── morris.area.coffee │ │ │ ├── morris.bar.coffee │ │ │ ├── morris.coffee │ │ │ ├── morris.donut.coffee │ │ │ ├── morris.grid.coffee │ │ │ ├── morris.hover.coffee │ │ │ └── morris.line.coffee │ │ ├── morris.css │ │ ├── morris.js │ │ ├── morris.min.js │ │ ├── package.json │ │ └── spec │ │ │ ├── lib │ │ │ ├── area │ │ │ │ └── area_spec.coffee │ │ │ ├── bar │ │ │ │ ├── bar_spec.coffee │ │ │ │ └── colours.coffee │ │ │ ├── commas_spec.coffee │ │ │ ├── donut │ │ │ │ └── donut_spec.coffee │ │ │ ├── grid │ │ │ │ ├── auto_grid_lines_spec.coffee │ │ │ │ ├── set_data_spec.coffee │ │ │ │ └── y_label_format_spec.coffee │ │ │ ├── hover_spec.coffee │ │ │ ├── label_series_spec.coffee │ │ │ ├── line │ │ │ │ └── line_spec.coffee │ │ │ ├── pad_spec.coffee │ │ │ └── parse_time_spec.coffee │ │ │ ├── specs.html │ │ │ ├── support │ │ │ └── placeholder.coffee │ │ │ └── viz │ │ │ ├── examples.js │ │ │ ├── exemplary │ │ │ ├── area0.png │ │ │ ├── bar0.png │ │ │ ├── line0.png │ │ │ └── stacked_bar0.png │ │ │ ├── run.sh │ │ │ ├── test.html │ │ │ └── visual_specs.js │ │ ├── multi-select │ │ ├── css │ │ │ └── multi-select.css │ │ ├── img │ │ │ └── switch.png │ │ └── js │ │ │ └── jquery.multi-select.js │ │ ├── nestable │ │ ├── jquery-nestable.css │ │ └── jquery.nestable.js │ │ ├── node-waves │ │ ├── waves.css │ │ ├── waves.js │ │ ├── waves.min.css │ │ ├── waves.min.js │ │ └── waves.min.js.map │ │ ├── nouislider │ │ ├── nouislider.js │ │ ├── nouislider.min.css │ │ └── nouislider.min.js │ │ ├── raphael │ │ ├── Gruntfile.js │ │ ├── raphael.js │ │ ├── raphael.min.js │ │ ├── raphael.no-deps.js │ │ ├── raphael.no-deps.min.js │ │ └── webpack.config.js │ │ ├── sweetalert │ │ ├── sweetalert-dev.js │ │ ├── sweetalert.css │ │ └── sweetalert.min.js │ │ ├── tinymce │ │ ├── bower.json │ │ ├── changelog.txt │ │ ├── composer.json │ │ ├── jquery.tinymce.js │ │ ├── jquery.tinymce.min.js │ │ ├── license.txt │ │ ├── package.json │ │ ├── plugins │ │ │ ├── advlist │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── anchor │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autolink │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autoresize │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autosave │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── bbcode │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── charmap │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── code │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── codesample │ │ │ │ ├── css │ │ │ │ │ └── prism.css │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── colorpicker │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── contextmenu │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── directionality │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── emoticons │ │ │ │ ├── img │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ └── smiley-yell.gif │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── fullpage │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── fullscreen │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── hr │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── image │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── imagetools │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── importcss │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── insertdatetime │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── layer │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── legacyoutput │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── link │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── lists │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── media │ │ │ │ ├── moxieplayer.swf │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── nonbreaking │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── noneditable │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── pagebreak │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── paste │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── preview │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── print │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── save │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── searchreplace │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── spellchecker │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── tabfocus │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── table │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── template │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── textcolor │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── textpattern │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── visualblocks │ │ │ │ ├── css │ │ │ │ │ └── visualblocks.css │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── visualchars │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ └── wordcount │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ ├── readme.md │ │ ├── skins │ │ │ └── lightgray │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── fonts │ │ │ │ ├── tinymce-small.eot │ │ │ │ ├── tinymce-small.svg │ │ │ │ ├── tinymce-small.ttf │ │ │ │ ├── tinymce-small.woff │ │ │ │ ├── tinymce.eot │ │ │ │ ├── tinymce.svg │ │ │ │ ├── tinymce.ttf │ │ │ │ └── tinymce.woff │ │ │ │ ├── img │ │ │ │ ├── anchor.gif │ │ │ │ ├── loader.gif │ │ │ │ ├── object.gif │ │ │ │ └── trans.gif │ │ │ │ ├── skin.ie7.min.css │ │ │ │ └── skin.min.css │ │ ├── themes │ │ │ ├── inlite │ │ │ │ ├── theme.js │ │ │ │ └── theme.min.js │ │ │ └── modern │ │ │ │ ├── theme.js │ │ │ │ └── theme.min.js │ │ ├── tinymce.jquery.js │ │ ├── tinymce.jquery.min.js │ │ ├── tinymce.js │ │ └── tinymce.min.js │ │ └── waitme │ │ ├── img.svg │ │ ├── waitMe.css │ │ ├── waitMe.js │ │ ├── waitMe.min.css │ │ └── waitMe.min.js ├── example.xlsx ├── excel_examples │ ├── sample_menus.xlsx │ ├── sample_permission_groups.xlsx │ ├── sample_permissions.xlsx │ ├── sample_roles.xlsx │ └── sample_users.xlsx ├── index.php ├── js │ ├── cleave.min.js │ ├── crud-generator.js.LICENSE.txt │ └── crud-generator.min.js ├── mix-manifest.json ├── plugins │ ├── font-awesome-5.12 │ │ ├── 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 │ │ ├── js │ │ │ ├── all.js │ │ │ ├── all.min.js │ │ │ ├── brands.js │ │ │ ├── brands.min.js │ │ │ ├── conflict-detection.js │ │ │ ├── conflict-detection.min.js │ │ │ ├── fontawesome.js │ │ │ ├── fontawesome.min.js │ │ │ ├── regular.js │ │ │ ├── regular.min.js │ │ │ ├── solid.js │ │ │ ├── solid.min.js │ │ │ ├── v4-shims.js │ │ │ └── v4-shims.min.js │ │ ├── less │ │ │ ├── _animated.less │ │ │ ├── _bordered-pulled.less │ │ │ ├── _core.less │ │ │ ├── _fixed-width.less │ │ │ ├── _icons.less │ │ │ ├── _larger.less │ │ │ ├── _list.less │ │ │ ├── _mixins.less │ │ │ ├── _rotated-flipped.less │ │ │ ├── _screen-reader.less │ │ │ ├── _shims.less │ │ │ ├── _stacked.less │ │ │ ├── _variables.less │ │ │ ├── brands.less │ │ │ ├── fontawesome.less │ │ │ ├── regular.less │ │ │ ├── solid.less │ │ │ └── v4-shims.less │ │ ├── metadata │ │ │ ├── categories.yml │ │ │ ├── icons.json │ │ │ ├── icons.yml │ │ │ ├── shims.json │ │ │ ├── shims.yml │ │ │ └── sponsors.yml │ │ ├── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _shims.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ ├── brands.scss │ │ │ ├── fontawesome.scss │ │ │ ├── regular.scss │ │ │ ├── solid.scss │ │ │ └── v4-shims.scss │ │ ├── sprites │ │ │ ├── brands.svg │ │ │ ├── regular.svg │ │ │ └── solid.svg │ │ ├── svgs │ │ │ ├── brands │ │ │ │ ├── 500px.svg │ │ │ │ ├── accessible-icon.svg │ │ │ │ ├── accusoft.svg │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── adobe.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.svg │ │ │ │ ├── airbnb.svg │ │ │ │ ├── algolia.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── amazon-pay.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amilia.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angellist.svg │ │ │ │ ├── angrycreative.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── app-store-ios.svg │ │ │ │ ├── app-store.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── apple-pay.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── artstation.svg │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── atlassian.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── battle-net.svg │ │ │ │ ├── behance-square.svg │ │ │ │ ├── behance.svg │ │ │ │ ├── bimobject.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── bity.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── blackberry.svg │ │ │ │ ├── blogger-b.svg │ │ │ │ ├── blogger.svg │ │ │ │ ├── bluetooth-b.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── buffer.svg │ │ │ │ ├── buromobelexperte.svg │ │ │ │ ├── buy-n-large.svg │ │ │ │ ├── buysellads.svg │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ ├── cc-amex.svg │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ ├── cc-diners-club.svg │ │ │ │ ├── cc-discover.svg │ │ │ │ ├── cc-jcb.svg │ │ │ │ ├── cc-mastercard.svg │ │ │ │ ├── cc-paypal.svg │ │ │ │ ├── cc-stripe.svg │ │ │ │ ├── cc-visa.svg │ │ │ │ ├── centercode.svg │ │ │ │ ├── centos.svg │ │ │ │ ├── chrome.svg │ │ │ │ ├── chromecast.svg │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── confluence.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cotton-bureau.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── critical-role.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dailymotion.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── dev.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── dhl.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble-square.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── evernote.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ ├── fedex.svg │ │ │ │ ├── fedora.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── firefox-browser.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── first-order-alt.svg │ │ │ │ ├── first-order.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── fly.svg │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── fonticons-fi.svg │ │ │ │ ├── fonticons.svg │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ ├── fort-awesome.svg │ │ │ │ ├── forumbee.svg │ │ │ │ ├── foursquare.svg │ │ │ │ ├── free-code-camp.svg │ │ │ │ ├── freebsd.svg │ │ │ │ ├── fulcrum.svg │ │ │ │ ├── galactic-republic.svg │ │ │ │ ├── galactic-senate.svg │ │ │ │ ├── get-pocket.svg │ │ │ │ ├── gg-circle.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── git-alt.svg │ │ │ │ ├── git-square.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github-alt.svg │ │ │ │ ├── github-square.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitkraken.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── glide-g.svg │ │ │ │ ├── glide.svg │ │ │ │ ├── gofore.svg │ │ │ │ ├── goodreads-g.svg │ │ │ │ ├── goodreads.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus-square.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news-square.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── ideal.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── instagram-square.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── intercom.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── invision.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itch-io.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js-square.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm-square.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── mdb.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── microblog.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mixer.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nimblr.svg │ │ │ │ ├── node-js.svg │ │ │ │ ├── node.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── ns8.svg │ │ │ │ ├── nutritionix.svg │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── orcid.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── penny-arcade.svg │ │ │ │ ├── periscope.svg │ │ │ │ ├── phabricator.svg │ │ │ │ ├── phoenix-framework.svg │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ ├── php.svg │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ ├── pied-piper-square.svg │ │ │ │ ├── pied-piper.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest-square.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── pushed.svg │ │ │ │ ├── python.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── quinscape.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── r-project.svg │ │ │ │ ├── raspberry-pi.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── reacteurope.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit-square.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── redhat.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopify.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.svg │ │ │ │ ├── sketch.svg │ │ │ │ ├── skyatlas.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack-hash.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slideshare.svg │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ ├── snapchat-square.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── sourcetree.svg │ │ │ │ ├── speakap.svg │ │ │ │ ├── speaker-deck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stackpath.svg │ │ │ │ ├── staylinked.svg │ │ │ │ ├── steam-square.svg │ │ │ │ ├── steam-symbol.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── sticker-mule.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe-s.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── studiovinari.svg │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ ├── stumbleupon.svg │ │ │ │ ├── superpowers.svg │ │ │ │ ├── supple.svg │ │ │ │ ├── suse.svg │ │ │ │ ├── swift.svg │ │ │ │ ├── symfony.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── think-peaks.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tripadvisor.svg │ │ │ │ ├── tumblr-square.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-square.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── umbraco.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── unity.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── ups.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── usps.svg │ │ │ │ ├── ussunnah.svg │ │ │ │ ├── vaadin.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── viadeo-square.svg │ │ │ │ ├── viadeo.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── vimeo-square.svg │ │ │ │ ├── vimeo-v.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vine.svg │ │ │ │ ├── vk.svg │ │ │ │ ├── vnv.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── waze.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp-square.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── wpressr.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing-square.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yammer.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yarn.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yoast.svg │ │ │ │ ├── youtube-square.svg │ │ │ │ ├── youtube.svg │ │ │ │ └── zhihu.svg │ │ │ ├── regular │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── building.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── map.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── save.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ └── window-restore.svg │ │ │ └── solid │ │ │ │ ├── ad.svg │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── adjust.svg │ │ │ │ ├── air-freshener.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-justify.svg │ │ │ │ ├── align-left.svg │ │ │ │ ├── align-right.svg │ │ │ │ ├── allergies.svg │ │ │ │ ├── ambulance.svg │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── angle-double-down.svg │ │ │ │ ├── angle-double-left.svg │ │ │ │ ├── angle-double-right.svg │ │ │ │ ├── angle-double-up.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── ankh.svg │ │ │ │ ├── apple-alt.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── archway.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ ├── arrows-alt.svg │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── atlas.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audio-description.svg │ │ │ │ ├── award.svg │ │ │ │ ├── baby-carriage.svg │ │ │ │ ├── baby.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── bacon.svg │ │ │ │ ├── bahai.svg │ │ │ │ ├── balance-scale-left.svg │ │ │ │ ├── balance-scale-right.svg │ │ │ │ ├── balance-scale.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── band-aid.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── bars.svg │ │ │ │ ├── baseball-ball.svg │ │ │ │ ├── basketball-ball.svg │ │ │ │ ├── bath.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-quarter.svg │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier-curve.svg │ │ │ │ ├── bible.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── biking.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── biohazard.svg │ │ │ │ ├── birthday-cake.svg │ │ │ │ ├── blender-phone.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blind.svg │ │ │ │ ├── blog.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-dead.svg │ │ │ │ ├── book-medical.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-reader.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-none.svg │ │ │ │ ├── border-style.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── bread-slice.svg │ │ │ │ ├── briefcase-medical.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── broadcast-tower.svg │ │ │ │ ├── broom.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── building.svg │ │ │ │ ├── bullhorn.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── burn.svg │ │ │ │ ├── bus-alt.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-time.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-day.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar-week.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── campground.svg │ │ │ │ ├── candy-cane.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-alt.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-crash.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car.svg │ │ │ │ ├── caravan.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── carrot.svg │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── cash-register.svg │ │ │ │ ├── cat.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── chair.svg │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ ├── chalkboard.svg │ │ │ │ ├── charging-station.svg │ │ │ │ ├── chart-area.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chart-line.svg │ │ │ │ ├── chart-pie.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-double.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── check.svg │ │ │ │ ├── cheese.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-board.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── chess.svg │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── child.svg │ │ │ │ ├── church.svg │ │ │ │ ├── circle-notch.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── city.svg │ │ │ │ ├── clinic-medical.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ ├── cloud-meatball.svg │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ ├── cloud-sun.svg │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── cocktail.svg │ │ │ │ ├── code-branch.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── cog.svg │ │ │ │ ├── cogs.svg │ │ │ │ ├── coins.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dollar.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment-medical.svg │ │ │ │ ├── comment-slash.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compress-alt.svg │ │ │ │ ├── compress-arrows-alt.svg │ │ │ │ ├── compress.svg │ │ │ │ ├── concierge-bell.svg │ │ │ │ ├── cookie-bite.svg │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── couch.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop-alt.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── crow.svg │ │ │ │ ├── crown.svg │ │ │ │ ├── crutch.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── database.svg │ │ │ │ ├── deaf.svg │ │ │ │ ├── democrat.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagnoses.svg │ │ │ │ ├── dice-d20.svg │ │ │ │ ├── dice-d6.svg │ │ │ │ ├── dice-five.svg │ │ │ │ ├── dice-four.svg │ │ │ │ ├── dice-one.svg │ │ │ │ ├── dice-six.svg │ │ │ │ ├── dice-three.svg │ │ │ │ ├── dice-two.svg │ │ │ │ ├── dice.svg │ │ │ │ ├── digital-tachograph.svg │ │ │ │ ├── directions.svg │ │ │ │ ├── divide.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dog.svg │ │ │ │ ├── dollar-sign.svg │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ ├── dolly.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── door-closed.svg │ │ │ │ ├── door-open.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── dove.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drafting-compass.svg │ │ │ │ ├── dragon.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── drumstick-bite.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── dumpster-fire.svg │ │ │ │ ├── dumpster.svg │ │ │ │ ├── dungeon.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── ellipsis-h.svg │ │ │ │ ├── ellipsis-v.svg │ │ │ │ ├── envelope-open-text.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope-square.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exchange-alt.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand-alt.svg │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── external-link-alt.svg │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── fast-backward.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── feather-alt.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── female.svg │ │ │ │ ├── fighter-jet.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-contract.svg │ │ │ │ ├── file-csv.svg │ │ │ │ ├── file-download.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-export.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-import.svg │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ ├── file-invoice.svg │ │ │ │ ├── file-medical-alt.svg │ │ │ │ ├── file-medical.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-prescription.svg │ │ │ │ ├── file-signature.svg │ │ │ │ ├── file-upload.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── fill-drip.svg │ │ │ │ ├── fill.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire-alt.svg │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── first-aid.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── fist-raised.svg │ │ │ │ ├── flag-checkered.svg │ │ │ │ ├── flag-usa.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font.svg │ │ │ │ ├── football-ball.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── frog.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── funnel-dollar.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gamepad.svg │ │ │ │ ├── gas-pump.svg │ │ │ │ ├── gavel.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── ghost.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── gifts.svg │ │ │ │ ├── glass-cheers.svg │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ ├── glass-martini.svg │ │ │ │ ├── glass-whiskey.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-africa.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia.svg │ │ │ │ ├── globe-europe.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── golf-ball.svg │ │ │ │ ├── gopuram.svg │ │ │ │ ├── graduation-cap.svg │ │ │ │ ├── greater-than-equal.svg │ │ │ │ ├── greater-than.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── grip-horizontal.svg │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ ├── grip-lines.svg │ │ │ │ ├── grip-vertical.svg │ │ │ │ ├── guitar.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hamburger.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ ├── hand-holding.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hands-helping.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hanukiah.svg │ │ │ │ ├── hard-hat.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ ├── hat-cowboy.svg │ │ │ │ ├── hat-wizard.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-alt.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbeat.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── hiking.svg │ │ │ │ ├── hippo.svg │ │ │ │ ├── history.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── holly-berry.svg │ │ │ │ ├── home.svg │ │ │ │ ├── horse-head.svg │ │ │ │ ├── horse.svg │ │ │ │ ├── hospital-alt.svg │ │ │ │ ├── hospital-symbol.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub.svg │ │ │ │ ├── hotdog.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-damage.svg │ │ │ │ ├── hryvnia.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── icicles.svg │ │ │ │ ├── icons.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-alt.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── igloo.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── info.svg │ │ │ │ ├── italic.svg │ │ │ │ ├── jedi.svg │ │ │ │ ├── joint.svg │ │ │ │ ├── journal-whills.svg │ │ │ │ ├── kaaba.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── khanda.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── kiwi-bird.svg │ │ │ │ ├── landmark.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-code.svg │ │ │ │ ├── laptop-medical.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── layer-group.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── less-than-equal.svg │ │ │ │ ├── less-than.svg │ │ │ │ ├── level-down-alt.svg │ │ │ │ ├── level-up-alt.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lira-sign.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ ├── low-vision.svg │ │ │ │ ├── luggage-cart.svg │ │ │ │ ├── magic.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mail-bulk.svg │ │ │ │ ├── male.svg │ │ │ │ ├── map-marked-alt.svg │ │ │ │ ├── map-marked.svg │ │ │ │ ├── map-marker-alt.svg │ │ │ │ ├── map-marker.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map-signs.svg │ │ │ │ ├── map.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── mars-double.svg │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ ├── mars-stroke.svg │ │ │ │ ├── mars.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.svg │ │ │ │ ├── meteor.svg │ │ │ │ ├── microchip.svg │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ ├── microphone-alt.svg │ │ │ │ ├── microphone-slash.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── microscope.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── mitten.svg │ │ │ │ ├── mobile-alt.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ ├── money-bill-wave.svg │ │ │ │ ├── money-bill.svg │ │ │ │ ├── money-check-alt.svg │ │ │ │ ├── money-check.svg │ │ │ │ ├── monument.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortar-pestle.svg │ │ │ │ ├── mosque.svg │ │ │ │ ├── motorcycle.svg │ │ │ │ ├── mountain.svg │ │ │ │ ├── mouse-pointer.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── mug-hot.svg │ │ │ │ ├── music.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── om.svg │ │ │ │ ├── otter.svg │ │ │ │ ├── outdent.svg │ │ │ │ ├── pager.svg │ │ │ │ ├── paint-brush.svg │ │ │ │ ├── paint-roller.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pallet.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── parachute-box.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── parking.svg │ │ │ │ ├── passport.svg │ │ │ │ ├── pastafarianism.svg │ │ │ │ ├── paste.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paw.svg │ │ │ │ ├── peace.svg │ │ │ │ ├── pen-alt.svg │ │ │ │ ├── pen-fancy.svg │ │ │ │ ├── pen-nib.svg │ │ │ │ ├── pen-square.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── pencil-alt.svg │ │ │ │ ├── pencil-ruler.svg │ │ │ │ ├── people-carry.svg │ │ │ │ ├── pepper-hot.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── percentage.svg │ │ │ │ ├── person-booth.svg │ │ │ │ ├── phone-alt.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-square-alt.svg │ │ │ │ ├── phone-square.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── photo-video.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── pizza-slice.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-departure.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── poll-h.svg │ │ │ │ ├── poll.svg │ │ │ │ ├── poo-storm.svg │ │ │ │ ├── poo.svg │ │ │ │ ├── poop.svg │ │ │ │ ├── portrait.svg │ │ │ │ ├── pound-sign.svg │ │ │ │ ├── power-off.svg │ │ │ │ ├── pray.svg │ │ │ │ ├── praying-hands.svg │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ ├── prescription-bottle.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── print.svg │ │ │ │ ├── procedures.svg │ │ │ │ ├── project-diagram.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quidditch.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── quran.svg │ │ │ │ ├── radiation-alt.svg │ │ │ │ ├── radiation.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── random.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── record-vinyl.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── redo-alt.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── remove-format.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── republican.svg │ │ │ │ ├── restroom.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── road.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── route.svg │ │ │ │ ├── rss-square.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── ruble-sign.svg │ │ │ │ ├── ruler-combined.svg │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ ├── ruler-vertical.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── running.svg │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── satellite-dish.svg │ │ │ │ ├── satellite.svg │ │ │ │ ├── save.svg │ │ │ │ ├── school.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── scroll.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── search-dollar.svg │ │ │ │ ├── search-location.svg │ │ │ │ ├── search-minus.svg │ │ │ │ ├── search-plus.svg │ │ │ │ ├── search.svg │ │ │ │ ├── seedling.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-alt-square.svg │ │ │ │ ├── share-alt.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shekel-sign.svg │ │ │ │ ├── shield-alt.svg │ │ │ │ ├── ship.svg │ │ │ │ ├── shipping-fast.svg │ │ │ │ ├── shoe-prints.svg │ │ │ │ ├── shopping-bag.svg │ │ │ │ ├── shopping-basket.svg │ │ │ │ ├── shopping-cart.svg │ │ │ │ ├── shower.svg │ │ │ │ ├── shuttle-van.svg │ │ │ │ ├── sign-in-alt.svg │ │ │ │ ├── sign-language.svg │ │ │ │ ├── sign-out-alt.svg │ │ │ │ ├── sign.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signature.svg │ │ │ │ ├── sim-card.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skating.svg │ │ │ │ ├── skiing-nordic.svg │ │ │ │ ├── skiing.svg │ │ │ │ ├── skull-crossbones.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sleigh.svg │ │ │ │ ├── sliders-h.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── smog.svg │ │ │ │ ├── smoking-ban.svg │ │ │ │ ├── smoking.svg │ │ │ │ ├── sms.svg │ │ │ │ ├── snowboarding.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── snowman.svg │ │ │ │ ├── snowplow.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ ├── sort-amount-down.svg │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ ├── sort-amount-up.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── space-shuttle.svg │ │ │ │ ├── spell-check.svg │ │ │ │ ├── spider.svg │ │ │ │ ├── spinner.svg │ │ │ │ ├── splotch.svg │ │ │ │ ├── spray-can.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-root-alt.svg │ │ │ │ ├── square.svg │ │ │ │ ├── stamp.svg │ │ │ │ ├── star-and-crescent.svg │ │ │ │ ├── star-half-alt.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star-of-david.svg │ │ │ │ ├── star-of-life.svg │ │ │ │ ├── star.svg │ │ │ │ ├── step-backward.svg │ │ │ │ ├── step-forward.svg │ │ │ │ ├── stethoscope.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── store-alt.svg │ │ │ │ ├── store.svg │ │ │ │ ├── stream.svg │ │ │ │ ├── street-view.svg │ │ │ │ ├── strikethrough.svg │ │ │ │ ├── stroopwafel.svg │ │ │ │ ├── subscript.svg │ │ │ │ ├── subway.svg │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ ├── suitcase.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── superscript.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── swatchbook.svg │ │ │ │ ├── swimmer.svg │ │ │ │ ├── swimming-pool.svg │ │ │ │ ├── synagogue.svg │ │ │ │ ├── sync-alt.svg │ │ │ │ ├── sync.svg │ │ │ │ ├── syringe.svg │ │ │ │ ├── table-tennis.svg │ │ │ │ ├── table.svg │ │ │ │ ├── tablet-alt.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── tablets.svg │ │ │ │ ├── tachometer-alt.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── tags.svg │ │ │ │ ├── tape.svg │ │ │ │ ├── tasks.svg │ │ │ │ ├── taxi.svg │ │ │ │ ├── teeth-open.svg │ │ │ │ ├── teeth.svg │ │ │ │ ├── temperature-high.svg │ │ │ │ ├── temperature-low.svg │ │ │ │ ├── tenge.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-height.svg │ │ │ │ ├── text-width.svg │ │ │ │ ├── th-large.svg │ │ │ │ ├── th-list.svg │ │ │ │ ├── th.svg │ │ │ │ ├── theater-masks.svg │ │ │ │ ├── thermometer-empty.svg │ │ │ │ ├── thermometer-full.svg │ │ │ │ ├── thermometer-half.svg │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── thumbtack.svg │ │ │ │ ├── ticket-alt.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── times.svg │ │ │ │ ├── tint-slash.svg │ │ │ │ ├── tint.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toilet-paper.svg │ │ │ │ ├── toilet.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torah.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── tractor.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── trailer.svg │ │ │ │ ├── train.svg │ │ │ │ ├── tram.svg │ │ │ │ ├── transgender-alt.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ ├── trash-restore.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── truck-loading.svg │ │ │ │ ├── truck-monster.svg │ │ │ │ ├── truck-moving.svg │ │ │ │ ├── truck-pickup.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tshirt.svg │ │ │ │ ├── tty.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── umbrella-beach.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── undo-alt.svg │ │ │ │ ├── undo.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── university.svg │ │ │ │ ├── unlink.svg │ │ │ │ ├── unlock-alt.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user-alt-slash.svg │ │ │ │ ├── user-alt.svg │ │ │ │ ├── user-astronaut.svg │ │ │ │ ├── user-check.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user-clock.svg │ │ │ │ ├── user-cog.svg │ │ │ │ ├── user-edit.svg │ │ │ │ ├── user-friends.svg │ │ │ │ ├── user-graduate.svg │ │ │ │ ├── user-injured.svg │ │ │ │ ├── user-lock.svg │ │ │ │ ├── user-md.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.svg │ │ │ │ ├── user-nurse.svg │ │ │ │ ├── user-plus.svg │ │ │ │ ├── user-secret.svg │ │ │ │ ├── user-shield.svg │ │ │ │ ├── user-slash.svg │ │ │ │ ├── user-tag.svg │ │ │ │ ├── user-tie.svg │ │ │ │ ├── user-times.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users-cog.svg │ │ │ │ ├── users.svg │ │ │ │ ├── utensil-spoon.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volleyball-ball.svg │ │ │ │ ├── volume-down.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-up.svg │ │ │ │ ├── vote-yea.svg │ │ │ │ ├── vr-cardboard.svg │ │ │ │ ├── walking.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wave-square.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── wine-bottle.svg │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ ├── wine-glass.svg │ │ │ │ ├── won-sign.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-ray.svg │ │ │ │ ├── yen-sign.svg │ │ │ │ └── yin-yang.svg │ │ └── 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 │ ├── jquery-ui │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── external │ │ │ └── jquery │ │ │ │ └── jquery.js │ │ ├── images │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── index.html │ │ ├── jquery-ui.css │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.css │ │ ├── jquery-ui.min.js │ │ ├── jquery-ui.structure.css │ │ ├── jquery-ui.structure.min.css │ │ ├── jquery-ui.theme.css │ │ ├── jquery-ui.theme.min.css │ │ └── package.json │ ├── summernote │ │ └── dist │ │ │ ├── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ ├── summernote.woff │ │ │ └── summernote.woff2 │ │ │ ├── lang │ │ │ ├── summernote-ar-AR.js │ │ │ ├── summernote-ar-AR.min.js │ │ │ ├── summernote-bg-BG.js │ │ │ ├── summernote-bg-BG.min.js │ │ │ ├── summernote-ca-ES.js │ │ │ ├── summernote-ca-ES.min.js │ │ │ ├── summernote-cs-CZ.js │ │ │ ├── summernote-cs-CZ.min.js │ │ │ ├── summernote-da-DK.js │ │ │ ├── summernote-da-DK.min.js │ │ │ ├── summernote-de-DE.js │ │ │ ├── summernote-de-DE.min.js │ │ │ ├── summernote-el-GR.js │ │ │ ├── summernote-el-GR.min.js │ │ │ ├── summernote-es-ES.js │ │ │ ├── summernote-es-ES.min.js │ │ │ ├── summernote-es-EU.js │ │ │ ├── summernote-es-EU.min.js │ │ │ ├── summernote-fa-IR.js │ │ │ ├── summernote-fa-IR.min.js │ │ │ ├── summernote-fi-FI.js │ │ │ ├── summernote-fi-FI.min.js │ │ │ ├── summernote-fr-FR.js │ │ │ ├── summernote-fr-FR.min.js │ │ │ ├── summernote-gl-ES.js │ │ │ ├── summernote-gl-ES.min.js │ │ │ ├── summernote-he-IL.js │ │ │ ├── summernote-he-IL.min.js │ │ │ ├── summernote-hr-HR.js │ │ │ ├── summernote-hr-HR.min.js │ │ │ ├── summernote-hu-HU.js │ │ │ ├── summernote-hu-HU.min.js │ │ │ ├── summernote-id-ID.js │ │ │ ├── summernote-id-ID.min.js │ │ │ ├── summernote-it-IT.js │ │ │ ├── summernote-it-IT.min.js │ │ │ ├── summernote-ja-JP.js │ │ │ ├── summernote-ja-JP.min.js │ │ │ ├── summernote-ko-KR.js │ │ │ ├── summernote-ko-KR.min.js │ │ │ ├── summernote-lt-LT.js │ │ │ ├── summernote-lt-LT.min.js │ │ │ ├── summernote-lt-LV.js │ │ │ ├── summernote-lt-LV.min.js │ │ │ ├── summernote-mn-MN.js │ │ │ ├── summernote-mn-MN.min.js │ │ │ ├── summernote-nb-NO.js │ │ │ ├── summernote-nb-NO.min.js │ │ │ ├── summernote-nl-NL.js │ │ │ ├── summernote-nl-NL.min.js │ │ │ ├── summernote-pl-PL.js │ │ │ ├── summernote-pl-PL.min.js │ │ │ ├── summernote-pt-BR.js │ │ │ ├── summernote-pt-BR.min.js │ │ │ ├── summernote-pt-PT.js │ │ │ ├── summernote-pt-PT.min.js │ │ │ ├── summernote-ro-RO.js │ │ │ ├── summernote-ro-RO.min.js │ │ │ ├── summernote-ru-RU.js │ │ │ ├── summernote-ru-RU.min.js │ │ │ ├── summernote-sk-SK.js │ │ │ ├── summernote-sk-SK.min.js │ │ │ ├── summernote-sl-SI.js │ │ │ ├── summernote-sl-SI.min.js │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ ├── summernote-sr-RS-Latin.min.js │ │ │ ├── summernote-sr-RS.js │ │ │ ├── summernote-sr-RS.min.js │ │ │ ├── summernote-sv-SE.js │ │ │ ├── summernote-sv-SE.min.js │ │ │ ├── summernote-ta-IN.js │ │ │ ├── summernote-ta-IN.min.js │ │ │ ├── summernote-th-TH.js │ │ │ ├── summernote-th-TH.min.js │ │ │ ├── summernote-tr-TR.js │ │ │ ├── summernote-tr-TR.min.js │ │ │ ├── summernote-uk-UA.js │ │ │ ├── summernote-uk-UA.min.js │ │ │ ├── summernote-uz-UZ.js │ │ │ ├── summernote-uz-UZ.min.js │ │ │ ├── summernote-vi-VN.js │ │ │ ├── summernote-vi-VN.min.js │ │ │ ├── summernote-zh-CN.js │ │ │ ├── summernote-zh-CN.min.js │ │ │ ├── summernote-zh-TW.js │ │ │ └── summernote-zh-TW.min.js │ │ │ ├── summernote-bs4.css │ │ │ ├── summernote-bs4.js │ │ │ ├── summernote-bs4.js.map │ │ │ ├── summernote-bs4.min.css │ │ │ ├── summernote-bs4.min.js │ │ │ ├── summernote-bs4.min.js.map │ │ │ ├── summernote-lite.css │ │ │ ├── summernote-lite.js │ │ │ ├── summernote-lite.js.map │ │ │ ├── summernote-lite.min.css │ │ │ ├── summernote-lite.min.js │ │ │ ├── summernote-lite.min.js.map │ │ │ ├── summernote.css │ │ │ ├── summernote.js │ │ │ ├── summernote.js.map │ │ │ ├── summernote.min.css │ │ │ ├── summernote.min.js │ │ │ └── summernote.min.js.map │ └── viewsync │ │ └── index.js ├── robots.txt ├── stisla │ ├── .DS_Store │ ├── assets │ │ ├── css │ │ │ ├── brown.css │ │ │ ├── brown.min.css │ │ │ ├── citron.css │ │ │ ├── components.css │ │ │ ├── components.css.map │ │ │ ├── components.min.css │ │ │ ├── custom.css │ │ │ ├── custom.css.map │ │ │ ├── indigo.css │ │ │ ├── orange.css │ │ │ ├── pink.css │ │ │ ├── purple.css │ │ │ ├── purple.css.map │ │ │ ├── red.css │ │ │ ├── reverse.css │ │ │ ├── rtl.css │ │ │ ├── skins │ │ │ │ ├── reverse.css │ │ │ │ └── reverse.css.map │ │ │ ├── style.css │ │ │ ├── style.css.map │ │ │ ├── styleku.css │ │ │ ├── styleku.min.css │ │ │ └── yellow.css │ │ ├── fonts │ │ │ ├── nunito-v9-latin-600.eot │ │ │ ├── nunito-v9-latin-600.svg │ │ │ ├── nunito-v9-latin-600.ttf │ │ │ ├── nunito-v9-latin-600.woff │ │ │ ├── nunito-v9-latin-600.woff2 │ │ │ ├── nunito-v9-latin-700.eot │ │ │ ├── nunito-v9-latin-700.svg │ │ │ ├── nunito-v9-latin-700.ttf │ │ │ ├── nunito-v9-latin-700.woff │ │ │ ├── nunito-v9-latin-700.woff2 │ │ │ ├── nunito-v9-latin-800.eot │ │ │ ├── nunito-v9-latin-800.svg │ │ │ ├── nunito-v9-latin-800.ttf │ │ │ ├── nunito-v9-latin-800.woff │ │ │ ├── nunito-v9-latin-800.woff2 │ │ │ ├── nunito-v9-latin-regular.eot │ │ │ ├── nunito-v9-latin-regular.svg │ │ │ ├── nunito-v9-latin-regular.ttf │ │ │ ├── nunito-v9-latin-regular.woff │ │ │ ├── nunito-v9-latin-regular.woff2 │ │ │ └── vazir │ │ │ │ ├── Farsi-Digits-Without-Latin │ │ │ │ ├── Vazir-Black-FD-WOL.eot │ │ │ │ ├── Vazir-Black-FD-WOL.ttf │ │ │ │ ├── Vazir-Black-FD-WOL.woff │ │ │ │ ├── Vazir-Black-FD-WOL.woff2 │ │ │ │ ├── Vazir-Bold-FD-WOL.eot │ │ │ │ ├── Vazir-Bold-FD-WOL.ttf │ │ │ │ ├── Vazir-Bold-FD-WOL.woff │ │ │ │ ├── Vazir-Bold-FD-WOL.woff2 │ │ │ │ ├── Vazir-FD-WOL.eot │ │ │ │ ├── Vazir-FD-WOL.ttf │ │ │ │ ├── Vazir-FD-WOL.woff │ │ │ │ ├── Vazir-FD-WOL.woff2 │ │ │ │ ├── Vazir-Light-FD-WOL.eot │ │ │ │ ├── Vazir-Light-FD-WOL.ttf │ │ │ │ ├── Vazir-Light-FD-WOL.woff │ │ │ │ ├── Vazir-Light-FD-WOL.woff2 │ │ │ │ ├── Vazir-Medium-FD-WOL.eot │ │ │ │ ├── Vazir-Medium-FD-WOL.ttf │ │ │ │ ├── Vazir-Medium-FD-WOL.woff │ │ │ │ ├── Vazir-Medium-FD-WOL.woff2 │ │ │ │ ├── Vazir-Thin-FD-WOL.eot │ │ │ │ ├── Vazir-Thin-FD-WOL.ttf │ │ │ │ ├── Vazir-Thin-FD-WOL.woff │ │ │ │ └── Vazir-Thin-FD-WOL.woff2 │ │ │ │ ├── Farsi-Digits │ │ │ │ ├── Vazir-Black-FD.eot │ │ │ │ ├── Vazir-Black-FD.ttf │ │ │ │ ├── Vazir-Black-FD.woff │ │ │ │ ├── Vazir-Black-FD.woff2 │ │ │ │ ├── Vazir-Bold-FD.eot │ │ │ │ ├── Vazir-Bold-FD.ttf │ │ │ │ ├── Vazir-Bold-FD.woff │ │ │ │ ├── Vazir-Bold-FD.woff2 │ │ │ │ ├── Vazir-FD.eot │ │ │ │ ├── Vazir-FD.ttf │ │ │ │ ├── Vazir-FD.woff │ │ │ │ ├── Vazir-FD.woff2 │ │ │ │ ├── Vazir-Light-FD.eot │ │ │ │ ├── Vazir-Light-FD.ttf │ │ │ │ ├── Vazir-Light-FD.woff │ │ │ │ ├── Vazir-Light-FD.woff2 │ │ │ │ ├── Vazir-Medium-FD.eot │ │ │ │ ├── Vazir-Medium-FD.ttf │ │ │ │ ├── Vazir-Medium-FD.woff │ │ │ │ ├── Vazir-Medium-FD.woff2 │ │ │ │ ├── Vazir-Thin-FD.eot │ │ │ │ ├── Vazir-Thin-FD.ttf │ │ │ │ ├── Vazir-Thin-FD.woff │ │ │ │ └── Vazir-Thin-FD.woff2 │ │ │ │ ├── LICENSE │ │ │ │ ├── Vazir-Black.eot │ │ │ │ ├── Vazir-Black.ttf │ │ │ │ ├── Vazir-Black.woff │ │ │ │ ├── Vazir-Black.woff2 │ │ │ │ ├── Vazir-Bold.eot │ │ │ │ ├── Vazir-Bold.ttf │ │ │ │ ├── Vazir-Bold.woff │ │ │ │ ├── Vazir-Bold.woff2 │ │ │ │ ├── Vazir-Light.eot │ │ │ │ ├── Vazir-Light.ttf │ │ │ │ ├── Vazir-Light.woff │ │ │ │ ├── Vazir-Light.woff2 │ │ │ │ ├── Vazir-Medium.eot │ │ │ │ ├── Vazir-Medium.ttf │ │ │ │ ├── Vazir-Medium.woff │ │ │ │ ├── Vazir-Medium.woff2 │ │ │ │ ├── Vazir-Thin.eot │ │ │ │ ├── Vazir-Thin.ttf │ │ │ │ ├── Vazir-Thin.woff │ │ │ │ ├── Vazir-Thin.woff2 │ │ │ │ ├── Vazir.eot │ │ │ │ ├── Vazir.ttf │ │ │ │ ├── Vazir.woff │ │ │ │ ├── Vazir.woff2 │ │ │ │ ├── Without-Latin │ │ │ │ ├── Vazir-Black-WOL.eot │ │ │ │ ├── Vazir-Black-WOL.ttf │ │ │ │ ├── Vazir-Black-WOL.woff │ │ │ │ ├── Vazir-Black-WOL.woff2 │ │ │ │ ├── Vazir-Bold-WOL.eot │ │ │ │ ├── Vazir-Bold-WOL.ttf │ │ │ │ ├── Vazir-Bold-WOL.woff │ │ │ │ ├── Vazir-Bold-WOL.woff2 │ │ │ │ ├── Vazir-Light-WOL.eot │ │ │ │ ├── Vazir-Light-WOL.ttf │ │ │ │ ├── Vazir-Light-WOL.woff │ │ │ │ ├── Vazir-Light-WOL.woff2 │ │ │ │ ├── Vazir-Medium-WOL.eot │ │ │ │ ├── Vazir-Medium-WOL.ttf │ │ │ │ ├── Vazir-Medium-WOL.woff │ │ │ │ ├── Vazir-Medium-WOL.woff2 │ │ │ │ ├── Vazir-Thin-WOL.eot │ │ │ │ ├── Vazir-Thin-WOL.ttf │ │ │ │ ├── Vazir-Thin-WOL.woff │ │ │ │ ├── Vazir-Thin-WOL.woff2 │ │ │ │ ├── Vazir-WOL.eot │ │ │ │ ├── Vazir-WOL.ttf │ │ │ │ ├── Vazir-WOL.woff │ │ │ │ └── Vazir-WOL.woff2 │ │ │ │ ├── font-face.css │ │ │ │ └── sample.png │ │ ├── img │ │ │ ├── avatar │ │ │ │ ├── avatar-1.png │ │ │ │ ├── avatar-2.png │ │ │ │ ├── avatar-3.png │ │ │ │ ├── avatar-4.png │ │ │ │ └── avatar-5.png │ │ │ ├── drawkit │ │ │ │ ├── drawkit-full-stack-man-colour.svg │ │ │ │ ├── drawkit-mobile-article-colour.svg │ │ │ │ ├── drawkit-nature-man-colour.svg │ │ │ │ └── revenue-graph-colour.svg │ │ │ ├── example-image-50.jpg │ │ │ ├── example-image.jpg │ │ │ ├── favicon.ico │ │ │ ├── news │ │ │ │ ├── img01.jpg │ │ │ │ ├── img02.jpg │ │ │ │ ├── img03.jpg │ │ │ │ ├── img04.jpg │ │ │ │ ├── img05.jpg │ │ │ │ ├── img06.jpg │ │ │ │ ├── img07.jpg │ │ │ │ ├── img08.jpg │ │ │ │ ├── img09.jpg │ │ │ │ ├── img10.jpg │ │ │ │ ├── img11.jpg │ │ │ │ ├── img12.jpg │ │ │ │ ├── img13.jpg │ │ │ │ ├── img14.jpg │ │ │ │ ├── img15.jpg │ │ │ │ ├── img16.jpg │ │ │ │ └── img17.jpg │ │ │ ├── p-250.png │ │ │ ├── p-50.png │ │ │ ├── products │ │ │ │ ├── product-1-50.png │ │ │ │ ├── product-1.jpg │ │ │ │ ├── product-2-50.png │ │ │ │ ├── product-2.jpg │ │ │ │ ├── product-3-50.png │ │ │ │ ├── product-3.jpg │ │ │ │ ├── product-4-50.png │ │ │ │ ├── product-4.jpg │ │ │ │ ├── product-5-50.png │ │ │ │ └── product-5.jpg │ │ │ ├── stisla-fill.png │ │ │ ├── stisla-fill.svg │ │ │ ├── stisla-light.svg │ │ │ ├── stisla-transparent.svg │ │ │ ├── stisla.svg │ │ │ └── unsplash │ │ │ │ ├── andre-benz-1214056-unsplash.jpg │ │ │ │ ├── eberhard-grossgasteiger-1207565-unsplash.jpg │ │ │ │ └── login-bg.jpg │ │ └── js │ │ │ ├── custom.js │ │ │ ├── my-script.js │ │ │ ├── my-script.min.js │ │ │ ├── page │ │ │ ├── auth-register.js │ │ │ ├── bootstrap-modal.js │ │ │ ├── components-chat-box.js │ │ │ ├── components-multiple-upload.js │ │ │ ├── components-statistic.js │ │ │ ├── components-table.js │ │ │ ├── components-user.js │ │ │ ├── features-post-create.js │ │ │ ├── features-posts.js │ │ │ ├── features-setting-detail.js │ │ │ ├── forms-advanced-forms.js │ │ │ ├── gmaps-advanced-route.js │ │ │ ├── gmaps-draggable-marker.js │ │ │ ├── gmaps-geocoding.js │ │ │ ├── gmaps-geolocation.js │ │ │ ├── gmaps-marker.js │ │ │ ├── gmaps-multiple-marker.js │ │ │ ├── gmaps-route.js │ │ │ ├── gmaps-simple.js │ │ │ ├── index-0.js │ │ │ ├── index.js │ │ │ ├── modules-calendar.js │ │ │ ├── modules-chartjs.js │ │ │ ├── modules-datatables.js │ │ │ ├── modules-ion-icons.js │ │ │ ├── modules-slider.js │ │ │ ├── modules-sparkline.js │ │ │ ├── modules-sweetalert.js │ │ │ ├── modules-toastr.js │ │ │ ├── modules-vector-map.js │ │ │ └── utilities-contact.js │ │ │ ├── scripts.js │ │ │ └── stisla.js │ ├── node_modules │ │ ├── axios │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADE_GUIDE.md │ │ │ ├── dist │ │ │ │ ├── axios.js │ │ │ │ ├── axios.map │ │ │ │ ├── axios.min.js │ │ │ │ └── axios.min.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── adapters │ │ │ │ │ ├── README.md │ │ │ │ │ ├── http.js │ │ │ │ │ └── xhr.js │ │ │ │ ├── axios.js │ │ │ │ ├── cancel │ │ │ │ │ ├── Cancel.js │ │ │ │ │ ├── CancelToken.js │ │ │ │ │ └── isCancel.js │ │ │ │ ├── core │ │ │ │ │ ├── Axios.js │ │ │ │ │ ├── InterceptorManager.js │ │ │ │ │ ├── README.md │ │ │ │ │ ├── createError.js │ │ │ │ │ ├── dispatchRequest.js │ │ │ │ │ ├── enhanceError.js │ │ │ │ │ ├── mergeConfig.js │ │ │ │ │ ├── settle.js │ │ │ │ │ └── transformData.js │ │ │ │ ├── defaults.js │ │ │ │ ├── helpers │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bind.js │ │ │ │ │ ├── buildURL.js │ │ │ │ │ ├── combineURLs.js │ │ │ │ │ ├── cookies.js │ │ │ │ │ ├── deprecatedMethod.js │ │ │ │ │ ├── isAbsoluteURL.js │ │ │ │ │ ├── isURLSameOrigin.js │ │ │ │ │ ├── normalizeHeaderName.js │ │ │ │ │ ├── parseHeaders.js │ │ │ │ │ └── spread.js │ │ │ │ └── utils.js │ │ │ ├── node_modules │ │ │ │ └── is-buffer │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ └── package.json │ │ ├── bootstrap-colorpicker │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-colorpicker.css │ │ │ │ │ ├── bootstrap-colorpicker.css.map │ │ │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ │ │ └── bootstrap-colorpicker.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ │ ├── bootstrap-colorpicker.js.map │ │ │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ │ │ └── bootstrap-colorpicker.min.js.map │ │ │ ├── logo.png │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── js │ │ │ │ │ ├── AddonHandler.js │ │ │ │ │ ├── ColorHandler.js │ │ │ │ │ ├── ColorItem.js │ │ │ │ │ ├── Colorpicker.js │ │ │ │ │ ├── Extension.js │ │ │ │ │ ├── InputHandler.js │ │ │ │ │ ├── PickerHandler.js │ │ │ │ │ ├── PopupHandler.js │ │ │ │ │ ├── SliderHandler.js │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── Debugger.js │ │ │ │ │ │ ├── Palette.js │ │ │ │ │ │ ├── Preview.js │ │ │ │ │ │ ├── Swatches.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── options.js │ │ │ │ │ └── plugin.js │ │ │ │ └── sass │ │ │ │ │ └── colorpicker.scss │ │ │ └── yarn.lock │ │ ├── bootstrap-daterangepicker │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── daterangepicker.css │ │ │ ├── daterangepicker.js │ │ │ ├── demo.html │ │ │ ├── drp.png │ │ │ ├── example │ │ │ │ ├── amd │ │ │ │ │ ├── index.html │ │ │ │ │ ├── main.js │ │ │ │ │ └── require.js │ │ │ │ └── browserify │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bundle.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── main.js │ │ │ ├── index.html │ │ │ ├── moment.min.js │ │ │ ├── package.js │ │ │ ├── package.json │ │ │ ├── test.html │ │ │ ├── website.css │ │ │ ├── website.js │ │ │ └── website │ │ │ │ ├── index.html │ │ │ │ ├── website.css │ │ │ │ └── website.js │ │ ├── bootstrap-social │ │ │ ├── .editorconfig │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── docs.css │ │ │ │ │ └── font-awesome.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── img │ │ │ │ │ └── bootstrap-social.png │ │ │ │ └── js │ │ │ │ │ ├── docs.js │ │ │ │ │ └── jquery.js │ │ │ ├── bootstrap-social.css │ │ │ ├── bootstrap-social.less │ │ │ ├── bootstrap-social.scss │ │ │ ├── bower.json │ │ │ ├── index.html │ │ │ ├── node_modules │ │ │ │ └── bootstrap │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── 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 │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ ├── grunt │ │ │ │ │ ├── .jshintrc │ │ │ │ │ ├── .stylelintrc │ │ │ │ │ ├── browsers.js │ │ │ │ │ ├── bs-commonjs-generator.js │ │ │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ │ │ ├── bs-lessdoc-parser.js │ │ │ │ │ ├── bs-raw-files-generator.js │ │ │ │ │ ├── change-version.js │ │ │ │ │ ├── configBridge.json │ │ │ │ │ ├── generate-sri.js │ │ │ │ │ └── karma.conf.js │ │ │ │ │ ├── js │ │ │ │ │ ├── affix.js │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ └── transition.js │ │ │ │ │ ├── less │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── badges.less │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ ├── breadcrumbs.less │ │ │ │ │ ├── button-groups.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── carousel.less │ │ │ │ │ ├── close.less │ │ │ │ │ ├── code.less │ │ │ │ │ ├── component-animations.less │ │ │ │ │ ├── dropdowns.less │ │ │ │ │ ├── forms.less │ │ │ │ │ ├── glyphicons.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── input-groups.less │ │ │ │ │ ├── jumbotron.less │ │ │ │ │ ├── labels.less │ │ │ │ │ ├── list-group.less │ │ │ │ │ ├── media.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── mixins │ │ │ │ │ │ ├── alerts.less │ │ │ │ │ │ ├── background-variant.less │ │ │ │ │ │ ├── border-radius.less │ │ │ │ │ │ ├── buttons.less │ │ │ │ │ │ ├── center-block.less │ │ │ │ │ │ ├── clearfix.less │ │ │ │ │ │ ├── forms.less │ │ │ │ │ │ ├── gradients.less │ │ │ │ │ │ ├── grid-framework.less │ │ │ │ │ │ ├── grid.less │ │ │ │ │ │ ├── hide-text.less │ │ │ │ │ │ ├── image.less │ │ │ │ │ │ ├── labels.less │ │ │ │ │ │ ├── list-group.less │ │ │ │ │ │ ├── nav-divider.less │ │ │ │ │ │ ├── nav-vertical-align.less │ │ │ │ │ │ ├── opacity.less │ │ │ │ │ │ ├── pagination.less │ │ │ │ │ │ ├── panels.less │ │ │ │ │ │ ├── progress-bar.less │ │ │ │ │ │ ├── reset-filter.less │ │ │ │ │ │ ├── reset-text.less │ │ │ │ │ │ ├── resize.less │ │ │ │ │ │ ├── responsive-visibility.less │ │ │ │ │ │ ├── size.less │ │ │ │ │ │ ├── tab-focus.less │ │ │ │ │ │ ├── table-row.less │ │ │ │ │ │ ├── text-emphasis.less │ │ │ │ │ │ ├── text-overflow.less │ │ │ │ │ │ └── vendor-prefixes.less │ │ │ │ │ ├── modals.less │ │ │ │ │ ├── navbar.less │ │ │ │ │ ├── navs.less │ │ │ │ │ ├── normalize.less │ │ │ │ │ ├── pager.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── panels.less │ │ │ │ │ ├── popovers.less │ │ │ │ │ ├── print.less │ │ │ │ │ ├── progress-bars.less │ │ │ │ │ ├── responsive-embed.less │ │ │ │ │ ├── responsive-utilities.less │ │ │ │ │ ├── scaffolding.less │ │ │ │ │ ├── tables.less │ │ │ │ │ ├── theme.less │ │ │ │ │ ├── thumbnails.less │ │ │ │ │ ├── tooltip.less │ │ │ │ │ ├── type.less │ │ │ │ │ ├── utilities.less │ │ │ │ │ ├── variables.less │ │ │ │ │ └── wells.less │ │ │ │ │ └── package.json │ │ │ └── package.json │ │ ├── bootstrap-tagsinput │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bootstrap-tagsinput.jquery.json │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── bootstrap-tagsinput-angular.js │ │ │ │ ├── bootstrap-tagsinput-angular.min.js │ │ │ │ ├── bootstrap-tagsinput-angular.min.js.map │ │ │ │ ├── bootstrap-tagsinput-typeahead.css │ │ │ │ ├── bootstrap-tagsinput.css │ │ │ │ ├── bootstrap-tagsinput.js │ │ │ │ ├── bootstrap-tagsinput.less │ │ │ │ ├── bootstrap-tagsinput.min.js │ │ │ │ ├── bootstrap-tagsinput.min.js.map │ │ │ │ └── bootstrap-tagsinput.zip │ │ │ ├── examples │ │ │ │ ├── assets │ │ │ │ │ ├── app.css │ │ │ │ │ ├── app.js │ │ │ │ │ ├── app_bs2.js │ │ │ │ │ ├── app_bs3.js │ │ │ │ │ ├── cities.json │ │ │ │ │ └── citynames.json │ │ │ │ ├── bootstrap-2.3.2.html │ │ │ │ └── index.html │ │ │ ├── karma.conf.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── bootstrap-tagsinput-angular.js │ │ │ │ ├── bootstrap-tagsinput-typeahead.css │ │ │ │ ├── bootstrap-tagsinput.css │ │ │ │ └── bootstrap-tagsinput.js │ │ │ └── test │ │ │ │ ├── bootstrap-tagsinput-angular.tests.js │ │ │ │ ├── bootstrap-tagsinput │ │ │ │ ├── events.tests.js │ │ │ │ ├── input_with_object_items.tests.js │ │ │ │ ├── input_with_string_items.tests.js │ │ │ │ ├── reproduced_bugs.tests.js │ │ │ │ ├── select_with_object_items.tests.js │ │ │ │ └── select_with_string_items.tests.js │ │ │ │ ├── helpers.js │ │ │ │ └── index.html │ │ ├── bootstrap-timepicker │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── css │ │ │ │ ├── bootstrap-timepicker.css │ │ │ │ ├── bootstrap-timepicker.min.css │ │ │ │ └── timepicker.less │ │ │ ├── js │ │ │ │ ├── bootstrap-timepicker.js │ │ │ │ └── bootstrap-timepicker.min.js │ │ │ └── package.json │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── js │ │ │ │ ├── dist │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── alert.js.map │ │ │ │ │ ├── button.js │ │ │ │ │ ├── button.js.map │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── carousel.js.map │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── collapse.js.map │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── dropdown.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── modal.js.map │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── popover.js.map │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── scrollspy.js.map │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tab.js.map │ │ │ │ │ ├── toast.js │ │ │ │ │ ├── toast.js.map │ │ │ │ │ ├── tooltip.js │ │ │ │ │ ├── tooltip.js.map │ │ │ │ │ ├── util.js │ │ │ │ │ └── util.js.map │ │ │ │ └── src │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── toast.js │ │ │ │ │ ├── tools │ │ │ │ │ └── sanitizer.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ └── util.js │ │ │ ├── package.json │ │ │ └── scss │ │ │ │ ├── _alert.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _breadcrumb.scss │ │ │ │ ├── _button-group.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _card.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _custom-forms.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _images.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _popover.scss │ │ │ │ ├── _print.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _reboot.scss │ │ │ │ ├── _root.scss │ │ │ │ ├── _spinners.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _toasts.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _transitions.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ ├── bootstrap.scss │ │ │ │ ├── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _box-shadow.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _caret.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _deprecate.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hover.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-hide.scss │ │ │ │ ├── _text-truncate.scss │ │ │ │ ├── _transition.scss │ │ │ │ └── _visibility.scss │ │ │ │ ├── utilities │ │ │ │ ├── _align.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _borders.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _display.scss │ │ │ │ ├── _embed.scss │ │ │ │ ├── _flex.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _overflow.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _screenreaders.scss │ │ │ │ ├── _shadows.scss │ │ │ │ ├── _sizing.scss │ │ │ │ ├── _spacing.scss │ │ │ │ ├── _stretched-link.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _visibility.scss │ │ │ │ └── vendor │ │ │ │ └── _rfs.scss │ │ ├── chart.js │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── composer.json │ │ │ ├── dist │ │ │ │ ├── Chart.bundle.js │ │ │ │ ├── Chart.bundle.min.js │ │ │ │ ├── Chart.css │ │ │ │ ├── Chart.js │ │ │ │ ├── Chart.min.css │ │ │ │ └── Chart.min.js │ │ │ └── package.json │ │ ├── cleave.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── .DS_Store │ │ │ │ ├── addons │ │ │ │ │ ├── cleave-phone.ac.js │ │ │ │ │ ├── cleave-phone.ad.js │ │ │ │ │ ├── cleave-phone.ae.js │ │ │ │ │ ├── cleave-phone.af.js │ │ │ │ │ ├── cleave-phone.ag.js │ │ │ │ │ ├── cleave-phone.ai.js │ │ │ │ │ ├── cleave-phone.al.js │ │ │ │ │ ├── cleave-phone.am.js │ │ │ │ │ ├── cleave-phone.ao.js │ │ │ │ │ ├── cleave-phone.ar.js │ │ │ │ │ ├── cleave-phone.as.js │ │ │ │ │ ├── cleave-phone.at.js │ │ │ │ │ ├── cleave-phone.au-cn.js │ │ │ │ │ ├── cleave-phone.au.js │ │ │ │ │ ├── cleave-phone.aw.js │ │ │ │ │ ├── cleave-phone.ax.js │ │ │ │ │ ├── cleave-phone.az.js │ │ │ │ │ ├── cleave-phone.ba.js │ │ │ │ │ ├── cleave-phone.bb.js │ │ │ │ │ ├── cleave-phone.bd.js │ │ │ │ │ ├── cleave-phone.be.js │ │ │ │ │ ├── cleave-phone.bf.js │ │ │ │ │ ├── cleave-phone.bg.js │ │ │ │ │ ├── cleave-phone.bh.js │ │ │ │ │ ├── cleave-phone.bi.js │ │ │ │ │ ├── cleave-phone.bj.js │ │ │ │ │ ├── cleave-phone.bl.js │ │ │ │ │ ├── cleave-phone.bm.js │ │ │ │ │ ├── cleave-phone.bn.js │ │ │ │ │ ├── cleave-phone.bo.js │ │ │ │ │ ├── cleave-phone.bq.js │ │ │ │ │ ├── cleave-phone.br.js │ │ │ │ │ ├── cleave-phone.bs.js │ │ │ │ │ ├── cleave-phone.bt.js │ │ │ │ │ ├── cleave-phone.bw.js │ │ │ │ │ ├── cleave-phone.by.js │ │ │ │ │ ├── cleave-phone.bz.js │ │ │ │ │ ├── cleave-phone.ca.js │ │ │ │ │ ├── cleave-phone.cc.js │ │ │ │ │ ├── cleave-phone.cd.js │ │ │ │ │ ├── cleave-phone.cf.js │ │ │ │ │ ├── cleave-phone.cg.js │ │ │ │ │ ├── cleave-phone.ch.js │ │ │ │ │ ├── cleave-phone.ci.js │ │ │ │ │ ├── cleave-phone.ck.js │ │ │ │ │ ├── cleave-phone.cl.js │ │ │ │ │ ├── cleave-phone.cm.js │ │ │ │ │ ├── cleave-phone.cn.js │ │ │ │ │ ├── cleave-phone.co.js │ │ │ │ │ ├── cleave-phone.cr.js │ │ │ │ │ ├── cleave-phone.cu.js │ │ │ │ │ ├── cleave-phone.cv.js │ │ │ │ │ ├── cleave-phone.cw.js │ │ │ │ │ ├── cleave-phone.cx.js │ │ │ │ │ ├── cleave-phone.cy.js │ │ │ │ │ ├── cleave-phone.cz.js │ │ │ │ │ ├── cleave-phone.de.js │ │ │ │ │ ├── cleave-phone.dj.js │ │ │ │ │ ├── cleave-phone.dk.js │ │ │ │ │ ├── cleave-phone.dm.js │ │ │ │ │ ├── cleave-phone.do.js │ │ │ │ │ ├── cleave-phone.dz.js │ │ │ │ │ ├── cleave-phone.ec.js │ │ │ │ │ ├── cleave-phone.ee.js │ │ │ │ │ ├── cleave-phone.eg.js │ │ │ │ │ ├── cleave-phone.eh.js │ │ │ │ │ ├── cleave-phone.er.js │ │ │ │ │ ├── cleave-phone.es.js │ │ │ │ │ ├── cleave-phone.et.js │ │ │ │ │ ├── cleave-phone.fi.js │ │ │ │ │ ├── cleave-phone.fj.js │ │ │ │ │ ├── cleave-phone.fk.js │ │ │ │ │ ├── cleave-phone.fm.js │ │ │ │ │ ├── cleave-phone.fo.js │ │ │ │ │ ├── cleave-phone.fr.js │ │ │ │ │ ├── cleave-phone.ga.js │ │ │ │ │ ├── cleave-phone.gb.js │ │ │ │ │ ├── cleave-phone.gd.js │ │ │ │ │ ├── cleave-phone.ge.js │ │ │ │ │ ├── cleave-phone.gf.js │ │ │ │ │ ├── cleave-phone.gg.js │ │ │ │ │ ├── cleave-phone.gh.js │ │ │ │ │ ├── cleave-phone.gi.js │ │ │ │ │ ├── cleave-phone.gl.js │ │ │ │ │ ├── cleave-phone.gm.js │ │ │ │ │ ├── cleave-phone.gn.js │ │ │ │ │ ├── cleave-phone.gp.js │ │ │ │ │ ├── cleave-phone.gq.js │ │ │ │ │ ├── cleave-phone.gr.js │ │ │ │ │ ├── cleave-phone.gt.js │ │ │ │ │ ├── cleave-phone.gu.js │ │ │ │ │ ├── cleave-phone.gw.js │ │ │ │ │ ├── cleave-phone.gy.js │ │ │ │ │ ├── cleave-phone.hk.js │ │ │ │ │ ├── cleave-phone.hn.js │ │ │ │ │ ├── cleave-phone.hr.js │ │ │ │ │ ├── cleave-phone.ht.js │ │ │ │ │ ├── cleave-phone.hu.js │ │ │ │ │ ├── cleave-phone.i18n.js │ │ │ │ │ ├── cleave-phone.id.js │ │ │ │ │ ├── cleave-phone.ie.js │ │ │ │ │ ├── cleave-phone.il.js │ │ │ │ │ ├── cleave-phone.im.js │ │ │ │ │ ├── cleave-phone.in.js │ │ │ │ │ ├── cleave-phone.io.js │ │ │ │ │ ├── cleave-phone.iq.js │ │ │ │ │ ├── cleave-phone.ir.js │ │ │ │ │ ├── cleave-phone.is.js │ │ │ │ │ ├── cleave-phone.it.js │ │ │ │ │ ├── cleave-phone.je.js │ │ │ │ │ ├── cleave-phone.jm.js │ │ │ │ │ ├── cleave-phone.jo.js │ │ │ │ │ ├── cleave-phone.jp.js │ │ │ │ │ ├── cleave-phone.ke.js │ │ │ │ │ ├── cleave-phone.kg.js │ │ │ │ │ ├── cleave-phone.kh.js │ │ │ │ │ ├── cleave-phone.ki.js │ │ │ │ │ ├── cleave-phone.km.js │ │ │ │ │ ├── cleave-phone.kn.js │ │ │ │ │ ├── cleave-phone.kp.js │ │ │ │ │ ├── cleave-phone.kr.js │ │ │ │ │ ├── cleave-phone.kw.js │ │ │ │ │ ├── cleave-phone.ky.js │ │ │ │ │ ├── cleave-phone.kz.js │ │ │ │ │ ├── cleave-phone.la.js │ │ │ │ │ ├── cleave-phone.lb.js │ │ │ │ │ ├── cleave-phone.lc.js │ │ │ │ │ ├── cleave-phone.li.js │ │ │ │ │ ├── cleave-phone.lk.js │ │ │ │ │ ├── cleave-phone.lr.js │ │ │ │ │ ├── cleave-phone.ls.js │ │ │ │ │ ├── cleave-phone.lt.js │ │ │ │ │ ├── cleave-phone.lu.js │ │ │ │ │ ├── cleave-phone.lv.js │ │ │ │ │ ├── cleave-phone.ly.js │ │ │ │ │ ├── cleave-phone.ma.js │ │ │ │ │ ├── cleave-phone.mc.js │ │ │ │ │ ├── cleave-phone.md.js │ │ │ │ │ ├── cleave-phone.me.js │ │ │ │ │ ├── cleave-phone.mf.js │ │ │ │ │ ├── cleave-phone.mg.js │ │ │ │ │ ├── cleave-phone.mh.js │ │ │ │ │ ├── cleave-phone.mk.js │ │ │ │ │ ├── cleave-phone.ml.js │ │ │ │ │ ├── cleave-phone.mm.js │ │ │ │ │ ├── cleave-phone.mn.js │ │ │ │ │ ├── cleave-phone.mo.js │ │ │ │ │ ├── cleave-phone.mp.js │ │ │ │ │ ├── cleave-phone.mq.js │ │ │ │ │ ├── cleave-phone.mr.js │ │ │ │ │ ├── cleave-phone.ms.js │ │ │ │ │ ├── cleave-phone.mt.js │ │ │ │ │ ├── cleave-phone.mu.js │ │ │ │ │ ├── cleave-phone.mv.js │ │ │ │ │ ├── cleave-phone.mw.js │ │ │ │ │ ├── cleave-phone.mx.js │ │ │ │ │ ├── cleave-phone.my.js │ │ │ │ │ ├── cleave-phone.mz.js │ │ │ │ │ ├── cleave-phone.na.js │ │ │ │ │ ├── cleave-phone.nc.js │ │ │ │ │ ├── cleave-phone.ne.js │ │ │ │ │ ├── cleave-phone.nf.js │ │ │ │ │ ├── cleave-phone.ng.js │ │ │ │ │ ├── cleave-phone.ni.js │ │ │ │ │ ├── cleave-phone.nl.js │ │ │ │ │ ├── cleave-phone.no.js │ │ │ │ │ ├── cleave-phone.np.js │ │ │ │ │ ├── cleave-phone.nr.js │ │ │ │ │ ├── cleave-phone.nu.js │ │ │ │ │ ├── cleave-phone.nz.js │ │ │ │ │ ├── cleave-phone.om.js │ │ │ │ │ ├── cleave-phone.pa.js │ │ │ │ │ ├── cleave-phone.pe.js │ │ │ │ │ ├── cleave-phone.pf.js │ │ │ │ │ ├── cleave-phone.pg.js │ │ │ │ │ ├── cleave-phone.ph.js │ │ │ │ │ ├── cleave-phone.pk.js │ │ │ │ │ ├── cleave-phone.pl.js │ │ │ │ │ ├── cleave-phone.pm.js │ │ │ │ │ ├── cleave-phone.pr.js │ │ │ │ │ ├── cleave-phone.ps.js │ │ │ │ │ ├── cleave-phone.pt.js │ │ │ │ │ ├── cleave-phone.pw.js │ │ │ │ │ ├── cleave-phone.py.js │ │ │ │ │ ├── cleave-phone.qa.js │ │ │ │ │ ├── cleave-phone.re.js │ │ │ │ │ ├── cleave-phone.ro.js │ │ │ │ │ ├── cleave-phone.rs.js │ │ │ │ │ ├── cleave-phone.ru.js │ │ │ │ │ ├── cleave-phone.rw.js │ │ │ │ │ ├── cleave-phone.sa.js │ │ │ │ │ ├── cleave-phone.sb.js │ │ │ │ │ ├── cleave-phone.sc.js │ │ │ │ │ ├── cleave-phone.sd.js │ │ │ │ │ ├── cleave-phone.se.js │ │ │ │ │ ├── cleave-phone.sg.js │ │ │ │ │ ├── cleave-phone.sh.js │ │ │ │ │ ├── cleave-phone.si.js │ │ │ │ │ ├── cleave-phone.sj.js │ │ │ │ │ ├── cleave-phone.sk.js │ │ │ │ │ ├── cleave-phone.sl.js │ │ │ │ │ ├── cleave-phone.sm.js │ │ │ │ │ ├── cleave-phone.sn.js │ │ │ │ │ ├── cleave-phone.so.js │ │ │ │ │ ├── cleave-phone.sr.js │ │ │ │ │ ├── cleave-phone.ss.js │ │ │ │ │ ├── cleave-phone.st.js │ │ │ │ │ ├── cleave-phone.sv.js │ │ │ │ │ ├── cleave-phone.sx.js │ │ │ │ │ ├── cleave-phone.sy.js │ │ │ │ │ ├── cleave-phone.sz.js │ │ │ │ │ ├── cleave-phone.ta.js │ │ │ │ │ ├── cleave-phone.tc.js │ │ │ │ │ ├── cleave-phone.td.js │ │ │ │ │ ├── cleave-phone.tg.js │ │ │ │ │ ├── cleave-phone.th.js │ │ │ │ │ ├── cleave-phone.tj.js │ │ │ │ │ ├── cleave-phone.tk.js │ │ │ │ │ ├── cleave-phone.tl.js │ │ │ │ │ ├── cleave-phone.tm.js │ │ │ │ │ ├── cleave-phone.tn.js │ │ │ │ │ ├── cleave-phone.to.js │ │ │ │ │ ├── cleave-phone.tr.js │ │ │ │ │ ├── cleave-phone.tt.js │ │ │ │ │ ├── cleave-phone.tv.js │ │ │ │ │ ├── cleave-phone.tw.js │ │ │ │ │ ├── cleave-phone.tz.js │ │ │ │ │ ├── cleave-phone.ua.js │ │ │ │ │ ├── cleave-phone.ug.js │ │ │ │ │ ├── cleave-phone.us.js │ │ │ │ │ ├── cleave-phone.uy.js │ │ │ │ │ ├── cleave-phone.uz.js │ │ │ │ │ ├── cleave-phone.va.js │ │ │ │ │ ├── cleave-phone.vc.js │ │ │ │ │ ├── cleave-phone.ve.js │ │ │ │ │ ├── cleave-phone.vg.js │ │ │ │ │ ├── cleave-phone.vi.js │ │ │ │ │ ├── cleave-phone.vn.js │ │ │ │ │ ├── cleave-phone.vu.js │ │ │ │ │ ├── cleave-phone.wf.js │ │ │ │ │ ├── cleave-phone.ws.js │ │ │ │ │ ├── cleave-phone.xk.js │ │ │ │ │ ├── cleave-phone.ye.js │ │ │ │ │ ├── cleave-phone.yt.js │ │ │ │ │ ├── cleave-phone.za.js │ │ │ │ │ ├── cleave-phone.zm.js │ │ │ │ │ └── cleave-phone.zw.js │ │ │ │ ├── cleave-angular.js │ │ │ │ ├── cleave-angular.min.js │ │ │ │ ├── cleave-esm.js │ │ │ │ ├── cleave-esm.min.js │ │ │ │ ├── cleave-react-node.js │ │ │ │ ├── cleave-react-node.min.js │ │ │ │ ├── cleave-react.js │ │ │ │ ├── cleave-react.min.js │ │ │ │ ├── cleave.js │ │ │ │ └── cleave.min.js │ │ │ ├── package.json │ │ │ ├── react.js │ │ │ └── src │ │ │ │ ├── .DS_Store │ │ │ │ ├── Cleave.angular.js │ │ │ │ ├── Cleave.js │ │ │ │ ├── Cleave.react.js │ │ │ │ ├── addons │ │ │ │ ├── phone-type-formatter.ac.js │ │ │ │ ├── phone-type-formatter.ad.js │ │ │ │ ├── phone-type-formatter.ae.js │ │ │ │ ├── phone-type-formatter.af.js │ │ │ │ ├── phone-type-formatter.ag.js │ │ │ │ ├── phone-type-formatter.ai.js │ │ │ │ ├── phone-type-formatter.al.js │ │ │ │ ├── phone-type-formatter.am.js │ │ │ │ ├── phone-type-formatter.ao.js │ │ │ │ ├── phone-type-formatter.ar.js │ │ │ │ ├── phone-type-formatter.as.js │ │ │ │ ├── phone-type-formatter.at.js │ │ │ │ ├── phone-type-formatter.au-cn.js │ │ │ │ ├── phone-type-formatter.au.js │ │ │ │ ├── phone-type-formatter.aw.js │ │ │ │ ├── phone-type-formatter.ax.js │ │ │ │ ├── phone-type-formatter.az.js │ │ │ │ ├── phone-type-formatter.ba.js │ │ │ │ ├── phone-type-formatter.bb.js │ │ │ │ ├── phone-type-formatter.bd.js │ │ │ │ ├── phone-type-formatter.be.js │ │ │ │ ├── phone-type-formatter.bf.js │ │ │ │ ├── phone-type-formatter.bg.js │ │ │ │ ├── phone-type-formatter.bh.js │ │ │ │ ├── phone-type-formatter.bi.js │ │ │ │ ├── phone-type-formatter.bj.js │ │ │ │ ├── phone-type-formatter.bl.js │ │ │ │ ├── phone-type-formatter.bm.js │ │ │ │ ├── phone-type-formatter.bn.js │ │ │ │ ├── phone-type-formatter.bo.js │ │ │ │ ├── phone-type-formatter.bq.js │ │ │ │ ├── phone-type-formatter.br.js │ │ │ │ ├── phone-type-formatter.bs.js │ │ │ │ ├── phone-type-formatter.bt.js │ │ │ │ ├── phone-type-formatter.bw.js │ │ │ │ ├── phone-type-formatter.by.js │ │ │ │ ├── phone-type-formatter.bz.js │ │ │ │ ├── phone-type-formatter.ca.js │ │ │ │ ├── phone-type-formatter.cc.js │ │ │ │ ├── phone-type-formatter.cd.js │ │ │ │ ├── phone-type-formatter.cf.js │ │ │ │ ├── phone-type-formatter.cg.js │ │ │ │ ├── phone-type-formatter.ch.js │ │ │ │ ├── phone-type-formatter.ci.js │ │ │ │ ├── phone-type-formatter.ck.js │ │ │ │ ├── phone-type-formatter.cl.js │ │ │ │ ├── phone-type-formatter.cm.js │ │ │ │ ├── phone-type-formatter.cn.js │ │ │ │ ├── phone-type-formatter.co.js │ │ │ │ ├── phone-type-formatter.cr.js │ │ │ │ ├── phone-type-formatter.cu.js │ │ │ │ ├── phone-type-formatter.cv.js │ │ │ │ ├── phone-type-formatter.cw.js │ │ │ │ ├── phone-type-formatter.cx.js │ │ │ │ ├── phone-type-formatter.cy.js │ │ │ │ ├── phone-type-formatter.cz.js │ │ │ │ ├── phone-type-formatter.de.js │ │ │ │ ├── phone-type-formatter.dj.js │ │ │ │ ├── phone-type-formatter.dk.js │ │ │ │ ├── phone-type-formatter.dm.js │ │ │ │ ├── phone-type-formatter.do.js │ │ │ │ ├── phone-type-formatter.dz.js │ │ │ │ ├── phone-type-formatter.ec.js │ │ │ │ ├── phone-type-formatter.ee.js │ │ │ │ ├── phone-type-formatter.eg.js │ │ │ │ ├── phone-type-formatter.eh.js │ │ │ │ ├── phone-type-formatter.er.js │ │ │ │ ├── phone-type-formatter.es.js │ │ │ │ ├── phone-type-formatter.et.js │ │ │ │ ├── phone-type-formatter.fi.js │ │ │ │ ├── phone-type-formatter.fj.js │ │ │ │ ├── phone-type-formatter.fk.js │ │ │ │ ├── phone-type-formatter.fm.js │ │ │ │ ├── phone-type-formatter.fo.js │ │ │ │ ├── phone-type-formatter.fr.js │ │ │ │ ├── phone-type-formatter.ga.js │ │ │ │ ├── phone-type-formatter.gb.js │ │ │ │ ├── phone-type-formatter.gd.js │ │ │ │ ├── phone-type-formatter.ge.js │ │ │ │ ├── phone-type-formatter.gf.js │ │ │ │ ├── phone-type-formatter.gg.js │ │ │ │ ├── phone-type-formatter.gh.js │ │ │ │ ├── phone-type-formatter.gi.js │ │ │ │ ├── phone-type-formatter.gl.js │ │ │ │ ├── phone-type-formatter.gm.js │ │ │ │ ├── phone-type-formatter.gn.js │ │ │ │ ├── phone-type-formatter.gp.js │ │ │ │ ├── phone-type-formatter.gq.js │ │ │ │ ├── phone-type-formatter.gr.js │ │ │ │ ├── phone-type-formatter.gt.js │ │ │ │ ├── phone-type-formatter.gu.js │ │ │ │ ├── phone-type-formatter.gw.js │ │ │ │ ├── phone-type-formatter.gy.js │ │ │ │ ├── phone-type-formatter.hk.js │ │ │ │ ├── phone-type-formatter.hn.js │ │ │ │ ├── phone-type-formatter.hr.js │ │ │ │ ├── phone-type-formatter.ht.js │ │ │ │ ├── phone-type-formatter.hu.js │ │ │ │ ├── phone-type-formatter.i18n.js │ │ │ │ ├── phone-type-formatter.id.js │ │ │ │ ├── phone-type-formatter.ie.js │ │ │ │ ├── phone-type-formatter.il.js │ │ │ │ ├── phone-type-formatter.im.js │ │ │ │ ├── phone-type-formatter.in.js │ │ │ │ ├── phone-type-formatter.io.js │ │ │ │ ├── phone-type-formatter.iq.js │ │ │ │ ├── phone-type-formatter.ir.js │ │ │ │ ├── phone-type-formatter.is.js │ │ │ │ ├── phone-type-formatter.it.js │ │ │ │ ├── phone-type-formatter.je.js │ │ │ │ ├── phone-type-formatter.jm.js │ │ │ │ ├── phone-type-formatter.jo.js │ │ │ │ ├── phone-type-formatter.jp.js │ │ │ │ ├── phone-type-formatter.ke.js │ │ │ │ ├── phone-type-formatter.kg.js │ │ │ │ ├── phone-type-formatter.kh.js │ │ │ │ ├── phone-type-formatter.ki.js │ │ │ │ ├── phone-type-formatter.km.js │ │ │ │ ├── phone-type-formatter.kn.js │ │ │ │ ├── phone-type-formatter.kp.js │ │ │ │ ├── phone-type-formatter.kr.js │ │ │ │ ├── phone-type-formatter.kw.js │ │ │ │ ├── phone-type-formatter.ky.js │ │ │ │ ├── phone-type-formatter.kz.js │ │ │ │ ├── phone-type-formatter.la.js │ │ │ │ ├── phone-type-formatter.lb.js │ │ │ │ ├── phone-type-formatter.lc.js │ │ │ │ ├── phone-type-formatter.li.js │ │ │ │ ├── phone-type-formatter.lk.js │ │ │ │ ├── phone-type-formatter.lr.js │ │ │ │ ├── phone-type-formatter.ls.js │ │ │ │ ├── phone-type-formatter.lt.js │ │ │ │ ├── phone-type-formatter.lu.js │ │ │ │ ├── phone-type-formatter.lv.js │ │ │ │ ├── phone-type-formatter.ly.js │ │ │ │ ├── phone-type-formatter.ma.js │ │ │ │ ├── phone-type-formatter.mc.js │ │ │ │ ├── phone-type-formatter.md.js │ │ │ │ ├── phone-type-formatter.me.js │ │ │ │ ├── phone-type-formatter.mf.js │ │ │ │ ├── phone-type-formatter.mg.js │ │ │ │ ├── phone-type-formatter.mh.js │ │ │ │ ├── phone-type-formatter.mk.js │ │ │ │ ├── phone-type-formatter.ml.js │ │ │ │ ├── phone-type-formatter.mm.js │ │ │ │ ├── phone-type-formatter.mn.js │ │ │ │ ├── phone-type-formatter.mo.js │ │ │ │ ├── phone-type-formatter.mp.js │ │ │ │ ├── phone-type-formatter.mq.js │ │ │ │ ├── phone-type-formatter.mr.js │ │ │ │ ├── phone-type-formatter.ms.js │ │ │ │ ├── phone-type-formatter.mt.js │ │ │ │ ├── phone-type-formatter.mu.js │ │ │ │ ├── phone-type-formatter.mv.js │ │ │ │ ├── phone-type-formatter.mw.js │ │ │ │ ├── phone-type-formatter.mx.js │ │ │ │ ├── phone-type-formatter.my.js │ │ │ │ ├── phone-type-formatter.mz.js │ │ │ │ ├── phone-type-formatter.na.js │ │ │ │ ├── phone-type-formatter.nc.js │ │ │ │ ├── phone-type-formatter.ne.js │ │ │ │ ├── phone-type-formatter.nf.js │ │ │ │ ├── phone-type-formatter.ng.js │ │ │ │ ├── phone-type-formatter.ni.js │ │ │ │ ├── phone-type-formatter.nl.js │ │ │ │ ├── phone-type-formatter.no.js │ │ │ │ ├── phone-type-formatter.np.js │ │ │ │ ├── phone-type-formatter.nr.js │ │ │ │ ├── phone-type-formatter.nu.js │ │ │ │ ├── phone-type-formatter.nz.js │ │ │ │ ├── phone-type-formatter.om.js │ │ │ │ ├── phone-type-formatter.pa.js │ │ │ │ ├── phone-type-formatter.pe.js │ │ │ │ ├── phone-type-formatter.pf.js │ │ │ │ ├── phone-type-formatter.pg.js │ │ │ │ ├── phone-type-formatter.ph.js │ │ │ │ ├── phone-type-formatter.pk.js │ │ │ │ ├── phone-type-formatter.pl.js │ │ │ │ ├── phone-type-formatter.pm.js │ │ │ │ ├── phone-type-formatter.pr.js │ │ │ │ ├── phone-type-formatter.ps.js │ │ │ │ ├── phone-type-formatter.pt.js │ │ │ │ ├── phone-type-formatter.pw.js │ │ │ │ ├── phone-type-formatter.py.js │ │ │ │ ├── phone-type-formatter.qa.js │ │ │ │ ├── phone-type-formatter.re.js │ │ │ │ ├── phone-type-formatter.ro.js │ │ │ │ ├── phone-type-formatter.rs.js │ │ │ │ ├── phone-type-formatter.ru.js │ │ │ │ ├── phone-type-formatter.rw.js │ │ │ │ ├── phone-type-formatter.sa.js │ │ │ │ ├── phone-type-formatter.sb.js │ │ │ │ ├── phone-type-formatter.sc.js │ │ │ │ ├── phone-type-formatter.sd.js │ │ │ │ ├── phone-type-formatter.se.js │ │ │ │ ├── phone-type-formatter.sg.js │ │ │ │ ├── phone-type-formatter.sh.js │ │ │ │ ├── phone-type-formatter.si.js │ │ │ │ ├── phone-type-formatter.sj.js │ │ │ │ ├── phone-type-formatter.sk.js │ │ │ │ ├── phone-type-formatter.sl.js │ │ │ │ ├── phone-type-formatter.sm.js │ │ │ │ ├── phone-type-formatter.sn.js │ │ │ │ ├── phone-type-formatter.so.js │ │ │ │ ├── phone-type-formatter.sr.js │ │ │ │ ├── phone-type-formatter.ss.js │ │ │ │ ├── phone-type-formatter.st.js │ │ │ │ ├── phone-type-formatter.sv.js │ │ │ │ ├── phone-type-formatter.sx.js │ │ │ │ ├── phone-type-formatter.sy.js │ │ │ │ ├── phone-type-formatter.sz.js │ │ │ │ ├── phone-type-formatter.ta.js │ │ │ │ ├── phone-type-formatter.tc.js │ │ │ │ ├── phone-type-formatter.td.js │ │ │ │ ├── phone-type-formatter.tg.js │ │ │ │ ├── phone-type-formatter.th.js │ │ │ │ ├── phone-type-formatter.tj.js │ │ │ │ ├── phone-type-formatter.tk.js │ │ │ │ ├── phone-type-formatter.tl.js │ │ │ │ ├── phone-type-formatter.tm.js │ │ │ │ ├── phone-type-formatter.tn.js │ │ │ │ ├── phone-type-formatter.to.js │ │ │ │ ├── phone-type-formatter.tr.js │ │ │ │ ├── phone-type-formatter.tt.js │ │ │ │ ├── phone-type-formatter.tv.js │ │ │ │ ├── phone-type-formatter.tw.js │ │ │ │ ├── phone-type-formatter.tz.js │ │ │ │ ├── phone-type-formatter.ua.js │ │ │ │ ├── phone-type-formatter.ug.js │ │ │ │ ├── phone-type-formatter.us.js │ │ │ │ ├── phone-type-formatter.uy.js │ │ │ │ ├── phone-type-formatter.uz.js │ │ │ │ ├── phone-type-formatter.va.js │ │ │ │ ├── phone-type-formatter.vc.js │ │ │ │ ├── phone-type-formatter.ve.js │ │ │ │ ├── phone-type-formatter.vg.js │ │ │ │ ├── phone-type-formatter.vi.js │ │ │ │ ├── phone-type-formatter.vn.js │ │ │ │ ├── phone-type-formatter.vu.js │ │ │ │ ├── phone-type-formatter.wf.js │ │ │ │ ├── phone-type-formatter.ws.js │ │ │ │ ├── phone-type-formatter.xk.js │ │ │ │ ├── phone-type-formatter.ye.js │ │ │ │ ├── phone-type-formatter.yt.js │ │ │ │ ├── phone-type-formatter.za.js │ │ │ │ ├── phone-type-formatter.zm.js │ │ │ │ └── phone-type-formatter.zw.js │ │ │ │ ├── build │ │ │ │ └── license.txt │ │ │ │ ├── common │ │ │ │ └── DefaultProperties.js │ │ │ │ ├── shortcuts │ │ │ │ ├── CreditCardDetector.js │ │ │ │ ├── DateFormatter.js │ │ │ │ ├── NumeralFormatter.js │ │ │ │ ├── PhoneFormatter.js │ │ │ │ └── TimeFormatter.js │ │ │ │ └── utils │ │ │ │ └── Util.js │ │ ├── codemirror │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── addon │ │ │ │ ├── comment │ │ │ │ │ ├── comment.js │ │ │ │ │ └── continuecomment.js │ │ │ │ ├── dialog │ │ │ │ │ ├── dialog.css │ │ │ │ │ └── dialog.js │ │ │ │ ├── display │ │ │ │ │ ├── autorefresh.js │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ ├── panel.js │ │ │ │ │ ├── placeholder.js │ │ │ │ │ └── rulers.js │ │ │ │ ├── edit │ │ │ │ │ ├── closebrackets.js │ │ │ │ │ ├── closetag.js │ │ │ │ │ ├── continuelist.js │ │ │ │ │ ├── matchbrackets.js │ │ │ │ │ ├── matchtags.js │ │ │ │ │ └── trailingspace.js │ │ │ │ ├── fold │ │ │ │ │ ├── brace-fold.js │ │ │ │ │ ├── comment-fold.js │ │ │ │ │ ├── foldcode.js │ │ │ │ │ ├── foldgutter.css │ │ │ │ │ ├── foldgutter.js │ │ │ │ │ ├── indent-fold.js │ │ │ │ │ ├── markdown-fold.js │ │ │ │ │ └── xml-fold.js │ │ │ │ ├── hint │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ ├── css-hint.js │ │ │ │ │ ├── html-hint.js │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ ├── show-hint.css │ │ │ │ │ ├── show-hint.js │ │ │ │ │ ├── sql-hint.js │ │ │ │ │ └── xml-hint.js │ │ │ │ ├── lint │ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ │ ├── css-lint.js │ │ │ │ │ ├── html-lint.js │ │ │ │ │ ├── javascript-lint.js │ │ │ │ │ ├── json-lint.js │ │ │ │ │ ├── lint.css │ │ │ │ │ ├── lint.js │ │ │ │ │ └── yaml-lint.js │ │ │ │ ├── merge │ │ │ │ │ ├── merge.css │ │ │ │ │ └── merge.js │ │ │ │ ├── mode │ │ │ │ │ ├── loadmode.js │ │ │ │ │ ├── multiplex.js │ │ │ │ │ ├── multiplex_test.js │ │ │ │ │ ├── overlay.js │ │ │ │ │ └── simple.js │ │ │ │ ├── runmode │ │ │ │ │ ├── colorize.js │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ ├── runmode.js │ │ │ │ │ └── runmode.node.js │ │ │ │ ├── scroll │ │ │ │ │ ├── annotatescrollbar.js │ │ │ │ │ ├── scrollpastend.js │ │ │ │ │ ├── simplescrollbars.css │ │ │ │ │ └── simplescrollbars.js │ │ │ │ ├── search │ │ │ │ │ ├── jump-to-line.js │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ │ ├── search.js │ │ │ │ │ └── searchcursor.js │ │ │ │ ├── selection │ │ │ │ │ ├── active-line.js │ │ │ │ │ ├── mark-selection.js │ │ │ │ │ └── selection-pointer.js │ │ │ │ ├── tern │ │ │ │ │ ├── tern.css │ │ │ │ │ ├── tern.js │ │ │ │ │ └── worker.js │ │ │ │ └── wrap │ │ │ │ │ └── hardwrap.js │ │ │ ├── bin │ │ │ │ └── source-highlight │ │ │ ├── keymap │ │ │ │ ├── emacs.js │ │ │ │ ├── sublime.js │ │ │ │ └── vim.js │ │ │ ├── lib │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ ├── mode │ │ │ │ ├── apl │ │ │ │ │ └── apl.js │ │ │ │ ├── asciiarmor │ │ │ │ │ └── asciiarmor.js │ │ │ │ ├── asn.1 │ │ │ │ │ └── asn.1.js │ │ │ │ ├── asterisk │ │ │ │ │ └── asterisk.js │ │ │ │ ├── brainfuck │ │ │ │ │ └── brainfuck.js │ │ │ │ ├── clike │ │ │ │ │ └── clike.js │ │ │ │ ├── clojure │ │ │ │ │ └── clojure.js │ │ │ │ ├── cmake │ │ │ │ │ └── cmake.js │ │ │ │ ├── cobol │ │ │ │ │ └── cobol.js │ │ │ │ ├── coffeescript │ │ │ │ │ └── coffeescript.js │ │ │ │ ├── commonlisp │ │ │ │ │ └── commonlisp.js │ │ │ │ ├── crystal │ │ │ │ │ └── crystal.js │ │ │ │ ├── css │ │ │ │ │ └── css.js │ │ │ │ ├── cypher │ │ │ │ │ └── cypher.js │ │ │ │ ├── d │ │ │ │ │ └── d.js │ │ │ │ ├── dart │ │ │ │ │ └── dart.js │ │ │ │ ├── diff │ │ │ │ │ └── diff.js │ │ │ │ ├── django │ │ │ │ │ └── django.js │ │ │ │ ├── dockerfile │ │ │ │ │ └── dockerfile.js │ │ │ │ ├── dtd │ │ │ │ │ └── dtd.js │ │ │ │ ├── dylan │ │ │ │ │ └── dylan.js │ │ │ │ ├── ebnf │ │ │ │ │ └── ebnf.js │ │ │ │ ├── ecl │ │ │ │ │ └── ecl.js │ │ │ │ ├── eiffel │ │ │ │ │ └── eiffel.js │ │ │ │ ├── elm │ │ │ │ │ └── elm.js │ │ │ │ ├── erlang │ │ │ │ │ └── erlang.js │ │ │ │ ├── factor │ │ │ │ │ └── factor.js │ │ │ │ ├── fcl │ │ │ │ │ └── fcl.js │ │ │ │ ├── forth │ │ │ │ │ └── forth.js │ │ │ │ ├── fortran │ │ │ │ │ └── fortran.js │ │ │ │ ├── gas │ │ │ │ │ └── gas.js │ │ │ │ ├── gfm │ │ │ │ │ └── gfm.js │ │ │ │ ├── gherkin │ │ │ │ │ └── gherkin.js │ │ │ │ ├── go │ │ │ │ │ └── go.js │ │ │ │ ├── groovy │ │ │ │ │ └── groovy.js │ │ │ │ ├── haml │ │ │ │ │ └── haml.js │ │ │ │ ├── handlebars │ │ │ │ │ └── handlebars.js │ │ │ │ ├── haskell-literate │ │ │ │ │ └── haskell-literate.js │ │ │ │ ├── haskell │ │ │ │ │ └── haskell.js │ │ │ │ ├── haxe │ │ │ │ │ └── haxe.js │ │ │ │ ├── htmlembedded │ │ │ │ │ └── htmlembedded.js │ │ │ │ ├── htmlmixed │ │ │ │ │ └── htmlmixed.js │ │ │ │ ├── http │ │ │ │ │ └── http.js │ │ │ │ ├── idl │ │ │ │ │ └── idl.js │ │ │ │ ├── javascript │ │ │ │ │ └── javascript.js │ │ │ │ ├── jinja2 │ │ │ │ │ └── jinja2.js │ │ │ │ ├── jsx │ │ │ │ │ └── jsx.js │ │ │ │ ├── julia │ │ │ │ │ └── julia.js │ │ │ │ ├── livescript │ │ │ │ │ └── livescript.js │ │ │ │ ├── lua │ │ │ │ │ └── lua.js │ │ │ │ ├── markdown │ │ │ │ │ └── markdown.js │ │ │ │ ├── mathematica │ │ │ │ │ └── mathematica.js │ │ │ │ ├── mbox │ │ │ │ │ └── mbox.js │ │ │ │ ├── meta.js │ │ │ │ ├── mirc │ │ │ │ │ └── mirc.js │ │ │ │ ├── mllike │ │ │ │ │ └── mllike.js │ │ │ │ ├── modelica │ │ │ │ │ └── modelica.js │ │ │ │ ├── mscgen │ │ │ │ │ └── mscgen.js │ │ │ │ ├── mumps │ │ │ │ │ └── mumps.js │ │ │ │ ├── nginx │ │ │ │ │ └── nginx.js │ │ │ │ ├── nsis │ │ │ │ │ └── nsis.js │ │ │ │ ├── ntriples │ │ │ │ │ └── ntriples.js │ │ │ │ ├── octave │ │ │ │ │ └── octave.js │ │ │ │ ├── oz │ │ │ │ │ └── oz.js │ │ │ │ ├── pascal │ │ │ │ │ └── pascal.js │ │ │ │ ├── pegjs │ │ │ │ │ └── pegjs.js │ │ │ │ ├── perl │ │ │ │ │ └── perl.js │ │ │ │ ├── php │ │ │ │ │ └── php.js │ │ │ │ ├── pig │ │ │ │ │ └── pig.js │ │ │ │ ├── powershell │ │ │ │ │ └── powershell.js │ │ │ │ ├── properties │ │ │ │ │ └── properties.js │ │ │ │ ├── protobuf │ │ │ │ │ └── protobuf.js │ │ │ │ ├── pug │ │ │ │ │ └── pug.js │ │ │ │ ├── puppet │ │ │ │ │ └── puppet.js │ │ │ │ ├── python │ │ │ │ │ └── python.js │ │ │ │ ├── q │ │ │ │ │ └── q.js │ │ │ │ ├── r │ │ │ │ │ └── r.js │ │ │ │ ├── rpm │ │ │ │ │ ├── changes │ │ │ │ │ │ └── index.html │ │ │ │ │ └── rpm.js │ │ │ │ ├── rst │ │ │ │ │ └── rst.js │ │ │ │ ├── ruby │ │ │ │ │ └── ruby.js │ │ │ │ ├── rust │ │ │ │ │ └── rust.js │ │ │ │ ├── sas │ │ │ │ │ └── sas.js │ │ │ │ ├── sass │ │ │ │ │ └── sass.js │ │ │ │ ├── scheme │ │ │ │ │ └── scheme.js │ │ │ │ ├── shell │ │ │ │ │ └── shell.js │ │ │ │ ├── sieve │ │ │ │ │ └── sieve.js │ │ │ │ ├── slim │ │ │ │ │ └── slim.js │ │ │ │ ├── smalltalk │ │ │ │ │ └── smalltalk.js │ │ │ │ ├── smarty │ │ │ │ │ └── smarty.js │ │ │ │ ├── solr │ │ │ │ │ └── solr.js │ │ │ │ ├── soy │ │ │ │ │ └── soy.js │ │ │ │ ├── sparql │ │ │ │ │ └── sparql.js │ │ │ │ ├── spreadsheet │ │ │ │ │ └── spreadsheet.js │ │ │ │ ├── sql │ │ │ │ │ └── sql.js │ │ │ │ ├── stex │ │ │ │ │ └── stex.js │ │ │ │ ├── stylus │ │ │ │ │ └── stylus.js │ │ │ │ ├── swift │ │ │ │ │ └── swift.js │ │ │ │ ├── tcl │ │ │ │ │ └── tcl.js │ │ │ │ ├── textile │ │ │ │ │ └── textile.js │ │ │ │ ├── tiddlywiki │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ └── tiddlywiki.js │ │ │ │ ├── tiki │ │ │ │ │ ├── tiki.css │ │ │ │ │ └── tiki.js │ │ │ │ ├── toml │ │ │ │ │ └── toml.js │ │ │ │ ├── tornado │ │ │ │ │ └── tornado.js │ │ │ │ ├── troff │ │ │ │ │ └── troff.js │ │ │ │ ├── ttcn-cfg │ │ │ │ │ └── ttcn-cfg.js │ │ │ │ ├── ttcn │ │ │ │ │ └── ttcn.js │ │ │ │ ├── turtle │ │ │ │ │ └── turtle.js │ │ │ │ ├── twig │ │ │ │ │ └── twig.js │ │ │ │ ├── vb │ │ │ │ │ └── vb.js │ │ │ │ ├── vbscript │ │ │ │ │ └── vbscript.js │ │ │ │ ├── velocity │ │ │ │ │ └── velocity.js │ │ │ │ ├── verilog │ │ │ │ │ └── verilog.js │ │ │ │ ├── vhdl │ │ │ │ │ └── vhdl.js │ │ │ │ ├── vue │ │ │ │ │ └── vue.js │ │ │ │ ├── webidl │ │ │ │ │ └── webidl.js │ │ │ │ ├── xml │ │ │ │ │ └── xml.js │ │ │ │ ├── xquery │ │ │ │ │ └── xquery.js │ │ │ │ ├── yacas │ │ │ │ │ └── yacas.js │ │ │ │ ├── yaml-frontmatter │ │ │ │ │ └── yaml-frontmatter.js │ │ │ │ ├── yaml │ │ │ │ │ └── yaml.js │ │ │ │ └── z80 │ │ │ │ │ └── z80.js │ │ │ ├── package.json │ │ │ ├── rollup.config.js │ │ │ ├── src │ │ │ │ ├── codemirror.js │ │ │ │ ├── display │ │ │ │ │ ├── Display.js │ │ │ │ │ ├── focus.js │ │ │ │ │ ├── gutters.js │ │ │ │ │ ├── highlight_worker.js │ │ │ │ │ ├── line_numbers.js │ │ │ │ │ ├── mode_state.js │ │ │ │ │ ├── operations.js │ │ │ │ │ ├── scroll_events.js │ │ │ │ │ ├── scrollbars.js │ │ │ │ │ ├── scrolling.js │ │ │ │ │ ├── selection.js │ │ │ │ │ ├── update_display.js │ │ │ │ │ ├── update_line.js │ │ │ │ │ ├── update_lines.js │ │ │ │ │ └── view_tracking.js │ │ │ │ ├── edit │ │ │ │ │ ├── CodeMirror.js │ │ │ │ │ ├── commands.js │ │ │ │ │ ├── deleteNearSelection.js │ │ │ │ │ ├── drop_events.js │ │ │ │ │ ├── fromTextArea.js │ │ │ │ │ ├── global_events.js │ │ │ │ │ ├── key_events.js │ │ │ │ │ ├── legacy.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── methods.js │ │ │ │ │ ├── mouse_events.js │ │ │ │ │ ├── options.js │ │ │ │ │ └── utils.js │ │ │ │ ├── input │ │ │ │ │ ├── ContentEditableInput.js │ │ │ │ │ ├── TextareaInput.js │ │ │ │ │ ├── indent.js │ │ │ │ │ ├── input.js │ │ │ │ │ ├── keymap.js │ │ │ │ │ ├── keynames.js │ │ │ │ │ └── movement.js │ │ │ │ ├── line │ │ │ │ │ ├── highlight.js │ │ │ │ │ ├── line_data.js │ │ │ │ │ ├── pos.js │ │ │ │ │ ├── saw_special_spans.js │ │ │ │ │ ├── spans.js │ │ │ │ │ └── utils_line.js │ │ │ │ ├── measurement │ │ │ │ │ ├── position_measurement.js │ │ │ │ │ └── widgets.js │ │ │ │ ├── model │ │ │ │ │ ├── Doc.js │ │ │ │ │ ├── change_measurement.js │ │ │ │ │ ├── changes.js │ │ │ │ │ ├── chunk.js │ │ │ │ │ ├── document_data.js │ │ │ │ │ ├── history.js │ │ │ │ │ ├── line_widget.js │ │ │ │ │ ├── mark_text.js │ │ │ │ │ ├── selection.js │ │ │ │ │ └── selection_updates.js │ │ │ │ ├── modes.js │ │ │ │ └── util │ │ │ │ │ ├── StringStream.js │ │ │ │ │ ├── bidi.js │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── dom.js │ │ │ │ │ ├── event.js │ │ │ │ │ ├── feature_detection.js │ │ │ │ │ ├── misc.js │ │ │ │ │ └── operation_group.js │ │ │ └── theme │ │ │ │ ├── 3024-day.css │ │ │ │ ├── 3024-night.css │ │ │ │ ├── abcdef.css │ │ │ │ ├── ambiance-mobile.css │ │ │ │ ├── ambiance.css │ │ │ │ ├── base16-dark.css │ │ │ │ ├── base16-light.css │ │ │ │ ├── bespin.css │ │ │ │ ├── blackboard.css │ │ │ │ ├── cobalt.css │ │ │ │ ├── colorforth.css │ │ │ │ ├── darcula.css │ │ │ │ ├── dracula.css │ │ │ │ ├── duotone-dark.css │ │ │ │ ├── duotone-light.css │ │ │ │ ├── eclipse.css │ │ │ │ ├── elegant.css │ │ │ │ ├── erlang-dark.css │ │ │ │ ├── gruvbox-dark.css │ │ │ │ ├── hopscotch.css │ │ │ │ ├── icecoder.css │ │ │ │ ├── idea.css │ │ │ │ ├── isotope.css │ │ │ │ ├── lesser-dark.css │ │ │ │ ├── liquibyte.css │ │ │ │ ├── lucario.css │ │ │ │ ├── material.css │ │ │ │ ├── mbo.css │ │ │ │ ├── mdn-like.css │ │ │ │ ├── midnight.css │ │ │ │ ├── monokai.css │ │ │ │ ├── neat.css │ │ │ │ ├── neo.css │ │ │ │ ├── night.css │ │ │ │ ├── nord.css │ │ │ │ ├── oceanic-next.css │ │ │ │ ├── panda-syntax.css │ │ │ │ ├── paraiso-dark.css │ │ │ │ ├── paraiso-light.css │ │ │ │ ├── pastel-on-dark.css │ │ │ │ ├── railscasts.css │ │ │ │ ├── rubyblue.css │ │ │ │ ├── seti.css │ │ │ │ ├── shadowfox.css │ │ │ │ ├── solarized.css │ │ │ │ ├── ssms.css │ │ │ │ ├── the-matrix.css │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ ├── ttcn.css │ │ │ │ ├── twilight.css │ │ │ │ ├── vibrant-ink.css │ │ │ │ ├── xq-dark.css │ │ │ │ ├── xq-light.css │ │ │ │ ├── yeti.css │ │ │ │ ├── yonce.css │ │ │ │ └── zenburn.css │ │ ├── datatables.net-bs4 │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap4.css │ │ │ │ └── dataTables.bootstrap4.min.css │ │ │ ├── js │ │ │ │ ├── dataTables.bootstrap4.js │ │ │ │ └── dataTables.bootstrap4.min.js │ │ │ └── package.json │ │ ├── datatables.net-select-bs4 │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── select.bootstrap4.css │ │ │ │ └── select.bootstrap4.min.css │ │ │ ├── js │ │ │ │ ├── select.bootstrap4.js │ │ │ │ └── select.bootstrap4.min.js │ │ │ └── package.json │ │ ├── datatables │ │ │ ├── Readme.md │ │ │ ├── license.txt │ │ │ ├── media │ │ │ │ ├── css │ │ │ │ │ ├── jquery.dataTables.css │ │ │ │ │ └── jquery.dataTables.min.css │ │ │ │ ├── images │ │ │ │ │ ├── Sorting icons.psd │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ └── js │ │ │ │ │ ├── jquery.dataTables.js │ │ │ │ │ └── jquery.dataTables.min.js │ │ │ └── package.json │ │ ├── font-awesome │ │ │ ├── .npmignore │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── README.md │ │ │ ├── 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 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ ├── package.json │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ ├── jquery-pwstrength │ │ │ ├── README.md │ │ │ ├── demo │ │ │ │ └── style.css │ │ │ ├── index.html │ │ │ ├── jquery.pwstrength.js │ │ │ ├── jquery.pwstrength.min.js │ │ │ ├── pwstrength.jquery.json │ │ │ ├── spec │ │ │ │ ├── pwstrength.js │ │ │ │ └── runner.html │ │ │ └── vendor │ │ │ │ ├── jasmine │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ └── jasmine.js │ │ │ │ └── jquery.min.js │ │ ├── jquery.nicescroll │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── jquery.nicescroll.js │ │ │ │ ├── jquery.nicescroll.min.js │ │ │ │ └── zoomico.png │ │ │ ├── jquery.nicescroll.js │ │ │ └── package.json │ │ ├── jquery │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── core.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.min.map │ │ │ │ ├── jquery.slim.js │ │ │ │ ├── jquery.slim.min.js │ │ │ │ └── jquery.slim.min.map │ │ │ ├── external │ │ │ │ └── sizzle │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── dist │ │ │ │ │ ├── sizzle.js │ │ │ │ │ ├── sizzle.min.js │ │ │ │ │ └── sizzle.min.map │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── ajax.js │ │ │ │ ├── ajax │ │ │ │ ├── jsonp.js │ │ │ │ ├── load.js │ │ │ │ ├── parseXML.js │ │ │ │ ├── script.js │ │ │ │ ├── var │ │ │ │ │ ├── location.js │ │ │ │ │ ├── nonce.js │ │ │ │ │ └── rquery.js │ │ │ │ └── xhr.js │ │ │ │ ├── attributes.js │ │ │ │ ├── attributes │ │ │ │ ├── attr.js │ │ │ │ ├── classes.js │ │ │ │ ├── prop.js │ │ │ │ ├── support.js │ │ │ │ └── val.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── core.js │ │ │ │ ├── core │ │ │ │ ├── DOMEval.js │ │ │ │ ├── access.js │ │ │ │ ├── camelCase.js │ │ │ │ ├── init.js │ │ │ │ ├── isAttached.js │ │ │ │ ├── nodeName.js │ │ │ │ ├── parseHTML.js │ │ │ │ ├── ready-no-deferred.js │ │ │ │ ├── ready.js │ │ │ │ ├── readyException.js │ │ │ │ ├── stripAndCollapse.js │ │ │ │ ├── support.js │ │ │ │ ├── toType.js │ │ │ │ └── var │ │ │ │ │ └── rsingleTag.js │ │ │ │ ├── css.js │ │ │ │ ├── css │ │ │ │ ├── addGetHookIf.js │ │ │ │ ├── adjustCSS.js │ │ │ │ ├── curCSS.js │ │ │ │ ├── finalPropName.js │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ ├── showHide.js │ │ │ │ ├── support.js │ │ │ │ └── var │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ ├── getStyles.js │ │ │ │ │ ├── isHiddenWithinTree.js │ │ │ │ │ ├── rboxStyle.js │ │ │ │ │ ├── rnumnonpx.js │ │ │ │ │ └── swap.js │ │ │ │ ├── data.js │ │ │ │ ├── data │ │ │ │ ├── Data.js │ │ │ │ └── var │ │ │ │ │ ├── acceptData.js │ │ │ │ │ ├── dataPriv.js │ │ │ │ │ └── dataUser.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deferred │ │ │ │ └── exceptionHook.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── effects │ │ │ │ ├── Tween.js │ │ │ │ └── animatedSelector.js │ │ │ │ ├── event.js │ │ │ │ ├── event │ │ │ │ ├── ajax.js │ │ │ │ ├── alias.js │ │ │ │ ├── focusin.js │ │ │ │ ├── support.js │ │ │ │ └── trigger.js │ │ │ │ ├── exports │ │ │ │ ├── amd.js │ │ │ │ └── global.js │ │ │ │ ├── jquery.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── manipulation │ │ │ │ ├── _evalUrl.js │ │ │ │ ├── buildFragment.js │ │ │ │ ├── getAll.js │ │ │ │ ├── setGlobalEval.js │ │ │ │ ├── support.js │ │ │ │ ├── var │ │ │ │ │ ├── rscriptType.js │ │ │ │ │ └── rtagName.js │ │ │ │ └── wrapMap.js │ │ │ │ ├── offset.js │ │ │ │ ├── queue.js │ │ │ │ ├── queue │ │ │ │ └── delay.js │ │ │ │ ├── selector-native.js │ │ │ │ ├── selector-sizzle.js │ │ │ │ ├── selector.js │ │ │ │ ├── serialize.js │ │ │ │ ├── traversing.js │ │ │ │ ├── traversing │ │ │ │ ├── findFilter.js │ │ │ │ └── var │ │ │ │ │ ├── dir.js │ │ │ │ │ ├── rneedsContext.js │ │ │ │ │ └── siblings.js │ │ │ │ ├── var │ │ │ │ ├── ObjectFunctionString.js │ │ │ │ ├── arr.js │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── document.js │ │ │ │ ├── documentElement.js │ │ │ │ ├── fnToString.js │ │ │ │ ├── getProto.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── isFunction.js │ │ │ │ ├── isWindow.js │ │ │ │ ├── pnum.js │ │ │ │ ├── push.js │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rcssNum.js │ │ │ │ ├── rnothtmlwhite.js │ │ │ │ ├── slice.js │ │ │ │ ├── support.js │ │ │ │ └── toString.js │ │ │ │ └── wrap.js │ │ ├── jqvmap │ │ │ ├── .editorconfig │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── REGIONS.md │ │ │ ├── bower.json │ │ │ ├── create │ │ │ │ ├── README.md │ │ │ │ ├── config │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── continent.json │ │ │ │ │ ├── new-york.json │ │ │ │ │ └── syria.json │ │ │ │ ├── jqvmap.py │ │ │ │ ├── output │ │ │ │ │ └── .gitignore │ │ │ │ └── source │ │ │ │ │ └── .gitignore │ │ │ ├── dist │ │ │ │ ├── jquery.vmap.js │ │ │ │ ├── jquery.vmap.min.js │ │ │ │ ├── jqvmap.css │ │ │ │ ├── jqvmap.min.css │ │ │ │ └── maps │ │ │ │ │ ├── continents │ │ │ │ │ ├── jquery.vmap.africa.js │ │ │ │ │ ├── jquery.vmap.asia.js │ │ │ │ │ ├── jquery.vmap.australia.js │ │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ │ ├── jquery.vmap.north-america.js │ │ │ │ │ └── jquery.vmap.south-america.js │ │ │ │ │ ├── jquery.vmap.algeria.js │ │ │ │ │ ├── jquery.vmap.argentina.js │ │ │ │ │ ├── jquery.vmap.brazil.js │ │ │ │ │ ├── jquery.vmap.canada.js │ │ │ │ │ ├── jquery.vmap.croatia.js │ │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ │ ├── jquery.vmap.france.js │ │ │ │ │ ├── jquery.vmap.germany.js │ │ │ │ │ ├── jquery.vmap.greece.js │ │ │ │ │ ├── jquery.vmap.indonesia.js │ │ │ │ │ ├── jquery.vmap.iran.js │ │ │ │ │ ├── jquery.vmap.iraq.js │ │ │ │ │ ├── jquery.vmap.new_regions_france.js │ │ │ │ │ ├── jquery.vmap.russia.js │ │ │ │ │ ├── jquery.vmap.serbia.js │ │ │ │ │ ├── jquery.vmap.tunisia.js │ │ │ │ │ ├── jquery.vmap.turkey.js │ │ │ │ │ ├── jquery.vmap.ukraine.js │ │ │ │ │ ├── jquery.vmap.usa.counties.js │ │ │ │ │ ├── jquery.vmap.usa.districts.js │ │ │ │ │ ├── jquery.vmap.usa.js │ │ │ │ │ └── jquery.vmap.world.js │ │ │ ├── examples │ │ │ │ ├── algeria.html │ │ │ │ ├── argentina.html │ │ │ │ ├── brazil.html │ │ │ │ ├── continents.html │ │ │ │ ├── croatia.html │ │ │ │ ├── europe.html │ │ │ │ ├── france.html │ │ │ │ ├── germany.html │ │ │ │ ├── greece.html │ │ │ │ ├── images │ │ │ │ │ ├── background.png │ │ │ │ │ ├── flag.png │ │ │ │ │ ├── globe.png │ │ │ │ │ ├── marker │ │ │ │ │ │ ├── black.png │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── white.png │ │ │ │ │ │ └── yellow.png │ │ │ │ │ ├── thumb.jpg │ │ │ │ │ └── tip.png │ │ │ │ ├── inactive_regions.html │ │ │ │ ├── indonesia.html │ │ │ │ ├── iran.html │ │ │ │ ├── iraq.html │ │ │ │ ├── js │ │ │ │ │ ├── jquery.vmap.electioncolors.js │ │ │ │ │ └── jquery.vmap.sampledata.js │ │ │ │ ├── labels.html │ │ │ │ ├── mobile.html │ │ │ │ ├── multi.html │ │ │ │ ├── pins.html │ │ │ │ ├── pins_custom.html │ │ │ │ ├── responsive.html │ │ │ │ ├── russia.html │ │ │ │ ├── serbia.html │ │ │ │ ├── touch_detect.html │ │ │ │ ├── tunisia.html │ │ │ │ ├── turkey.html │ │ │ │ ├── ukraine.html │ │ │ │ ├── usa.html │ │ │ │ ├── usa_counties.html │ │ │ │ ├── usa_counties_election.html │ │ │ │ ├── usa_districts.html │ │ │ │ └── world.html │ │ │ ├── grunt │ │ │ │ ├── bump.js │ │ │ │ ├── changelog.js │ │ │ │ ├── clean.js │ │ │ │ ├── concat.js │ │ │ │ ├── index.js │ │ │ │ ├── qunit.js │ │ │ │ ├── shell.js │ │ │ │ └── uglify.js │ │ │ ├── gruntfile.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── Base.js │ │ │ │ ├── ColorScale.js │ │ │ │ ├── ColorScale │ │ │ │ │ ├── arrayToRgb.js │ │ │ │ │ ├── getColor.js │ │ │ │ │ ├── rgbToArray.js │ │ │ │ │ ├── setColors.js │ │ │ │ │ ├── setMax.js │ │ │ │ │ ├── setMin.js │ │ │ │ │ ├── setNormalizeFunction.js │ │ │ │ │ ├── vectorAdd.js │ │ │ │ │ ├── vectorLength.js │ │ │ │ │ ├── vectorMult.js │ │ │ │ │ ├── vectorSubtract.js │ │ │ │ │ └── vectorToNum.js │ │ │ │ ├── JQVMap.js │ │ │ │ ├── JQVMap │ │ │ │ │ ├── applyTransform.js │ │ │ │ │ ├── bindZoomButtons.js │ │ │ │ │ ├── deselect.js │ │ │ │ │ ├── getCountryId.js │ │ │ │ │ ├── getPin.js │ │ │ │ │ ├── getPinId.js │ │ │ │ │ ├── getPins.js │ │ │ │ │ ├── highlight.js │ │ │ │ │ ├── isSelected.js │ │ │ │ │ ├── makeDraggable.js │ │ │ │ │ ├── placePins.js │ │ │ │ │ ├── positionPins.js │ │ │ │ │ ├── removePin.js │ │ │ │ │ ├── removePins.js │ │ │ │ │ ├── reset.js │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── selectIndex.js │ │ │ │ │ ├── setBackgroundColor.js │ │ │ │ │ ├── setColor.js │ │ │ │ │ ├── setColors.js │ │ │ │ │ ├── setNormalizeFunction.js │ │ │ │ │ ├── setScale.js │ │ │ │ │ ├── setScaleColors.js │ │ │ │ │ ├── setValues.js │ │ │ │ │ ├── unhighlight.js │ │ │ │ │ ├── zoomIn.js │ │ │ │ │ └── zoomOut.js │ │ │ │ ├── VectorCanvas.js │ │ │ │ └── VectorCanvas │ │ │ │ │ ├── applyTransformParams.js │ │ │ │ │ ├── createGroup.js │ │ │ │ │ ├── createPath.js │ │ │ │ │ ├── pathSvgToVml.js │ │ │ │ │ └── setSize.js │ │ │ └── tests │ │ │ │ ├── index.html │ │ │ │ ├── qunit │ │ │ │ ├── qunit.css │ │ │ │ └── qunit.js │ │ │ │ └── tests.js │ │ ├── moment │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ender.js │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bm.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-SG.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-il.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-do.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── ga.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── gom-latn.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it-ch.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── kn.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mi.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mn.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── mt.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl-be.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sd.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── tet.js │ │ │ │ ├── tg.js │ │ │ │ ├── th.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── ug-cn.js │ │ │ │ ├── uk.js │ │ │ │ ├── ur.js │ │ │ │ ├── uz-latn.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── yo.js │ │ │ │ ├── zh-cn.js │ │ │ │ ├── zh-hk.js │ │ │ │ └── zh-tw.js │ │ │ ├── min │ │ │ │ ├── locales.js │ │ │ │ ├── locales.min.js │ │ │ │ ├── moment-with-locales.js │ │ │ │ ├── moment-with-locales.min.js │ │ │ │ └── moment.min.js │ │ │ ├── moment.d.ts │ │ │ ├── moment.js │ │ │ ├── package.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── lib │ │ │ │ ├── create │ │ │ │ │ ├── check-overflow.js │ │ │ │ │ ├── date-from-array.js │ │ │ │ │ ├── from-anything.js │ │ │ │ │ ├── from-array.js │ │ │ │ │ ├── from-object.js │ │ │ │ │ ├── from-string-and-array.js │ │ │ │ │ ├── from-string-and-format.js │ │ │ │ │ ├── from-string.js │ │ │ │ │ ├── local.js │ │ │ │ │ ├── parsing-flags.js │ │ │ │ │ ├── utc.js │ │ │ │ │ └── valid.js │ │ │ │ ├── duration │ │ │ │ │ ├── abs.js │ │ │ │ │ ├── add-subtract.js │ │ │ │ │ ├── as.js │ │ │ │ │ ├── bubble.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── create.js │ │ │ │ │ ├── duration.js │ │ │ │ │ ├── get.js │ │ │ │ │ ├── humanize.js │ │ │ │ │ ├── iso-string.js │ │ │ │ │ ├── prototype.js │ │ │ │ │ └── valid.js │ │ │ │ ├── format │ │ │ │ │ └── format.js │ │ │ │ ├── locale │ │ │ │ │ ├── base-config.js │ │ │ │ │ ├── calendar.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── formats.js │ │ │ │ │ ├── invalid.js │ │ │ │ │ ├── lists.js │ │ │ │ │ ├── locale.js │ │ │ │ │ ├── locales.js │ │ │ │ │ ├── ordinal.js │ │ │ │ │ ├── pre-post-format.js │ │ │ │ │ ├── prototype.js │ │ │ │ │ ├── relative.js │ │ │ │ │ └── set.js │ │ │ │ ├── moment │ │ │ │ │ ├── add-subtract.js │ │ │ │ │ ├── calendar.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── compare.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── creation-data.js │ │ │ │ │ ├── diff.js │ │ │ │ │ ├── format.js │ │ │ │ │ ├── from.js │ │ │ │ │ ├── get-set.js │ │ │ │ │ ├── locale.js │ │ │ │ │ ├── min-max.js │ │ │ │ │ ├── moment.js │ │ │ │ │ ├── now.js │ │ │ │ │ ├── prototype.js │ │ │ │ │ ├── start-end-of.js │ │ │ │ │ ├── to-type.js │ │ │ │ │ ├── to.js │ │ │ │ │ └── valid.js │ │ │ │ ├── parse │ │ │ │ │ ├── regex.js │ │ │ │ │ └── token.js │ │ │ │ ├── units │ │ │ │ │ ├── aliases.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── day-of-month.js │ │ │ │ │ ├── day-of-week.js │ │ │ │ │ ├── day-of-year.js │ │ │ │ │ ├── hour.js │ │ │ │ │ ├── millisecond.js │ │ │ │ │ ├── minute.js │ │ │ │ │ ├── month.js │ │ │ │ │ ├── offset.js │ │ │ │ │ ├── priorities.js │ │ │ │ │ ├── quarter.js │ │ │ │ │ ├── second.js │ │ │ │ │ ├── timestamp.js │ │ │ │ │ ├── timezone.js │ │ │ │ │ ├── units.js │ │ │ │ │ ├── week-calendar-utils.js │ │ │ │ │ ├── week-year.js │ │ │ │ │ ├── week.js │ │ │ │ │ └── year.js │ │ │ │ └── utils │ │ │ │ │ ├── abs-ceil.js │ │ │ │ │ ├── abs-floor.js │ │ │ │ │ ├── abs-round.js │ │ │ │ │ ├── compare-arrays.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ ├── deprecate.js │ │ │ │ │ ├── extend.js │ │ │ │ │ ├── has-own-prop.js │ │ │ │ │ ├── hooks.js │ │ │ │ │ ├── index-of.js │ │ │ │ │ ├── is-array.js │ │ │ │ │ ├── is-date.js │ │ │ │ │ ├── is-function.js │ │ │ │ │ ├── is-number.js │ │ │ │ │ ├── is-object-empty.js │ │ │ │ │ ├── is-object.js │ │ │ │ │ ├── is-undefined.js │ │ │ │ │ ├── keys.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── mod.js │ │ │ │ │ ├── some.js │ │ │ │ │ ├── to-int.js │ │ │ │ │ └── zero-fill.js │ │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bm.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-SG.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-il.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-do.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── ga.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── gom-latn.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it-ch.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── kn.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mi.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mn.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── mt.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl-be.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sd.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── tet.js │ │ │ │ ├── tg.js │ │ │ │ ├── th.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── ug-cn.js │ │ │ │ ├── uk.js │ │ │ │ ├── ur.js │ │ │ │ ├── uz-latn.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── yo.js │ │ │ │ ├── zh-cn.js │ │ │ │ ├── zh-hk.js │ │ │ │ └── zh-tw.js │ │ │ │ └── moment.js │ │ ├── popper.js │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── esm │ │ │ │ │ ├── popper-utils.js │ │ │ │ │ ├── popper-utils.js.map │ │ │ │ │ ├── popper-utils.min.js │ │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── popper.js.map │ │ │ │ │ ├── popper.min.js │ │ │ │ │ └── popper.min.js.map │ │ │ │ ├── popper-utils.js │ │ │ │ ├── popper-utils.js.map │ │ │ │ ├── popper-utils.min.js │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ ├── popper.js │ │ │ │ ├── popper.js.map │ │ │ │ ├── popper.min.js │ │ │ │ ├── popper.min.js.map │ │ │ │ └── umd │ │ │ │ │ ├── popper-utils.js │ │ │ │ │ ├── popper-utils.js.map │ │ │ │ │ ├── popper-utils.min.js │ │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── popper.js.map │ │ │ │ │ ├── popper.min.js │ │ │ │ │ ├── popper.min.js.map │ │ │ │ │ └── poppper.js.flow │ │ │ ├── index.d.ts │ │ │ ├── index.js.flow │ │ │ └── package.json │ │ ├── select2 │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── select2.css │ │ │ │ │ └── select2.min.css │ │ │ │ └── js │ │ │ │ │ ├── i18n │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── build.txt │ │ │ │ │ ├── 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 │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── js │ │ │ │ ├── banner.end.js │ │ │ │ ├── banner.start.js │ │ │ │ ├── jquery.mousewheel.shim.js │ │ │ │ ├── jquery.select2.js │ │ │ │ ├── jquery.shim.js │ │ │ │ ├── select2 │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── containerCss.js │ │ │ │ │ │ ├── dropdownCss.js │ │ │ │ │ │ ├── initSelection.js │ │ │ │ │ │ ├── inputData.js │ │ │ │ │ │ ├── matcher.js │ │ │ │ │ │ ├── query.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── data │ │ │ │ │ │ ├── ajax.js │ │ │ │ │ │ ├── array.js │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── maximumInputLength.js │ │ │ │ │ │ ├── maximumSelectionLength.js │ │ │ │ │ │ ├── minimumInputLength.js │ │ │ │ │ │ ├── select.js │ │ │ │ │ │ ├── tags.js │ │ │ │ │ │ └── tokenizer.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ ├── diacritics.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── dropdown │ │ │ │ │ │ ├── attachBody.js │ │ │ │ │ │ ├── attachContainer.js │ │ │ │ │ │ ├── closeOnSelect.js │ │ │ │ │ │ ├── hidePlaceholder.js │ │ │ │ │ │ ├── infiniteScroll.js │ │ │ │ │ │ ├── minimumResultsForSearch.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ ├── selectOnClose.js │ │ │ │ │ │ └── stopPropagation.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 │ │ │ │ │ ├── keys.js │ │ │ │ │ ├── options.js │ │ │ │ │ ├── results.js │ │ │ │ │ ├── selection │ │ │ │ │ │ ├── allowClear.js │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── clickMask.js │ │ │ │ │ │ ├── eventRelay.js │ │ │ │ │ │ ├── multiple.js │ │ │ │ │ │ ├── placeholder.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ ├── single.js │ │ │ │ │ │ └── stopPropagation.js │ │ │ │ │ ├── translation.js │ │ │ │ │ └── utils.js │ │ │ │ ├── wrapper.end.js │ │ │ │ └── wrapper.start.js │ │ │ │ └── scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _multiple.scss │ │ │ │ ├── _single.scss │ │ │ │ ├── core.scss │ │ │ │ ├── mixins │ │ │ │ └── _gradients.scss │ │ │ │ └── theme │ │ │ │ ├── classic │ │ │ │ ├── _defaults.scss │ │ │ │ ├── _multiple.scss │ │ │ │ ├── _single.scss │ │ │ │ └── layout.scss │ │ │ │ └── default │ │ │ │ ├── _multiple.scss │ │ │ │ ├── _single.scss │ │ │ │ └── layout.scss │ │ ├── selectric │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .gitattributes │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── gulpfile.js │ │ │ ├── karma.conf.js │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ ├── CNAME │ │ │ │ ├── ajax.html │ │ │ │ ├── customoptions.css │ │ │ │ ├── demo.html │ │ │ │ ├── favicon.ico │ │ │ │ ├── img │ │ │ │ │ ├── browser-icons.png │ │ │ │ │ ├── features-icons.png │ │ │ │ │ ├── header.jpg │ │ │ │ │ ├── icoDownload.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── jquery.minicolors.png │ │ │ │ ├── index.html │ │ │ │ ├── jquery.selectric.js │ │ │ │ ├── jquery.selectric.min.js │ │ │ │ ├── lib │ │ │ │ │ ├── demo.js │ │ │ │ │ ├── jquery-ui.min.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── jquery.minicolors.min.js │ │ │ │ │ ├── prism.css │ │ │ │ │ └── prism.js │ │ │ │ ├── plugins │ │ │ │ │ ├── jquery.selectric.addNew.css │ │ │ │ │ ├── jquery.selectric.addNew.js │ │ │ │ │ ├── jquery.selectric.addNew.min.js │ │ │ │ │ ├── jquery.selectric.placeholder.js │ │ │ │ │ └── jquery.selectric.placeholder.min.js │ │ │ │ ├── selectric.css │ │ │ │ ├── share.jpg │ │ │ │ ├── style.css │ │ │ │ └── themes │ │ │ │ │ ├── flat-dark-blue │ │ │ │ │ └── selectric.css │ │ │ │ │ ├── flat-light-blue │ │ │ │ │ └── selectric.css │ │ │ │ │ ├── flat-marsala │ │ │ │ │ └── selectric.css │ │ │ │ │ ├── flat-radiant-orchid │ │ │ │ │ └── selectric.css │ │ │ │ │ ├── flat-red │ │ │ │ │ └── selectric.css │ │ │ │ │ ├── modern-v2 │ │ │ │ │ └── selectric.css │ │ │ │ │ ├── modern │ │ │ │ │ └── selectric.css │ │ │ │ │ ├── plus │ │ │ │ │ └── selectric.css │ │ │ │ │ ├── square │ │ │ │ │ └── selectric.css │ │ │ │ │ └── template │ │ │ │ │ └── selectric.css │ │ │ ├── selectric.jquery.json │ │ │ ├── selectric_v1.13.0.zip │ │ │ ├── src │ │ │ │ ├── jquery.selectric.js │ │ │ │ ├── plugins │ │ │ │ │ ├── jquery.selectric.addNew.js │ │ │ │ │ ├── jquery.selectric.addNew.scss │ │ │ │ │ └── jquery.selectric.placeholder.js │ │ │ │ ├── selectric.scss │ │ │ │ └── themes │ │ │ │ │ ├── flat-dark-blue │ │ │ │ │ └── selectric.scss │ │ │ │ │ ├── flat-light-blue │ │ │ │ │ └── selectric.scss │ │ │ │ │ ├── flat-marsala │ │ │ │ │ └── selectric.scss │ │ │ │ │ ├── flat-radiant-orchid │ │ │ │ │ └── selectric.scss │ │ │ │ │ └── flat-red │ │ │ │ │ └── selectric.scss │ │ │ └── test │ │ │ │ ├── basic.spec.js │ │ │ │ ├── events.spec.js │ │ │ │ ├── fixtures │ │ │ │ ├── basic.html │ │ │ │ ├── hidden.html │ │ │ │ ├── multiple.html │ │ │ │ ├── optgroup.html │ │ │ │ └── options.html │ │ │ │ ├── keyboard.spec.js │ │ │ │ ├── lib │ │ │ │ ├── jasmine-jquery.js │ │ │ │ └── keyvent.min.js │ │ │ │ ├── mobile.spec.js │ │ │ │ ├── multiple.spec.js │ │ │ │ ├── options.spec.js │ │ │ │ └── visibility.spec.js │ │ ├── summernote │ │ │ ├── .DS_Store │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── coverage │ │ │ │ ├── HeadlessChrome 0.0.0 (Mac OS X 10.14.0) │ │ │ │ │ └── html │ │ │ │ │ │ ├── base.css │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ ├── prettify.js │ │ │ │ │ │ ├── sort-arrow-sprite.png │ │ │ │ │ │ ├── sorter.js │ │ │ │ │ │ ├── src │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── Context.js.html │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── async.js.html │ │ │ │ │ │ │ │ ├── dom.js.html │ │ │ │ │ │ │ │ ├── env.js.html │ │ │ │ │ │ │ │ ├── func.js.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── key.js.html │ │ │ │ │ │ │ │ ├── lists.js.html │ │ │ │ │ │ │ │ └── range.js.html │ │ │ │ │ │ │ ├── editing │ │ │ │ │ │ │ │ ├── Bullet.js.html │ │ │ │ │ │ │ │ ├── History.js.html │ │ │ │ │ │ │ │ ├── Style.js.html │ │ │ │ │ │ │ │ ├── Table.js.html │ │ │ │ │ │ │ │ ├── Typing.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── module │ │ │ │ │ │ │ │ ├── AirPopover.js.html │ │ │ │ │ │ │ │ ├── AutoLink.js.html │ │ │ │ │ │ │ │ ├── AutoReplace.js.html │ │ │ │ │ │ │ │ ├── AutoSync.js.html │ │ │ │ │ │ │ │ ├── Buttons.js.html │ │ │ │ │ │ │ │ ├── Clipboard.js.html │ │ │ │ │ │ │ │ ├── Codeview.js.html │ │ │ │ │ │ │ │ ├── Dropzone.js.html │ │ │ │ │ │ │ │ ├── Editor.js.html │ │ │ │ │ │ │ │ ├── Fullscreen.js.html │ │ │ │ │ │ │ │ ├── Handle.js.html │ │ │ │ │ │ │ │ ├── HelpDialog.js.html │ │ │ │ │ │ │ │ ├── HintPopover.js.html │ │ │ │ │ │ │ │ ├── ImageDialog.js.html │ │ │ │ │ │ │ │ ├── ImagePopover.js.html │ │ │ │ │ │ │ │ ├── LinkDialog.js.html │ │ │ │ │ │ │ │ ├── LinkPopover.js.html │ │ │ │ │ │ │ │ ├── Placeholder.js.html │ │ │ │ │ │ │ │ ├── Statusbar.js.html │ │ │ │ │ │ │ │ ├── TablePopover.js.html │ │ │ │ │ │ │ │ ├── Toolbar.js.html │ │ │ │ │ │ │ │ ├── VideoDialog.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── renderer.js.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── summernote-en-US.js.html │ │ │ │ │ │ │ ├── bs3 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── ui.js.html │ │ │ │ │ │ │ ├── bs4 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── ui.js.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── lite │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ ├── ui.js.html │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── DropdownUI.js.html │ │ │ │ │ │ │ │ ├── ModalUI.js.html │ │ │ │ │ │ │ │ ├── PopoverUI.js.html │ │ │ │ │ │ │ │ ├── TooltipUI.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── summernote.js.html │ │ │ │ │ │ └── test │ │ │ │ │ │ └── unit │ │ │ │ │ │ └── base │ │ │ │ │ │ ├── Context.spec.js.html │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── dom.spec.js.html │ │ │ │ │ │ ├── func.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── key.spec.js.html │ │ │ │ │ │ ├── lists.spec.js.html │ │ │ │ │ │ └── range.spec.js.html │ │ │ │ │ │ ├── editing │ │ │ │ │ │ ├── Table.spec.js.html │ │ │ │ │ │ ├── Typing.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── style.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── module │ │ │ │ │ │ ├── Buttons.spec.js.html │ │ │ │ │ │ ├── Codeview.spec.js.html │ │ │ │ │ │ ├── Editor.spec.js.html │ │ │ │ │ │ ├── Fullscreen.spec.js.html │ │ │ │ │ │ ├── LinkDialog.spec.js.html │ │ │ │ │ │ ├── VideoDialog.spec.js.html │ │ │ │ │ │ └── index.html │ │ │ │ ├── HeadlessChrome 0.0.0 (Mac OS X 10.14.1) │ │ │ │ │ └── html │ │ │ │ │ │ ├── base.css │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ ├── prettify.js │ │ │ │ │ │ ├── sort-arrow-sprite.png │ │ │ │ │ │ ├── sorter.js │ │ │ │ │ │ ├── src │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── Context.js.html │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── async.js.html │ │ │ │ │ │ │ │ ├── dom.js.html │ │ │ │ │ │ │ │ ├── env.js.html │ │ │ │ │ │ │ │ ├── func.js.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── key.js.html │ │ │ │ │ │ │ │ ├── lists.js.html │ │ │ │ │ │ │ │ └── range.js.html │ │ │ │ │ │ │ ├── editing │ │ │ │ │ │ │ │ ├── Bullet.js.html │ │ │ │ │ │ │ │ ├── History.js.html │ │ │ │ │ │ │ │ ├── Style.js.html │ │ │ │ │ │ │ │ ├── Table.js.html │ │ │ │ │ │ │ │ ├── Typing.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── module │ │ │ │ │ │ │ │ ├── AirPopover.js.html │ │ │ │ │ │ │ │ ├── AutoLink.js.html │ │ │ │ │ │ │ │ ├── AutoReplace.js.html │ │ │ │ │ │ │ │ ├── AutoSync.js.html │ │ │ │ │ │ │ │ ├── Buttons.js.html │ │ │ │ │ │ │ │ ├── Clipboard.js.html │ │ │ │ │ │ │ │ ├── Codeview.js.html │ │ │ │ │ │ │ │ ├── Dropzone.js.html │ │ │ │ │ │ │ │ ├── Editor.js.html │ │ │ │ │ │ │ │ ├── Fullscreen.js.html │ │ │ │ │ │ │ │ ├── Handle.js.html │ │ │ │ │ │ │ │ ├── HelpDialog.js.html │ │ │ │ │ │ │ │ ├── HintPopover.js.html │ │ │ │ │ │ │ │ ├── ImageDialog.js.html │ │ │ │ │ │ │ │ ├── ImagePopover.js.html │ │ │ │ │ │ │ │ ├── LinkDialog.js.html │ │ │ │ │ │ │ │ ├── LinkPopover.js.html │ │ │ │ │ │ │ │ ├── Placeholder.js.html │ │ │ │ │ │ │ │ ├── Statusbar.js.html │ │ │ │ │ │ │ │ ├── TablePopover.js.html │ │ │ │ │ │ │ │ ├── Toolbar.js.html │ │ │ │ │ │ │ │ ├── VideoDialog.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── renderer.js.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── summernote-en-US.js.html │ │ │ │ │ │ │ ├── bs3 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── ui.js.html │ │ │ │ │ │ │ ├── bs4 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── ui.js.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── lite │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ ├── ui.js.html │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── DropdownUI.js.html │ │ │ │ │ │ │ │ ├── ModalUI.js.html │ │ │ │ │ │ │ │ ├── PopoverUI.js.html │ │ │ │ │ │ │ │ ├── TooltipUI.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── summernote.js.html │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── base │ │ │ │ │ │ ├── Context.spec.js.html │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── dom.spec.js.html │ │ │ │ │ │ │ ├── func.spec.js.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── key.spec.js.html │ │ │ │ │ │ │ ├── lists.spec.js.html │ │ │ │ │ │ │ └── range.spec.js.html │ │ │ │ │ │ ├── editing │ │ │ │ │ │ │ ├── Table.spec.js.html │ │ │ │ │ │ │ ├── Typing.spec.js.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── style.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── module │ │ │ │ │ │ │ ├── Buttons.spec.js.html │ │ │ │ │ │ │ ├── Codeview.spec.js.html │ │ │ │ │ │ │ ├── Editor.spec.js.html │ │ │ │ │ │ │ ├── Fullscreen.spec.js.html │ │ │ │ │ │ │ ├── LinkDialog.spec.js.html │ │ │ │ │ │ │ ├── VideoDialog.spec.js.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── unit │ │ │ │ │ │ └── base │ │ │ │ │ │ ├── Context.spec.js.html │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── dom.spec.js.html │ │ │ │ │ │ ├── func.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── key.spec.js.html │ │ │ │ │ │ ├── lists.spec.js.html │ │ │ │ │ │ └── range.spec.js.html │ │ │ │ │ │ ├── editing │ │ │ │ │ │ ├── Table.spec.js.html │ │ │ │ │ │ ├── Typing.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── style.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── module │ │ │ │ │ │ ├── Buttons.spec.js.html │ │ │ │ │ │ ├── Codeview.spec.js.html │ │ │ │ │ │ ├── Editor.spec.js.html │ │ │ │ │ │ ├── Fullscreen.spec.js.html │ │ │ │ │ │ ├── LinkDialog.spec.js.html │ │ │ │ │ │ ├── VideoDialog.spec.js.html │ │ │ │ │ │ └── index.html │ │ │ │ ├── HeadlessChrome 72.0.3626 (Mac OS X 10.14.1) │ │ │ │ │ └── html │ │ │ │ │ │ ├── base.css │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ ├── prettify.js │ │ │ │ │ │ ├── sort-arrow-sprite.png │ │ │ │ │ │ ├── sorter.js │ │ │ │ │ │ ├── src │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── Context.js.html │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── async.js.html │ │ │ │ │ │ │ │ ├── dom.js.html │ │ │ │ │ │ │ │ ├── env.js.html │ │ │ │ │ │ │ │ ├── func.js.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── key.js.html │ │ │ │ │ │ │ │ ├── lists.js.html │ │ │ │ │ │ │ │ └── range.js.html │ │ │ │ │ │ │ ├── editing │ │ │ │ │ │ │ │ ├── Bullet.js.html │ │ │ │ │ │ │ │ ├── History.js.html │ │ │ │ │ │ │ │ ├── Style.js.html │ │ │ │ │ │ │ │ ├── Table.js.html │ │ │ │ │ │ │ │ ├── Typing.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── module │ │ │ │ │ │ │ │ ├── AirPopover.js.html │ │ │ │ │ │ │ │ ├── AutoLink.js.html │ │ │ │ │ │ │ │ ├── AutoReplace.js.html │ │ │ │ │ │ │ │ ├── AutoSync.js.html │ │ │ │ │ │ │ │ ├── Buttons.js.html │ │ │ │ │ │ │ │ ├── Clipboard.js.html │ │ │ │ │ │ │ │ ├── Codeview.js.html │ │ │ │ │ │ │ │ ├── Dropzone.js.html │ │ │ │ │ │ │ │ ├── Editor.js.html │ │ │ │ │ │ │ │ ├── Fullscreen.js.html │ │ │ │ │ │ │ │ ├── Handle.js.html │ │ │ │ │ │ │ │ ├── HelpDialog.js.html │ │ │ │ │ │ │ │ ├── HintPopover.js.html │ │ │ │ │ │ │ │ ├── ImageDialog.js.html │ │ │ │ │ │ │ │ ├── ImagePopover.js.html │ │ │ │ │ │ │ │ ├── LinkDialog.js.html │ │ │ │ │ │ │ │ ├── LinkPopover.js.html │ │ │ │ │ │ │ │ ├── Placeholder.js.html │ │ │ │ │ │ │ │ ├── Statusbar.js.html │ │ │ │ │ │ │ │ ├── TablePopover.js.html │ │ │ │ │ │ │ │ ├── Toolbar.js.html │ │ │ │ │ │ │ │ ├── VideoDialog.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── renderer.js.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── summernote-en-US.js.html │ │ │ │ │ │ │ ├── bs3 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── ui.js.html │ │ │ │ │ │ │ ├── bs4 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── ui.js.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── lite │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ ├── ui.js.html │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── DropdownUI.js.html │ │ │ │ │ │ │ │ ├── ModalUI.js.html │ │ │ │ │ │ │ │ ├── PopoverUI.js.html │ │ │ │ │ │ │ │ ├── TooltipUI.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── summernote.js.html │ │ │ │ │ │ └── test │ │ │ │ │ │ └── base │ │ │ │ │ │ ├── Context.spec.js.html │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── dom.spec.js.html │ │ │ │ │ │ ├── func.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── key.spec.js.html │ │ │ │ │ │ ├── lists.spec.js.html │ │ │ │ │ │ └── range.spec.js.html │ │ │ │ │ │ ├── editing │ │ │ │ │ │ ├── Table.spec.js.html │ │ │ │ │ │ ├── Typing.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── style.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── module │ │ │ │ │ │ ├── Buttons.spec.js.html │ │ │ │ │ │ ├── Codeview.spec.js.html │ │ │ │ │ │ ├── Editor.spec.js.html │ │ │ │ │ │ ├── Fullscreen.spec.js.html │ │ │ │ │ │ ├── LinkDialog.spec.js.html │ │ │ │ │ │ ├── VideoDialog.spec.js.html │ │ │ │ │ │ └── index.html │ │ │ │ ├── HeadlessChrome 74.0.3729 (Mac OS X 10.14.5) │ │ │ │ │ └── html │ │ │ │ │ │ ├── base.css │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ ├── prettify.js │ │ │ │ │ │ ├── sort-arrow-sprite.png │ │ │ │ │ │ ├── sorter.js │ │ │ │ │ │ ├── src │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── Context.js.html │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── async.js.html │ │ │ │ │ │ │ │ ├── dom.js.html │ │ │ │ │ │ │ │ ├── env.js.html │ │ │ │ │ │ │ │ ├── func.js.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── key.js.html │ │ │ │ │ │ │ │ ├── lists.js.html │ │ │ │ │ │ │ │ └── range.js.html │ │ │ │ │ │ │ ├── editing │ │ │ │ │ │ │ │ ├── Bullet.js.html │ │ │ │ │ │ │ │ ├── History.js.html │ │ │ │ │ │ │ │ ├── Style.js.html │ │ │ │ │ │ │ │ ├── Table.js.html │ │ │ │ │ │ │ │ ├── Typing.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── module │ │ │ │ │ │ │ │ ├── AirPopover.js.html │ │ │ │ │ │ │ │ ├── AutoLink.js.html │ │ │ │ │ │ │ │ ├── AutoReplace.js.html │ │ │ │ │ │ │ │ ├── AutoSync.js.html │ │ │ │ │ │ │ │ ├── Buttons.js.html │ │ │ │ │ │ │ │ ├── Clipboard.js.html │ │ │ │ │ │ │ │ ├── Codeview.js.html │ │ │ │ │ │ │ │ ├── Dropzone.js.html │ │ │ │ │ │ │ │ ├── Editor.js.html │ │ │ │ │ │ │ │ ├── Fullscreen.js.html │ │ │ │ │ │ │ │ ├── Handle.js.html │ │ │ │ │ │ │ │ ├── HelpDialog.js.html │ │ │ │ │ │ │ │ ├── HintPopover.js.html │ │ │ │ │ │ │ │ ├── ImageDialog.js.html │ │ │ │ │ │ │ │ ├── ImagePopover.js.html │ │ │ │ │ │ │ │ ├── LinkDialog.js.html │ │ │ │ │ │ │ │ ├── LinkPopover.js.html │ │ │ │ │ │ │ │ ├── Placeholder.js.html │ │ │ │ │ │ │ │ ├── Statusbar.js.html │ │ │ │ │ │ │ │ ├── TablePopover.js.html │ │ │ │ │ │ │ │ ├── Toolbar.js.html │ │ │ │ │ │ │ │ ├── VideoDialog.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── renderer.js.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── summernote-en-US.js.html │ │ │ │ │ │ │ ├── bs3 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── ui.js.html │ │ │ │ │ │ │ ├── bs4 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── ui.js.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── lite │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ ├── ui.js.html │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── DropdownUI.js.html │ │ │ │ │ │ │ │ ├── ModalUI.js.html │ │ │ │ │ │ │ │ ├── PopoverUI.js.html │ │ │ │ │ │ │ │ ├── TooltipUI.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── summernote.js.html │ │ │ │ │ │ └── test │ │ │ │ │ │ └── base │ │ │ │ │ │ ├── Context.spec.js.html │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── dom.spec.js.html │ │ │ │ │ │ ├── func.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── key.spec.js.html │ │ │ │ │ │ ├── lists.spec.js.html │ │ │ │ │ │ └── range.spec.js.html │ │ │ │ │ │ ├── editing │ │ │ │ │ │ ├── Table.spec.js.html │ │ │ │ │ │ ├── Typing.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── style.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── module │ │ │ │ │ │ ├── Buttons.spec.js.html │ │ │ │ │ │ ├── Codeview.spec.js.html │ │ │ │ │ │ ├── Editor.spec.js.html │ │ │ │ │ │ ├── Fullscreen.spec.js.html │ │ │ │ │ │ ├── LinkDialog.spec.js.html │ │ │ │ │ │ ├── VideoDialog.spec.js.html │ │ │ │ │ │ └── index.html │ │ │ │ └── PhantomJS 2.1.1 (Mac OS X 0.0.0) │ │ │ │ │ ├── html │ │ │ │ │ ├── base.css │ │ │ │ │ ├── index.html │ │ │ │ │ ├── prettify.css │ │ │ │ │ ├── prettify.js │ │ │ │ │ ├── sort-arrow-sprite.png │ │ │ │ │ ├── sorter.js │ │ │ │ │ ├── src │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── Context.js.html │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── async.js.html │ │ │ │ │ │ │ │ ├── dom.js.html │ │ │ │ │ │ │ │ ├── env.js.html │ │ │ │ │ │ │ │ ├── func.js.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── key.js.html │ │ │ │ │ │ │ │ ├── lists.js.html │ │ │ │ │ │ │ │ └── range.js.html │ │ │ │ │ │ │ ├── editing │ │ │ │ │ │ │ │ ├── Bullet.js.html │ │ │ │ │ │ │ │ ├── History.js.html │ │ │ │ │ │ │ │ ├── Style.js.html │ │ │ │ │ │ │ │ ├── Table.js.html │ │ │ │ │ │ │ │ ├── Typing.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── module │ │ │ │ │ │ │ │ ├── AirPopover.js.html │ │ │ │ │ │ │ │ ├── AutoLink.js.html │ │ │ │ │ │ │ │ ├── AutoReplace.js.html │ │ │ │ │ │ │ │ ├── AutoSync.js.html │ │ │ │ │ │ │ │ ├── Buttons.js.html │ │ │ │ │ │ │ │ ├── Clipboard.js.html │ │ │ │ │ │ │ │ ├── Codeview.js.html │ │ │ │ │ │ │ │ ├── Dropzone.js.html │ │ │ │ │ │ │ │ ├── Editor.js.html │ │ │ │ │ │ │ │ ├── Fullscreen.js.html │ │ │ │ │ │ │ │ ├── Handle.js.html │ │ │ │ │ │ │ │ ├── HelpDialog.js.html │ │ │ │ │ │ │ │ ├── HintPopover.js.html │ │ │ │ │ │ │ │ ├── ImageDialog.js.html │ │ │ │ │ │ │ │ ├── ImagePopover.js.html │ │ │ │ │ │ │ │ ├── LinkDialog.js.html │ │ │ │ │ │ │ │ ├── LinkPopover.js.html │ │ │ │ │ │ │ │ ├── Placeholder.js.html │ │ │ │ │ │ │ │ ├── Statusbar.js.html │ │ │ │ │ │ │ │ ├── TablePopover.js.html │ │ │ │ │ │ │ │ ├── Toolbar.js.html │ │ │ │ │ │ │ │ ├── VideoDialog.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── renderer.js.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── summernote-en-US.js.html │ │ │ │ │ │ │ ├── bs3 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── ui.js.html │ │ │ │ │ │ │ ├── bs4 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── ui.js.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── lite │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ ├── ui.js.html │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── DropdownUI.js.html │ │ │ │ │ │ │ │ ├── ModalUI.js.html │ │ │ │ │ │ │ │ ├── PopoverUI.js.html │ │ │ │ │ │ │ │ ├── TooltipUI.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── summernote.js.html │ │ │ │ │ └── test │ │ │ │ │ │ ├── base │ │ │ │ │ │ ├── Context.spec.js.html │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── dom.spec.js.html │ │ │ │ │ │ │ ├── func.spec.js.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── key.spec.js.html │ │ │ │ │ │ │ ├── lists.spec.js.html │ │ │ │ │ │ │ └── range.spec.js.html │ │ │ │ │ │ ├── editing │ │ │ │ │ │ │ ├── Table.spec.js.html │ │ │ │ │ │ │ ├── Typing.spec.js.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── style.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── module │ │ │ │ │ │ │ ├── Buttons.spec.js.html │ │ │ │ │ │ │ ├── Codeview.spec.js.html │ │ │ │ │ │ │ ├── Editor.spec.js.html │ │ │ │ │ │ │ ├── Fullscreen.spec.js.html │ │ │ │ │ │ │ ├── LinkDialog.spec.js.html │ │ │ │ │ │ │ ├── VideoDialog.spec.js.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── unit │ │ │ │ │ │ ├── base │ │ │ │ │ │ ├── Context.spec.js.html │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── dom.spec.js.html │ │ │ │ │ │ │ ├── func.spec.js.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── key.spec.js.html │ │ │ │ │ │ │ ├── lists.spec.js.html │ │ │ │ │ │ │ └── range.spec.js.html │ │ │ │ │ │ ├── editing │ │ │ │ │ │ │ ├── Table.spec.js.html │ │ │ │ │ │ │ ├── Typing.spec.js.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── style.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── module │ │ │ │ │ │ │ ├── AEditor.spec.js.html │ │ │ │ │ │ │ ├── Button.spec.js.html │ │ │ │ │ │ │ ├── Buttons.spec.js.html │ │ │ │ │ │ │ ├── Codeview.spec.js.html │ │ │ │ │ │ │ ├── Editor.spec.js.html │ │ │ │ │ │ │ ├── Fullscreen.spec.js.html │ │ │ │ │ │ │ ├── LinkDialog.spec.js.html │ │ │ │ │ │ │ ├── VideoDialog.spec.js.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── bs │ │ │ │ │ │ └── module │ │ │ │ │ │ ├── Buttons.spec.js.html │ │ │ │ │ │ ├── VideoDialog.spec.js.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── lcov-report │ │ │ │ │ ├── base.css │ │ │ │ │ ├── index.html │ │ │ │ │ ├── prettify.css │ │ │ │ │ ├── prettify.js │ │ │ │ │ ├── sort-arrow-sprite.png │ │ │ │ │ ├── sorter.js │ │ │ │ │ ├── src │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── Context.js.html │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── async.js.html │ │ │ │ │ │ │ │ ├── dom.js.html │ │ │ │ │ │ │ │ ├── env.js.html │ │ │ │ │ │ │ │ ├── func.js.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── key.js.html │ │ │ │ │ │ │ │ ├── lists.js.html │ │ │ │ │ │ │ │ └── range.js.html │ │ │ │ │ │ │ ├── editing │ │ │ │ │ │ │ │ ├── Bullet.js.html │ │ │ │ │ │ │ │ ├── History.js.html │ │ │ │ │ │ │ │ ├── Style.js.html │ │ │ │ │ │ │ │ ├── Table.js.html │ │ │ │ │ │ │ │ ├── Typing.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── module │ │ │ │ │ │ │ │ ├── AirPopover.js.html │ │ │ │ │ │ │ │ ├── AutoLink.js.html │ │ │ │ │ │ │ │ ├── AutoReplace.js.html │ │ │ │ │ │ │ │ ├── AutoSync.js.html │ │ │ │ │ │ │ │ ├── Buttons.js.html │ │ │ │ │ │ │ │ ├── Clipboard.js.html │ │ │ │ │ │ │ │ ├── Codeview.js.html │ │ │ │ │ │ │ │ ├── Dropzone.js.html │ │ │ │ │ │ │ │ ├── Editor.js.html │ │ │ │ │ │ │ │ ├── Fullscreen.js.html │ │ │ │ │ │ │ │ ├── Handle.js.html │ │ │ │ │ │ │ │ ├── HelpDialog.js.html │ │ │ │ │ │ │ │ ├── HintPopover.js.html │ │ │ │ │ │ │ │ ├── ImageDialog.js.html │ │ │ │ │ │ │ │ ├── ImagePopover.js.html │ │ │ │ │ │ │ │ ├── LinkDialog.js.html │ │ │ │ │ │ │ │ ├── LinkPopover.js.html │ │ │ │ │ │ │ │ ├── Placeholder.js.html │ │ │ │ │ │ │ │ ├── Statusbar.js.html │ │ │ │ │ │ │ │ ├── TablePopover.js.html │ │ │ │ │ │ │ │ ├── Toolbar.js.html │ │ │ │ │ │ │ │ ├── VideoDialog.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── renderer.js.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── summernote-en-US.js.html │ │ │ │ │ │ │ ├── bs3 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── ui.js.html │ │ │ │ │ │ │ ├── bs4 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ └── ui.js.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── lite │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── settings.js.html │ │ │ │ │ │ │ ├── ui.js.html │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── DropdownUI.js.html │ │ │ │ │ │ │ │ ├── ModalUI.js.html │ │ │ │ │ │ │ │ ├── PopoverUI.js.html │ │ │ │ │ │ │ │ ├── TooltipUI.js.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── summernote.js.html │ │ │ │ │ └── test │ │ │ │ │ │ └── base │ │ │ │ │ │ ├── Context.spec.js.html │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── dom.spec.js.html │ │ │ │ │ │ ├── func.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── key.spec.js.html │ │ │ │ │ │ ├── lists.spec.js.html │ │ │ │ │ │ └── range.spec.js.html │ │ │ │ │ │ ├── editing │ │ │ │ │ │ ├── Table.spec.js.html │ │ │ │ │ │ ├── Typing.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── style.spec.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── module │ │ │ │ │ │ ├── Buttons.spec.js.html │ │ │ │ │ │ ├── Codeview.spec.js.html │ │ │ │ │ │ ├── Editor.spec.js.html │ │ │ │ │ │ ├── Fullscreen.spec.js.html │ │ │ │ │ │ ├── LinkDialog.spec.js.html │ │ │ │ │ │ ├── VideoDialog.spec.js.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── lcov.info │ │ │ ├── dist │ │ │ │ ├── font │ │ │ │ │ ├── summernote.eot │ │ │ │ │ ├── summernote.ttf │ │ │ │ │ └── summernote.woff │ │ │ │ ├── lang │ │ │ │ │ ├── summernote-ar-AR.js │ │ │ │ │ ├── summernote-ar-AR.min.js │ │ │ │ │ ├── summernote-bg-BG.js │ │ │ │ │ ├── summernote-bg-BG.min.js │ │ │ │ │ ├── summernote-ca-ES.js │ │ │ │ │ ├── summernote-ca-ES.min.js │ │ │ │ │ ├── summernote-cs-CZ.js │ │ │ │ │ ├── summernote-cs-CZ.min.js │ │ │ │ │ ├── summernote-da-DK.js │ │ │ │ │ ├── summernote-da-DK.min.js │ │ │ │ │ ├── summernote-de-DE.js │ │ │ │ │ ├── summernote-de-DE.min.js │ │ │ │ │ ├── summernote-el-GR.js │ │ │ │ │ ├── summernote-el-GR.min.js │ │ │ │ │ ├── summernote-es-ES.js │ │ │ │ │ ├── summernote-es-ES.min.js │ │ │ │ │ ├── summernote-es-EU.js │ │ │ │ │ ├── summernote-es-EU.min.js │ │ │ │ │ ├── summernote-fa-IR.js │ │ │ │ │ ├── summernote-fa-IR.min.js │ │ │ │ │ ├── summernote-fi-FI.js │ │ │ │ │ ├── summernote-fi-FI.min.js │ │ │ │ │ ├── summernote-fr-FR.js │ │ │ │ │ ├── summernote-fr-FR.min.js │ │ │ │ │ ├── summernote-gl-ES.js │ │ │ │ │ ├── summernote-gl-ES.min.js │ │ │ │ │ ├── summernote-he-IL.js │ │ │ │ │ ├── summernote-he-IL.min.js │ │ │ │ │ ├── summernote-hr-HR.js │ │ │ │ │ ├── summernote-hr-HR.min.js │ │ │ │ │ ├── summernote-hu-HU.js │ │ │ │ │ ├── summernote-hu-HU.min.js │ │ │ │ │ ├── summernote-id-ID.js │ │ │ │ │ ├── summernote-id-ID.min.js │ │ │ │ │ ├── summernote-it-IT.js │ │ │ │ │ ├── summernote-it-IT.min.js │ │ │ │ │ ├── summernote-ja-JP.js │ │ │ │ │ ├── summernote-ja-JP.min.js │ │ │ │ │ ├── summernote-ko-KR.js │ │ │ │ │ ├── summernote-ko-KR.min.js │ │ │ │ │ ├── summernote-lt-LT.js │ │ │ │ │ ├── summernote-lt-LT.min.js │ │ │ │ │ ├── summernote-lt-LV.js │ │ │ │ │ ├── summernote-lt-LV.min.js │ │ │ │ │ ├── summernote-mn-MN.js │ │ │ │ │ ├── summernote-mn-MN.min.js │ │ │ │ │ ├── summernote-nb-NO.js │ │ │ │ │ ├── summernote-nb-NO.min.js │ │ │ │ │ ├── summernote-nl-NL.js │ │ │ │ │ ├── summernote-nl-NL.min.js │ │ │ │ │ ├── summernote-pl-PL.js │ │ │ │ │ ├── summernote-pl-PL.min.js │ │ │ │ │ ├── summernote-pt-BR.js │ │ │ │ │ ├── summernote-pt-BR.min.js │ │ │ │ │ ├── summernote-pt-PT.js │ │ │ │ │ ├── summernote-pt-PT.min.js │ │ │ │ │ ├── summernote-ro-RO.js │ │ │ │ │ ├── summernote-ro-RO.min.js │ │ │ │ │ ├── summernote-ru-RU.js │ │ │ │ │ ├── summernote-ru-RU.min.js │ │ │ │ │ ├── summernote-sk-SK.js │ │ │ │ │ ├── summernote-sk-SK.min.js │ │ │ │ │ ├── summernote-sl-SI.js │ │ │ │ │ ├── summernote-sl-SI.min.js │ │ │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ │ │ ├── summernote-sr-RS-Latin.min.js │ │ │ │ │ ├── summernote-sr-RS.js │ │ │ │ │ ├── summernote-sr-RS.min.js │ │ │ │ │ ├── summernote-sv-SE.js │ │ │ │ │ ├── summernote-sv-SE.min.js │ │ │ │ │ ├── summernote-ta-IN.js │ │ │ │ │ ├── summernote-ta-IN.min.js │ │ │ │ │ ├── summernote-th-TH.js │ │ │ │ │ ├── summernote-th-TH.min.js │ │ │ │ │ ├── summernote-tr-TR.js │ │ │ │ │ ├── summernote-tr-TR.min.js │ │ │ │ │ ├── summernote-uk-UA.js │ │ │ │ │ ├── summernote-uk-UA.min.js │ │ │ │ │ ├── summernote-uz-UZ.js │ │ │ │ │ ├── summernote-uz-UZ.min.js │ │ │ │ │ ├── summernote-vi-VN.js │ │ │ │ │ ├── summernote-vi-VN.min.js │ │ │ │ │ ├── summernote-zh-CN.js │ │ │ │ │ ├── summernote-zh-CN.min.js │ │ │ │ │ ├── summernote-zh-TW.js │ │ │ │ │ └── summernote-zh-TW.min.js │ │ │ │ ├── summernote-0.8.12-dist.zip │ │ │ │ ├── summernote-bs4.css │ │ │ │ ├── summernote-bs4.js │ │ │ │ ├── summernote-bs4.js.map │ │ │ │ ├── summernote-bs4.min.js │ │ │ │ ├── summernote-lite.css │ │ │ │ ├── summernote-lite.js │ │ │ │ ├── summernote-lite.js.map │ │ │ │ ├── summernote-lite.min.js │ │ │ │ ├── summernote.css │ │ │ │ ├── summernote.js │ │ │ │ ├── summernote.js.map │ │ │ │ └── summernote.min.js │ │ │ ├── examples │ │ │ │ ├── airmode.html │ │ │ │ ├── bs2.html │ │ │ │ ├── bs3.html │ │ │ │ ├── bs4.html │ │ │ │ ├── codemirror.html │ │ │ │ ├── codeview-filter.html │ │ │ │ ├── custom-style.html │ │ │ │ ├── example.css │ │ │ │ ├── external-api.html │ │ │ │ ├── hint-emoji.html │ │ │ │ ├── hint-symbols_mathematical-symbols_Greek-letters.html │ │ │ │ ├── hint-userdefine.html │ │ │ │ ├── ie8.html │ │ │ │ ├── jquery-custom-event.html │ │ │ │ ├── lang.html │ │ │ │ ├── link-blank.html │ │ │ │ ├── lite.html │ │ │ │ ├── ondialog-multitab.html │ │ │ │ ├── ondialog.html │ │ │ │ ├── placeholder.html │ │ │ │ ├── plugin-hello.html │ │ │ │ ├── symbols_mathematical-symbols_Greek-letters.json │ │ │ │ ├── textarea.html │ │ │ │ ├── toolbar-container.html │ │ │ │ └── with-google-font.html │ │ │ ├── index.html │ │ │ ├── karma.ci.conf.js │ │ │ ├── karma.conf.js │ │ │ ├── lang │ │ │ │ ├── summernote-ar-AR.js │ │ │ │ ├── summernote-bg-BG.js │ │ │ │ ├── summernote-ca-ES.js │ │ │ │ ├── summernote-cs-CZ.js │ │ │ │ ├── summernote-da-DK.js │ │ │ │ ├── summernote-de-DE.js │ │ │ │ ├── summernote-el-GR.js │ │ │ │ ├── summernote-es-ES.js │ │ │ │ ├── summernote-es-EU.js │ │ │ │ ├── summernote-fa-IR.js │ │ │ │ ├── summernote-fi-FI.js │ │ │ │ ├── summernote-fr-FR.js │ │ │ │ ├── summernote-gl-ES.js │ │ │ │ ├── summernote-he-IL.js │ │ │ │ ├── summernote-hr-HR.js │ │ │ │ ├── summernote-hu-HU.js │ │ │ │ ├── summernote-id-ID.js │ │ │ │ ├── summernote-it-IT.js │ │ │ │ ├── summernote-ja-JP.js │ │ │ │ ├── summernote-ko-KR.js │ │ │ │ ├── summernote-lt-LT.js │ │ │ │ ├── summernote-lt-LV.js │ │ │ │ ├── summernote-mn-MN.js │ │ │ │ ├── summernote-nb-NO.js │ │ │ │ ├── summernote-nl-NL.js │ │ │ │ ├── summernote-pl-PL.js │ │ │ │ ├── summernote-pt-BR.js │ │ │ │ ├── summernote-pt-PT.js │ │ │ │ ├── summernote-ro-RO.js │ │ │ │ ├── summernote-ru-RU.js │ │ │ │ ├── summernote-sk-SK.js │ │ │ │ ├── summernote-sl-SI.js │ │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ │ ├── summernote-sr-RS.js │ │ │ │ ├── summernote-sv-SE.js │ │ │ │ ├── summernote-ta-IN.js │ │ │ │ ├── summernote-th-TH.js │ │ │ │ ├── summernote-tr-TR.js │ │ │ │ ├── summernote-uk-UA.js │ │ │ │ ├── summernote-uz-UZ.js │ │ │ │ ├── summernote-vi-VN.js │ │ │ │ ├── summernote-zh-CN.js │ │ │ │ └── summernote-zh-TW.js │ │ │ ├── package.json │ │ │ ├── plugin │ │ │ │ ├── databasic │ │ │ │ │ ├── summernote-ext-databasic.css │ │ │ │ │ └── summernote-ext-databasic.js │ │ │ │ ├── hello │ │ │ │ │ └── summernote-ext-hello.js │ │ │ │ └── specialchars │ │ │ │ │ └── summernote-ext-specialchars.js │ │ │ ├── src │ │ │ │ ├── .DS_Store │ │ │ │ ├── icons │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-indent.svg │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-outdent.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── align.svg │ │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ │ ├── arrows-alt.svg │ │ │ │ │ ├── arrows-h.svg │ │ │ │ │ ├── arrows-v.svg │ │ │ │ │ ├── bold.svg │ │ │ │ │ ├── caret.svg │ │ │ │ │ ├── chain-broken.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── col-after.svg │ │ │ │ │ ├── col-before.svg │ │ │ │ │ ├── col-remove.svg │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── .DS_Store │ │ │ │ │ │ ├── _summernote.scss │ │ │ │ │ │ ├── font │ │ │ │ │ │ │ ├── summernote.eot │ │ │ │ │ │ │ ├── summernote.ttf │ │ │ │ │ │ │ └── summernote.woff │ │ │ │ │ │ ├── summernote.html │ │ │ │ │ │ └── summernote.less │ │ │ │ │ ├── eraser.svg │ │ │ │ │ ├── float-left.svg │ │ │ │ │ ├── float-none.svg │ │ │ │ │ ├── float-right.svg │ │ │ │ │ ├── font.svg │ │ │ │ │ ├── frame.svg │ │ │ │ │ ├── italic.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── magic.svg │ │ │ │ │ ├── menu-check.svg │ │ │ │ │ ├── minus.svg │ │ │ │ │ ├── orderedlist.svg │ │ │ │ │ ├── pencil.svg │ │ │ │ │ ├── picture.svg │ │ │ │ │ ├── question.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── rollback.svg │ │ │ │ │ ├── row-above.svg │ │ │ │ │ ├── row-below.svg │ │ │ │ │ ├── row-remove.svg │ │ │ │ │ ├── special-character.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── strikethrough.svg │ │ │ │ │ ├── subscript.svg │ │ │ │ │ ├── summernote.svg │ │ │ │ │ ├── superscript.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── summernote.css │ │ │ │ │ │ └── summernote.json │ │ │ │ │ ├── text-height.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── underline.svg │ │ │ │ │ ├── undo.svg │ │ │ │ │ ├── unorderedlist.svg │ │ │ │ │ └── video.svg │ │ │ │ ├── js │ │ │ │ │ ├── base │ │ │ │ │ │ ├── Context.js │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ │ ├── dom.js │ │ │ │ │ │ │ ├── env.js │ │ │ │ │ │ │ ├── func.js │ │ │ │ │ │ │ ├── key.js │ │ │ │ │ │ │ ├── lists.js │ │ │ │ │ │ │ └── range.js │ │ │ │ │ │ ├── editing │ │ │ │ │ │ │ ├── Bullet.js │ │ │ │ │ │ │ ├── History.js │ │ │ │ │ │ │ ├── Style.js │ │ │ │ │ │ │ ├── Table.js │ │ │ │ │ │ │ └── Typing.js │ │ │ │ │ │ ├── module │ │ │ │ │ │ │ ├── AirPopover.js │ │ │ │ │ │ │ ├── AutoLink.js │ │ │ │ │ │ │ ├── AutoReplace.js │ │ │ │ │ │ │ ├── AutoSync.js │ │ │ │ │ │ │ ├── Buttons.js │ │ │ │ │ │ │ ├── Clipboard.js │ │ │ │ │ │ │ ├── Codeview.js │ │ │ │ │ │ │ ├── Dropzone.js │ │ │ │ │ │ │ ├── Editor.js │ │ │ │ │ │ │ ├── Fullscreen.js │ │ │ │ │ │ │ ├── Handle.js │ │ │ │ │ │ │ ├── HelpDialog.js │ │ │ │ │ │ │ ├── HintPopover.js │ │ │ │ │ │ │ ├── ImageDialog.js │ │ │ │ │ │ │ ├── ImagePopover.js │ │ │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ │ │ ├── LinkPopover.js │ │ │ │ │ │ │ ├── Placeholder.js │ │ │ │ │ │ │ ├── Statusbar.js │ │ │ │ │ │ │ ├── TablePopover.js │ │ │ │ │ │ │ ├── Toolbar.js │ │ │ │ │ │ │ └── VideoDialog.js │ │ │ │ │ │ ├── renderer.js │ │ │ │ │ │ ├── settings.js │ │ │ │ │ │ └── summernote-en-US.js │ │ │ │ │ ├── bs3 │ │ │ │ │ │ ├── settings.js │ │ │ │ │ │ └── ui.js │ │ │ │ │ ├── bs4 │ │ │ │ │ │ ├── settings.js │ │ │ │ │ │ └── ui.js │ │ │ │ │ ├── lite │ │ │ │ │ │ ├── settings.js │ │ │ │ │ │ ├── ui.js │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── DropdownUI.js │ │ │ │ │ │ │ ├── ModalUI.js │ │ │ │ │ │ │ ├── PopoverUI.js │ │ │ │ │ │ │ └── TooltipUI.js │ │ │ │ │ └── summernote.js │ │ │ │ └── less │ │ │ │ │ ├── elements.less │ │ │ │ │ ├── elements.scss │ │ │ │ │ ├── lite-ui │ │ │ │ │ ├── all.less │ │ │ │ │ ├── btn-group.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── common.less │ │ │ │ │ ├── dropdown.less │ │ │ │ │ ├── form.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── mixins │ │ │ │ │ │ └── buttons.less │ │ │ │ │ ├── modal.less │ │ │ │ │ ├── popover.less │ │ │ │ │ ├── toolbar.less │ │ │ │ │ ├── tooltip.less │ │ │ │ │ └── variables.less │ │ │ │ │ ├── summernote-bs4.less │ │ │ │ │ ├── summernote-bs4.scss │ │ │ │ │ ├── summernote-lite.less │ │ │ │ │ ├── summernote.less │ │ │ │ │ └── summernote.scss │ │ │ └── tsconfig.json │ │ ├── sweetalert │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ └── sweetalert.min.js │ │ │ ├── package.json │ │ │ └── typings │ │ │ │ ├── core.d.ts │ │ │ │ ├── modules │ │ │ │ ├── actions.d.ts │ │ │ │ ├── class-list │ │ │ │ │ └── index.d.ts │ │ │ │ ├── event-listeners.d.ts │ │ │ │ ├── init │ │ │ │ │ ├── buttons.d.ts │ │ │ │ │ ├── content.d.ts │ │ │ │ │ ├── icon.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── modal.d.ts │ │ │ │ │ ├── overlay.d.ts │ │ │ │ │ └── text.d.ts │ │ │ │ ├── markup │ │ │ │ │ ├── buttons.d.ts │ │ │ │ │ ├── content.d.ts │ │ │ │ │ ├── icons.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── modal.d.ts │ │ │ │ │ └── overlay.d.ts │ │ │ │ ├── options │ │ │ │ │ ├── buttons.d.ts │ │ │ │ │ ├── content.d.ts │ │ │ │ │ ├── deprecations.d.ts │ │ │ │ │ └── index.d.ts │ │ │ │ ├── state.d.ts │ │ │ │ └── utils.d.ts │ │ │ │ └── sweetalert.d.ts │ │ └── weathericons │ │ │ ├── .npmignore │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ ├── weather-icons-wind.css │ │ │ ├── weather-icons-wind.min.css │ │ │ ├── weather-icons.css │ │ │ └── weather-icons.min.css │ │ │ ├── font │ │ │ ├── weathericons-regular-webfont.eot │ │ │ ├── weathericons-regular-webfont.svg │ │ │ ├── weathericons-regular-webfont.ttf │ │ │ ├── weathericons-regular-webfont.woff │ │ │ └── weathericons-regular-webfont.woff2 │ │ │ ├── less │ │ │ ├── icon-classes │ │ │ │ ├── classes-beaufort.less │ │ │ │ ├── classes-day.less │ │ │ │ ├── classes-direction.less │ │ │ │ ├── classes-misc.less │ │ │ │ ├── classes-moon-aliases.less │ │ │ │ ├── classes-moon.less │ │ │ │ ├── classes-neutral.less │ │ │ │ ├── classes-night.less │ │ │ │ ├── classes-time.less │ │ │ │ ├── classes-wind-aliases.less │ │ │ │ ├── classes-wind-degrees.less │ │ │ │ └── classes-wind.less │ │ │ ├── icon-variables │ │ │ │ ├── variables-beaufort.less │ │ │ │ ├── variables-day.less │ │ │ │ ├── variables-direction.less │ │ │ │ ├── variables-misc.less │ │ │ │ ├── variables-moon.less │ │ │ │ ├── variables-neutral.less │ │ │ │ ├── variables-night.less │ │ │ │ ├── variables-time.less │ │ │ │ └── variables-wind-names.less │ │ │ ├── mappings │ │ │ │ ├── wi-forecast-io.less │ │ │ │ ├── wi-owm.less │ │ │ │ ├── wi-wmo4680.less │ │ │ │ ├── wi-wunderground.less │ │ │ │ └── wi-yahoo.less │ │ │ ├── weather-icons-classes.less │ │ │ ├── weather-icons-core.less │ │ │ ├── weather-icons-variables.less │ │ │ ├── weather-icons-wind.less │ │ │ ├── weather-icons-wind.min.less │ │ │ ├── weather-icons.less │ │ │ └── weather-icons.min.less │ │ │ ├── package.json │ │ │ ├── sass │ │ │ ├── icon-classes │ │ │ │ ├── classes-beaufort.scss │ │ │ │ ├── classes-day.scss │ │ │ │ ├── classes-direction.scss │ │ │ │ ├── classes-misc.scss │ │ │ │ ├── classes-moon-aliases.scss │ │ │ │ ├── classes-moon.scss │ │ │ │ ├── classes-neutral.scss │ │ │ │ ├── classes-night.scss │ │ │ │ ├── classes-time.scss │ │ │ │ ├── classes-wind-aliases.scss │ │ │ │ ├── classes-wind-degrees.scss │ │ │ │ └── classes-wind.scss │ │ │ ├── icon-variables │ │ │ │ ├── variables-beaufort.scss │ │ │ │ ├── variables-day.scss │ │ │ │ ├── variables-direction.scss │ │ │ │ ├── variables-misc.scss │ │ │ │ ├── variables-moon.scss │ │ │ │ ├── variables-neutral.scss │ │ │ │ ├── variables-night.scss │ │ │ │ ├── variables-time.scss │ │ │ │ └── variables-wind-names.scss │ │ │ ├── mappings │ │ │ │ ├── wi-forecast-io.scss │ │ │ │ ├── wi-owm.scss │ │ │ │ ├── wi-wmo4680.scss │ │ │ │ ├── wi-wunderground.scss │ │ │ │ └── wi-yahoo.scss │ │ │ ├── weather-icons-classes.scss │ │ │ ├── weather-icons-core.scss │ │ │ ├── weather-icons-variables.scss │ │ │ ├── weather-icons-wind.min.scss │ │ │ ├── weather-icons-wind.scss │ │ │ ├── weather-icons.min.scss │ │ │ └── weather-icons.scss │ │ │ └── values │ │ │ └── weathericons.xml │ ├── plugins │ │ └── leaflet │ │ │ ├── images │ │ │ ├── keluar.png │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ │ ├── leaflet-src.esm.js │ │ │ ├── leaflet-src.esm.js.map │ │ │ ├── leaflet-src.js │ │ │ ├── leaflet-src.js.map │ │ │ ├── leaflet.css │ │ │ ├── leaflet.js │ │ │ └── leaflet.js.map │ └── welcome │ │ ├── css │ │ ├── .DS_Store │ │ ├── bootstrap.css │ │ ├── font-awesome.min.css │ │ ├── magnific-popup.css │ │ ├── main.css │ │ ├── owl.carousel.min.css │ │ ├── style.css │ │ ├── style.css.map │ │ └── styleku.css │ │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ │ ├── img │ │ ├── .DS_Store │ │ ├── about_img.png │ │ ├── b_map1.png │ │ ├── b_map2.png │ │ ├── b_map3.png │ │ ├── b_map4.png │ │ ├── banner │ │ │ ├── .DS_Store │ │ │ ├── banner-2.jpg │ │ │ ├── banner.jpg │ │ │ ├── home-banner.jpg │ │ │ └── home-left.png │ │ ├── blog │ │ │ ├── add.jpg │ │ │ ├── author.png │ │ │ ├── c1.jpg │ │ │ ├── c2.jpg │ │ │ ├── c3.jpg │ │ │ ├── c4.jpg │ │ │ ├── c5.jpg │ │ │ ├── c6.jpg │ │ │ ├── cat-post │ │ │ │ ├── cat-post-1.jpg │ │ │ │ ├── cat-post-2.jpg │ │ │ │ └── cat-post-3.jpg │ │ │ ├── causes │ │ │ │ ├── causes-1.jpg │ │ │ │ ├── causes-2.jpg │ │ │ │ └── causes-3.jpg │ │ │ ├── feature-img1.jpg │ │ │ ├── home-blog │ │ │ │ ├── home-blog-1.jpg │ │ │ │ ├── home-blog-2.jpg │ │ │ │ └── home-blog-3.jpg │ │ │ ├── main-blog │ │ │ │ ├── m-blog-1.jpg │ │ │ │ ├── m-blog-2.jpg │ │ │ │ ├── m-blog-3.jpg │ │ │ │ ├── m-blog-4.jpg │ │ │ │ └── m-blog-5.jpg │ │ │ ├── next.jpg │ │ │ ├── popular-post │ │ │ │ ├── post1.jpg │ │ │ │ ├── post2.jpg │ │ │ │ ├── post3.jpg │ │ │ │ └── post4.jpg │ │ │ ├── post-img1.jpg │ │ │ ├── post-img2.jpg │ │ │ └── prev.jpg │ │ ├── blog_img1.png │ │ ├── blog_img2.png │ │ ├── blog_img3.png │ │ ├── chart.jpg │ │ ├── elements │ │ │ ├── _DS_Store │ │ │ ├── a.jpg │ │ │ ├── a2.jpg │ │ │ ├── d.jpg │ │ │ ├── disabled-check.png │ │ │ ├── disabled-radio.png │ │ │ ├── f1.jpg │ │ │ ├── f2.jpg │ │ │ ├── f3.jpg │ │ │ ├── f4.jpg │ │ │ ├── f5.jpg │ │ │ ├── f6.jpg │ │ │ ├── f7.jpg │ │ │ ├── f8.jpg │ │ │ ├── g1.jpg │ │ │ ├── g2.jpg │ │ │ ├── g3.jpg │ │ │ ├── g4.jpg │ │ │ ├── g5.jpg │ │ │ ├── g6.jpg │ │ │ ├── g7.jpg │ │ │ ├── g8.jpg │ │ │ ├── primary-check.png │ │ │ ├── primary-radio.png │ │ │ ├── success-check.png │ │ │ ├── success-radio.png │ │ │ ├── user1.png │ │ │ └── user2.png │ │ ├── favicon.png │ │ ├── gallery_img1.png │ │ ├── gallery_img2.png │ │ ├── gallery_img3.png │ │ ├── gallery_img4.png │ │ ├── instagram │ │ │ ├── Image-01.jpg │ │ │ ├── Image-02.jpg │ │ │ ├── Image-03.jpg │ │ │ ├── Image-04.jpg │ │ │ ├── Image-05.jpg │ │ │ ├── Image-06.jpg │ │ │ ├── Image-07.jpg │ │ │ └── Image-08.jpg │ │ ├── logo.png │ │ ├── quote.png │ │ ├── recent_up.png │ │ ├── recent_up_bg.png │ │ ├── testimonial_bg.png │ │ └── testimonials │ │ │ └── .DS_Store │ │ ├── js │ │ ├── .DS_Store │ │ ├── bootstrap.min.js │ │ ├── contact.js │ │ ├── gmaps.min.js │ │ ├── jquery-3.2.1.min.js │ │ ├── jquery.ajaxchimp.min.js │ │ ├── jquery.form.js │ │ ├── jquery.magnific-popup.min.js │ │ ├── jquery.validate.min.js │ │ ├── mail-script.js │ │ ├── owl.carousel.min.js │ │ ├── popper.js │ │ ├── stellar.js │ │ └── theme.js │ │ └── vendors │ │ ├── animate-css │ │ ├── animate.css │ │ └── wow.min.js │ │ ├── bootstrap-datepicker │ │ ├── bootstrap-datetimepicker.min.css │ │ ├── bootstrap-datetimepicker.min.js │ │ ├── bootstrap-select.css │ │ └── bootstrap-select.js │ │ ├── counter-up │ │ ├── jquery.counterup.min.js │ │ └── jquery.waypoints.min.js │ │ ├── flaticon │ │ ├── Flaticon.eot │ │ ├── Flaticon.svg │ │ ├── Flaticon.ttf │ │ ├── Flaticon.woff │ │ ├── _flaticon.scss │ │ └── flaticon.css │ │ ├── flipclock │ │ └── timer.js │ │ ├── isotope │ │ ├── imagesloaded.pkgd.min.js │ │ └── isotope-min.js │ │ ├── jquery-ui │ │ ├── jquery-ui.css │ │ └── jquery-ui.js │ │ ├── lightbox │ │ ├── simpleLightbox.css │ │ └── simpleLightbox.min.js │ │ ├── linericon │ │ ├── fonts │ │ │ ├── Linearicons-Free.eot │ │ │ ├── Linearicons-Free.svg │ │ │ ├── Linearicons-Free.ttf │ │ │ ├── Linearicons-Free.woff │ │ │ └── Linearicons-Free.woff2 │ │ └── style.css │ │ ├── nice-select │ │ ├── css │ │ │ ├── nice-select.css │ │ │ └── style.css │ │ └── js │ │ │ ├── jquery.nice-select.js │ │ │ └── jquery.nice-select.min.js │ │ └── owl-carousel │ │ ├── assets │ │ ├── ajax-loader.gif │ │ ├── animated.css │ │ └── owl.carousel.css │ │ ├── owl.carousel.min.css │ │ └── owl.carousel.min.js ├── uploads │ └── cek.html ├── vendor │ └── laravel-filemanager │ │ ├── css │ │ ├── cropper.min.css │ │ ├── dropzone.min.css │ │ ├── lfm.css │ │ └── mime-icons.min.css │ │ ├── files │ │ ├── .gitkeep │ │ ├── adobe.pdf │ │ ├── folder-1 │ │ │ └── sleeping-dog.jpg │ │ └── word.docx │ │ ├── images │ │ ├── .gitkeep │ │ └── test-folder │ │ │ ├── sleeping-dog.jpg │ │ │ └── thumbs │ │ │ └── sleeping-dog.jpg │ │ ├── img │ │ ├── 152px color.png │ │ ├── 72px color.png │ │ ├── 92px color.png │ │ ├── Logomark color.png │ │ ├── folder.png │ │ └── loader.svg │ │ └── js │ │ ├── cropper.min.js │ │ ├── dropzone.min.js │ │ ├── filemanager.js │ │ ├── filemanager.min.js │ │ ├── script.js │ │ └── stand-alone-button.js └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ ├── bootstrap.js │ ├── components │ │ ├── CrudGenerator.vue │ │ └── ExampleComponent.vue │ └── crud-generator.js ├── lang │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── id.json ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── errors │ ├── 404.blade.php │ ├── 500.blade.php │ ├── 503.blade.php │ └── default-stisla.blade.php │ ├── sbadmin │ ├── includes │ │ ├── form │ │ │ ├── buttons │ │ │ │ ├── btn-add.blade.php │ │ │ │ ├── btn-delete.blade.php │ │ │ │ ├── btn-edit.blade.php │ │ │ │ ├── btn-import-excel.blade.php │ │ │ │ ├── btn-primary.blade.php │ │ │ │ ├── btn-reset.blade.php │ │ │ │ ├── form-button.blade.php │ │ │ │ ├── reset-btn.blade.php │ │ │ │ └── save-btn.blade.php │ │ │ ├── chekbox-custom.blade.php │ │ │ ├── colorpicker.blade.php │ │ │ ├── input-avatar.blade.php │ │ │ ├── input-email.blade.php │ │ │ ├── input-name.blade.php │ │ │ ├── input-password.blade.php │ │ │ ├── input.blade.php │ │ │ ├── radio-toggle.blade.php │ │ │ ├── select.blade.php │ │ │ ├── select2.blade.php │ │ │ ├── summernote.blade.php │ │ │ └── textarea.blade.php │ │ ├── head.blade.php │ │ ├── left-sidebar.blade.php │ │ ├── modals │ │ │ └── modal-import-excel.blade.php │ │ ├── page-loader.blade.php │ │ ├── right-sidebar.blade.php │ │ ├── scripts.blade.php │ │ ├── search-bar.blade.php │ │ └── top-bar.blade.php │ ├── layouts │ │ └── app.blade.php │ └── settings │ │ └── index.blade.php │ ├── stisla │ ├── activity-logs │ │ ├── components │ │ │ └── table.blade.php │ │ ├── export-excel-example.blade.php │ │ ├── export-pdf.blade.php │ │ └── index.blade.php │ ├── auth │ │ ├── forgot-password │ │ │ ├── index.blade.php │ │ │ └── index2.blade.php │ │ ├── gcaptcha.blade.php │ │ ├── login │ │ │ ├── includes │ │ │ │ └── btn-social.blade.php │ │ │ ├── index.blade.php │ │ │ ├── index2.blade.php │ │ │ └── input-password.blade.php │ │ ├── register │ │ │ ├── index.blade.php │ │ │ ├── index2.blade.php │ │ │ └── input-password.blade.php │ │ ├── reset-password │ │ │ ├── index.blade.php │ │ │ └── index2.blade.php │ │ ├── script-gcaptcha.blade.php │ │ └── verification │ │ │ ├── index.blade.php │ │ │ └── index2.blade.php │ ├── backup-databases │ │ └── index.blade.php │ ├── crud-examples │ │ ├── color.blade.php │ │ ├── export-pdf.blade.php │ │ ├── file.blade.php │ │ ├── form.blade.php │ │ ├── image.blade.php │ │ ├── index.blade.php │ │ ├── only-form.blade.php │ │ ├── table.blade.php │ │ └── tags.blade.php │ ├── crud-generators │ │ └── index.blade.php │ ├── dashboard │ │ └── index.blade.php │ ├── dropboxs │ │ ├── export-excel-example.blade.php │ │ ├── export-pdf.blade.php │ │ └── index.blade.php │ ├── emails │ │ ├── forgot-password.blade.php │ │ ├── testing.blade.php │ │ └── verification-account.blade.php │ ├── examples │ │ ├── chart-js │ │ │ └── index.blade.php │ │ ├── datatable │ │ │ └── index.blade.php │ │ ├── form │ │ │ └── index.blade.php │ │ ├── invoice │ │ │ └── index.blade.php │ │ └── pricing │ │ │ └── index.blade.php │ ├── group-menus │ │ ├── action.blade.php │ │ ├── form.blade.php │ │ ├── index.blade.php │ │ └── table.blade.php │ ├── homes │ │ └── index.blade.php │ ├── includes │ │ ├── auth │ │ │ ├── auth-bg.blade.php │ │ │ ├── auth-footer.blade.php │ │ │ ├── auth-header.blade.php │ │ │ ├── auth-logo.blade.php │ │ │ └── auth-simple-footer.blade.php │ │ ├── breadcrumbs │ │ │ ├── breadcrumb-form.blade.php │ │ │ ├── breadcrumb-table.blade.php │ │ │ └── breadcrumb.blade.php │ │ ├── forms │ │ │ ├── buttons │ │ │ │ ├── btn-action.blade.php │ │ │ │ ├── btn-add.blade.php │ │ │ │ ├── btn-base.blade.php │ │ │ │ ├── btn-csv-download.blade.php │ │ │ │ ├── btn-danger.blade.php │ │ │ │ ├── btn-datatable.blade.php │ │ │ │ ├── btn-delete.blade.php │ │ │ │ ├── btn-detail.blade.php │ │ │ │ ├── btn-edit.blade.php │ │ │ │ ├── btn-excel-download.blade.php │ │ │ │ ├── btn-form.blade.php │ │ │ │ ├── btn-import-excel.blade.php │ │ │ │ ├── btn-json-download.blade.php │ │ │ │ ├── btn-pdf-download.blade.php │ │ │ │ ├── btn-primary.blade.php │ │ │ │ ├── btn-print.blade.php │ │ │ │ ├── btn-reset.blade.php │ │ │ │ ├── btn-save.blade.php │ │ │ │ ├── btn-success.blade.php │ │ │ │ └── btn-view.blade.php │ │ │ ├── editors │ │ │ │ ├── summernote.blade.php │ │ │ │ └── textarea.blade.php │ │ │ ├── inputs │ │ │ │ ├── input-avatar.blade.php │ │ │ │ ├── input-checkbox-custom.blade.php │ │ │ │ ├── input-checkbox.blade.php │ │ │ │ ├── input-colorpicker.blade.php │ │ │ │ ├── input-currency.blade.php │ │ │ │ ├── input-email.blade.php │ │ │ │ ├── input-name.blade.php │ │ │ │ ├── input-password.blade.php │ │ │ │ ├── input-radio-toggle.blade.php │ │ │ │ ├── input-tags.blade.php │ │ │ │ └── input.blade.php │ │ │ └── selects │ │ │ │ ├── select.blade.php │ │ │ │ └── select2.blade.php │ │ ├── modals │ │ │ ├── modal-form.blade.php │ │ │ └── modal-import-excel.blade.php │ │ ├── others │ │ │ ├── css-pdf.blade.php │ │ │ ├── css.blade.php │ │ │ ├── empty-state.blade.php │ │ │ ├── export-pdf.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── js-auth.blade.php │ │ │ ├── js.blade.php │ │ │ ├── meta-title.blade.php │ │ │ ├── navbar.blade.php │ │ │ └── sidebar.blade.php │ │ └── scripts │ │ │ └── disable-form.blade.php │ ├── layouts │ │ ├── app-auth-simple.blade.php │ │ ├── app-auth.blade.php │ │ ├── app-blank.blade.php │ │ ├── app-crud-generator.blade.php │ │ ├── app-datatable.blade.php │ │ ├── app-form.blade.php │ │ ├── app-table.blade.php │ │ └── app.blade.php │ ├── menu-managements │ │ ├── action.blade.php │ │ ├── form.blade.php │ │ ├── index.blade.php │ │ └── table.blade.php │ ├── notifications │ │ └── index.blade.php │ ├── profile │ │ └── index.blade.php │ ├── request-logs │ │ ├── export-excel-example.blade.php │ │ ├── export-pdf.blade.php │ │ └── index.blade.php │ ├── settings │ │ ├── all.blade.php │ │ └── index.blade.php │ ├── ubuntu │ │ ├── all.blade.php │ │ ├── form-row.blade.php │ │ ├── form.blade.php │ │ ├── index.blade.php │ │ └── mysql-action.blade.php │ ├── user-management │ │ ├── permission-groups │ │ │ ├── form.blade.php │ │ │ ├── index.blade.php │ │ │ └── table.blade.php │ │ ├── permissions │ │ │ ├── form.blade.php │ │ │ ├── index.blade.php │ │ │ └── table.blade.php │ │ ├── roles │ │ │ ├── export-excel-example.blade.php │ │ │ ├── form.blade.php │ │ │ ├── index.blade.php │ │ │ └── table.blade.php │ │ └── users │ │ │ ├── form.blade.php │ │ │ ├── index.blade.php │ │ │ └── table.blade.php │ └── youtube │ │ ├── index.blade.php │ │ ├── per-video.blade.php │ │ └── viewsync.blade.php │ ├── testing │ ├── datatable.blade.php │ └── modal.blade.php │ ├── vendor │ └── laravel-log-viewer │ │ └── log.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php ├── modules │ └── test.php ├── stisla-web-auth.php ├── stisla-web.php └── web.php ├── serve.bat ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 public/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Commands/BackupAllData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Console/Commands/BackupAllData.php -------------------------------------------------------------------------------- /app/Console/Commands/MakeCrudCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Console/Commands/MakeCrudCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/MakeServiceCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Console/Commands/MakeServiceCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/RestoreAllData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Console/Commands/RestoreAllData.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Exports/ActivityLogExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Exports/ActivityLogExport.php -------------------------------------------------------------------------------- /app/Exports/CrudExampleExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Exports/CrudExampleExport.php -------------------------------------------------------------------------------- /app/Exports/GeneralExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Exports/GeneralExport.php -------------------------------------------------------------------------------- /app/Exports/PermissionExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Exports/PermissionExport.php -------------------------------------------------------------------------------- /app/Exports/PermissionGroupExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Exports/PermissionGroupExport.php -------------------------------------------------------------------------------- /app/Exports/RoleExampleExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Exports/RoleExampleExport.php -------------------------------------------------------------------------------- /app/Helpers/ArrayHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Helpers/ArrayHelper.php -------------------------------------------------------------------------------- /app/Helpers/DateTimeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Helpers/DateTimeHelper.php -------------------------------------------------------------------------------- /app/Helpers/FileHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Helpers/FileHelper.php -------------------------------------------------------------------------------- /app/Helpers/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Helpers/Helper.php -------------------------------------------------------------------------------- /app/Helpers/LogHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Helpers/LogHelper.php -------------------------------------------------------------------------------- /app/Helpers/MessageHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Helpers/MessageHelper.php -------------------------------------------------------------------------------- /app/Helpers/NumberHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Helpers/NumberHelper.php -------------------------------------------------------------------------------- /app/Helpers/ResponseHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Helpers/ResponseHelper.php -------------------------------------------------------------------------------- /app/Helpers/StringHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Helpers/StringHelper.php -------------------------------------------------------------------------------- /app/Helpers/otherhelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Helpers/otherhelper.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Controllers/Api/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/RoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Controllers/Api/RoleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Controllers/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/CrudController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Controllers/CrudController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DropboxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Controllers/DropboxController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Controllers/RoleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SettingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Controllers/SettingController.php -------------------------------------------------------------------------------- /app/Http/Controllers/StislaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Controllers/StislaController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TestingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Controllers/TestingController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UbuntuController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Controllers/UbuntuController.php -------------------------------------------------------------------------------- /app/Http/Controllers/YoutubeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Controllers/YoutubeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/EnsureAppKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Middleware/EnsureAppKey.php -------------------------------------------------------------------------------- /app/Http/Middleware/OverrideConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Middleware/OverrideConfig.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Middleware/ViewShare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Middleware/ViewShare.php -------------------------------------------------------------------------------- /app/Http/Requests/CrudExampleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Requests/CrudExampleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ForgotPasswordRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Requests/ForgotPasswordRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/GroupMenuRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Requests/GroupMenuRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ImportExcelRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Requests/ImportExcelRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Requests/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/MenuRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Requests/MenuRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/PermissionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Requests/PermissionRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProfileRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Requests/ProfileRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/RegisterRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Requests/RegisterRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ResetPasswordRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Requests/ResetPasswordRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/RoleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Requests/RoleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/SettingRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Requests/SettingRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Http/Requests/UserRequest.php -------------------------------------------------------------------------------- /app/Imports/CrudExampleImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Imports/CrudExampleImport.php -------------------------------------------------------------------------------- /app/Imports/PermissionGroupImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Imports/PermissionGroupImport.php -------------------------------------------------------------------------------- /app/Imports/PermissionImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Imports/PermissionImport.php -------------------------------------------------------------------------------- /app/Imports/RoleImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Imports/RoleImport.php -------------------------------------------------------------------------------- /app/Imports/UserImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Imports/UserImport.php -------------------------------------------------------------------------------- /app/Jobs/BackupDatabaseJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Jobs/BackupDatabaseJob.php -------------------------------------------------------------------------------- /app/Jobs/EditFileJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Jobs/EditFileJob.php -------------------------------------------------------------------------------- /app/Jobs/ShellJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Jobs/ShellJob.php -------------------------------------------------------------------------------- /app/Mail/ForgotPasswordMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Mail/ForgotPasswordMail.php -------------------------------------------------------------------------------- /app/Mail/TestingMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Mail/TestingMail.php -------------------------------------------------------------------------------- /app/Mail/VerificationAccountMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Mail/VerificationAccountMail.php -------------------------------------------------------------------------------- /app/Models/ActivityLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Models/ActivityLog.php -------------------------------------------------------------------------------- /app/Models/CommandHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Models/CommandHistory.php -------------------------------------------------------------------------------- /app/Models/CrudExample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Models/CrudExample.php -------------------------------------------------------------------------------- /app/Models/LogRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Models/LogRequest.php -------------------------------------------------------------------------------- /app/Models/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Models/Menu.php -------------------------------------------------------------------------------- /app/Models/MenuGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Models/MenuGroup.php -------------------------------------------------------------------------------- /app/Models/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Models/Notification.php -------------------------------------------------------------------------------- /app/Models/PermissionGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Models/PermissionGroup.php -------------------------------------------------------------------------------- /app/Models/Region.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Models/Region.php -------------------------------------------------------------------------------- /app/Models/RequestLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Models/RequestLog.php -------------------------------------------------------------------------------- /app/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Models/Setting.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Repositories/ActivityLogRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Repositories/ActivityLogRepository.php -------------------------------------------------------------------------------- /app/Repositories/CrudExampleRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Repositories/CrudExampleRepository.php -------------------------------------------------------------------------------- /app/Repositories/EmailRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Repositories/EmailRepository.php -------------------------------------------------------------------------------- /app/Repositories/MenuGroupRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Repositories/MenuGroupRepository.php -------------------------------------------------------------------------------- /app/Repositories/MenuRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Repositories/MenuRepository.php -------------------------------------------------------------------------------- /app/Repositories/NotificationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Repositories/NotificationRepository.php -------------------------------------------------------------------------------- /app/Repositories/PermissionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Repositories/PermissionRepository.php -------------------------------------------------------------------------------- /app/Repositories/RegionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Repositories/RegionRepository.php -------------------------------------------------------------------------------- /app/Repositories/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Repositories/Repository.php -------------------------------------------------------------------------------- /app/Repositories/RepositoryAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Repositories/RepositoryAbstract.php -------------------------------------------------------------------------------- /app/Repositories/RequestLogRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Repositories/RequestLogRepository.php -------------------------------------------------------------------------------- /app/Repositories/SettingRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Repositories/SettingRepository.php -------------------------------------------------------------------------------- /app/Repositories/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Repositories/UserRepository.php -------------------------------------------------------------------------------- /app/Services/AuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Services/AuthService.php -------------------------------------------------------------------------------- /app/Services/CommandService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Services/CommandService.php -------------------------------------------------------------------------------- /app/Services/DatabaseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Services/DatabaseService.php -------------------------------------------------------------------------------- /app/Services/DropBoxService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Services/DropBoxService.php -------------------------------------------------------------------------------- /app/Services/EmailService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Services/EmailService.php -------------------------------------------------------------------------------- /app/Services/FileService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Services/FileService.php -------------------------------------------------------------------------------- /app/Services/GeneralService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Services/GeneralService.php -------------------------------------------------------------------------------- /app/Services/PDFService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Services/PDFService.php -------------------------------------------------------------------------------- /app/Services/YoutubeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/app/Services/YoutubeService.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/captcha.php -------------------------------------------------------------------------------- /config/cloudinary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/cloudinary.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/database.php -------------------------------------------------------------------------------- /config/datatables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/datatables.php -------------------------------------------------------------------------------- /config/debugbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/debugbar.php -------------------------------------------------------------------------------- /config/excel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/excel.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/jwt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/jwt.php -------------------------------------------------------------------------------- /config/lfm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/lfm.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/logviewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/logviewer.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/session.php -------------------------------------------------------------------------------- /config/stisla.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/stisla.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/view.php -------------------------------------------------------------------------------- /config/youtube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/config/youtube.php -------------------------------------------------------------------------------- /constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/constants.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeders/CrudExampleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/database/seeders/CrudExampleSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/MenuSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/database/seeders/MenuSeeder.php -------------------------------------------------------------------------------- /database/seeders/NotificationSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/database/seeders/NotificationSeeder.php -------------------------------------------------------------------------------- /database/seeders/RegionSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/database/seeders/RegionSeeder.php -------------------------------------------------------------------------------- /database/seeders/RolePermissionSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/database/seeders/RolePermissionSeeder.php -------------------------------------------------------------------------------- /database/seeders/SettingSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/database/seeders/SettingSeeder.php -------------------------------------------------------------------------------- /database/seeders/TestingSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/database/seeders/TestingSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /database/seeders/data/regions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/database/seeders/data/regions.sql -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /lang/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/lang/id.json -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/notes.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/css/export-pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/export-pdf.css -------------------------------------------------------------------------------- /public/assets/css/export-pdf.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/export-pdf.min.css -------------------------------------------------------------------------------- /public/assets/css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/materialize.css -------------------------------------------------------------------------------- /public/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/style.css -------------------------------------------------------------------------------- /public/assets/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/style.min.css -------------------------------------------------------------------------------- /public/assets/css/themes/all-themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/all-themes.css -------------------------------------------------------------------------------- /public/assets/css/themes/all-themes.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/all-themes.min.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-amber.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-amber.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-black.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-blue.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-blue.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-blue.min.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-brown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-brown.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-cyan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-cyan.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-cyan.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-cyan.min.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-green.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-grey.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-indigo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-indigo.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-lime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-lime.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-orange.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-pink.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-purple.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-red.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-teal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-teal.css -------------------------------------------------------------------------------- /public/assets/css/themes/theme-yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/css/themes/theme-yellow.css -------------------------------------------------------------------------------- /public/assets/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/icons/favicon.ico -------------------------------------------------------------------------------- /public/assets/images/animation-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/animation-bg.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/1.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/10.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/11.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/12.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/13.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/14.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/15.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/16.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/17.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/18.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/19.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/2.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/20.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/3.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/4.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/5.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/6.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/7.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/8.jpg -------------------------------------------------------------------------------- /public/assets/images/image-gallery/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/image-gallery/9.jpg -------------------------------------------------------------------------------- /public/assets/images/jcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/jcb.png -------------------------------------------------------------------------------- /public/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/logo.png -------------------------------------------------------------------------------- /public/assets/images/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/mastercard.png -------------------------------------------------------------------------------- /public/assets/images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/paypal.png -------------------------------------------------------------------------------- /public/assets/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/screenshot.png -------------------------------------------------------------------------------- /public/assets/images/thumbs-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/thumbs-up.png -------------------------------------------------------------------------------- /public/assets/images/user-lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/user-lg.jpg -------------------------------------------------------------------------------- /public/assets/images/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/user.jpg -------------------------------------------------------------------------------- /public/assets/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/user.png -------------------------------------------------------------------------------- /public/assets/images/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/images/visa.png -------------------------------------------------------------------------------- /public/assets/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/js/admin.js -------------------------------------------------------------------------------- /public/assets/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/js/demo.js -------------------------------------------------------------------------------- /public/assets/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/js/helpers.js -------------------------------------------------------------------------------- /public/assets/js/pages/cards/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/js/pages/cards/basic.js -------------------------------------------------------------------------------- /public/assets/js/pages/cards/colored.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/js/pages/cards/colored.js -------------------------------------------------------------------------------- /public/assets/js/pages/charts/chartjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/js/pages/charts/chartjs.js -------------------------------------------------------------------------------- /public/assets/js/pages/charts/flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/js/pages/charts/flot.js -------------------------------------------------------------------------------- /public/assets/js/pages/charts/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/js/pages/charts/morris.js -------------------------------------------------------------------------------- /public/assets/js/pages/examples/profile.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | 3 | }); -------------------------------------------------------------------------------- /public/assets/js/pages/forms/editors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/js/pages/forms/editors.js -------------------------------------------------------------------------------- /public/assets/js/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/js/pages/index.js -------------------------------------------------------------------------------- /public/assets/js/pages/maps/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/js/pages/maps/google.js -------------------------------------------------------------------------------- /public/assets/js/pages/maps/jvectormap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/js/pages/maps/jvectormap.js -------------------------------------------------------------------------------- /public/assets/js/pages/ui/animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/js/pages/ui/animations.js -------------------------------------------------------------------------------- /public/assets/js/pages/ui/dialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/js/pages/ui/dialogs.js -------------------------------------------------------------------------------- /public/assets/js/pages/ui/modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/js/pages/ui/modals.js -------------------------------------------------------------------------------- /public/assets/js/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/plugins/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/bootstrap/js/npm.js -------------------------------------------------------------------------------- /public/assets/plugins/chartjs/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/chartjs/Chart.js -------------------------------------------------------------------------------- /public/assets/plugins/chosen/chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/chosen/chosen.css -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/README.md -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/bower.json -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/config.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/af.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/da.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/de.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/el.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/en.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/es.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/et.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/he.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/id.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/is.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/it.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/km.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/no.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/si.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/th.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/tt.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","af",{toolbar:"Nuwe bladsy"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ar",{toolbar:"صفحة جديدة"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","bg",{toolbar:"Нова страница"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","bn",{toolbar:"নতুন পৃষ্ঠা"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","bs",{toolbar:"Novi dokument"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ca",{toolbar:"Nova pàgina"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","cs",{toolbar:"Nová stránka"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","cy",{toolbar:"Tudalen Newydd"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","da",{toolbar:"Ny side"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","de-ch",{toolbar:"Neue Seite"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","de",{toolbar:"Neue Seite"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","el",{toolbar:"Νέα Σελίδα"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en-au",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en-ca",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en-gb",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","eo",{toolbar:"Nova Paĝo"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","es",{toolbar:"Nueva Página"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","et",{toolbar:"Uus leht"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","fa",{toolbar:"برگهٴ تازه"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","fi",{toolbar:"Tyhjennä"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","fo",{toolbar:"Nýggj síða"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","gl",{toolbar:"Páxina nova"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","gu",{toolbar:"નવુ પાનું"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","he",{toolbar:"דף חדש"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","hi",{toolbar:"नया पेज"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","hr",{toolbar:"Nova stranica"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","hu",{toolbar:"Új oldal"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","id",{toolbar:"Halaman Baru"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","is",{toolbar:"Ný síða"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","it",{toolbar:"Nuova pagina"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ja",{toolbar:"新しいページ"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","km",{toolbar:"ទំព័រ​ថ្មី"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ko",{toolbar:"새 페이지"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ku",{toolbar:"پەڕەیەکی نوێ"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","lt",{toolbar:"Naujas puslapis"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","lv",{toolbar:"Jauna lapa"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/mk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","mk",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","mn",{toolbar:"Шинэ хуудас"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ms",{toolbar:"Helaian Baru"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","nb",{toolbar:"Ny side"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","nl",{toolbar:"Nieuwe pagina"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","no",{toolbar:"Ny side"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","pl",{toolbar:"Nowa strona"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","pt-br",{toolbar:"Novo"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","pt",{toolbar:"Nova página"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ro",{toolbar:"Pagină nouă"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ru",{toolbar:"Новая страница"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/si.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","si",{toolbar:"නව පිටුවක්"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sk",{toolbar:"Nová stránka"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sl",{toolbar:"Nova stran"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sq",{toolbar:"Faqe e Re"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sr-latn",{toolbar:"Nova stranica"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sr",{toolbar:"Нова страница"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sv",{toolbar:"Ny sida"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","tr",{toolbar:"Yeni Sayfa"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","tt",{toolbar:"Яңа бит"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ug",{toolbar:"يېڭى بەت"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","uk",{toolbar:"Нова сторінка"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","vi",{toolbar:"Trang mới"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","zh-cn",{toolbar:"新建"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/newpage/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","zh",{toolbar:"新增網頁"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/notification/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","cs",{closed:"Oznámení zavřeno."}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/notification/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","eo",{closed:"Sciigo fermita"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/notification/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","eu",{closed:"Jakinarazpena itxita."}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/notification/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","id",{closed:"Pemberitahuan ditutup"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/notification/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","ko",{closed:"알림이 닫힘."}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/notification/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","nb",{closed:"Varsling lukket."}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/notification/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","nl",{closed:"Melding gesloten."}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/notification/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","ru",{closed:"Уведомление закрыто"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/notification/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","tr",{closed:"Uyarılar kapatıldı."}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/notification/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","ug",{closed:"ئوقتۇرۇش تاقالدى."}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/notification/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","uk",{closed:"Сповіщення закрито."}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/notification/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","zh-cn",{closed:"通知已关闭。"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/notification/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","zh",{closed:"通知已關閉。"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","af",{toolbar:"Druk"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ar",{toolbar:"طباعة"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","bg",{toolbar:"Печат"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","bs",{toolbar:"Štampaj"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ca",{toolbar:"Imprimeix"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","cs",{toolbar:"Tisk"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","cy",{toolbar:"Argraffu"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","da",{toolbar:"Udskriv"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","de-ch",{toolbar:"Drucken"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","de",{toolbar:"Drucken"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","el",{toolbar:"Εκτύπωση"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","eo",{toolbar:"Presi"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","es",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","eu",{toolbar:"Inprimatu"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fa",{toolbar:"چاپ"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fi",{toolbar:"Tulosta"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fo",{toolbar:"Prenta"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fr-ca",{toolbar:"Imprimer"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fr",{toolbar:"Imprimer"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","gl",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","gu",{toolbar:"પ્રિન્ટ"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","he",{toolbar:"הדפסה"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","hi",{toolbar:"प्रिन्ट"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","hr",{toolbar:"Ispiši"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","hu",{toolbar:"Nyomtatás"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","id",{toolbar:"Cetak"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","is",{toolbar:"Prenta"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","it",{toolbar:"Stampa"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ja",{toolbar:"印刷"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ka",{toolbar:"ბეჭდვა"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","km",{toolbar:"បោះពុម្ព"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ko",{toolbar:"인쇄"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ku",{toolbar:"چاپکردن"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","lv",{toolbar:"Drukāt"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","mn",{toolbar:"Хэвлэх"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ms",{toolbar:"Cetak"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","nb",{toolbar:"Skriv ut"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","nl",{toolbar:"Afdrukken"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","no",{toolbar:"Skriv ut"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","pl",{toolbar:"Drukuj"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","pt-br",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ro",{toolbar:"Printează"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ru",{toolbar:"Печать"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sk",{toolbar:"Tlač"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sl",{toolbar:"Natisni"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sq",{toolbar:"Shtype"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sr-latn",{toolbar:"Štampa"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sr",{toolbar:"Штампа"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sv",{toolbar:"Skriv ut"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","th",{toolbar:"สั่งพิมพ์"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","tr",{toolbar:"Yazdır"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","tt",{toolbar:"Бастыру"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ug",{toolbar:"باس "}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","uk",{toolbar:"Друк"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","vi",{toolbar:"In"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","zh-cn",{toolbar:"打印"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/print/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","zh",{toolbar:"列印"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","af",{toolbar:"Bewaar"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ar",{toolbar:"حفظ"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","bg",{toolbar:"Запис"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","bn",{toolbar:"সংরক্ষন করি"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","bs",{toolbar:"Snimi"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ca",{toolbar:"Desa"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","cs",{toolbar:"Uložit"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","cy",{toolbar:"Cadw"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","da",{toolbar:"Gem"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","de-ch",{toolbar:"Speichern"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","de",{toolbar:"Speichern"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","el",{toolbar:"Αποθήκευση"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en-au",{toolbar:"Save"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en-ca",{toolbar:"Save"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en-gb",{toolbar:"Save"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en",{toolbar:"Save"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","eo",{toolbar:"Konservi"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","es",{toolbar:"Guardar"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","et",{toolbar:"Salvestamine"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","eu",{toolbar:"Gorde"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fa",{toolbar:"ذخیره"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fi",{toolbar:"Tallenna"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fo",{toolbar:"Goym"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fr-ca",{toolbar:"Sauvegarder"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fr",{toolbar:"Enregistrer"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","gl",{toolbar:"Gardar"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","gu",{toolbar:"સેવ"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","he",{toolbar:"שמירה"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","hi",{toolbar:"सेव"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","hr",{toolbar:"Snimi"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","hu",{toolbar:"Mentés"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","id",{toolbar:"Simpan"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","is",{toolbar:"Vista"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","it",{toolbar:"Salva"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ja",{toolbar:"保存"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ka",{toolbar:"ჩაწერა"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","km",{toolbar:"រក្សាទុក"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ko",{toolbar:"저장"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ku",{toolbar:"پاشکەوتکردن"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","lt",{toolbar:"Išsaugoti"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","lv",{toolbar:"Saglabāt"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/mk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","mk",{toolbar:"Save"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","mn",{toolbar:"Хадгалах"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ms",{toolbar:"Simpan"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","nb",{toolbar:"Lagre"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","nl",{toolbar:"Opslaan"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","no",{toolbar:"Lagre"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","pl",{toolbar:"Zapisz"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","pt-br",{toolbar:"Salvar"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","pt",{toolbar:"Guardar"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ro",{toolbar:"Salvează"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ru",{toolbar:"Сохранить"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sk",{toolbar:"Uložiť"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sl",{toolbar:"Shrani"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sq",{toolbar:"Ruaje"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sr-latn",{toolbar:"Sačuvaj"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sr",{toolbar:"Сачувај"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sv",{toolbar:"Spara"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","th",{toolbar:"บันทึก"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","tr",{toolbar:"Kaydet"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","tt",{toolbar:"Саклау"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ug",{toolbar:"ساقلا"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","uk",{toolbar:"Зберегти"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","vi",{toolbar:"Lưu"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","zh-cn",{toolbar:"保存"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/save/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","zh",{toolbar:"儲存"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ar",{toolbar:"تحديد الكل"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","bg",{toolbar:"Избери всичко"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","bs",{toolbar:"Selektuj sve"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ca",{toolbar:"Selecciona-ho tot"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","cs",{toolbar:"Vybrat vše"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","cy",{toolbar:"Dewis Popeth"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","da",{toolbar:"Vælg alt"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","de-ch",{toolbar:"Alles auswählen"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","de",{toolbar:"Alles auswählen"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","el",{toolbar:"Επιλογή όλων"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","eo",{toolbar:"Elekti ĉion"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","es",{toolbar:"Seleccionar Todo"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","et",{toolbar:"Kõige valimine"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","eu",{toolbar:"Hautatu dena"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fa",{toolbar:"گزینش همه"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fi",{toolbar:"Valitse kaikki"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fo",{toolbar:"Markera alt"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fr-ca",{toolbar:"Sélectionner tout"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fr",{toolbar:"Tout sélectionner"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","he",{toolbar:"בחירת הכל"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","hr",{toolbar:"Odaberi sve"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","hu",{toolbar:"Mindent kijelöl"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","id",{toolbar:"Pilih Semua"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","is",{toolbar:"Velja allt"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","it",{toolbar:"Seleziona tutto"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ja",{toolbar:"すべて選択"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","km",{toolbar:"រើស​ទាំង​អស់"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ko",{toolbar:"모두 선택"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ku",{toolbar:"دیاریکردنی هەمووی"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","lt",{toolbar:"Pažymėti viską"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","lv",{toolbar:"Iezīmēt visu"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","mn",{toolbar:"Бүгдийг нь сонгох"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ms",{toolbar:"Pilih Semua"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","nb",{toolbar:"Merk alt"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","no",{toolbar:"Merk alt"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","pl",{toolbar:"Zaznacz wszystko"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","pt-br",{toolbar:"Selecionar Tudo"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","pt",{toolbar:"Selecionar tudo"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ru",{toolbar:"Выделить все"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/si.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","si",{toolbar:"සියල්ලම "}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sk",{toolbar:"Vybrať všetko"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sl",{toolbar:"Izberi vse"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sq",{toolbar:"Përzgjidh të Gjitha"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sr-latn",{toolbar:"Označi sve"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sr",{toolbar:"Означи све"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sv",{toolbar:"Markera allt"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","th",{toolbar:"เลือกทั้งหมด"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","tr",{toolbar:"Tümünü Seç"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","tt",{toolbar:"Барысын сайлау"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ug",{toolbar:"ھەممىنى تاللا"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","uk",{toolbar:"Виділити все"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","vi",{toolbar:"Chọn tất cả"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","zh-cn",{toolbar:"全选"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/selectall/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","zh",{toolbar:"全選"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","af",{toolbar:"Toon blokke"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ar",{toolbar:"مخطط تفصيلي"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","bg",{toolbar:"Показва блокове"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ca",{toolbar:"Mostra els blocs"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","cy",{toolbar:"Dangos Blociau"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","da",{toolbar:"Vis afsnitsmærker"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","de-ch",{toolbar:"Blöcke anzeigen"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","de",{toolbar:"Blöcke anzeigen"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","el",{toolbar:"Προβολή Τμημάτων"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","eo",{toolbar:"Montri la blokojn"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","et",{toolbar:"Blokkide näitamine"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","eu",{toolbar:"Erakutsi blokeak"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fa",{toolbar:"نمایش بلوک‌ها"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fi",{toolbar:"Näytä elementit"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fo",{toolbar:"Vís blokkar"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fr-ca",{toolbar:"Afficher les blocs"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fr",{toolbar:"Afficher les blocs"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","gl",{toolbar:"Amosar os bloques"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","gu",{toolbar:"બ્લૉક બતાવવું"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","he",{toolbar:"הצגת בלוקים"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","hi",{toolbar:"ब्लॉक दिखायें"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","hr",{toolbar:"Prikaži blokove"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","hu",{toolbar:"Blokkok megjelenítése"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","id",{toolbar:"Perlihatkan Blok"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","it",{toolbar:"Visualizza Blocchi"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ja",{toolbar:"ブロック表示"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","km",{toolbar:"បង្ហាញ​ប្លក់"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ko",{toolbar:"블록 보기"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","lt",{toolbar:"Rodyti blokus"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","lv",{toolbar:"Parādīt blokus"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","nb",{toolbar:"Vis blokker"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","nl",{toolbar:"Toon blokken"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","no",{toolbar:"Vis blokker"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","pl",{toolbar:"Pokaż bloki"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","pt-br",{toolbar:"Mostrar blocos de código"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","pt",{toolbar:"Exibir blocos"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ro",{toolbar:"Arată blocurile"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ru",{toolbar:"Отображать блоки"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","sk",{toolbar:"Ukázať bloky"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","sl",{toolbar:"Prikaži ograde"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","sq",{toolbar:"Shfaq Blloqet"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","th",{toolbar:"แสดงบล็อคข้อมูล"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","tr",{toolbar:"Blokları Göster"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","tt",{toolbar:"Блокларны күрсәтү"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ug",{toolbar:"بۆلەكنى كۆرسەت"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","uk",{toolbar:"Показувати блоки"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","vi",{toolbar:"Hiển thị các khối"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","zh-cn",{toolbar:"显示区块"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/showblocks/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","zh",{toolbar:"顯示區塊"}); -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/ckeditor/styles.js -------------------------------------------------------------------------------- /public/assets/plugins/dropzone/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/dropzone/basic.css -------------------------------------------------------------------------------- /public/assets/plugins/gmaps/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/gmaps/Gruntfile.js -------------------------------------------------------------------------------- /public/assets/plugins/gmaps/gmaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/gmaps/gmaps.js -------------------------------------------------------------------------------- /public/assets/plugins/gmaps/gmaps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/gmaps/gmaps.min.js -------------------------------------------------------------------------------- /public/assets/plugins/jquery-sparkline/src/footer.js: -------------------------------------------------------------------------------- 1 | }))}(document, Math)); 2 | -------------------------------------------------------------------------------- /public/assets/plugins/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/jquery/jquery.js -------------------------------------------------------------------------------- /public/assets/plugins/momentjs/ender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/momentjs/ender.js -------------------------------------------------------------------------------- /public/assets/plugins/momentjs/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/momentjs/moment.js -------------------------------------------------------------------------------- /public/assets/plugins/momentjs/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/momentjs/package.js -------------------------------------------------------------------------------- /public/assets/plugins/morrisjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/morrisjs/.gitignore -------------------------------------------------------------------------------- /public/assets/plugins/morrisjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/morrisjs/README.md -------------------------------------------------------------------------------- /public/assets/plugins/morrisjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/morrisjs/bower.json -------------------------------------------------------------------------------- /public/assets/plugins/morrisjs/morris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/morrisjs/morris.css -------------------------------------------------------------------------------- /public/assets/plugins/morrisjs/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/morrisjs/morris.js -------------------------------------------------------------------------------- /public/assets/plugins/node-waves/waves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/node-waves/waves.js -------------------------------------------------------------------------------- /public/assets/plugins/raphael/raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/raphael/raphael.js -------------------------------------------------------------------------------- /public/assets/plugins/tinymce/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/tinymce/bower.json -------------------------------------------------------------------------------- /public/assets/plugins/tinymce/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/tinymce/license.txt -------------------------------------------------------------------------------- /public/assets/plugins/tinymce/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/tinymce/readme.md -------------------------------------------------------------------------------- /public/assets/plugins/tinymce/tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/tinymce/tinymce.js -------------------------------------------------------------------------------- /public/assets/plugins/waitme/img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/waitme/img.svg -------------------------------------------------------------------------------- /public/assets/plugins/waitme/waitMe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/waitme/waitMe.css -------------------------------------------------------------------------------- /public/assets/plugins/waitme/waitMe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/assets/plugins/waitme/waitMe.js -------------------------------------------------------------------------------- /public/example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/example.xlsx -------------------------------------------------------------------------------- /public/excel_examples/sample_menus.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/excel_examples/sample_menus.xlsx -------------------------------------------------------------------------------- /public/excel_examples/sample_roles.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/excel_examples/sample_roles.xlsx -------------------------------------------------------------------------------- /public/excel_examples/sample_users.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/excel_examples/sample_users.xlsx -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/cleave.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/js/cleave.min.js -------------------------------------------------------------------------------- /public/js/crud-generator.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/js/crud-generator.js.LICENSE.txt -------------------------------------------------------------------------------- /public/js/crud-generator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/js/crud-generator.min.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/plugins/jquery-ui/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/plugins/jquery-ui/AUTHORS.txt -------------------------------------------------------------------------------- /public/plugins/jquery-ui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/plugins/jquery-ui/LICENSE.txt -------------------------------------------------------------------------------- /public/plugins/jquery-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/plugins/jquery-ui/index.html -------------------------------------------------------------------------------- /public/plugins/jquery-ui/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/plugins/jquery-ui/jquery-ui.css -------------------------------------------------------------------------------- /public/plugins/jquery-ui/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/plugins/jquery-ui/jquery-ui.js -------------------------------------------------------------------------------- /public/plugins/jquery-ui/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/plugins/jquery-ui/jquery-ui.min.js -------------------------------------------------------------------------------- /public/plugins/jquery-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/plugins/jquery-ui/package.json -------------------------------------------------------------------------------- /public/plugins/viewsync/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/plugins/viewsync/index.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/stisla/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/.DS_Store -------------------------------------------------------------------------------- /public/stisla/assets/css/brown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/brown.css -------------------------------------------------------------------------------- /public/stisla/assets/css/brown.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/brown.min.css -------------------------------------------------------------------------------- /public/stisla/assets/css/citron.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/citron.css -------------------------------------------------------------------------------- /public/stisla/assets/css/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/components.css -------------------------------------------------------------------------------- /public/stisla/assets/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/custom.css -------------------------------------------------------------------------------- /public/stisla/assets/css/custom.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/custom.css.map -------------------------------------------------------------------------------- /public/stisla/assets/css/indigo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/indigo.css -------------------------------------------------------------------------------- /public/stisla/assets/css/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/orange.css -------------------------------------------------------------------------------- /public/stisla/assets/css/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/pink.css -------------------------------------------------------------------------------- /public/stisla/assets/css/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/purple.css -------------------------------------------------------------------------------- /public/stisla/assets/css/purple.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/purple.css.map -------------------------------------------------------------------------------- /public/stisla/assets/css/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/red.css -------------------------------------------------------------------------------- /public/stisla/assets/css/reverse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/reverse.css -------------------------------------------------------------------------------- /public/stisla/assets/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/rtl.css -------------------------------------------------------------------------------- /public/stisla/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/style.css -------------------------------------------------------------------------------- /public/stisla/assets/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/style.css.map -------------------------------------------------------------------------------- /public/stisla/assets/css/styleku.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/styleku.css -------------------------------------------------------------------------------- /public/stisla/assets/css/styleku.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/styleku.min.css -------------------------------------------------------------------------------- /public/stisla/assets/css/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/css/yellow.css -------------------------------------------------------------------------------- /public/stisla/assets/fonts/vazir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/fonts/vazir/LICENSE -------------------------------------------------------------------------------- /public/stisla/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/favicon.ico -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img01.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img02.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img03.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img04.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img05.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img06.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img07.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img08.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img09.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img10.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img11.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img12.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img13.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img14.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img15.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img16.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/news/img17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/news/img17.jpg -------------------------------------------------------------------------------- /public/stisla/assets/img/p-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/p-250.png -------------------------------------------------------------------------------- /public/stisla/assets/img/p-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/p-50.png -------------------------------------------------------------------------------- /public/stisla/assets/img/stisla-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/stisla-fill.png -------------------------------------------------------------------------------- /public/stisla/assets/img/stisla-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/stisla-fill.svg -------------------------------------------------------------------------------- /public/stisla/assets/img/stisla-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/stisla-light.svg -------------------------------------------------------------------------------- /public/stisla/assets/img/stisla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/img/stisla.svg -------------------------------------------------------------------------------- /public/stisla/assets/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/js/custom.js -------------------------------------------------------------------------------- /public/stisla/assets/js/my-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/js/my-script.js -------------------------------------------------------------------------------- /public/stisla/assets/js/my-script.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/js/my-script.min.js -------------------------------------------------------------------------------- /public/stisla/assets/js/page/index-0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/js/page/index-0.js -------------------------------------------------------------------------------- /public/stisla/assets/js/page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/js/page/index.js -------------------------------------------------------------------------------- /public/stisla/assets/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/js/scripts.js -------------------------------------------------------------------------------- /public/stisla/assets/js/stisla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/assets/js/stisla.js -------------------------------------------------------------------------------- /public/stisla/node_modules/axios/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/node_modules/axios/LICENSE -------------------------------------------------------------------------------- /public/stisla/node_modules/axios/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/axios'); -------------------------------------------------------------------------------- /public/stisla/node_modules/bootstrap-daterangepicker/example/browserify/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/stisla/node_modules/bootstrap-social/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | dev 3 | node_modules 4 | -------------------------------------------------------------------------------- /public/stisla/node_modules/cleave.js/react.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/cleave-react-node.js'); 2 | -------------------------------------------------------------------------------- /public/stisla/node_modules/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.location; 5 | } ); 6 | -------------------------------------------------------------------------------- /public/stisla/node_modules/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Date.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /public/stisla/node_modules/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /public/stisla/node_modules/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /public/stisla/node_modules/jquery/src/var/getProto.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Object.getPrototypeOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /public/stisla/node_modules/jqvmap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/node_modules/jqvmap/LICENSE -------------------------------------------------------------------------------- /public/stisla/node_modules/jqvmap/create/output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /public/stisla/node_modules/jqvmap/create/source/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /public/stisla/node_modules/jqvmap/grunt/qunit.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | dist: ['tests/*.html'] 3 | }; 4 | -------------------------------------------------------------------------------- /public/stisla/node_modules/moment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/node_modules/moment/LICENSE -------------------------------------------------------------------------------- /public/stisla/node_modules/selectric/public/CNAME: -------------------------------------------------------------------------------- 1 | selectric.js.org -------------------------------------------------------------------------------- /public/stisla/node_modules/summernote/examples/example.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin-top: 1rem; 3 | } 4 | -------------------------------------------------------------------------------- /public/stisla/node_modules/summernote/src/less/lite-ui/mixins.less: -------------------------------------------------------------------------------- 1 | @import "mixins/buttons.less"; -------------------------------------------------------------------------------- /public/stisla/node_modules/sweetalert/typings/modules/markup/buttons.d.ts: -------------------------------------------------------------------------------- 1 | export declare const buttonMarkup: string; 2 | -------------------------------------------------------------------------------- /public/stisla/node_modules/weathericons/.npmignore: -------------------------------------------------------------------------------- 1 | /_builder 2 | /_docs 3 | -------------------------------------------------------------------------------- /public/stisla/plugins/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/plugins/leaflet/leaflet.css -------------------------------------------------------------------------------- /public/stisla/plugins/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/plugins/leaflet/leaflet.js -------------------------------------------------------------------------------- /public/stisla/welcome/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/css/.DS_Store -------------------------------------------------------------------------------- /public/stisla/welcome/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/css/bootstrap.css -------------------------------------------------------------------------------- /public/stisla/welcome/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/css/main.css -------------------------------------------------------------------------------- /public/stisla/welcome/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/css/style.css -------------------------------------------------------------------------------- /public/stisla/welcome/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/css/style.css.map -------------------------------------------------------------------------------- /public/stisla/welcome/css/styleku.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/css/styleku.css -------------------------------------------------------------------------------- /public/stisla/welcome/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/.DS_Store -------------------------------------------------------------------------------- /public/stisla/welcome/img/about_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/about_img.png -------------------------------------------------------------------------------- /public/stisla/welcome/img/b_map1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/b_map1.png -------------------------------------------------------------------------------- /public/stisla/welcome/img/b_map2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/b_map2.png -------------------------------------------------------------------------------- /public/stisla/welcome/img/b_map3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/b_map3.png -------------------------------------------------------------------------------- /public/stisla/welcome/img/b_map4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/b_map4.png -------------------------------------------------------------------------------- /public/stisla/welcome/img/blog/add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/blog/add.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/blog/author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/blog/author.png -------------------------------------------------------------------------------- /public/stisla/welcome/img/blog/c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/blog/c1.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/blog/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/blog/c2.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/blog/c3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/blog/c3.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/blog/c4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/blog/c4.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/blog/c5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/blog/c5.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/blog/c6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/blog/c6.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/blog/next.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/blog/next.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/blog/prev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/blog/prev.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/blog_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/blog_img1.png -------------------------------------------------------------------------------- /public/stisla/welcome/img/blog_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/blog_img2.png -------------------------------------------------------------------------------- /public/stisla/welcome/img/blog_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/blog_img3.png -------------------------------------------------------------------------------- /public/stisla/welcome/img/chart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/chart.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/a.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/a2.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/d.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/f1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/f1.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/f2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/f2.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/f3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/f3.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/f4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/f4.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/f5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/f5.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/f6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/f6.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/f7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/f7.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/f8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/f8.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/g1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/g1.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/g2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/g2.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/g3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/g3.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/g4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/g4.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/g5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/g5.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/g6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/g6.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/g7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/g7.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/elements/g8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/elements/g8.jpg -------------------------------------------------------------------------------- /public/stisla/welcome/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/favicon.png -------------------------------------------------------------------------------- /public/stisla/welcome/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/logo.png -------------------------------------------------------------------------------- /public/stisla/welcome/img/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/quote.png -------------------------------------------------------------------------------- /public/stisla/welcome/img/recent_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/img/recent_up.png -------------------------------------------------------------------------------- /public/stisla/welcome/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/js/.DS_Store -------------------------------------------------------------------------------- /public/stisla/welcome/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/stisla/welcome/js/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/js/contact.js -------------------------------------------------------------------------------- /public/stisla/welcome/js/gmaps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/js/gmaps.min.js -------------------------------------------------------------------------------- /public/stisla/welcome/js/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/js/jquery.form.js -------------------------------------------------------------------------------- /public/stisla/welcome/js/mail-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/js/mail-script.js -------------------------------------------------------------------------------- /public/stisla/welcome/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/js/popper.js -------------------------------------------------------------------------------- /public/stisla/welcome/js/stellar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/js/stellar.js -------------------------------------------------------------------------------- /public/stisla/welcome/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/stisla/welcome/js/theme.js -------------------------------------------------------------------------------- /public/uploads/cek.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/uploads/cek.html -------------------------------------------------------------------------------- /public/vendor/laravel-filemanager/files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/laravel-filemanager/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/CrudGenerator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/resources/js/components/CrudGenerator.vue -------------------------------------------------------------------------------- /resources/js/crud-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/resources/js/crud-generator.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/resources/lang/id.json -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/resources/views/errors/500.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/stisla/activity-logs/export-excel-example.blade.php: -------------------------------------------------------------------------------- 1 | @include('stisla.activity-logs.components.table') 2 | -------------------------------------------------------------------------------- /resources/views/testing/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/resources/views/testing/modal.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anamcoollzz/laravel-9-template/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/modules/test.php: -------------------------------------------------------------------------------- 1 |