Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php namespace Config; $routes = Services::routes(); if (file_exists(SYSTEMPATH . "\x43..

Decoded Output download

<?php 
 namespace Config; $routes = Services::routes(); if (file_exists(SYSTEMPATH . "Config/Routes.php")) { require SYSTEMPATH . "Config/Routes.php"; } $routes->setDefaultNamespace("App\Controllers"); $routes->setDefaultController("Main"); $routes->setDefaultMethod("index"); $routes->setTranslateURIDashes(false); $routes->set404Override(); $routes->setAutoRoute(true); $routes->add("/", "Main::index"); $routes->add("login", "Main::index"); $routes->add("forgot-password", "Main::forgotPassword"); $routes->add("reset-password/(:any)", "Main::resetPassword/$1"); $routes->add("permission-required", "Main::permissionRequired"); $routes->add("help", "Main::help"); $routes->add("change-logs", "Main::changeLogs"); $routes->add("dashboard", "Main::dashboard"); $routes->add("google-login", "Main::googleLogin"); $routes->add("patient-profile/(:num)", "Main::patientProfile/$1"); $routes->add("consultations/(:alphanum)/(:num)", "Main::consultations/$1/$2"); $routes->add("treatments/(:alphanum)/(:num)", "Main::treatments/$1/$2"); $routes->add("medical-notes/(:num)", "Main::medicalNotes/$1"); $routes->add("lab-tests/(:alphanum)/(:num)", "Main::labTests/$1/$2"); $routes->add("payments/(:alphanum)/(:num)", "Main::payments/$1/$2"); $routes->add("follow-up/(:alphanum)/(:num)", "Main::followUp/$1/$2"); $routes->add("photos/(:num)", "Main::photos/$1"); $routes->add("attachments/(:alphanum)/(:num)", "Main::attachments/$1/$2"); $routes->add("patients/(:alphanum)", "Main::patients/$1"); $routes->add("appointments/(:alphanum)", "Main::appointments/$1"); $routes->add("visitors/(:alphanum)", "Main::visitors/$1"); $routes->add("out-patient/(:alphanum)", "Main::outPatient/$1"); $routes->add("sessions/(:alphanum)", "Main::sessions/$1"); $routes->add("classes/(:alphanum)", "Main::classes/$1"); $routes->add("topics/(:alphanum)", "Main::topics/$1"); $routes->add("pathology/(:alphanum)", "Main::pathology/$1"); $routes->add("pharmacy", "Main::pharmacy"); $routes->add("suppliers/(:alphanum)", "Main::suppliers/$1"); $routes->add("inventory-items/(:alphanum)", "Main::inventoryItems/$1"); $routes->add("issued-items/(:alphanum)", "Main::issuedItems/$1"); $routes->add("stock-history", "Main::stockHistory"); $routes->add("categories/(:alphanum)", "Main::categories/$1"); $routes->add("brands/(:alphanum)", "Main::brands/$1"); $routes->add("units/(:alphanum)", "Main::units/$1"); $routes->add("print-labels", "Main::printLabels"); $routes->add("purchases/(:alphanum)", "Main::purchases/$1"); $routes->add("purchase-returns/(:alphanum)", "Main::purchaseReturns/$1"); $routes->add("edit-purchase/(:num)", "Main::editPurchase/$1"); $routes->add("central-billing", "Main::centralBilling"); $routes->add("income/(:alphanum)", "Main::income/$1"); $routes->add("received-payments", "Main::receivedPayments"); $routes->add("expenses/(:alphanum)", "Main::expenses/$1"); $routes->add("invoices", "Main::invoices"); $routes->add("transactions", "Main::transactions"); $routes->add("accounts/(:alphanum)", "Main::accounts/$1"); $routes->add("cash-flow", "Main::cashFlow"); $routes->add("trial-balance", "Main::trialBalance"); $routes->add("balance-sheet", "Main::balanceSheet"); $routes->add("attendance/(:alphanum)", "Main::attendance/$1"); $routes->add("employees/(:alphanum)", "Main::employees/$1"); $routes->add("leaves/(:alphanum)", "Main::leaves/$1"); $routes->add("payrolls/(:alphanum)", "Main::payrolls/$1"); $routes->add("departments/(:alphanum)", "Main::departments/$1"); $routes->add("designations/(:alphanum)", "Main::designations/$1"); $routes->add("holidays/(:alphanum)", "Main::holidays/$1"); $routes->add("leave-types/(:alphanum)", "Main::leaveTypes/$1"); $routes->add("salary-components/(:alphanum)", "Main::salaryComponents/$1"); $routes->add("users/(:alphanum)", "Main::users/$1"); $routes->add("roles/(:alphanum)", "Main::roles/$1"); $routes->add("permissions/(user|role)/(:any)", "Main::permissions/$1/$2"); $routes->add("profile", "Main::profile"); $routes->add("sent-messages/(:alpha)", "Main::sentMessages/$1"); $routes->add("income-report", "Main::incomeReport"); $routes->add("expenses-report", "Main::expensesReport"); $routes->add("purchases-report", "Main::purchasesReport"); $routes->add("profit-loss-report", "Main::profitLossReport"); $routes->add("activity-logs/(:alpha)", "Main::activityLogs/$1"); $routes->add("login-logs/(:alpha)", "Main::loginLogs/$1"); $routes->add("consultation-fees/(:alphanum)", "Main::consultationFees/$1"); $routes->add("test-groups/(:alphanum)", "Main::testGroups/$1"); $routes->add("tests/(:alphanum)", "Main::tests/$1"); $routes->add("procedures/(:alphanum)", "Main::procedures/$1"); $routes->add("others/(:alphanum)", "Main::others/$1"); $routes->add("general-expenses/(:alphanum)", "Main::generalExpenses/$1"); $routes->add("doctor-fees/(:alphanum)", "Main::doctorFees/$1"); $routes->add("anesth-fees/(:alphanum)", "Main::anesthFees/$1"); $routes->add("hospital-fees/(:alphanum)", "Main::hospitalFees/$1"); $routes->add("general-settings", "Main::generalSettings"); $routes->add("email-settings", "Main::emailSettings"); $routes->add("email-templates", "Main::emailTemplates"); $routes->add("api-settings", "Main::apiSettings"); $routes->add("modes-of-payment/(:alphanum)", "Main::modesOfPayment/$1"); $routes->add("follow-up-messages/(:alphanum)", "Main::followUpMessages/$1"); $routes->add("backups/(:alphanum)", "Main::backups/$1"); $routes->add("update-password", "BaseController::updatePassword"); $routes->add("download/(:any)/(:any)", "Main::download/$1/$2"); $routes->add("logout", "Main::logoutUser"); $routes->add("create-backup", "Main::createBackup"); $routes->add("leads-form", "BaseController::leadsForm"); $routes->add("questionnaire-form", "BaseController::questionnaireForm"); $routes->add("toggle-star", "BaseController::toggleStar"); $routes->add("toggle-status", "BaseController::toggleStatus"); $routes->add("delete-record/(:any)/(:num)", "Main::deleteRecord/$1/$2"); $routes->add("delete-records/(:any)/(all|starred)", "Main::deleteRecords/$1/$2"); $routes->add("add-to-order-list", "BaseController::addToOrderList"); $routes->add("remove-from-order-list", "BaseController::removeFromOrderList"); $routes->add("clear-order-list", "Main::clearOrderList"); $routes->add("add-to-complementary-list", "BaseController::addToComplementaryList"); $routes->add("add-to-enrollment-list", "BaseController::addToEnrollmentList"); $routes->add("get-class-reminders", "BaseController::getClassReminders"); $routes->add("get-class-attendance", "BaseController::getClassAttendance"); $routes->add("get-complementary-tests", "BaseController::getComplementaryTests"); $routes->add("get-enrolled-patients", "BaseController::getEnrolledPatients"); $routes->add("delete-complementary-test", "BaseController::deleteComplementaryTest"); $routes->add("disenroll-patient", "BaseController::disenrollPatient"); $routes->add("add-to-group-list", "BaseController::addToGroupList"); $routes->add("add-to-procedure-list", "BaseController::addToProcedureList"); $routes->add("add-to-other-list", "BaseController::addToOtherList"); $routes->add("add-to-cart", "BaseController::addToCart"); $routes->add("remove-from-complementary-list", "BaseController::removeFromComplementaryList"); $routes->add("remove-from-enrollment-list", "BaseController::removeFromEnrollmentList"); $routes->add("remove-from-group-list", "BaseController::removeFromGroupList"); $routes->add("remove-from-procedure-list", "BaseController::removeFromProcedureList"); $routes->add("remove-from-other-list", "BaseController::removeFromOtherList"); $routes->add("remove-from-cart", "BaseController::removeFromCart"); $routes->add("clear-complementary-list", "Main::clearComplementaryList"); $routes->add("clear-enrollment-list", "Main::clearEnrollmentList"); $routes->add("clear-group-list", "Main::clearGroupList"); $routes->add("clear-procedure-list", "Main::clearProcedureList"); $routes->add("clear-other-list", "Main::clearOtherList"); $routes->add("clear-cart", "Main::clearCart"); $routes->add("clear-purchase-list", "Main::clearPurchaseList"); $routes->add("clear-expense-list", "Main::clearExpenseList"); $routes->add("change-page-records", "BaseController::changePageRecords"); $routes->add("change-records-order", "BaseController::changeRecordsOrder"); $routes->add("toggle-permission", "BaseController::togglePermission"); $routes->add("toggle-chart/(inquiries-chart|procedures-chart|treatment-status-chart|income-chart|expenses-chart)/(bar|doughnut|line|pie)", "Main::toggleChart/$1/$2"); $routes->add("send-follow-up-email", "BaseController::sendFollowUpEmail"); $routes->add("backup-database", "BaseController::backupDatabase"); $routes->add("check-unread", "BaseController::checkUnread"); $routes->add("new-notification", "BaseController::newNotification"); $routes->add("mark-as-read", "BaseController::markAsRead"); $routes->add("delete-notification", "BaseController::deleteNotification"); $routes->add("get-notifications", "BaseController::getNotifications"); $routes->add("send-message", "BaseController::sendMessage"); $routes->add("save-result", "BaseController::saveResult"); $routes->add("save-weight", "BaseController::saveWeight"); $routes->add("send-results/(:num)", "Main::sendResults/$1"); $routes->add("resend-message/(:num)", "Main::resendMessage/$1"); $routes->add("get-modes-of-payment", "BaseController::getModesOfPayment"); $routes->add("get-opening-stock", "BaseController::getOpeningStock"); $routes->add("search-patient", "BaseController::searchPatient"); $routes->add("search-inventory-item", "BaseController::searchInventoryItem"); $routes->add("get-test-results", "BaseController::getTestResults"); $routes->add("get-transactions", "BaseController::getTransactions"); $routes->add("get-selected-items", "BaseController::getSelectedItems"); $routes->add("toggle-select-item", "BaseController::toggleSelectItem"); $routes->add("create-invoice", "Main::createInvoice"); $routes->add("process-pathology", "Main::processPathology"); $routes->add("process-appointments", "Main::processAppointments"); $routes->add("process-comments-notes", "Main::processCommentsNotes"); $routes->add("process-reminders", "Main::processReminders"); $routes->add("process-out-patient", "Main::processOutPatient"); $routes->add("process-transactions", "Main::processTransactions"); $routes->add("process-income", "Main::processIncome"); $routes->add("split-invoice/(:num)", "Main::splitInvoice/$1"); $routes->add("send-invoice/(:num)", "Main::sendInvoice/$1"); $routes->add("send-receipt/(:num)", "Main::sendReceipt/$1"); $routes->add("get-addends", "BaseController::getAddends"); $routes->add("process-receipts", "Main::processReceipts"); $routes->add("update-appointment-status", "Main::updateAppointmentStatus"); $routes->add("update-patient-profile-image", "Main::updatePatientProfileImage"); $routes->add("prepend-title-to-note", "Main::prependTitleToNote"); $routes->add("update-expense-name", "Main::updateExpenseName"); $routes->add("update-transaction-date", "Main::updateTransactionDate"); $routes->add("update-invoice-category", "Main::updateInvoiceCategory"); $routes->add("update-transaction-income-category", "Main::updateTransactionIncomeCategory"); $routes->add("update-transaction-expense-category", "Main::updateTransactionExpenseCategory"); if (file_exists(APPPATH . "Config/" . ENVIRONMENT . "/Routes.php")) { require APPPATH . "Config/" . ENVIRONMENT . "/Routes.php"; } ?>

Did this file decode correctly?

Original Code

<?php
 namespace Config; $routes = Services::routes(); if (file_exists(SYSTEMPATH . "\x43\x6f\x6e\x66\151\x67\x2f\122\157\x75\164\x65\163\x2e\160\x68\160")) { require SYSTEMPATH . "\103\x6f\x6e\x66\x69\x67\57\122\157\165\164\x65\x73\x2e\x70\150\x70"; } $routes->setDefaultNamespace("\101\160\160\x5c\103\157\156\x74\162\x6f\x6c\154\145\162\163"); $routes->setDefaultController("\x4d\x61\151\156"); $routes->setDefaultMethod("\x69\156\144\x65\170"); $routes->setTranslateURIDashes(false); $routes->set404Override(); $routes->setAutoRoute(true); $routes->add("\57", "\115\x61\x69\x6e\72\x3a\151\x6e\x64\145\x78"); $routes->add("\154\x6f\147\x69\x6e", "\115\141\151\156\x3a\x3a\151\156\x64\145\170"); $routes->add("\146\157\x72\147\x6f\164\x2d\x70\x61\x73\163\x77\157\162\x64", "\115\x61\151\x6e\x3a\72\146\157\x72\147\x6f\164\x50\x61\163\163\x77\x6f\x72\x64"); $routes->add("\162\145\163\145\164\55\160\141\x73\163\167\157\162\x64\57\50\72\x61\156\171\x29", "\115\141\151\x6e\72\72\x72\x65\x73\145\164\x50\141\x73\x73\167\x6f\x72\x64\x2f\x24\61"); $routes->add("\160\x65\x72\x6d\x69\x73\x73\x69\157\x6e\x2d\x72\145\161\165\151\162\145\144", "\115\141\x69\156\72\x3a\160\x65\162\155\151\163\x73\x69\157\156\x52\145\161\165\151\x72\x65\x64"); $routes->add("\x68\x65\x6c\160", "\115\x61\x69\x6e\x3a\x3a\150\x65\154\x70"); $routes->add("\x63\x68\141\156\x67\x65\55\x6c\157\x67\x73", "\115\x61\x69\x6e\72\x3a\143\x68\x61\x6e\147\145\x4c\157\x67\163"); $routes->add("\144\x61\x73\150\142\x6f\141\162\144", "\115\141\151\x6e\72\72\x64\141\163\x68\142\157\141\x72\144"); $routes->add("\147\157\x6f\x67\154\145\55\x6c\x6f\147\151\156", "\x4d\x61\151\156\72\72\147\x6f\x6f\x67\x6c\x65\114\157\x67\x69\x6e"); $routes->add("\x70\141\x74\151\x65\156\164\55\160\x72\157\146\151\154\x65\x2f\x28\72\156\x75\155\51", "\x4d\x61\151\156\x3a\x3a\x70\x61\164\x69\145\x6e\x74\120\x72\157\x66\x69\x6c\145\x2f\x24\x31"); $routes->add("\x63\x6f\x6e\x73\x75\154\x74\x61\x74\151\x6f\x6e\x73\57\50\x3a\141\154\160\x68\x61\156\x75\155\x29\57\x28\72\x6e\x75\155\x29", "\115\x61\x69\x6e\72\x3a\143\157\x6e\163\x75\154\x74\x61\164\151\x6f\156\163\57\x24\x31\x2f\44\62"); $routes->add("\x74\x72\x65\x61\164\155\x65\x6e\x74\163\57\50\72\x61\154\160\x68\141\x6e\165\155\51\x2f\50\72\x6e\165\155\x29", "\x4d\141\151\156\x3a\72\164\x72\x65\141\x74\x6d\145\156\x74\163\57\44\x31\57\x24\62"); $routes->add("\x6d\145\144\x69\x63\141\x6c\55\x6e\x6f\164\x65\163\x2f\50\72\x6e\x75\155\x29", "\x4d\x61\x69\156\x3a\72\155\x65\144\151\143\141\x6c\116\157\x74\x65\163\57\44\x31"); $routes->add("\154\141\x62\x2d\164\x65\x73\164\163\x2f\50\72\x61\154\x70\150\141\156\165\x6d\x29\57\x28\x3a\x6e\x75\x6d\x29", "\115\141\x69\156\x3a\x3a\x6c\141\x62\x54\145\163\164\163\x2f\44\61\x2f\x24\x32"); $routes->add("\160\x61\171\x6d\x65\156\x74\x73\x2f\x28\x3a\x61\154\160\150\x61\x6e\x75\x6d\51\57\x28\x3a\156\x75\155\x29", "\115\141\151\x6e\72\x3a\x70\x61\x79\x6d\145\156\164\163\x2f\x24\61\57\x24\62"); $routes->add("\146\x6f\x6c\154\x6f\x77\x2d\165\160\57\x28\x3a\141\154\x70\150\141\156\165\155\51\x2f\x28\x3a\156\165\x6d\51", "\115\141\151\x6e\x3a\x3a\146\x6f\154\154\157\167\125\x70\x2f\x24\x31\x2f\44\62"); $routes->add("\x70\x68\x6f\164\x6f\163\x2f\x28\72\x6e\165\x6d\x29", "\115\141\x69\156\x3a\x3a\160\150\x6f\x74\157\x73\x2f\44\x31"); $routes->add("\141\x74\164\141\143\150\155\x65\156\x74\x73\57\x28\x3a\x61\154\x70\150\141\x6e\x75\155\51\x2f\50\72\x6e\x75\x6d\51", "\115\x61\151\x6e\x3a\x3a\x61\x74\x74\x61\143\x68\155\145\x6e\164\x73\57\x24\x31\57\x24\62"); $routes->add("\160\x61\x74\151\145\x6e\x74\163\57\50\x3a\141\x6c\160\x68\141\x6e\165\x6d\x29", "\x4d\141\151\156\72\x3a\x70\141\164\151\145\156\x74\163\x2f\x24\61"); $routes->add("\141\160\x70\x6f\151\156\x74\155\x65\156\x74\163\57\50\72\x61\x6c\x70\150\x61\x6e\165\x6d\51", "\x4d\141\x69\x6e\72\72\x61\x70\160\x6f\151\156\x74\x6d\x65\156\164\163\57\44\61"); $routes->add("\166\x69\163\151\164\157\162\163\57\50\72\x61\154\160\150\141\x6e\165\155\x29", "\x4d\141\151\x6e\x3a\x3a\x76\151\x73\x69\x74\157\162\163\x2f\44\61"); $routes->add("\157\x75\x74\55\160\x61\x74\x69\x65\156\x74\57\50\72\141\154\160\150\141\x6e\165\x6d\51", "\x4d\141\x69\156\72\72\157\x75\164\120\x61\x74\x69\145\156\x74\x2f\x24\x31"); $routes->add("\x73\x65\x73\x73\151\x6f\x6e\x73\57\50\72\141\154\160\x68\141\156\x75\x6d\x29", "\115\x61\x69\156\x3a\x3a\x73\145\163\x73\x69\x6f\156\x73\x2f\x24\x31"); $routes->add("\x63\154\x61\163\x73\x65\x73\57\50\x3a\141\x6c\x70\x68\141\156\x75\155\x29", "\115\x61\x69\x6e\x3a\72\143\154\141\163\163\x65\x73\57\44\61"); $routes->add("\164\157\160\151\x63\x73\x2f\50\x3a\141\154\160\150\x61\156\165\155\x29", "\115\141\x69\156\72\x3a\x74\x6f\x70\x69\143\x73\57\44\61"); $routes->add("\x70\x61\164\150\x6f\x6c\157\x67\171\x2f\50\72\x61\x6c\x70\x68\141\156\165\x6d\51", "\x4d\141\151\x6e\72\x3a\160\141\x74\x68\157\154\157\147\x79\57\44\61"); $routes->add("\160\x68\141\162\x6d\x61\143\x79", "\x4d\x61\151\x6e\72\72\160\150\x61\x72\x6d\141\143\171"); $routes->add("\163\x75\160\x70\154\x69\x65\162\x73\x2f\x28\72\141\154\x70\150\x61\156\x75\x6d\x29", "\x4d\x61\x69\156\x3a\x3a\x73\x75\x70\x70\x6c\x69\145\162\x73\x2f\44\61"); $routes->add("\151\156\x76\145\x6e\164\157\162\171\55\x69\x74\145\155\x73\57\x28\72\141\x6c\x70\150\x61\x6e\165\155\x29", "\x4d\141\151\156\72\x3a\151\156\x76\x65\x6e\x74\x6f\x72\x79\x49\x74\145\x6d\163\x2f\x24\61"); $routes->add("\x69\163\163\x75\145\x64\x2d\x69\164\x65\155\163\57\50\72\x61\x6c\160\150\141\156\165\155\x29", "\x4d\x61\151\156\x3a\72\x69\163\x73\x75\145\144\x49\x74\x65\x6d\163\57\44\x31"); $routes->add("\x73\x74\x6f\143\x6b\x2d\150\x69\x73\x74\157\162\x79", "\x4d\x61\x69\x6e\x3a\x3a\x73\164\157\143\x6b\x48\x69\x73\x74\x6f\162\x79"); $routes->add("\143\x61\164\145\x67\157\162\151\x65\x73\x2f\x28\72\141\x6c\x70\150\x61\x6e\x75\x6d\x29", "\x4d\141\x69\x6e\x3a\x3a\143\141\164\x65\x67\x6f\x72\151\x65\x73\x2f\x24\61"); $routes->add("\x62\162\141\156\144\163\x2f\x28\x3a\141\x6c\x70\150\x61\x6e\165\x6d\x29", "\115\141\x69\156\x3a\72\x62\x72\x61\156\144\163\57\44\61"); $routes->add("\x75\156\x69\164\163\x2f\x28\x3a\141\x6c\x70\150\141\x6e\x75\155\51", "\x4d\141\151\x6e\x3a\x3a\165\x6e\151\x74\x73\57\44\x31"); $routes->add("\x70\x72\x69\x6e\x74\x2d\154\x61\x62\x65\x6c\x73", "\x4d\x61\x69\156\72\72\x70\x72\x69\x6e\x74\x4c\141\x62\145\154\163"); $routes->add("\160\165\x72\x63\x68\x61\163\145\163\57\x28\x3a\141\x6c\160\150\x61\x6e\165\155\x29", "\x4d\x61\x69\x6e\x3a\72\x70\165\x72\143\150\141\163\x65\x73\x2f\x24\61"); $routes->add("\160\x75\x72\143\150\x61\x73\145\55\162\145\x74\165\162\x6e\163\57\50\x3a\x61\x6c\x70\150\x61\x6e\165\155\x29", "\x4d\x61\151\156\72\72\x70\165\162\x63\150\x61\x73\145\x52\145\x74\x75\162\x6e\163\57\44\x31"); $routes->add("\145\144\151\x74\x2d\160\165\x72\x63\150\141\163\145\x2f\x28\72\156\165\155\51", "\115\141\151\x6e\x3a\x3a\145\144\x69\164\120\x75\162\x63\x68\x61\163\145\x2f\x24\61"); $routes->add("\143\x65\x6e\x74\162\x61\154\x2d\x62\x69\x6c\x6c\x69\156\147", "\x4d\x61\151\x6e\x3a\72\143\x65\x6e\x74\x72\141\154\x42\151\x6c\x6c\x69\156\147"); $routes->add("\x69\156\143\157\x6d\145\x2f\50\72\x61\x6c\x70\150\x61\156\165\155\51", "\115\x61\151\156\x3a\x3a\x69\x6e\143\x6f\x6d\x65\57\44\61"); $routes->add("\162\145\143\145\151\166\145\x64\x2d\160\141\x79\155\145\156\164\163", "\115\141\151\156\x3a\x3a\x72\x65\x63\145\151\166\145\144\x50\141\171\155\x65\x6e\164\x73"); $routes->add("\145\x78\160\x65\156\163\145\x73\x2f\50\72\x61\154\160\150\x61\x6e\x75\x6d\x29", "\x4d\x61\151\x6e\x3a\72\145\170\x70\145\156\163\145\x73\x2f\x24\61"); $routes->add("\x69\156\x76\157\151\143\x65\163", "\x4d\141\151\x6e\x3a\72\x69\x6e\166\x6f\151\x63\145\x73"); $routes->add("\x74\162\x61\x6e\x73\141\x63\x74\151\x6f\x6e\163", "\x4d\141\x69\156\72\x3a\164\162\x61\156\163\141\143\164\x69\x6f\x6e\x73"); $routes->add("\141\143\143\x6f\165\156\164\163\x2f\x28\x3a\141\x6c\x70\150\141\156\x75\x6d\x29", "\115\x61\x69\x6e\72\72\x61\x63\143\157\165\156\x74\x73\57\44\x31"); $routes->add("\x63\141\x73\x68\55\146\154\x6f\167", "\x4d\141\x69\x6e\x3a\72\143\141\x73\150\x46\x6c\x6f\x77"); $routes->add("\164\162\x69\141\x6c\x2d\142\141\154\x61\x6e\x63\x65", "\115\141\151\x6e\72\72\x74\162\x69\141\154\x42\x61\154\x61\x6e\x63\x65"); $routes->add("\142\x61\154\141\156\143\145\55\x73\150\x65\x65\x74", "\x4d\141\x69\156\x3a\x3a\142\141\154\141\x6e\x63\x65\123\x68\145\145\164"); $routes->add("\x61\x74\164\145\x6e\x64\x61\156\143\145\x2f\50\72\141\154\160\150\x61\156\165\x6d\51", "\115\x61\151\x6e\x3a\x3a\141\x74\x74\145\x6e\x64\141\156\143\x65\x2f\44\x31"); $routes->add("\145\155\160\154\x6f\x79\145\x65\163\57\50\72\141\154\160\x68\x61\156\165\x6d\51", "\115\x61\151\x6e\x3a\x3a\x65\155\160\154\157\171\145\145\x73\57\44\x31"); $routes->add("\x6c\x65\x61\166\x65\163\57\50\72\141\154\160\150\141\x6e\x75\155\51", "\x4d\141\x69\x6e\72\72\154\x65\141\166\145\163\x2f\x24\61"); $routes->add("\160\141\x79\x72\x6f\x6c\x6c\163\x2f\50\x3a\x61\154\x70\150\x61\156\165\155\x29", "\x4d\x61\151\x6e\x3a\x3a\x70\x61\171\x72\x6f\x6c\154\163\57\x24\61"); $routes->add("\x64\145\x70\141\162\164\x6d\x65\156\164\x73\x2f\x28\72\141\154\160\150\x61\156\x75\155\51", "\x4d\x61\151\x6e\x3a\72\x64\145\160\x61\162\164\155\145\156\164\163\x2f\x24\x31"); $routes->add("\144\145\x73\151\147\x6e\x61\164\151\x6f\x6e\x73\57\50\72\141\154\160\150\141\x6e\165\x6d\51", "\115\x61\151\x6e\72\x3a\x64\145\163\151\x67\x6e\141\164\151\157\156\x73\57\x24\61"); $routes->add("\x68\157\x6c\151\x64\x61\171\163\x2f\50\72\141\154\160\x68\141\156\165\155\x29", "\115\141\151\x6e\x3a\72\x68\x6f\154\151\144\x61\x79\x73\57\44\61"); $routes->add("\154\x65\141\166\x65\x2d\164\171\x70\x65\x73\x2f\x28\x3a\x61\x6c\x70\150\141\x6e\x75\155\x29", "\115\141\x69\x6e\72\72\154\145\141\166\x65\124\x79\160\x65\163\x2f\44\61"); $routes->add("\163\x61\x6c\x61\162\x79\55\x63\157\155\160\157\x6e\x65\x6e\x74\x73\x2f\50\72\141\x6c\160\150\141\156\x75\x6d\51", "\x4d\x61\x69\x6e\72\x3a\x73\x61\154\x61\x72\171\103\x6f\155\x70\x6f\156\145\156\x74\x73\x2f\44\x31"); $routes->add("\x75\163\x65\x72\x73\x2f\x28\72\141\x6c\x70\x68\x61\x6e\x75\x6d\x29", "\x4d\x61\x69\156\x3a\72\165\x73\x65\162\x73\x2f\44\x31"); $routes->add("\x72\157\154\145\x73\57\50\x3a\141\154\x70\x68\141\156\165\x6d\51", "\115\x61\151\x6e\x3a\72\x72\157\154\145\163\57\x24\x31"); $routes->add("\x70\x65\x72\155\x69\x73\163\x69\157\156\163\57\50\165\x73\145\162\x7c\x72\157\154\x65\51\57\50\x3a\x61\156\171\51", "\115\x61\x69\x6e\72\72\160\145\162\x6d\x69\x73\x73\x69\157\x6e\163\57\x24\x31\57\x24\62"); $routes->add("\160\x72\x6f\x66\x69\154\x65", "\x4d\141\151\156\72\x3a\x70\162\157\x66\x69\154\145"); $routes->add("\x73\x65\x6e\x74\x2d\x6d\x65\163\x73\x61\147\x65\x73\x2f\x28\x3a\x61\154\x70\150\141\51", "\x4d\141\x69\156\72\72\x73\x65\156\164\x4d\145\x73\x73\141\x67\145\x73\57\x24\x31"); $routes->add("\x69\156\x63\x6f\x6d\145\55\x72\x65\160\157\162\x74", "\x4d\x61\151\156\72\x3a\x69\x6e\x63\157\155\x65\122\145\x70\x6f\x72\x74"); $routes->add("\145\x78\x70\x65\x6e\163\x65\163\55\162\x65\160\x6f\x72\164", "\115\141\151\x6e\72\72\145\x78\x70\145\156\x73\x65\163\122\145\160\x6f\x72\164"); $routes->add("\160\x75\x72\143\x68\141\x73\145\x73\55\x72\145\x70\x6f\x72\x74", "\115\141\151\x6e\72\x3a\x70\165\162\143\150\x61\163\145\163\x52\145\x70\x6f\162\164"); $routes->add("\x70\162\157\x66\151\164\55\154\x6f\163\163\x2d\x72\x65\x70\157\162\164", "\x4d\x61\151\156\72\x3a\160\x72\x6f\146\x69\164\114\157\x73\x73\x52\x65\x70\x6f\162\164"); $routes->add("\x61\143\x74\151\x76\151\164\x79\x2d\154\157\x67\163\x2f\x28\72\x61\154\x70\x68\141\x29", "\x4d\x61\151\x6e\72\x3a\x61\143\164\151\x76\151\164\x79\x4c\x6f\147\163\57\44\x31"); $routes->add("\154\157\147\x69\156\x2d\x6c\x6f\147\x73\57\x28\x3a\x61\154\160\150\x61\51", "\x4d\141\151\156\x3a\72\154\157\147\x69\156\x4c\157\147\163\x2f\x24\61"); $routes->add("\143\157\x6e\163\165\x6c\x74\x61\x74\151\x6f\156\x2d\146\x65\145\163\x2f\x28\x3a\x61\x6c\x70\150\141\x6e\x75\155\x29", "\x4d\x61\151\x6e\x3a\72\x63\157\156\163\165\154\164\141\x74\151\157\x6e\106\145\145\x73\x2f\44\61"); $routes->add("\164\145\x73\x74\x2d\147\162\157\165\x70\163\x2f\50\72\141\x6c\160\150\x61\156\x75\x6d\51", "\115\141\x69\156\72\x3a\164\x65\x73\x74\x47\x72\x6f\165\x70\163\x2f\44\x31"); $routes->add("\164\x65\163\x74\163\57\x28\x3a\141\x6c\x70\x68\141\156\x75\155\51", "\115\x61\x69\156\x3a\72\164\145\163\164\163\x2f\x24\61"); $routes->add("\160\x72\x6f\x63\x65\144\x75\162\145\x73\57\50\72\141\x6c\160\x68\x61\x6e\x75\x6d\x29", "\115\141\151\x6e\x3a\72\x70\162\157\143\145\x64\x75\162\145\x73\57\x24\x31"); $routes->add("\x6f\164\150\x65\x72\163\57\x28\72\141\x6c\160\150\x61\x6e\x75\x6d\51", "\115\141\x69\x6e\72\72\x6f\x74\x68\x65\162\163\57\x24\61"); $routes->add("\x67\x65\156\145\x72\141\154\x2d\x65\x78\160\x65\156\x73\145\x73\57\50\x3a\x61\154\x70\x68\141\x6e\x75\155\51", "\115\141\x69\156\x3a\72\147\x65\156\145\162\141\154\x45\170\160\145\156\x73\x65\163\x2f\44\61"); $routes->add("\144\x6f\x63\x74\x6f\x72\55\x66\x65\145\x73\57\x28\x3a\141\154\160\150\x61\x6e\x75\x6d\x29", "\115\x61\151\156\72\x3a\x64\157\143\x74\157\x72\x46\145\x65\163\x2f\44\x31"); $routes->add("\x61\x6e\145\x73\164\150\55\146\145\x65\163\57\x28\x3a\141\154\x70\x68\x61\156\x75\155\51", "\115\141\x69\156\x3a\72\141\156\145\x73\164\x68\x46\x65\145\x73\x2f\44\x31"); $routes->add("\x68\157\x73\160\151\x74\141\x6c\x2d\146\x65\x65\x73\x2f\50\x3a\x61\154\160\150\141\156\x75\155\51", "\x4d\x61\x69\x6e\x3a\72\x68\157\x73\160\151\164\141\x6c\x46\x65\x65\163\57\44\x31"); $routes->add("\x67\145\x6e\x65\x72\x61\154\x2d\163\145\x74\164\151\x6e\147\163", "\115\x61\x69\156\72\72\x67\145\156\145\x72\141\x6c\x53\145\x74\164\151\156\x67\x73"); $routes->add("\145\x6d\141\x69\154\x2d\163\x65\164\x74\151\x6e\147\x73", "\115\x61\151\156\72\x3a\x65\155\x61\x69\x6c\123\x65\x74\164\151\x6e\147\x73"); $routes->add("\145\x6d\141\x69\x6c\x2d\x74\145\155\x70\154\x61\x74\145\163", "\x4d\141\151\x6e\72\x3a\145\155\x61\151\x6c\x54\145\155\x70\154\141\164\145\x73"); $routes->add("\141\160\151\55\x73\x65\164\x74\x69\x6e\147\163", "\115\141\151\156\72\72\141\x70\151\x53\145\x74\164\x69\x6e\x67\163"); $routes->add("\x6d\157\x64\145\x73\55\x6f\146\x2d\160\x61\x79\x6d\x65\x6e\164\x2f\x28\x3a\x61\x6c\160\150\141\156\x75\155\51", "\x4d\141\x69\156\72\x3a\x6d\x6f\144\x65\163\x4f\x66\120\141\171\155\145\x6e\164\57\x24\x31"); $routes->add("\x66\157\x6c\x6c\157\167\55\x75\x70\x2d\x6d\145\x73\163\x61\147\145\163\57\x28\72\x61\154\160\x68\x61\156\165\x6d\51", "\115\x61\x69\x6e\72\72\146\x6f\154\154\157\167\x55\160\115\x65\x73\x73\141\147\x65\163\x2f\44\x31"); $routes->add("\x62\141\x63\x6b\x75\160\163\x2f\x28\x3a\x61\x6c\x70\x68\141\156\165\155\x29", "\x4d\x61\151\x6e\72\72\x62\x61\143\x6b\x75\160\x73\x2f\x24\61"); $routes->add("\x75\x70\144\141\x74\145\x2d\x70\x61\163\163\x77\x6f\x72\144", "\x42\x61\x73\x65\103\x6f\x6e\164\x72\x6f\x6c\x6c\x65\162\72\72\x75\160\x64\x61\x74\x65\120\x61\163\163\x77\157\162\144"); $routes->add("\x64\x6f\167\x6e\x6c\x6f\141\x64\x2f\50\x3a\141\156\x79\x29\x2f\x28\72\141\x6e\171\x29", "\x4d\141\x69\156\x3a\72\x64\x6f\167\156\x6c\157\141\x64\57\x24\x31\x2f\44\x32"); $routes->add("\x6c\157\147\157\165\x74", "\115\141\151\x6e\x3a\x3a\x6c\157\147\157\165\164\x55\x73\145\x72"); $routes->add("\143\x72\x65\x61\164\x65\x2d\142\141\143\x6b\165\x70", "\115\141\x69\x6e\72\72\143\x72\145\x61\x74\x65\x42\141\143\153\165\160"); $routes->add("\154\145\x61\144\163\55\146\x6f\x72\155", "\x42\x61\163\x65\103\157\156\164\x72\157\x6c\154\x65\x72\x3a\72\x6c\x65\141\x64\163\x46\157\162\x6d"); $routes->add("\x71\165\145\163\x74\151\157\x6e\156\x61\151\x72\x65\x2d\146\157\162\155", "\x42\141\163\145\103\x6f\156\x74\162\x6f\154\x6c\x65\162\72\x3a\x71\x75\145\x73\164\151\x6f\x6e\x6e\x61\151\x72\145\x46\157\162\155"); $routes->add("\164\157\x67\147\154\x65\x2d\163\x74\x61\162", "\x42\141\x73\x65\103\157\x6e\164\162\157\154\x6c\x65\162\x3a\72\x74\x6f\x67\147\x6c\x65\123\x74\x61\x72"); $routes->add("\x74\157\x67\x67\154\145\x2d\163\164\141\164\x75\163", "\x42\141\x73\145\103\x6f\x6e\x74\162\x6f\x6c\154\145\x72\x3a\72\x74\x6f\147\x67\154\x65\x53\x74\141\x74\165\x73"); $routes->add("\x64\x65\154\145\x74\x65\55\162\145\x63\x6f\162\144\57\50\x3a\x61\x6e\x79\x29\57\x28\72\x6e\x75\x6d\51", "\115\x61\151\x6e\72\x3a\144\145\x6c\145\x74\x65\122\x65\143\x6f\x72\144\57\x24\x31\x2f\x24\62"); $routes->add("\144\145\154\x65\x74\x65\55\x72\x65\143\x6f\x72\x64\163\57\50\72\141\156\171\51\x2f\x28\141\x6c\154\x7c\163\164\x61\162\x72\145\144\x29", "\115\141\151\156\72\x3a\x64\145\154\145\164\145\122\x65\x63\157\162\144\163\57\x24\61\57\x24\x32"); $routes->add("\141\x64\144\55\x74\x6f\x2d\x6f\x72\x64\x65\x72\55\x6c\x69\x73\164", "\x42\141\x73\x65\x43\x6f\x6e\x74\162\157\x6c\x6c\x65\x72\x3a\72\x61\x64\144\124\x6f\x4f\x72\x64\x65\162\x4c\151\x73\x74"); $routes->add("\x72\x65\155\x6f\x76\x65\55\146\x72\157\155\55\x6f\162\x64\x65\162\55\x6c\151\x73\164", "\x42\141\163\145\x43\x6f\156\164\162\157\x6c\154\145\162\72\x3a\162\x65\x6d\157\166\145\x46\162\x6f\x6d\117\x72\144\145\x72\114\151\x73\x74"); $routes->add("\x63\x6c\145\141\x72\55\157\162\144\x65\x72\x2d\154\151\163\x74", "\115\x61\151\x6e\72\72\143\154\x65\141\x72\117\x72\x64\145\162\114\x69\163\164"); $routes->add("\x61\144\x64\55\x74\x6f\55\x63\157\155\x70\154\x65\x6d\x65\x6e\164\x61\162\x79\55\x6c\151\x73\164", "\x42\141\x73\x65\103\157\x6e\164\162\x6f\x6c\154\x65\x72\72\x3a\x61\x64\x64\x54\x6f\x43\x6f\155\160\x6c\145\x6d\145\156\164\141\162\171\114\x69\163\164"); $routes->add("\x61\x64\x64\55\164\157\55\x65\156\162\x6f\154\154\x6d\145\156\164\55\x6c\151\x73\x74", "\x42\x61\163\145\x43\157\x6e\x74\162\x6f\x6c\x6c\145\x72\x3a\x3a\141\x64\144\x54\x6f\x45\x6e\x72\157\x6c\154\x6d\145\156\x74\x4c\151\163\x74"); $routes->add("\147\145\164\x2d\x63\154\x61\x73\163\55\162\x65\155\x69\156\144\145\x72\163", "\x42\x61\163\x65\x43\157\156\x74\162\x6f\154\x6c\145\162\x3a\72\x67\145\x74\x43\x6c\x61\x73\163\122\145\155\151\156\x64\145\162\x73"); $routes->add("\147\145\x74\55\143\154\141\x73\163\55\141\x74\164\x65\156\x64\141\156\143\x65", "\x42\x61\x73\145\103\x6f\156\164\x72\x6f\x6c\154\145\162\72\x3a\147\145\x74\x43\x6c\141\163\163\101\164\164\x65\x6e\x64\x61\156\143\145"); $routes->add("\147\145\164\55\x63\157\155\160\x6c\145\x6d\x65\156\x74\141\162\171\55\164\145\x73\164\163", "\102\141\163\x65\x43\x6f\156\164\x72\x6f\154\154\145\x72\72\x3a\147\x65\x74\x43\x6f\155\x70\154\145\x6d\x65\x6e\x74\141\162\x79\124\x65\x73\164\x73"); $routes->add("\147\x65\164\55\145\x6e\162\x6f\154\154\145\144\x2d\x70\141\x74\151\145\156\164\x73", "\x42\141\163\145\x43\157\x6e\x74\x72\157\154\x6c\145\162\72\x3a\147\x65\164\105\x6e\162\x6f\154\154\145\144\120\x61\164\x69\145\x6e\164\163"); $routes->add("\x64\x65\x6c\145\164\x65\55\x63\157\155\160\154\x65\x6d\x65\156\164\x61\162\x79\x2d\164\145\x73\x74", "\x42\x61\x73\x65\x43\157\x6e\164\162\x6f\154\x6c\x65\x72\x3a\x3a\144\x65\154\x65\164\x65\x43\157\x6d\x70\x6c\x65\x6d\x65\x6e\164\x61\162\171\124\x65\163\x74"); $routes->add("\144\151\x73\x65\156\x72\157\154\154\x2d\160\x61\164\x69\145\x6e\x74", "\102\x61\163\145\x43\x6f\156\x74\x72\x6f\x6c\x6c\145\x72\x3a\72\x64\151\163\145\156\162\157\154\x6c\x50\x61\164\151\x65\156\164"); $routes->add("\141\x64\144\55\164\157\55\147\162\157\x75\160\x2d\154\151\163\164", "\102\x61\163\145\x43\x6f\x6e\164\x72\x6f\x6c\154\x65\x72\x3a\72\x61\144\x64\x54\157\x47\x72\157\165\x70\x4c\x69\163\164"); $routes->add("\141\144\144\55\x74\x6f\55\160\162\x6f\143\x65\144\x75\x72\x65\55\154\151\x73\x74", "\x42\x61\163\x65\103\x6f\x6e\x74\162\157\x6c\x6c\x65\162\72\72\x61\x64\144\x54\x6f\x50\162\x6f\x63\x65\x64\x75\x72\145\x4c\x69\163\164"); $routes->add("\x61\x64\x64\55\x74\157\x2d\157\x74\x68\x65\162\x2d\x6c\151\163\164", "\102\141\163\x65\x43\157\x6e\x74\x72\x6f\154\x6c\145\162\x3a\72\x61\x64\144\x54\x6f\117\x74\150\145\x72\x4c\x69\x73\164"); $routes->add("\x61\144\144\x2d\x74\x6f\55\143\141\x72\x74", "\x42\x61\163\x65\x43\x6f\x6e\164\x72\157\x6c\154\x65\162\x3a\x3a\x61\x64\144\x54\157\x43\x61\162\x74"); $routes->add("\162\145\155\157\166\145\x2d\146\x72\x6f\155\x2d\143\x6f\155\160\x6c\145\x6d\145\156\x74\141\x72\171\55\x6c\x69\x73\164", "\102\141\x73\x65\x43\157\x6e\164\162\157\x6c\154\x65\162\x3a\x3a\x72\145\155\157\x76\145\x46\x72\x6f\x6d\x43\157\x6d\x70\x6c\x65\x6d\145\x6e\x74\141\x72\171\114\x69\x73\x74"); $routes->add("\x72\145\x6d\x6f\x76\x65\55\x66\162\x6f\x6d\x2d\x65\x6e\162\157\154\154\x6d\x65\x6e\x74\x2d\154\151\x73\x74", "\x42\141\x73\x65\x43\157\156\164\162\x6f\x6c\x6c\145\162\72\x3a\162\x65\x6d\x6f\166\145\x46\162\x6f\155\x45\x6e\162\157\154\154\x6d\x65\156\164\114\151\163\164"); $routes->add("\162\x65\x6d\157\166\x65\x2d\x66\162\157\155\55\x67\x72\157\x75\x70\55\154\x69\x73\x74", "\102\141\x73\145\103\x6f\x6e\164\x72\157\154\154\145\x72\72\x3a\162\145\x6d\157\x76\145\x46\162\x6f\x6d\107\162\157\x75\x70\114\x69\x73\164"); $routes->add("\x72\x65\155\157\166\x65\55\x66\162\157\x6d\55\x70\x72\x6f\x63\x65\x64\x75\162\145\55\154\151\x73\164", "\102\x61\163\x65\103\x6f\156\x74\x72\157\x6c\154\145\162\72\x3a\x72\x65\155\x6f\x76\x65\106\162\x6f\x6d\x50\162\157\143\x65\144\165\162\x65\x4c\151\163\x74"); $routes->add("\162\145\155\x6f\166\x65\55\146\x72\x6f\155\55\x6f\x74\x68\145\x72\x2d\154\x69\x73\164", "\x42\x61\163\145\103\157\x6e\x74\x72\x6f\154\x6c\145\x72\x3a\x3a\x72\145\x6d\x6f\x76\x65\106\x72\157\155\117\164\x68\x65\162\114\151\x73\x74"); $routes->add("\x72\x65\155\157\x76\x65\x2d\x66\162\x6f\155\55\x63\x61\162\x74", "\x42\141\x73\x65\x43\x6f\156\164\162\157\x6c\154\145\x72\72\x3a\x72\145\x6d\x6f\166\145\x46\162\157\x6d\x43\x61\162\x74"); $routes->add("\x63\154\x65\141\162\x2d\143\x6f\x6d\160\x6c\x65\155\x65\x6e\164\x61\162\171\55\x6c\x69\x73\x74", "\115\141\x69\156\x3a\72\143\154\145\x61\x72\103\157\x6d\160\154\x65\x6d\x65\x6e\164\141\x72\x79\114\151\x73\x74"); $routes->add("\x63\x6c\x65\x61\162\55\x65\156\x72\x6f\x6c\154\155\145\156\x74\x2d\154\x69\163\164", "\x4d\x61\151\156\x3a\x3a\143\x6c\x65\141\162\x45\x6e\162\x6f\x6c\154\155\x65\156\x74\114\151\x73\x74"); $routes->add("\143\x6c\145\141\162\x2d\x67\x72\157\165\x70\x2d\x6c\151\163\164", "\115\141\151\x6e\x3a\x3a\143\x6c\145\141\x72\x47\162\x6f\x75\x70\x4c\x69\163\x74"); $routes->add("\143\x6c\x65\x61\x72\x2d\160\162\x6f\x63\145\x64\x75\162\145\55\154\x69\x73\x74", "\x4d\141\x69\x6e\72\x3a\x63\x6c\145\x61\x72\120\162\x6f\143\145\x64\165\x72\145\x4c\x69\x73\164"); $routes->add("\x63\154\145\x61\162\x2d\x6f\x74\x68\145\x72\55\x6c\151\x73\x74", "\x4d\x61\x69\x6e\72\72\143\x6c\x65\x61\162\x4f\x74\x68\145\162\x4c\x69\x73\164"); $routes->add("\x63\154\x65\141\162\x2d\x63\x61\x72\164", "\x4d\141\151\156\72\72\143\154\x65\141\162\x43\x61\x72\x74"); $routes->add("\143\154\x65\141\162\x2d\x70\x75\162\x63\150\141\x73\145\55\x6c\151\163\164", "\x4d\141\151\x6e\x3a\72\x63\154\x65\141\x72\x50\165\162\x63\x68\141\x73\x65\x4c\x69\x73\x74"); $routes->add("\x63\154\x65\x61\162\55\x65\170\160\x65\x6e\x73\145\55\154\x69\x73\164", "\115\141\151\156\x3a\x3a\143\x6c\x65\141\162\x45\170\x70\145\x6e\163\145\x4c\x69\163\164"); $routes->add("\x63\150\x61\x6e\x67\x65\55\x70\x61\147\145\55\x72\145\143\157\162\x64\163", "\x42\x61\x73\145\x43\157\x6e\164\x72\x6f\x6c\x6c\x65\x72\72\x3a\143\150\x61\156\x67\x65\x50\141\147\x65\122\x65\143\x6f\162\144\163"); $routes->add("\x63\x68\x61\156\147\x65\x2d\x72\x65\143\157\162\144\163\x2d\x6f\162\x64\145\x72", "\x42\x61\163\145\x43\157\x6e\164\x72\157\x6c\x6c\145\x72\x3a\72\143\150\141\156\147\x65\x52\x65\x63\157\162\x64\x73\117\162\x64\145\x72"); $routes->add("\164\x6f\147\147\x6c\145\x2d\160\x65\x72\155\x69\x73\163\151\x6f\156", "\x42\x61\x73\x65\x43\x6f\156\x74\x72\157\x6c\154\x65\x72\x3a\72\x74\157\x67\x67\154\145\x50\x65\162\155\151\x73\x73\x69\x6f\x6e"); $routes->add("\164\x6f\x67\147\x6c\145\55\x63\150\x61\162\164\57\x28\x69\x6e\x71\x75\x69\x72\151\x65\x73\55\143\x68\141\162\164\x7c\x70\x72\x6f\143\145\144\165\x72\145\x73\x2d\143\150\x61\x72\x74\174\x74\162\x65\141\x74\155\x65\x6e\x74\55\163\164\141\164\x75\x73\55\143\150\141\x72\164\174\151\156\143\157\155\x65\55\x63\x68\x61\x72\164\174\145\170\x70\x65\156\x73\x65\163\x2d\x63\150\141\x72\x74\x29\x2f\x28\x62\141\x72\174\144\x6f\165\x67\150\x6e\165\x74\x7c\x6c\151\156\145\x7c\160\151\145\51", "\x4d\x61\x69\156\x3a\72\x74\157\147\x67\154\x65\103\x68\x61\x72\164\57\x24\61\57\x24\62"); $routes->add("\x73\x65\156\x64\55\x66\x6f\x6c\154\157\167\x2d\x75\160\x2d\x65\155\x61\151\154", "\102\141\x73\x65\103\157\x6e\x74\x72\x6f\x6c\154\145\x72\72\72\163\x65\x6e\144\x46\157\154\154\x6f\x77\125\160\x45\x6d\x61\151\154"); $routes->add("\x62\141\x63\153\165\x70\x2d\144\x61\x74\141\x62\x61\163\145", "\102\141\x73\145\x43\x6f\156\x74\162\x6f\x6c\154\145\162\x3a\x3a\142\141\x63\x6b\165\x70\104\x61\x74\x61\x62\141\x73\145"); $routes->add("\143\x68\x65\143\153\55\x75\156\162\145\141\x64", "\102\141\x73\x65\103\157\x6e\x74\162\x6f\154\x6c\145\162\x3a\72\143\150\145\143\x6b\125\x6e\162\x65\x61\144"); $routes->add("\156\x65\x77\55\156\157\164\x69\146\x69\143\141\x74\151\157\156", "\x42\141\x73\x65\x43\157\x6e\164\162\x6f\154\154\x65\x72\x3a\x3a\156\145\x77\x4e\157\x74\151\x66\x69\143\141\x74\x69\x6f\156"); $routes->add("\x6d\141\162\153\55\x61\x73\x2d\x72\x65\x61\x64", "\x42\141\163\x65\103\x6f\156\164\x72\157\154\x6c\x65\x72\x3a\72\x6d\x61\x72\x6b\101\163\122\145\x61\x64"); $routes->add("\x64\145\x6c\x65\x74\x65\55\x6e\157\164\151\x66\x69\x63\x61\x74\x69\x6f\156", "\102\x61\163\x65\x43\157\x6e\164\x72\157\x6c\154\x65\x72\72\72\144\x65\x6c\x65\164\145\x4e\x6f\164\x69\146\x69\143\x61\x74\151\x6f\156"); $routes->add("\x67\145\164\55\x6e\x6f\164\x69\146\151\x63\141\x74\x69\157\156\163", "\102\141\x73\x65\x43\157\156\x74\x72\x6f\154\x6c\145\x72\x3a\72\147\145\x74\116\157\164\151\x66\151\143\141\164\151\157\x6e\x73"); $routes->add("\163\145\156\x64\x2d\x6d\x65\163\163\x61\x67\145", "\102\141\x73\145\103\157\156\x74\x72\157\x6c\154\145\162\x3a\72\163\x65\x6e\x64\115\x65\163\163\x61\x67\145"); $routes->add("\163\141\166\x65\x2d\x72\145\x73\165\154\164", "\x42\x61\x73\145\103\x6f\156\164\x72\157\x6c\x6c\x65\x72\72\x3a\163\141\166\145\x52\145\163\x75\154\164"); $routes->add("\x73\x61\166\145\x2d\167\x65\151\147\x68\x74", "\x42\141\x73\x65\x43\157\156\x74\x72\157\x6c\154\145\162\72\72\x73\141\x76\x65\x57\x65\x69\147\150\x74"); $routes->add("\x73\x65\x6e\144\x2d\162\x65\163\165\154\164\163\x2f\50\x3a\x6e\x75\155\x29", "\115\x61\151\x6e\x3a\x3a\163\x65\x6e\144\122\145\x73\165\154\164\163\x2f\x24\x31"); $routes->add("\x72\145\163\x65\x6e\144\x2d\155\x65\x73\x73\x61\147\x65\57\50\x3a\x6e\165\155\x29", "\x4d\141\151\x6e\72\x3a\162\x65\163\145\156\x64\x4d\145\x73\x73\x61\147\145\57\x24\x31"); $routes->add("\147\x65\x74\55\x6d\x6f\x64\x65\163\55\157\146\x2d\160\x61\x79\155\145\156\164", "\x42\x61\163\145\103\x6f\x6e\x74\x72\157\154\x6c\x65\x72\72\72\x67\145\x74\115\157\x64\145\x73\x4f\x66\120\x61\x79\155\x65\x6e\164"); $routes->add("\x67\x65\x74\55\157\160\145\x6e\151\156\x67\x2d\163\x74\x6f\143\x6b", "\102\x61\163\x65\103\157\156\x74\x72\x6f\154\x6c\145\x72\72\72\147\145\164\117\160\x65\x6e\151\x6e\x67\x53\x74\157\143\x6b"); $routes->add("\163\145\x61\162\143\x68\x2d\x70\141\x74\151\145\x6e\164", "\102\141\163\x65\103\x6f\x6e\164\162\x6f\x6c\x6c\x65\x72\72\72\163\145\141\162\143\x68\x50\x61\164\x69\x65\156\164"); $routes->add("\x73\x65\x61\x72\x63\x68\x2d\151\156\166\x65\x6e\164\x6f\x72\171\x2d\151\x74\x65\x6d", "\102\141\163\x65\103\x6f\x6e\x74\162\x6f\154\x6c\x65\x72\72\72\x73\x65\x61\x72\143\x68\x49\156\x76\145\x6e\x74\157\x72\x79\111\164\x65\155"); $routes->add("\147\145\x74\x2d\x74\145\163\x74\x2d\162\x65\x73\165\x6c\164\163", "\102\x61\x73\145\x43\x6f\x6e\x74\162\x6f\x6c\x6c\145\x72\x3a\72\147\x65\164\x54\x65\163\x74\x52\145\163\x75\154\164\x73"); $routes->add("\147\x65\x74\x2d\x74\x72\141\156\x73\141\x63\164\151\x6f\156\x73", "\x42\x61\163\145\x43\157\156\164\162\157\154\154\x65\x72\72\72\147\145\x74\124\x72\x61\x6e\163\x61\x63\x74\151\x6f\156\163"); $routes->add("\x67\x65\x74\x2d\163\x65\154\145\x63\x74\x65\x64\x2d\151\164\x65\155\163", "\102\x61\x73\145\103\157\x6e\x74\162\x6f\154\x6c\x65\x72\72\72\x67\x65\x74\123\x65\x6c\145\143\x74\145\144\x49\164\145\155\163"); $routes->add("\164\x6f\147\147\x6c\145\55\x73\145\154\145\x63\x74\x2d\151\x74\x65\x6d", "\x42\141\163\145\x43\157\156\x74\x72\x6f\154\x6c\145\x72\x3a\x3a\164\x6f\x67\147\154\145\123\x65\x6c\145\x63\164\111\x74\145\155"); $routes->add("\143\x72\145\141\164\145\55\151\156\166\x6f\x69\x63\145", "\x4d\x61\x69\x6e\72\x3a\x63\x72\145\141\164\145\x49\156\x76\157\x69\143\x65"); $routes->add("\x70\x72\x6f\x63\x65\163\x73\55\160\x61\164\150\x6f\154\x6f\147\x79", "\x4d\141\x69\156\x3a\x3a\160\x72\x6f\143\145\x73\163\120\x61\x74\150\157\x6c\x6f\x67\x79"); $routes->add("\x70\x72\157\x63\x65\163\163\x2d\141\x70\x70\157\151\x6e\164\155\145\156\164\x73", "\115\141\151\156\x3a\x3a\x70\x72\157\x63\x65\163\x73\x41\x70\160\157\151\x6e\x74\155\x65\x6e\164\163"); $routes->add("\160\x72\x6f\143\145\163\x73\55\143\157\x6d\155\145\156\164\163\x2d\156\x6f\164\145\x73", "\x4d\141\151\156\72\72\160\x72\157\143\x65\163\163\103\x6f\155\155\x65\x6e\x74\x73\x4e\x6f\164\x65\x73"); $routes->add("\160\x72\x6f\143\x65\x73\163\x2d\162\145\x6d\151\x6e\144\145\x72\x73", "\115\141\151\x6e\72\x3a\160\x72\x6f\x63\x65\163\163\x52\145\155\x69\156\x64\145\162\x73"); $routes->add("\160\x72\157\143\x65\163\x73\x2d\157\x75\x74\x2d\160\x61\164\151\x65\156\x74", "\x4d\141\x69\156\x3a\x3a\x70\x72\x6f\x63\145\x73\x73\117\165\164\x50\x61\x74\x69\145\156\164"); $routes->add("\160\x72\157\x63\x65\x73\163\55\164\162\141\x6e\163\x61\143\164\151\x6f\156\163", "\x4d\x61\151\x6e\x3a\x3a\160\162\157\143\145\x73\163\x54\x72\x61\x6e\163\141\143\164\x69\x6f\156\x73"); $routes->add("\x70\162\x6f\143\x65\163\163\55\x69\156\143\157\155\x65", "\115\x61\x69\156\72\x3a\160\162\x6f\143\x65\x73\163\111\x6e\143\157\x6d\145"); $routes->add("\x73\160\x6c\x69\x74\x2d\x69\156\166\x6f\x69\x63\145\x2f\x28\72\156\x75\x6d\x29", "\x4d\x61\x69\x6e\x3a\72\163\x70\x6c\x69\164\111\156\166\x6f\x69\x63\145\x2f\44\x31"); $routes->add("\x73\145\x6e\144\55\x69\x6e\166\157\x69\143\x65\x2f\50\72\x6e\165\x6d\51", "\x4d\141\x69\156\72\x3a\163\x65\x6e\144\x49\x6e\x76\157\x69\x63\145\x2f\x24\61"); $routes->add("\x73\145\156\144\55\x72\145\143\x65\151\160\x74\57\50\72\x6e\165\155\51", "\115\x61\151\156\72\72\163\145\156\x64\x52\x65\x63\145\x69\x70\164\x2f\x24\61"); $routes->add("\x67\x65\164\55\141\x64\144\145\156\144\x73", "\x42\x61\163\145\103\x6f\156\x74\162\157\x6c\x6c\145\162\x3a\72\x67\145\164\101\144\x64\x65\x6e\144\163"); $routes->add("\160\x72\157\143\x65\163\x73\x2d\162\x65\x63\x65\x69\x70\164\163", "\115\x61\151\x6e\x3a\x3a\160\162\x6f\143\145\x73\163\122\x65\143\145\151\x70\164\163"); $routes->add("\165\160\x64\141\164\145\x2d\x61\x70\x70\157\x69\156\164\155\x65\156\x74\55\163\x74\141\x74\165\163", "\x4d\x61\151\x6e\x3a\72\x75\x70\144\x61\x74\145\101\x70\160\157\x69\156\x74\155\x65\156\x74\123\164\x61\x74\x75\x73"); $routes->add("\165\160\x64\x61\164\x65\55\x70\x61\164\x69\145\156\x74\55\160\162\157\146\x69\x6c\x65\x2d\151\155\x61\x67\145", "\115\x61\x69\156\x3a\72\x75\x70\x64\x61\164\145\x50\x61\164\151\145\x6e\164\120\162\x6f\x66\151\154\145\111\155\141\x67\x65"); $routes->add("\160\162\x65\160\x65\x6e\144\55\164\151\164\x6c\145\55\164\157\x2d\156\157\164\x65", "\x4d\x61\151\156\72\72\160\x72\x65\160\x65\156\x64\x54\151\164\154\x65\x54\157\116\x6f\x74\145"); $routes->add("\165\160\144\141\164\145\x2d\x65\x78\x70\x65\156\163\145\55\x6e\141\155\x65", "\115\141\x69\x6e\72\72\x75\x70\144\x61\164\145\x45\x78\x70\145\156\163\x65\x4e\141\x6d\x65"); $routes->add("\x75\160\x64\x61\x74\145\x2d\x74\162\x61\x6e\163\141\x63\164\151\x6f\x6e\55\144\x61\x74\145", "\115\x61\151\x6e\72\x3a\165\160\144\141\164\145\124\x72\x61\x6e\x73\141\x63\164\151\x6f\156\104\x61\164\145"); $routes->add("\165\160\144\x61\x74\x65\x2d\151\x6e\166\157\151\143\x65\x2d\143\141\x74\x65\x67\x6f\162\x79", "\x4d\x61\151\156\x3a\72\165\160\x64\x61\x74\x65\x49\156\x76\157\x69\143\x65\103\x61\x74\145\147\x6f\162\x79"); $routes->add("\x75\160\x64\141\x74\145\55\x74\x72\141\156\x73\x61\x63\x74\151\157\x6e\55\151\156\143\157\155\x65\x2d\x63\x61\x74\x65\147\x6f\x72\x79", "\115\141\151\x6e\72\72\165\160\x64\x61\164\145\124\x72\141\156\x73\x61\x63\x74\x69\157\156\x49\156\143\157\x6d\x65\x43\x61\x74\145\x67\x6f\x72\171"); $routes->add("\165\160\x64\x61\x74\x65\x2d\164\x72\x61\156\x73\141\143\164\151\157\156\55\145\x78\160\145\156\163\145\55\143\141\164\145\x67\x6f\162\x79", "\115\141\151\x6e\72\72\165\160\x64\141\164\x65\124\162\141\x6e\163\141\143\164\x69\157\x6e\x45\170\x70\x65\156\x73\145\103\x61\164\145\147\x6f\162\171"); if (file_exists(APPPATH . "\x43\x6f\x6e\146\x69\x67\57" . ENVIRONMENT . "\x2f\x52\x6f\x75\164\145\x73\56\160\150\x70")) { require APPPATH . "\x43\157\x6e\x66\151\147\57" . ENVIRONMENT . "\x2f\122\157\165\x74\x65\163\x2e\160\x68\160"; }

Function Calls

None

Variables

None

Stats

MD5 7fb83f4a8d30e33ec5169bb1dfce63e3
Eval Count 0
Decode Time 92 ms