├── .gitignore ├── LICENSE.txt ├── README.md ├── application ├── Bootstrap.php ├── controllers │ ├── Action │ │ ├── Activity.php │ │ ├── AdjustPayment.php │ │ ├── Aggregate.php │ │ ├── Alert.php │ │ ├── Api.php │ │ ├── Auth.php │ │ ├── Balances.php │ │ ├── Bill.php │ │ ├── BulkCredit.php │ │ ├── Calculate.php │ │ ├── Cards.php │ │ ├── Charge.php │ │ ├── Charges.php │ │ ├── ClearCall.php │ │ ├── CollAggregate.php │ │ ├── Collect.php │ │ ├── Compute.php │ │ ├── Createtenant.php │ │ ├── Credit.php │ │ ├── Cron.php │ │ ├── Cycle.php │ │ ├── Datausage.php │ │ ├── Export.php │ │ ├── Files.php │ │ ├── Find.php │ │ ├── Generate.php │ │ ├── GenerateExpected.php │ │ ├── Healthcheck.php │ │ ├── Import.php │ │ ├── ImportPricesList.php │ │ ├── Invoices.php │ │ ├── Loadversion.php │ │ ├── Notify.php │ │ ├── Onetimeinvoice.php │ │ ├── Operations.php │ │ ├── PasswordRetrieval.php │ │ ├── Pay.php │ │ ├── Payments.php │ │ ├── Process.php │ │ ├── Query.php │ │ ├── Query │ │ │ ├── Aggregate.php │ │ │ ├── Balances.php │ │ │ └── Billrun.php │ │ ├── Realtimeevent.php │ │ ├── Receive.php │ │ ├── RecreateInvoices.php │ │ ├── Refund.php │ │ ├── Remove.php │ │ ├── Report.php │ │ ├── Reports.php │ │ ├── ResetLines.php │ │ ├── Respond.php │ │ ├── Reversecharge.php │ │ ├── RunCollectStep.php │ │ ├── Saveversion.php │ │ ├── Services.php │ │ ├── Settings.php │ │ ├── Statistics.php │ │ ├── Status.php │ │ ├── Subscribers.php │ │ ├── SubscribersAutoRenew.php │ │ ├── Test.php │ │ ├── UploadedFile.php │ │ ├── Users.php │ │ └── v3 │ │ │ ├── AdjustPayment.php │ │ │ ├── Balance.php │ │ │ ├── Bill.php │ │ │ ├── Bills.php │ │ │ ├── Discount.php │ │ │ ├── Export.php │ │ │ ├── Invoices.php │ │ │ ├── Pay.php │ │ │ ├── Payments.php │ │ │ ├── Plans.php │ │ │ ├── Query.php │ │ │ ├── Rates.php │ │ │ └── UpdateSubscriber.php │ ├── Admin.php │ ├── Api.php │ ├── Api2.php │ ├── Billrun.php │ ├── Cli.php │ ├── Cron.php │ ├── Currencies.php │ ├── Custompaymentgateway.php │ ├── Error.php │ ├── Externalpaypage.php │ ├── Import.php │ ├── Index.php │ ├── Internalpaypage.php │ ├── Locale.php │ ├── Oauth2.php │ ├── Paymentgateways.php │ ├── Plugins.php │ ├── Realtime.php │ ├── Realtime2.php │ ├── Sendrequest.php │ ├── Test.php │ └── Utest.php ├── helpers │ ├── Action │ │ ├── Base.php │ │ └── VLR.php │ ├── Admin │ │ ├── Graphs.php │ │ ├── Lines.php │ │ ├── MongoOperatorTranslators │ │ │ ├── EndsWith.php │ │ │ ├── Equal.php │ │ │ ├── GreaterThan.php │ │ │ ├── GreaterThanEqual.php │ │ │ ├── LessThan.php │ │ │ ├── LessThanEqual.php │ │ │ ├── Like.php │ │ │ ├── Manager.php │ │ │ ├── NotEqual.php │ │ │ ├── Regex.php │ │ │ ├── StartsWith.php │ │ │ └── Translator.php │ │ └── Table.php │ ├── Generator │ │ ├── BillrunToBill.php │ │ ├── Expectedinvoice.php │ │ ├── Payments.php │ │ ├── Prepaiddeletedsubscribers.php │ │ ├── Prepaidmtr.php │ │ ├── Prepaidrecharge.php │ │ ├── Prepaidsubscribers.php │ │ ├── Prepaidtransactions.php │ │ ├── Prepaidvoice.php │ │ ├── Sasn.php │ │ ├── Translations.php │ │ └── WkPdf.php │ ├── Scripts │ │ └── create_db.sh │ ├── Subscriber │ │ └── Pelephone.php │ └── sources │ │ └── logo.png ├── models │ ├── Api │ │ ├── Translator.php │ │ └── Translator │ │ │ ├── Array.php │ │ │ ├── Autoinc.php │ │ │ ├── Boolean.php │ │ │ ├── Datetime.php │ │ │ ├── Datetimearray.php │ │ │ ├── Datetimeinrange.php │ │ │ ├── Dbid.php │ │ │ ├── Email.php │ │ │ ├── Float.php │ │ │ ├── Int.php │ │ │ ├── Integer.php │ │ │ ├── Number.php │ │ │ ├── Password.php │ │ │ ├── Ranges.php │ │ │ ├── String.php │ │ │ └── Type.php │ ├── Archive.php │ ├── Balances.php │ ├── Billrun.php │ ├── Cards.php │ ├── Config.php │ ├── Events.php │ ├── Lines.php │ ├── Log.php │ ├── Plans.php │ ├── Queue.php │ ├── Rates.php │ ├── Report.php │ ├── ResetLines.php │ ├── Serviceproviders.php │ ├── Statistics.php │ ├── Subscribers.php │ ├── Subscribersautorenewservices.php │ ├── Table.php │ ├── Tabledate.php │ ├── Users.php │ ├── Versions.php │ └── utest │ │ ├── AbstractUtest.php │ │ ├── BalanceAdd.php │ │ ├── BalanceAutorenew.php │ │ ├── BalanceCard.php │ │ ├── BalanceCharge.php │ │ ├── Call.php │ │ ├── CardCreate.php │ │ ├── CardDelete.php │ │ ├── CardUpdate.php │ │ ├── Data.php │ │ ├── Service.php │ │ ├── Sms.php │ │ ├── SubscriberCreate.php │ │ ├── SubscriberDelete.php │ │ └── SubscriberUpdate.php ├── modules │ └── Billapi │ │ ├── Models │ │ ├── Accounts.php │ │ ├── Action.php │ │ ├── Action │ │ │ ├── Export.php │ │ │ ├── Export │ │ │ │ └── Rates.php │ │ │ ├── Get.php │ │ │ ├── Get │ │ │ │ ├── Accounts.php │ │ │ │ ├── Audit.php │ │ │ │ ├── Autorenew.php │ │ │ │ ├── Bills.php │ │ │ │ ├── Log.php │ │ │ │ ├── Rates.php │ │ │ │ ├── Reports.php │ │ │ │ └── Subscribers.php │ │ │ ├── Import.php │ │ │ ├── Import │ │ │ │ ├── Accounts.php │ │ │ │ ├── Rates.php │ │ │ │ └── Subscribers.php │ │ │ ├── Uniqueget.php │ │ │ └── Uniqueget │ │ │ │ ├── Accounts.php │ │ │ │ ├── Charges.php │ │ │ │ ├── Discounts.php │ │ │ │ ├── Rates.php │ │ │ │ ├── Subscribers.php │ │ │ │ └── Taxes.php │ │ ├── Archive.php │ │ ├── Autorenew.php │ │ ├── Balances.php │ │ ├── Charges.php │ │ ├── Config.php │ │ ├── Discounts.php │ │ ├── Entity.php │ │ ├── Lines.php │ │ ├── Plans.php │ │ ├── Prepaidincludes.php │ │ ├── Rates.php │ │ ├── Reports.php │ │ ├── Services.php │ │ ├── Subscribers.php │ │ ├── Suggestions.php │ │ ├── Users.php │ │ └── Verification.php │ │ ├── controllers │ │ ├── Billapi.php │ │ ├── Changepassword.php │ │ ├── Close.php │ │ ├── Closeandnew.php │ │ ├── Create.php │ │ ├── Delete.php │ │ ├── Export.php │ │ ├── Get.php │ │ ├── Import.php │ │ ├── Move.php │ │ ├── Permanentchange.php │ │ ├── Reopen.php │ │ ├── Uniqueget.php │ │ └── Update.php │ │ └── views │ │ ├── csv.phtml │ │ └── index.phtml ├── plugins │ ├── autorenew.php │ ├── calcCpu.php │ ├── csi.php │ ├── debtCollection.php │ ├── fraud.php │ ├── ggsn.php │ ├── metabaseReports.php │ ├── nsn.php │ ├── pelephone.php │ ├── prepaid.php │ ├── realtime.php │ ├── skipEvents.php │ ├── sms.php │ ├── tap3.php │ ├── v3Translator.php │ └── webhooks.php ├── views │ ├── admin │ │ ├── billrun.phtml │ │ ├── config.phtml │ │ ├── confirm.phtml │ │ ├── edit.phtml │ │ ├── error.phtml │ │ ├── home.phtml │ │ ├── logdetails.phtml │ │ ├── login.phtml │ │ ├── operations.phtml │ │ ├── permission.phtml │ │ ├── popups.phtml │ │ ├── table.phtml │ │ ├── tablebody.phtml │ │ ├── tablefooter.phtml │ │ ├── tableheader.phtml │ │ ├── toolbar.phtml │ │ ├── w-popups.phtml │ │ ├── w-toolbar.phtml │ │ ├── wholesale.phtml │ │ └── wholesaleajax.phtml │ ├── api │ │ ├── aggregatecsv.phtml │ │ ├── currencies.phtml │ │ ├── index.phtml │ │ └── locale.phtml │ ├── api2 │ │ └── index.phtml │ ├── billrun │ │ └── index.phtml │ ├── cli │ │ └── index.phtml │ ├── cron │ │ └── index.phtml │ ├── currencies │ │ └── index.phtml │ ├── custompaymentgateway │ │ └── index.phtml │ ├── error │ │ └── error.phtml │ ├── externalpaypage │ │ └── index.phtml │ ├── import │ │ └── index.phtml │ ├── index.phtml │ ├── index │ │ ├── index.phtml │ │ └── test.phtml │ ├── internalpaypage │ │ ├── account_details.phtml │ │ ├── html_head.phtml │ │ ├── index.phtml │ │ ├── index2.phtml │ │ ├── payment_details.phtml │ │ ├── plan_default.phtml │ │ ├── plans_popup.phtml │ │ ├── services_selection.phtml │ │ ├── subscriber_details.phtml │ │ └── total_charge.phtml │ ├── invoices │ │ ├── details │ │ │ ├── details1.phtml │ │ │ └── details_table.phtml │ │ ├── discounts │ │ │ └── discounts.phtml │ │ ├── footer │ │ │ ├── footer_tpl.html │ │ │ └── footer_tpl.phtml │ │ ├── header │ │ │ ├── header_tpl.html │ │ │ └── header_tpl.phtml │ │ ├── invoice.phtml │ │ ├── lines │ │ │ └── lines1.phtml │ │ ├── subscriptions │ │ │ ├── details.phtml │ │ │ ├── lines.phtml │ │ │ ├── subscription.phtml │ │ │ └── sumup.phtml │ │ ├── sumup │ │ │ ├── complex_sumup.phtml │ │ │ ├── simple_sumup.phtml │ │ │ └── sumup1.phtml │ │ ├── tax │ │ │ └── tax.phtml │ │ └── theme │ │ │ ├── billrun_logo.png │ │ │ ├── border.png │ │ │ ├── dot.png │ │ │ ├── logo.png │ │ │ └── theme1.css │ ├── layout │ │ ├── index.phtml │ │ └── menu.phtml │ ├── locale │ │ └── index.phtml │ ├── menu.phtml │ ├── oauth2 │ │ ├── authorize.phtml │ │ ├── index.phtml │ │ └── token.phtml │ ├── paymentgateways │ │ └── index.phtml │ ├── plugins │ │ └── index.phtml │ ├── realtime │ │ └── index.phtml │ ├── realtime2 │ │ └── index.phtml │ ├── sendrequest │ │ └── sendrequest.phtml │ ├── test │ │ └── index.phtml │ └── utest │ │ ├── components │ │ ├── api.phtml │ │ ├── balance.phtml │ │ ├── balanceDiff.phtml │ │ ├── cards.phtml │ │ ├── layoutHeader.phtml │ │ ├── lines.phtml │ │ ├── navigation.phtml │ │ └── subscriber.phtml │ │ ├── index.phtml │ │ ├── result.phtml │ │ └── tests │ │ ├── balanceAdd.phtml │ │ ├── balanceAutorenew.phtml │ │ ├── balanceCard.phtml │ │ ├── balanceCharge.phtml │ │ ├── call.phtml │ │ ├── cardCreate.phtml │ │ ├── cardDelete.phtml │ │ ├── cardUpdate.phtml │ │ ├── data.phtml │ │ ├── service.phtml │ │ ├── sms.phtml │ │ ├── subscriberCreate.phtml │ │ ├── subscriberDelete.phtml │ │ └── subscriberUpdate.phtml └── yaf.php ├── composer.json ├── composer.lock ├── conf ├── PaymentGateways │ └── CreditGuard │ │ ├── CreditGuard.ini │ │ ├── regular_ver.ini │ │ └── struct.ini ├── TemplateTokens │ └── conf.ini ├── api │ ├── aggregate.ini │ ├── create_tenant.ini │ └── find.ini ├── autorenew │ ├── conf.ini │ └── errors.ini ├── balances │ ├── conf.ini │ └── errors.ini ├── base_config │ ├── ericsson_ggsn.ini │ └── nokia_ggsn.ini ├── cards │ ├── conf.ini │ └── errors.ini ├── config.php ├── config │ ├── permissions.ini │ └── template.json ├── container.ini ├── credit │ └── conf.ini ├── dev.ini ├── generators │ ├── payments.ini │ ├── prepaid_deleted_subscribers.ini │ ├── prepaid_mtr.ini │ ├── prepaid_recharge.ini │ ├── prepaid_subscribers.ini │ ├── prepaid_transactions.ini │ ├── prepaid_voice.ini │ └── sasn.ini ├── ggsn │ └── struct.ini ├── importers │ └── conf.ini ├── mmsc │ └── struct.ini ├── modules │ └── billapi │ │ ├── accounts.ini │ │ ├── archive.ini │ │ ├── audit.ini │ │ ├── autorenew.ini │ │ ├── balances.ini │ │ ├── billrun.ini │ │ ├── bills.ini │ │ ├── charges.ini │ │ ├── discounts.ini │ │ ├── events.ini │ │ ├── lines.ini │ │ ├── log.ini │ │ ├── plans.ini │ │ ├── prepaidgroups.ini │ │ ├── prepaidincludes.ini │ │ ├── queue.ini │ │ ├── rates.ini │ │ ├── reports.ini │ │ ├── services.ini │ │ ├── subscribers.ini │ │ ├── suggestions.ini │ │ ├── taxes.ini │ │ └── users.ini ├── nsn │ └── data_types.ini ├── plans │ └── conf.ini ├── prod.ini ├── realtime │ ├── conf.ini │ ├── errors.ini │ └── return_codes.ini ├── reversecharge │ └── conf.ini ├── services │ ├── conf.ini │ └── errors.ini ├── sms │ └── struct.ini ├── subscribers │ ├── conf.ini │ └── errors.ini ├── system │ └── nginx.conf ├── tap3 │ └── struct.ini ├── tax │ └── tax.ini ├── tenants │ └── base.ini ├── test.ini ├── translations │ └── en_GB.ini ├── ui.ini ├── utest │ └── conf.ini ├── validation.ini ├── validation │ └── conf.ini └── view │ ├── admin_panel.ini │ ├── fields.ini │ └── menu.ini ├── docker └── billrun-docker │ ├── README.md │ ├── billrun-php5.6 │ ├── Dockerfile │ ├── php-fpm.conf │ ├── php.ini │ └── xdebug.ini │ ├── billrun-php7 │ ├── Dockerfile │ ├── Dockerfile-php73 │ ├── php-fpm.conf │ ├── php.ini │ └── xdebug.ini │ ├── billrun-php74 │ ├── Dockerfile │ ├── Dockerfile-light │ ├── php-fpm.conf │ ├── php.ini │ └── xdebug.ini │ ├── billrun-php80 │ ├── Dockerfile │ ├── Dockerfile-light │ ├── php-fpm.conf │ ├── php.ini │ └── xdebug.ini │ ├── docker-compose-php73.yml │ ├── docker-compose-php74-light.yml │ ├── docker-compose-php74.yml │ ├── docker-compose-php80-light.yml │ ├── docker-compose-php80.yml │ ├── docker-compose.yml │ ├── init-mongo.sh │ ├── nginx.conf │ └── run_docker.sh ├── library ├── Alcaeus │ └── MongoDbAdapter │ │ └── CursorIterator.php ├── Asn │ ├── Base.php │ ├── Markers.php │ ├── Object.php │ ├── Type │ │ ├── BitStr.php │ │ ├── BmpStr.php │ │ ├── Boolean.php │ │ ├── CharStr.php │ │ ├── EmbeddedPdv.php │ │ ├── Enumerated.php │ │ ├── Eoc.php │ │ ├── External.php │ │ ├── General.php │ │ ├── GeneralStr.php │ │ ├── GeneralTime.php │ │ ├── GraphicStr.php │ │ ├── IA5Str.php │ │ ├── Integer.php │ │ ├── Null.php │ │ ├── NumStr.php │ │ ├── ObjectDesc.php │ │ ├── ObjectID.php │ │ ├── OctetStr.php │ │ ├── PrintStr.php │ │ ├── Real.php │ │ ├── RelativeOID.php │ │ ├── Sequence.php │ │ ├── Set.php │ │ ├── T61Str.php │ │ ├── UniversalStr.php │ │ ├── UtcTime.php │ │ ├── UtfStr.php │ │ ├── VidTexStr.php │ │ └── VisibleStr.php │ └── Types.php ├── Billrun │ ├── Account.php │ ├── Account │ │ ├── Db.php │ │ └── External.php │ ├── ActionManagers │ │ ├── APIManager.php │ │ ├── Balances │ │ │ ├── Action.php │ │ │ ├── Query.php │ │ │ ├── Update.php │ │ │ └── Updaters │ │ │ │ ├── ChargingPlan.php │ │ │ │ ├── Id.php │ │ │ │ ├── Manager.php │ │ │ │ ├── PrepaidInclude.php │ │ │ │ ├── Secret.php │ │ │ │ └── Updater.php │ │ ├── Cards │ │ │ ├── Action.php │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── Query.php │ │ │ └── Update.php │ │ ├── ErrorReporter.php │ │ ├── IAPIAction.php │ │ ├── Manager.php │ │ ├── Realtime │ │ │ └── Responder │ │ │ │ ├── Base.php │ │ │ │ ├── Call │ │ │ │ ├── AnswerCall.php │ │ │ │ ├── Base.php │ │ │ │ ├── ClearCall.php │ │ │ │ ├── HealthcheckIn.php │ │ │ │ ├── ReleaseCall.php │ │ │ │ ├── ReservationTime.php │ │ │ │ └── StartCall.php │ │ │ │ ├── Data │ │ │ │ ├── Base.php │ │ │ │ ├── ClearCall.php │ │ │ │ ├── FinalRequest.php │ │ │ │ ├── InitialRequest.php │ │ │ │ └── UpdateRequest.php │ │ │ │ ├── Manager.php │ │ │ │ ├── Mms │ │ │ │ └── Mms.php │ │ │ │ ├── Realtime │ │ │ │ └── Base.php │ │ │ │ ├── Service │ │ │ │ └── Service.php │ │ │ │ └── Sms │ │ │ │ └── Sms.php │ │ ├── Services │ │ │ ├── Action.php │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── Query.php │ │ │ └── Update.php │ │ ├── Subscribers │ │ │ ├── Action.php │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── Query.php │ │ │ ├── Servicehandler.php │ │ │ ├── Update.php │ │ │ └── Validator.php │ │ └── Subscribersautorenew │ │ │ ├── Action.php │ │ │ ├── Bydelta.php │ │ │ ├── Query.php │ │ │ └── Update.php │ ├── Aggregator.php │ ├── Aggregator │ │ ├── Aggregateable.php │ │ ├── Customer.php │ │ ├── Customernondb.php │ │ ├── Customeronetime.php │ │ └── Leftovers.php │ ├── Alert.php │ ├── AnObj.php │ ├── AuditTrail │ │ └── Util.php │ ├── Autorenew │ │ ├── Day.php │ │ ├── Manager.php │ │ ├── Month.php │ │ └── Record.php │ ├── Balance.php │ ├── Balance │ │ ├── Postpaid.php │ │ ├── Prepaid.php │ │ └── Update │ │ │ ├── Abstract.php │ │ │ ├── Chargingplan.php │ │ │ ├── Id.php │ │ │ ├── Prepaidgroup.php │ │ │ ├── Prepaidinclude.php │ │ │ └── Secret.php │ ├── Balances │ │ ├── Handler.php │ │ ├── Update │ │ │ ├── Default.php │ │ │ ├── Inc.php │ │ │ ├── New.php │ │ │ ├── Operation.php │ │ │ └── Set.php │ │ └── Util.php │ ├── Base.php │ ├── Bill.php │ ├── Bill │ │ ├── Invoice.php │ │ ├── Payment.php │ │ └── Payment │ │ │ ├── Automatic.php │ │ │ ├── Cash.php │ │ │ ├── Cheque.php │ │ │ ├── Credit.php │ │ │ ├── Debit.php │ │ │ ├── Denial.php │ │ │ ├── InstallmentAgreement.php │ │ │ ├── MergeInstallments.php │ │ │ ├── Transfer.php │ │ │ ├── WireTransfer.php │ │ │ └── WriteOff.php │ ├── Billingcycle.php │ ├── Billrun.php │ ├── Cache.php │ ├── Calculator.php │ ├── Calculator │ │ ├── Customer.php │ │ ├── CustomerPricing.php │ │ ├── Rate.php │ │ ├── Rate │ │ │ ├── Callrt.php │ │ │ ├── Credit.php │ │ │ ├── Ggsn.php │ │ │ ├── Gy.php │ │ │ ├── Mmsc.php │ │ │ ├── Mmsrt.php │ │ │ ├── Nrtrde.php │ │ │ ├── Nsn.php │ │ │ ├── Service.php │ │ │ ├── Smpp.php │ │ │ ├── Sms.php │ │ │ ├── Smsc.php │ │ │ ├── Smsrt.php │ │ │ ├── Tap3.php │ │ │ └── Usage.php │ │ ├── Rebalance.php │ │ ├── Row.php │ │ ├── Row │ │ │ ├── Customerpricing.php │ │ │ └── Customerpricing │ │ │ │ ├── Postpaid.php │ │ │ │ └── Prepaid.php │ │ ├── Tax.php │ │ ├── Tax │ │ │ ├── Singletax.php │ │ │ ├── Thirdpartytaxing.php │ │ │ └── Usage.php │ │ ├── Unify.php │ │ └── Unify │ │ │ └── Realtime.php │ ├── Cards │ │ └── Handler.php │ ├── Collection.php │ ├── CollectionSteps.php │ ├── CollectionSteps │ │ ├── Db.php │ │ ├── Notifier.php │ │ └── Notifiers │ │ │ ├── Abstract.php │ │ │ ├── Http.php │ │ │ ├── Httpnoack.php │ │ │ ├── Mail.php │ │ │ ├── Sms.php │ │ │ └── Strategy.php │ ├── Common │ │ ├── FileSequenceChecker.php │ │ └── SequenceChecker.php │ ├── Compute.php │ ├── Compute │ │ ├── Suggestions.php │ │ └── Suggestions │ │ │ └── RateRecalculation.php │ ├── Config.php │ ├── Connection.php │ ├── Connector │ │ ├── Base.php │ │ └── Ftp.php │ ├── Cycle │ │ ├── Account.php │ │ ├── Account │ │ │ └── Invoice.php │ │ ├── Aggregation │ │ │ ├── Common.php │ │ │ ├── CustomerDb.php │ │ │ └── CustomerRemote.php │ │ ├── Aggregator.php │ │ ├── Common.php │ │ ├── Data │ │ │ ├── Line.php │ │ │ ├── Plan.php │ │ │ └── Service.php │ │ ├── Onetime │ │ │ └── AggregatePipeline.php │ │ ├── Paging.php │ │ ├── Subscriber.php │ │ └── Subscriber │ │ │ └── Invoice.php │ ├── DBRef.php │ ├── DataTypes │ │ ├── AggregateSubscriberservice.php │ │ ├── Billrun.php │ │ ├── CachedChargingTimeTable.php │ │ ├── CachedDataTable.php │ │ ├── Conf │ │ │ ├── Array.php │ │ │ ├── Base.php │ │ │ ├── Boolean.php │ │ │ ├── Datestring.php │ │ │ ├── Exportgenerator.php │ │ │ ├── Float.php │ │ │ ├── List.php │ │ │ ├── Menu.php │ │ │ ├── Number.php │ │ │ ├── Range.php │ │ │ ├── Sharedpath.php │ │ │ ├── String.php │ │ │ ├── Stringrange.php │ │ │ └── Timezone.php │ │ ├── CreditRow.php │ │ ├── CustomCycleTime.php │ │ ├── CycleTime.php │ │ ├── DateRange.php │ │ ├── FieldEnforcer │ │ │ ├── Mandatory.php │ │ │ ├── Rule.php │ │ │ ├── Type.php │ │ │ └── Unique.php │ │ ├── InvalidField.php │ │ ├── MongoCycleTime.php │ │ ├── PostPayment.php │ │ ├── PrePayment.php │ │ ├── Subscriberservice.php │ │ └── Wallet.php │ ├── Db.php │ ├── Decoder │ │ ├── Array.php │ │ ├── Base.php │ │ ├── Json.php │ │ ├── Manager.php │ │ └── Xml.php │ ├── Discount.php │ ├── Discount │ │ ├── Account.php │ │ ├── Subscriber.php │ │ └── Usage.php │ ├── DiscountManager.php │ ├── Dispatcher.php │ ├── Dispatcher │ │ └── Chain.php │ ├── EmailSender │ │ ├── Base.php │ │ ├── InvoiceReady.php │ │ └── Manager.php │ ├── EmailSenderManager.php │ ├── Encoder │ │ ├── Array.php │ │ ├── Base.php │ │ ├── Json.php │ │ ├── Manager.php │ │ └── Xml.php │ ├── EntityGetter │ │ └── Filters │ │ │ ├── Base.php │ │ │ ├── EqualFalse.php │ │ │ ├── LongestPrefix.php │ │ │ ├── Manager.php │ │ │ ├── Match.php │ │ │ ├── Range.php │ │ │ └── Regex.php │ ├── Events │ │ ├── Notifier.php │ │ └── Notifiers │ │ │ ├── Base.php │ │ │ └── Http.php │ ├── EventsManager.php │ ├── Exceptions │ │ ├── Api.php │ │ ├── Auth.php │ │ ├── Base.php │ │ ├── InputContainer.php │ │ ├── InvalidFields.php │ │ └── NoPermission.php │ ├── Exporter.php │ ├── Factory.php │ ├── FieldValidator │ │ ├── CustomerPlan.php │ │ ├── SOC.php │ │ └── ServiceProvider.php │ ├── FraudManager.php │ ├── Generator.php │ ├── Generator │ │ ├── AggregatedCsv.php │ │ ├── ConfigurableCDRAggregationCsv.php │ │ ├── Csv.php │ │ ├── File.php │ │ ├── NationalRoaming.php │ │ ├── PaymentGateway │ │ │ ├── CreditGuard │ │ │ │ └── Transactions.php │ │ │ ├── Csv.php │ │ │ ├── Custom.php │ │ │ ├── Custom │ │ │ │ └── TransactionsRequest.php │ │ │ └── Xml.php │ │ └── Pdf.php │ ├── Git │ │ └── Util.php │ ├── Handler.php │ ├── HebrewCal.php │ ├── Helpers │ │ └── QueueCalculators.php │ ├── Http │ │ ├── Authentication │ │ │ ├── Base.php │ │ │ └── Oauth2.php │ │ └── Request.php │ ├── Importer.php │ ├── Importer │ │ ├── Abstract.php │ │ ├── Cards.php │ │ ├── ChargingPlans.php │ │ ├── Csv.php │ │ ├── Csv │ │ │ └── Simple.php │ │ ├── PPThreshold.php │ │ ├── RecurringChargingPlans.php │ │ └── Test.php │ ├── Lines │ │ └── Util.php │ ├── Log.php │ ├── LogBillrunFile.php │ ├── LogFile.php │ ├── LogFile │ │ ├── CreditGuard.php │ │ ├── CustomPaymentGateway.php │ │ └── DD.php │ ├── ModelValidator │ │ ├── Base.php │ │ ├── Manager.php │ │ ├── Plans.php │ │ ├── Rates.php │ │ ├── RatesByGroups.php │ │ ├── RatesByParentManager.php │ │ └── RatesByPlan.php │ ├── OAuth2 │ │ └── Storage │ │ │ └── MongoDB.php │ ├── Parser.php │ ├── Parser │ │ ├── Base │ │ │ └── Binary.php │ │ ├── Csv.php │ │ ├── External.php │ │ ├── Fixed.php │ │ ├── Ggsn.php │ │ ├── Json.php │ │ ├── KeyedSeparated.php │ │ ├── Separator.php │ │ ├── Tap3.php │ │ └── Xml.php │ ├── PaymentGateway.php │ ├── PaymentGateway │ │ ├── AuthorizeNet.php │ │ ├── Connection.php │ │ ├── Connection │ │ │ ├── Ftp.php │ │ │ └── Ssh.php │ │ ├── CreditGuard.php │ │ ├── PayPal │ │ │ └── ExpressCheckout.php │ │ ├── Paysafe.php │ │ └── Stripe.php │ ├── PaymentManager.php │ ├── Plan.php │ ├── Plans │ │ ├── Charge.php │ │ ├── Charge │ │ │ ├── Arrears │ │ │ │ ├── Custom.php │ │ │ │ ├── Month.php │ │ │ │ ├── Notprorated │ │ │ │ │ ├── Custom.php │ │ │ │ │ └── Month.php │ │ │ │ └── Traits │ │ │ │ │ └── Custom.php │ │ │ ├── Base.php │ │ │ ├── Singleperiod.php │ │ │ ├── Traits │ │ │ │ └── Custom.php │ │ │ ├── Upfront.php │ │ │ └── Upfront │ │ │ │ ├── Custom.php │ │ │ │ ├── Month.php │ │ │ │ ├── Notprorated │ │ │ │ ├── Custom.php │ │ │ │ └── Month.php │ │ │ │ └── Year.php │ │ └── Util.php │ ├── Plugin │ │ ├── Base.php │ │ ├── BillrunPluginBase.php │ │ ├── BillrunPluginFraud.php │ │ └── Interface │ │ │ ├── IAggrergator.php │ │ │ ├── IParser.php │ │ │ ├── IProcessor.php │ │ │ └── IUpdaterProcessor.php │ ├── Processor.php │ ├── Processor │ │ ├── Base │ │ │ ├── Binary.php │ │ │ ├── BlockedSeperatedBinary.php │ │ │ ├── Separator.php │ │ │ └── SeparatorFieldLines.php │ │ ├── BinaryExternal.php │ │ ├── BlockedBinaryExternal.php │ │ ├── Credit.php │ │ ├── Csv.php │ │ ├── Json.php │ │ ├── Nrtrde.php │ │ ├── PaymentGateway │ │ │ ├── CreditGuard │ │ │ │ ├── Denials.php │ │ │ │ └── Transactions.php │ │ │ ├── Custom.php │ │ │ ├── Custom │ │ │ │ ├── Denials.php │ │ │ │ ├── Payments.php │ │ │ │ └── TransactionsResponse.php │ │ │ └── PaymentGateway.php │ │ ├── Realtime.php │ │ ├── Sms.php │ │ ├── Updater.php │ │ ├── Usage.php │ │ └── Util.php │ ├── Rates │ │ └── Util.php │ ├── Receiver.php │ ├── Receiver │ │ ├── Base │ │ │ └── LocalFiles.php │ │ ├── Files.php │ │ ├── Ftp.php │ │ ├── Inline.php │ │ ├── NonCDRs │ │ │ └── PaymentGateway.php │ │ ├── PaymentGateway │ │ │ └── CreditGuard │ │ │ │ ├── Denials.php │ │ │ │ └── Transactions.php │ │ ├── Relocate.php │ │ ├── Ssh.php │ │ └── Workspace.php │ ├── Responder.php │ ├── Responder │ │ └── Base │ │ │ ├── FilesResponder.php │ │ │ └── LocalDir.php │ ├── Sender.php │ ├── Sender │ │ ├── Ftp.php │ │ └── Ssh.php │ ├── Service.php │ ├── Sms.php │ ├── Spl │ │ ├── Observer.php │ │ └── Subject.php │ ├── Ssh │ │ ├── Gatewayinterface.php │ │ └── Seclibgateway.php │ ├── Subscriber.php │ ├── Subscriber │ │ ├── Aggregate │ │ │ ├── Aggregator.php │ │ │ ├── Base.php │ │ │ └── Services.php │ │ ├── Api.php │ │ ├── Db.php │ │ ├── Entity.php │ │ ├── External.php │ │ ├── Http.php │ │ ├── Query │ │ │ ├── Base.php │ │ │ ├── Interface.php │ │ │ ├── Manager.php │ │ │ └── Types │ │ │ │ ├── Custom.php │ │ │ │ ├── Imsi.php │ │ │ │ ├── Msisdn.php │ │ │ │ └── Sid.php │ │ ├── Rest.php │ │ └── Soap.php │ ├── Tariff.php │ ├── Tariff │ │ └── Util.php │ ├── Template │ │ └── Token │ │ │ ├── Base.php │ │ │ └── Replacers │ │ │ ├── Abstract.php │ │ │ ├── Account.php │ │ │ ├── Collection.php │ │ │ └── General.php │ ├── Test.php │ ├── Traits │ │ ├── Api │ │ │ ├── AdditionalInput.php │ │ │ ├── IUserPermissions.php │ │ │ ├── OperationsLock.php │ │ │ ├── PageRedirect.php │ │ │ └── UserPermissions.php │ │ ├── AsnParsing.php │ │ ├── ConditionsCheck.php │ │ ├── DateSpan.php │ │ ├── EntityGetter.php │ │ ├── FieldValidator.php │ │ ├── FileActions.php │ │ ├── FileSequenceChecking.php │ │ ├── ForeignFields.php │ │ ├── OnChargeDay.php │ │ ├── TypeAll.php │ │ ├── Updater │ │ │ └── Balance.php │ │ └── ValueTranslator.php │ ├── TypeValidator │ │ ├── Base.php │ │ ├── Boolean.php │ │ ├── Date.php │ │ ├── Float.php │ │ ├── Inarray.php │ │ ├── Integer.php │ │ └── Manager.php │ ├── UpdateByDelta │ │ ├── Subscribersautorenew.php │ │ └── Updater.php │ ├── User.php │ ├── Util.php │ ├── Utils │ │ ├── Arrayquery │ │ │ ├── Aggregate.php │ │ │ ├── Aggregate │ │ │ │ └── Expression.php │ │ │ ├── Expression.php │ │ │ └── Query.php │ │ ├── Autorenew.php │ │ ├── Cycle.php │ │ ├── ErrorHandler.php │ │ ├── Esb.php │ │ ├── ForeignFields.php │ │ ├── Mongo.php │ │ ├── Plays.php │ │ ├── Security.php │ │ ├── Time.php │ │ ├── Units.php │ │ └── Usage.php │ ├── Validator.php │ ├── Version.php │ └── View │ │ └── Invoice.php ├── Crypt │ ├── AES.php │ ├── Base.php │ ├── Blowfish.php │ ├── DES.php │ ├── Hash.php │ ├── RC2.php │ ├── RC4.php │ ├── RSA.php │ ├── Random.php │ ├── Rijndael.php │ ├── TripleDES.php │ └── Twofish.php ├── Math │ └── BigInteger.php ├── Mongodloid │ ├── Binary.php │ ├── Collection.php │ ├── Connection.php │ ├── Cursor.php │ ├── Date.php │ ├── Db.php │ ├── Entity.php │ ├── Exception.php │ ├── General.php │ ├── GridFS.php │ ├── GridFSFile.php │ ├── Id.php │ ├── Query.php │ ├── Ref.php │ ├── Regex.php │ ├── Result.php │ ├── TypeConverter.php │ └── TypeInterface.php ├── Net │ ├── SCP.php │ ├── SFTP.php │ ├── SFTP │ │ └── Stream.php │ ├── SSH1.php │ └── SSH2.php ├── System │ ├── SSH │ │ └── Agent.php │ └── SSH_Agent.php ├── Tests │ ├── Aggregatortest.php │ ├── AggregatortestData │ │ ├── balances.json │ │ ├── billing_cycle.json │ │ ├── billrun.json │ │ ├── bills.json │ │ ├── charges.json │ │ ├── config.json │ │ ├── counters.json │ │ ├── discounts.json │ │ ├── lines.json │ │ ├── plans.json │ │ ├── rates.json │ │ ├── services.json │ │ ├── subscribers.json │ │ └── taxes.json │ ├── Api │ │ ├── Base │ │ │ ├── Action.php │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── Query.php │ │ │ └── Update.php │ │ ├── Services.php │ │ ├── Services │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── Query.php │ │ │ └── Update.php │ │ ├── Subscribers.php │ │ └── Subscribers │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── Query.php │ │ │ └── Update.php │ ├── Autorenew.php │ ├── Config.php │ ├── Customercalculatortest.php │ ├── CustomercalculatortestData │ │ ├── balances.json │ │ ├── config.json │ │ ├── lines.json │ │ ├── plans.json │ │ ├── rates.json │ │ ├── services.json │ │ └── subscribers.json │ ├── Customerpricing.php │ ├── Datetimeprocessor.php │ ├── Discounttest.php │ ├── Fieldenforcer.php │ ├── Mongodloidtest.php │ ├── MongodloidtestData │ │ ├── balances.json │ │ ├── counters.json │ │ ├── lines.json │ │ └── subscribers.json │ ├── Monthsdifftest.php │ ├── Plan.php │ ├── Rate.php │ ├── Ratetest.php │ ├── Rateusage.php │ ├── SetUp.php │ ├── Subscriber.php │ ├── Subscriberservice.php │ ├── Tariff.php │ ├── Taxmappingtest.php │ ├── TaxmappingtestData │ │ ├── balances.json │ │ ├── config.json │ │ ├── discounts.json │ │ ├── lines.json │ │ ├── plans.json │ │ ├── rates.json │ │ ├── services.json │ │ ├── subscribers.json │ │ └── taxes.json │ ├── TestWrapper.php │ ├── Updaterowt.php │ ├── Wallet.php │ ├── conf │ │ ├── allow_premature_run.ini │ │ ├── charge_included_service.ini │ │ ├── charge_not_included_service.ini │ │ ├── multi_day_cycle_false.ini │ │ ├── not_allow_premature_run.ini │ │ └── process_time_offset.ini │ ├── data │ │ ├── balances.json │ │ ├── billing_cycle.json │ │ ├── billrun.json │ │ ├── config.json │ │ ├── lines.json │ │ ├── plans.json │ │ ├── rates.json │ │ ├── rebalance_queue.json │ │ ├── services.json │ │ ├── subscribers.json │ │ └── taxes.json │ └── discounttestData │ │ ├── discountData.php │ │ └── discountTestCases.php ├── Zend │ ├── Auth.php │ ├── Auth │ │ ├── Adapter │ │ │ ├── DbTable.php │ │ │ ├── Digest.php │ │ │ ├── Exception.php │ │ │ ├── Http.php │ │ │ ├── Http │ │ │ │ └── Resolver │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Interface.php │ │ │ ├── InfoCard.php │ │ │ ├── Interface.php │ │ │ ├── Ldap.php │ │ │ ├── MongoDb.php │ │ │ └── OpenId.php │ │ ├── Exception.php │ │ ├── Result.php │ │ └── Storage │ │ │ ├── Exception.php │ │ │ ├── Interface.php │ │ │ ├── NonPersistent.php │ │ │ ├── Session.php │ │ │ └── Yaf.php │ ├── Barcode.php │ ├── Barcode │ │ ├── Exception.php │ │ ├── Object │ │ │ ├── Code128.php │ │ │ ├── Code25.php │ │ │ ├── Code25interleaved.php │ │ │ ├── Code39.php │ │ │ ├── Ean13.php │ │ │ ├── Ean2.php │ │ │ ├── Ean5.php │ │ │ ├── Ean8.php │ │ │ ├── Error.php │ │ │ ├── Exception.php │ │ │ ├── Identcode.php │ │ │ ├── Itf14.php │ │ │ ├── Leitcode.php │ │ │ ├── ObjectAbstract.php │ │ │ ├── Planet.php │ │ │ ├── Postnet.php │ │ │ ├── Royalmail.php │ │ │ ├── Upca.php │ │ │ └── Upce.php │ │ └── Renderer │ │ │ ├── Exception.php │ │ │ ├── Image.php │ │ │ ├── Pdf.php │ │ │ ├── RendererAbstract.php │ │ │ └── Svg.php │ ├── Cache.php │ ├── Cache │ │ ├── Backend.php │ │ ├── Backend │ │ │ ├── Apc.php │ │ │ ├── BlackHole.php │ │ │ ├── ExtendedInterface.php │ │ │ ├── File.php │ │ │ ├── Interface.php │ │ │ ├── Libmemcached.php │ │ │ ├── Memcached.php │ │ │ ├── Sqlite.php │ │ │ ├── Static.php │ │ │ ├── Test.php │ │ │ ├── TwoLevels.php │ │ │ ├── WinCache.php │ │ │ ├── Xcache.php │ │ │ ├── ZendPlatform.php │ │ │ ├── ZendServer.php │ │ │ └── ZendServer │ │ │ │ ├── Disk.php │ │ │ │ └── ShMem.php │ │ ├── Core.php │ │ ├── Exception.php │ │ ├── Frontend │ │ │ ├── Capture.php │ │ │ ├── Class.php │ │ │ ├── File.php │ │ │ ├── Function.php │ │ │ ├── Output.php │ │ │ └── Page.php │ │ └── Manager.php │ ├── Console │ │ ├── Getopt.php │ │ └── Getopt │ │ │ └── Exception.php │ ├── Currency.php │ ├── Currency │ │ ├── CurrencyInterface.php │ │ └── Exception.php │ ├── Date.php │ ├── Date │ │ ├── Cities.php │ │ ├── DateObject.php │ │ └── Exception.php │ ├── Db.php │ ├── Db │ │ ├── Adapter │ │ │ ├── Abstract.php │ │ │ ├── Db2.php │ │ │ ├── Db2 │ │ │ │ └── Exception.php │ │ │ ├── Exception.php │ │ │ ├── Mysqli.php │ │ │ ├── Mysqli │ │ │ │ └── Exception.php │ │ │ ├── Oracle.php │ │ │ ├── Oracle │ │ │ │ └── Exception.php │ │ │ ├── Pdo │ │ │ │ ├── Abstract.php │ │ │ │ ├── Ibm.php │ │ │ │ ├── Ibm │ │ │ │ │ ├── Db2.php │ │ │ │ │ └── Ids.php │ │ │ │ ├── Mssql.php │ │ │ │ ├── Mysql.php │ │ │ │ ├── Oci.php │ │ │ │ ├── Pgsql.php │ │ │ │ └── Sqlite.php │ │ │ ├── Sqlsrv.php │ │ │ └── Sqlsrv │ │ │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Expr.php │ │ ├── Profiler.php │ │ ├── Profiler │ │ │ ├── Exception.php │ │ │ ├── Firebug.php │ │ │ └── Query.php │ │ ├── Select.php │ │ ├── Select │ │ │ └── Exception.php │ │ ├── Statement.php │ │ ├── Statement │ │ │ ├── Db2.php │ │ │ ├── Db2 │ │ │ │ └── Exception.php │ │ │ ├── Exception.php │ │ │ ├── Interface.php │ │ │ ├── Mysqli.php │ │ │ ├── Mysqli │ │ │ │ └── Exception.php │ │ │ ├── Oracle.php │ │ │ ├── Oracle │ │ │ │ └── Exception.php │ │ │ ├── Pdo.php │ │ │ ├── Pdo │ │ │ │ ├── Ibm.php │ │ │ │ └── Oci.php │ │ │ ├── Sqlsrv.php │ │ │ └── Sqlsrv │ │ │ │ └── Exception.php │ │ ├── Table.php │ │ └── Table │ │ │ ├── Abstract.php │ │ │ ├── Definition.php │ │ │ ├── Exception.php │ │ │ ├── Row.php │ │ │ ├── Row │ │ │ ├── Abstract.php │ │ │ └── Exception.php │ │ │ ├── Rowset.php │ │ │ ├── Rowset │ │ │ ├── Abstract.php │ │ │ └── Exception.php │ │ │ ├── Select.php │ │ │ └── Select │ │ │ └── Exception.php │ ├── Exception.php │ ├── Filter.php │ ├── Filter │ │ ├── Alnum.php │ │ ├── Alpha.php │ │ ├── BaseName.php │ │ ├── Boolean.php │ │ ├── Callback.php │ │ ├── Compress.php │ │ ├── Compress │ │ │ ├── Bz2.php │ │ │ ├── CompressAbstract.php │ │ │ ├── CompressInterface.php │ │ │ ├── Gz.php │ │ │ ├── Lzf.php │ │ │ ├── Rar.php │ │ │ ├── Tar.php │ │ │ └── Zip.php │ │ ├── Decompress.php │ │ ├── Decrypt.php │ │ ├── Digits.php │ │ ├── Dir.php │ │ ├── Encrypt.php │ │ ├── Encrypt │ │ │ ├── Interface.php │ │ │ ├── Mcrypt.php │ │ │ └── Openssl.php │ │ ├── Exception.php │ │ ├── File │ │ │ ├── Decrypt.php │ │ │ ├── Encrypt.php │ │ │ ├── LowerCase.php │ │ │ ├── Rename.php │ │ │ └── UpperCase.php │ │ ├── HtmlEntities.php │ │ ├── Inflector.php │ │ ├── Input.php │ │ ├── Int.php │ │ ├── Interface.php │ │ ├── LocalizedToNormalized.php │ │ ├── NormalizedToLocalized.php │ │ ├── Null.php │ │ ├── PregReplace.php │ │ ├── RealPath.php │ │ ├── StringToLower.php │ │ ├── StringToUpper.php │ │ ├── StringTrim.php │ │ ├── StripNewlines.php │ │ ├── StripTags.php │ │ └── Word │ │ │ ├── CamelCaseToDash.php │ │ │ ├── CamelCaseToSeparator.php │ │ │ ├── CamelCaseToUnderscore.php │ │ │ ├── DashToCamelCase.php │ │ │ ├── DashToSeparator.php │ │ │ ├── DashToUnderscore.php │ │ │ ├── Separator │ │ │ └── Abstract.php │ │ │ ├── SeparatorToCamelCase.php │ │ │ ├── SeparatorToDash.php │ │ │ ├── SeparatorToSeparator.php │ │ │ ├── UnderscoreToCamelCase.php │ │ │ ├── UnderscoreToDash.php │ │ │ └── UnderscoreToSeparator.php │ ├── Form.php │ ├── Form │ │ ├── Decorator │ │ │ ├── Abstract.php │ │ │ ├── Callback.php │ │ │ ├── Captcha.php │ │ │ ├── Captcha │ │ │ │ ├── ReCaptcha.php │ │ │ │ └── Word.php │ │ │ ├── Description.php │ │ │ ├── DtDdWrapper.php │ │ │ ├── Errors.php │ │ │ ├── Exception.php │ │ │ ├── Fieldset.php │ │ │ ├── File.php │ │ │ ├── Form.php │ │ │ ├── FormElements.php │ │ │ ├── FormErrors.php │ │ │ ├── HtmlTag.php │ │ │ ├── Image.php │ │ │ ├── Interface.php │ │ │ ├── Label.php │ │ │ ├── Marker │ │ │ │ └── File │ │ │ │ │ └── Interface.php │ │ │ ├── PrepareElements.php │ │ │ ├── Tooltip.php │ │ │ ├── ViewHelper.php │ │ │ └── ViewScript.php │ │ ├── DisplayGroup.php │ │ ├── Element.php │ │ ├── Element │ │ │ ├── Button.php │ │ │ ├── Captcha.php │ │ │ ├── Checkbox.php │ │ │ ├── Exception.php │ │ │ ├── File.php │ │ │ ├── Hash.php │ │ │ ├── Hidden.php │ │ │ ├── Image.php │ │ │ ├── Multi.php │ │ │ ├── MultiCheckbox.php │ │ │ ├── Multiselect.php │ │ │ ├── Note.php │ │ │ ├── Password.php │ │ │ ├── Radio.php │ │ │ ├── Reset.php │ │ │ ├── Select.php │ │ │ ├── Submit.php │ │ │ ├── Text.php │ │ │ ├── Textarea.php │ │ │ └── Xhtml.php │ │ ├── Exception.php │ │ └── SubForm.php │ ├── Ftp.php │ ├── Ftp │ │ ├── Directory.php │ │ ├── Directory │ │ │ ├── Exception.php │ │ │ ├── IDirectory.php │ │ │ ├── IIterator.php │ │ │ ├── Iterator.php │ │ │ ├── Nsn.php │ │ │ ├── NsnUnprocessedIterator.php │ │ │ ├── Unix.php │ │ │ └── Unknown.php │ │ ├── Exception.php │ │ ├── Factory.php │ │ ├── File.php │ │ ├── File │ │ │ ├── IFile.php │ │ │ └── NsnCDRFile.php │ │ └── Parser │ │ │ ├── IParser.php │ │ │ ├── NsnFtpParser.php │ │ │ ├── Unix.php │ │ │ └── Unknown.php │ ├── Http │ │ ├── Client.php │ │ ├── Client │ │ │ ├── Adapter │ │ │ │ ├── Curl.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Interface.php │ │ │ │ ├── Proxy.php │ │ │ │ ├── Socket.php │ │ │ │ ├── Stream.php │ │ │ │ └── Test.php │ │ │ └── Exception.php │ │ ├── Cookie.php │ │ ├── CookieJar.php │ │ ├── Exception.php │ │ ├── Header │ │ │ ├── Exception │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ └── RuntimeException.php │ │ │ └── SetCookie.php │ │ ├── Response.php │ │ ├── Response │ │ │ └── Stream.php │ │ ├── UserAgent.php │ │ └── UserAgent │ │ │ ├── AbstractDevice.php │ │ │ ├── Bot.php │ │ │ ├── Checker.php │ │ │ ├── Console.php │ │ │ ├── Desktop.php │ │ │ ├── Device.php │ │ │ ├── Email.php │ │ │ ├── Exception.php │ │ │ ├── Features │ │ │ ├── Adapter.php │ │ │ ├── Adapter │ │ │ │ ├── Browscap.php │ │ │ │ ├── DeviceAtlas.php │ │ │ │ └── TeraWurfl.php │ │ │ └── Exception.php │ │ │ ├── Feed.php │ │ │ ├── Mobile.php │ │ │ ├── Offline.php │ │ │ ├── Probe.php │ │ │ ├── Spam.php │ │ │ ├── Storage.php │ │ │ ├── Storage │ │ │ ├── Exception.php │ │ │ ├── NonPersistent.php │ │ │ └── Session.php │ │ │ ├── Text.php │ │ │ └── Validator.php │ ├── Json.php │ ├── Json │ │ ├── Decoder.php │ │ ├── Encoder.php │ │ ├── Exception.php │ │ ├── Expr.php │ │ ├── Server.php │ │ └── Server │ │ │ ├── Cache.php │ │ │ ├── Error.php │ │ │ ├── Exception.php │ │ │ ├── Request.php │ │ │ ├── Request │ │ │ └── Http.php │ │ │ ├── Response.php │ │ │ ├── Response │ │ │ └── Http.php │ │ │ ├── Smd.php │ │ │ └── Smd │ │ │ └── Service.php │ ├── Loader.php │ ├── Locale.php │ ├── Locale │ │ ├── Data.php │ │ ├── Data │ │ │ ├── Translation.php │ │ │ ├── aa.xml │ │ │ ├── aa_DJ.xml │ │ │ ├── aa_ER.xml │ │ │ ├── aa_ER_SAAHO.xml │ │ │ ├── aa_ET.xml │ │ │ ├── af.xml │ │ │ ├── af_NA.xml │ │ │ ├── af_ZA.xml │ │ │ ├── ak.xml │ │ │ ├── ak_GH.xml │ │ │ ├── am.xml │ │ │ ├── am_ET.xml │ │ │ ├── ar.xml │ │ │ ├── ar_AE.xml │ │ │ ├── ar_BH.xml │ │ │ ├── ar_DZ.xml │ │ │ ├── ar_EG.xml │ │ │ ├── ar_IQ.xml │ │ │ ├── ar_JO.xml │ │ │ ├── ar_KW.xml │ │ │ ├── ar_LB.xml │ │ │ ├── ar_LY.xml │ │ │ ├── ar_MA.xml │ │ │ ├── ar_OM.xml │ │ │ ├── ar_QA.xml │ │ │ ├── ar_SA.xml │ │ │ ├── ar_SD.xml │ │ │ ├── ar_SY.xml │ │ │ ├── ar_TN.xml │ │ │ ├── ar_YE.xml │ │ │ ├── as.xml │ │ │ ├── as_IN.xml │ │ │ ├── az.xml │ │ │ ├── az_AZ.xml │ │ │ ├── az_Cyrl.xml │ │ │ ├── az_Cyrl_AZ.xml │ │ │ ├── az_Latn.xml │ │ │ ├── az_Latn_AZ.xml │ │ │ ├── be.xml │ │ │ ├── be_BY.xml │ │ │ ├── bg.xml │ │ │ ├── bg_BG.xml │ │ │ ├── bn.xml │ │ │ ├── bn_BD.xml │ │ │ ├── bn_IN.xml │ │ │ ├── bo.xml │ │ │ ├── bo_CN.xml │ │ │ ├── bo_IN.xml │ │ │ ├── bs.xml │ │ │ ├── bs_BA.xml │ │ │ ├── byn.xml │ │ │ ├── byn_ER.xml │ │ │ ├── ca.xml │ │ │ ├── ca_ES.xml │ │ │ ├── cch.xml │ │ │ ├── cch_NG.xml │ │ │ ├── characters.xml │ │ │ ├── cop.xml │ │ │ ├── cs.xml │ │ │ ├── cs_CZ.xml │ │ │ ├── cy.xml │ │ │ ├── cy_GB.xml │ │ │ ├── da.xml │ │ │ ├── da_DK.xml │ │ │ ├── de.xml │ │ │ ├── de_AT.xml │ │ │ ├── de_BE.xml │ │ │ ├── de_CH.xml │ │ │ ├── de_DE.xml │ │ │ ├── de_LI.xml │ │ │ ├── de_LU.xml │ │ │ ├── dv.xml │ │ │ ├── dv_MV.xml │ │ │ ├── dz.xml │ │ │ ├── dz_BT.xml │ │ │ ├── ee.xml │ │ │ ├── ee_GH.xml │ │ │ ├── ee_TG.xml │ │ │ ├── el.xml │ │ │ ├── el_CY.xml │ │ │ ├── el_GR.xml │ │ │ ├── el_POLYTON.xml │ │ │ ├── en.xml │ │ │ ├── en_AS.xml │ │ │ ├── en_AU.xml │ │ │ ├── en_BE.xml │ │ │ ├── en_BW.xml │ │ │ ├── en_BZ.xml │ │ │ ├── en_CA.xml │ │ │ ├── en_Dsrt.xml │ │ │ ├── en_Dsrt_US.xml │ │ │ ├── en_GB.xml │ │ │ ├── en_GU.xml │ │ │ ├── en_HK.xml │ │ │ ├── en_IE.xml │ │ │ ├── en_IN.xml │ │ │ ├── en_JM.xml │ │ │ ├── en_MH.xml │ │ │ ├── en_MP.xml │ │ │ ├── en_MT.xml │ │ │ ├── en_NA.xml │ │ │ ├── en_NZ.xml │ │ │ ├── en_PH.xml │ │ │ ├── en_PK.xml │ │ │ ├── en_SG.xml │ │ │ ├── en_Shaw.xml │ │ │ ├── en_TT.xml │ │ │ ├── en_UM.xml │ │ │ ├── en_US.xml │ │ │ ├── en_US_POSIX.xml │ │ │ ├── en_VI.xml │ │ │ ├── en_ZA.xml │ │ │ ├── en_ZW.xml │ │ │ ├── eo.xml │ │ │ ├── es.xml │ │ │ ├── es_AR.xml │ │ │ ├── es_BO.xml │ │ │ ├── es_CL.xml │ │ │ ├── es_CO.xml │ │ │ ├── es_CR.xml │ │ │ ├── es_DO.xml │ │ │ ├── es_EC.xml │ │ │ ├── es_ES.xml │ │ │ ├── es_GT.xml │ │ │ ├── es_HN.xml │ │ │ ├── es_MX.xml │ │ │ ├── es_NI.xml │ │ │ ├── es_PA.xml │ │ │ ├── es_PE.xml │ │ │ ├── es_PR.xml │ │ │ ├── es_PY.xml │ │ │ ├── es_SV.xml │ │ │ ├── es_US.xml │ │ │ ├── es_UY.xml │ │ │ ├── es_VE.xml │ │ │ ├── et.xml │ │ │ ├── et_EE.xml │ │ │ ├── eu.xml │ │ │ ├── eu_ES.xml │ │ │ ├── fa.xml │ │ │ ├── fa_AF.xml │ │ │ ├── fa_IR.xml │ │ │ ├── fi.xml │ │ │ ├── fi_FI.xml │ │ │ ├── fil.xml │ │ │ ├── fil_PH.xml │ │ │ ├── fo.xml │ │ │ ├── fo_FO.xml │ │ │ ├── fr.xml │ │ │ ├── fr_BE.xml │ │ │ ├── fr_CA.xml │ │ │ ├── fr_CH.xml │ │ │ ├── fr_FR.xml │ │ │ ├── fr_LU.xml │ │ │ ├── fr_MC.xml │ │ │ ├── fr_SN.xml │ │ │ ├── fur.xml │ │ │ ├── fur_IT.xml │ │ │ ├── ga.xml │ │ │ ├── ga_IE.xml │ │ │ ├── gaa.xml │ │ │ ├── gaa_GH.xml │ │ │ ├── gez.xml │ │ │ ├── gez_ER.xml │ │ │ ├── gez_ET.xml │ │ │ ├── gl.xml │ │ │ ├── gl_ES.xml │ │ │ ├── gsw.xml │ │ │ ├── gsw_CH.xml │ │ │ ├── gu.xml │ │ │ ├── gu_IN.xml │ │ │ ├── gv.xml │ │ │ ├── gv_GB.xml │ │ │ ├── ha.xml │ │ │ ├── ha_Arab.xml │ │ │ ├── ha_Arab_NG.xml │ │ │ ├── ha_Arab_SD.xml │ │ │ ├── ha_GH.xml │ │ │ ├── ha_Latn.xml │ │ │ ├── ha_Latn_GH.xml │ │ │ ├── ha_Latn_NE.xml │ │ │ ├── ha_Latn_NG.xml │ │ │ ├── ha_NE.xml │ │ │ ├── ha_NG.xml │ │ │ ├── ha_SD.xml │ │ │ ├── haw.xml │ │ │ ├── haw_US.xml │ │ │ ├── he.xml │ │ │ ├── he_IL.xml │ │ │ ├── hi.xml │ │ │ ├── hi_IN.xml │ │ │ ├── hr.xml │ │ │ ├── hr_HR.xml │ │ │ ├── hu.xml │ │ │ ├── hu_HU.xml │ │ │ ├── hy.xml │ │ │ ├── hy_AM.xml │ │ │ ├── hy_AM_REVISED.xml │ │ │ ├── ia.xml │ │ │ ├── id.xml │ │ │ ├── id_ID.xml │ │ │ ├── ig.xml │ │ │ ├── ig_NG.xml │ │ │ ├── ii.xml │ │ │ ├── ii_CN.xml │ │ │ ├── in.xml │ │ │ ├── is.xml │ │ │ ├── is_IS.xml │ │ │ ├── it.xml │ │ │ ├── it_CH.xml │ │ │ ├── it_IT.xml │ │ │ ├── iu.xml │ │ │ ├── iw.xml │ │ │ ├── ja.xml │ │ │ ├── ja_JP.xml │ │ │ ├── ka.xml │ │ │ ├── ka_GE.xml │ │ │ ├── kaj.xml │ │ │ ├── kaj_NG.xml │ │ │ ├── kam.xml │ │ │ ├── kam_KE.xml │ │ │ ├── kcg.xml │ │ │ ├── kcg_NG.xml │ │ │ ├── kfo.xml │ │ │ ├── kfo_CI.xml │ │ │ ├── kk.xml │ │ │ ├── kk_Cyrl.xml │ │ │ ├── kk_Cyrl_KZ.xml │ │ │ ├── kk_KZ.xml │ │ │ ├── kl.xml │ │ │ ├── kl_GL.xml │ │ │ ├── km.xml │ │ │ ├── km_KH.xml │ │ │ ├── kn.xml │ │ │ ├── kn_IN.xml │ │ │ ├── ko.xml │ │ │ ├── ko_KR.xml │ │ │ ├── kok.xml │ │ │ ├── kok_IN.xml │ │ │ ├── kpe.xml │ │ │ ├── kpe_GN.xml │ │ │ ├── kpe_LR.xml │ │ │ ├── ku.xml │ │ │ ├── ku_Arab.xml │ │ │ ├── ku_Arab_IQ.xml │ │ │ ├── ku_Arab_IR.xml │ │ │ ├── ku_Arab_SY.xml │ │ │ ├── ku_IQ.xml │ │ │ ├── ku_IR.xml │ │ │ ├── ku_Latn.xml │ │ │ ├── ku_Latn_TR.xml │ │ │ ├── ku_SY.xml │ │ │ ├── ku_TR.xml │ │ │ ├── kw.xml │ │ │ ├── kw_GB.xml │ │ │ ├── ky.xml │ │ │ ├── ky_KG.xml │ │ │ ├── likelySubtags.xml │ │ │ ├── ln.xml │ │ │ ├── ln_CD.xml │ │ │ ├── ln_CG.xml │ │ │ ├── lo.xml │ │ │ ├── lo_LA.xml │ │ │ ├── lt.xml │ │ │ ├── lt_LT.xml │ │ │ ├── lv.xml │ │ │ ├── lv_LV.xml │ │ │ ├── metazoneInfo.xml │ │ │ ├── mk.xml │ │ │ ├── mk_MK.xml │ │ │ ├── ml.xml │ │ │ ├── ml_IN.xml │ │ │ ├── mn.xml │ │ │ ├── mn_CN.xml │ │ │ ├── mn_Cyrl.xml │ │ │ ├── mn_Cyrl_MN.xml │ │ │ ├── mn_MN.xml │ │ │ ├── mn_Mong.xml │ │ │ ├── mn_Mong_CN.xml │ │ │ ├── mo.xml │ │ │ ├── mr.xml │ │ │ ├── mr_IN.xml │ │ │ ├── ms.xml │ │ │ ├── ms_BN.xml │ │ │ ├── ms_MY.xml │ │ │ ├── mt.xml │ │ │ ├── mt_MT.xml │ │ │ ├── my.xml │ │ │ ├── my_MM.xml │ │ │ ├── nb.xml │ │ │ ├── nb_NO.xml │ │ │ ├── nds.xml │ │ │ ├── nds_DE.xml │ │ │ ├── ne.xml │ │ │ ├── ne_IN.xml │ │ │ ├── ne_NP.xml │ │ │ ├── nl.xml │ │ │ ├── nl_BE.xml │ │ │ ├── nl_NL.xml │ │ │ ├── nn.xml │ │ │ ├── nn_NO.xml │ │ │ ├── no.xml │ │ │ ├── nr.xml │ │ │ ├── nr_ZA.xml │ │ │ ├── nso.xml │ │ │ ├── nso_ZA.xml │ │ │ ├── numberingSystems.xml │ │ │ ├── ny.xml │ │ │ ├── ny_MW.xml │ │ │ ├── oc.xml │ │ │ ├── oc_FR.xml │ │ │ ├── om.xml │ │ │ ├── om_ET.xml │ │ │ ├── om_KE.xml │ │ │ ├── or.xml │ │ │ ├── or_IN.xml │ │ │ ├── pa.xml │ │ │ ├── pa_Arab.xml │ │ │ ├── pa_Arab_PK.xml │ │ │ ├── pa_Guru.xml │ │ │ ├── pa_Guru_IN.xml │ │ │ ├── pa_IN.xml │ │ │ ├── pa_PK.xml │ │ │ ├── pl.xml │ │ │ ├── pl_PL.xml │ │ │ ├── postalCodeData.xml │ │ │ ├── ps.xml │ │ │ ├── ps_AF.xml │ │ │ ├── pt.xml │ │ │ ├── pt_BR.xml │ │ │ ├── pt_PT.xml │ │ │ ├── ro.xml │ │ │ ├── ro_MD.xml │ │ │ ├── ro_RO.xml │ │ │ ├── root.xml │ │ │ ├── ru.xml │ │ │ ├── ru_RU.xml │ │ │ ├── ru_UA.xml │ │ │ ├── rw.xml │ │ │ ├── rw_RW.xml │ │ │ ├── sa.xml │ │ │ ├── sa_IN.xml │ │ │ ├── se.xml │ │ │ ├── se_FI.xml │ │ │ ├── se_NO.xml │ │ │ ├── sh.xml │ │ │ ├── sh_BA.xml │ │ │ ├── sh_CS.xml │ │ │ ├── sh_YU.xml │ │ │ ├── si.xml │ │ │ ├── si_LK.xml │ │ │ ├── sid.xml │ │ │ ├── sid_ET.xml │ │ │ ├── sk.xml │ │ │ ├── sk_SK.xml │ │ │ ├── sl.xml │ │ │ ├── sl_SI.xml │ │ │ ├── so.xml │ │ │ ├── so_DJ.xml │ │ │ ├── so_ET.xml │ │ │ ├── so_KE.xml │ │ │ ├── so_SO.xml │ │ │ ├── sq.xml │ │ │ ├── sq_AL.xml │ │ │ ├── sr.xml │ │ │ ├── sr_BA.xml │ │ │ ├── sr_CS.xml │ │ │ ├── sr_Cyrl.xml │ │ │ ├── sr_Cyrl_BA.xml │ │ │ ├── sr_Cyrl_CS.xml │ │ │ ├── sr_Cyrl_ME.xml │ │ │ ├── sr_Cyrl_RS.xml │ │ │ ├── sr_Cyrl_YU.xml │ │ │ ├── sr_Latn.xml │ │ │ ├── sr_Latn_BA.xml │ │ │ ├── sr_Latn_CS.xml │ │ │ ├── sr_Latn_ME.xml │ │ │ ├── sr_Latn_RS.xml │ │ │ ├── sr_Latn_YU.xml │ │ │ ├── sr_ME.xml │ │ │ ├── sr_RS.xml │ │ │ ├── sr_YU.xml │ │ │ ├── ss.xml │ │ │ ├── ss_SZ.xml │ │ │ ├── ss_ZA.xml │ │ │ ├── st.xml │ │ │ ├── st_LS.xml │ │ │ ├── st_ZA.xml │ │ │ ├── supplementalData.xml │ │ │ ├── sv.xml │ │ │ ├── sv_FI.xml │ │ │ ├── sv_SE.xml │ │ │ ├── sw.xml │ │ │ ├── sw_KE.xml │ │ │ ├── sw_TZ.xml │ │ │ ├── syr.xml │ │ │ ├── syr_SY.xml │ │ │ ├── ta.xml │ │ │ ├── ta_IN.xml │ │ │ ├── te.xml │ │ │ ├── te_IN.xml │ │ │ ├── telephoneCodeData.xml │ │ │ ├── tg.xml │ │ │ ├── tg_Cyrl.xml │ │ │ ├── tg_Cyrl_TJ.xml │ │ │ ├── tg_TJ.xml │ │ │ ├── th.xml │ │ │ ├── th_TH.xml │ │ │ ├── ti.xml │ │ │ ├── ti_ER.xml │ │ │ ├── ti_ET.xml │ │ │ ├── tig.xml │ │ │ ├── tig_ER.xml │ │ │ ├── tl.xml │ │ │ ├── tn.xml │ │ │ ├── tn_ZA.xml │ │ │ ├── to.xml │ │ │ ├── to_TO.xml │ │ │ ├── tr.xml │ │ │ ├── tr_TR.xml │ │ │ ├── trv.xml │ │ │ ├── trv_TW.xml │ │ │ ├── ts.xml │ │ │ ├── ts_ZA.xml │ │ │ ├── tt.xml │ │ │ ├── tt_RU.xml │ │ │ ├── ug.xml │ │ │ ├── ug_Arab.xml │ │ │ ├── ug_Arab_CN.xml │ │ │ ├── ug_CN.xml │ │ │ ├── uk.xml │ │ │ ├── uk_UA.xml │ │ │ ├── ur.xml │ │ │ ├── ur_IN.xml │ │ │ ├── ur_PK.xml │ │ │ ├── uz.xml │ │ │ ├── uz_AF.xml │ │ │ ├── uz_Arab.xml │ │ │ ├── uz_Arab_AF.xml │ │ │ ├── uz_Cyrl.xml │ │ │ ├── uz_Cyrl_UZ.xml │ │ │ ├── uz_Latn.xml │ │ │ ├── uz_Latn_UZ.xml │ │ │ ├── uz_UZ.xml │ │ │ ├── ve.xml │ │ │ ├── ve_ZA.xml │ │ │ ├── vi.xml │ │ │ ├── vi_VN.xml │ │ │ ├── wal.xml │ │ │ ├── wal_ET.xml │ │ │ ├── wo.xml │ │ │ ├── wo_Latn.xml │ │ │ ├── wo_Latn_SN.xml │ │ │ ├── wo_SN.xml │ │ │ ├── xh.xml │ │ │ ├── xh_ZA.xml │ │ │ ├── yo.xml │ │ │ ├── yo_NG.xml │ │ │ ├── zh.xml │ │ │ ├── zh_CN.xml │ │ │ ├── zh_HK.xml │ │ │ ├── zh_Hans.xml │ │ │ ├── zh_Hans_CN.xml │ │ │ ├── zh_Hans_HK.xml │ │ │ ├── zh_Hans_MO.xml │ │ │ ├── zh_Hans_SG.xml │ │ │ ├── zh_Hant.xml │ │ │ ├── zh_Hant_HK.xml │ │ │ ├── zh_Hant_MO.xml │ │ │ ├── zh_Hant_TW.xml │ │ │ ├── zh_MO.xml │ │ │ ├── zh_SG.xml │ │ │ ├── zh_TW.xml │ │ │ ├── zu.xml │ │ │ └── zu_ZA.xml │ │ ├── Exception.php │ │ ├── Format.php │ │ ├── Math.php │ │ └── Math │ │ │ ├── Exception.php │ │ │ └── PhpMath.php │ ├── Log.php │ ├── Log │ │ ├── Exception.php │ │ ├── FactoryInterface.php │ │ ├── Filter │ │ │ ├── Abstract.php │ │ │ ├── Interface.php │ │ │ ├── Message.php │ │ │ ├── Priority.php │ │ │ └── Suppress.php │ │ ├── Formatter │ │ │ ├── Abstract.php │ │ │ ├── Firebug.php │ │ │ ├── Interface.php │ │ │ ├── Simple.php │ │ │ └── Xml.php │ │ └── Writer │ │ │ ├── Abstract.php │ │ │ ├── Db.php │ │ │ ├── Firebug.php │ │ │ ├── Mail.php │ │ │ ├── Mock.php │ │ │ ├── MongoDb.php │ │ │ ├── Null.php │ │ │ ├── Smtp.php │ │ │ ├── Stream.php │ │ │ ├── Syslog.php │ │ │ └── ZendMonitor.php │ ├── Mail.php │ ├── Mail │ │ ├── Exception.php │ │ ├── Message.php │ │ ├── Message │ │ │ ├── File.php │ │ │ └── Interface.php │ │ ├── Part.php │ │ ├── Part │ │ │ ├── File.php │ │ │ └── Interface.php │ │ ├── Protocol │ │ │ ├── Abstract.php │ │ │ ├── Exception.php │ │ │ ├── Imap.php │ │ │ ├── Pop3.php │ │ │ ├── Smtp.php │ │ │ └── Smtp │ │ │ │ └── Auth │ │ │ │ ├── Crammd5.php │ │ │ │ ├── Login.php │ │ │ │ └── Plain.php │ │ ├── Storage.php │ │ ├── Storage │ │ │ ├── Abstract.php │ │ │ ├── Exception.php │ │ │ ├── Folder.php │ │ │ ├── Folder │ │ │ │ ├── Interface.php │ │ │ │ ├── Maildir.php │ │ │ │ └── Mbox.php │ │ │ ├── Imap.php │ │ │ ├── Maildir.php │ │ │ ├── Mbox.php │ │ │ ├── Pop3.php │ │ │ └── Writable │ │ │ │ ├── Interface.php │ │ │ │ └── Maildir.php │ │ └── Transport │ │ │ ├── Abstract.php │ │ │ ├── Exception.php │ │ │ ├── File.php │ │ │ ├── Sendmail.php │ │ │ └── Smtp.php │ ├── Mime.php │ ├── Mime │ │ ├── Decode.php │ │ ├── Exception.php │ │ ├── Message.php │ │ └── Part.php │ ├── Pdf.php │ ├── Pdf │ │ ├── Action.php │ │ ├── Action │ │ │ ├── GoTo.php │ │ │ ├── GoTo3DView.php │ │ │ ├── GoToE.php │ │ │ ├── GoToR.php │ │ │ ├── Hide.php │ │ │ ├── ImportData.php │ │ │ ├── JavaScript.php │ │ │ ├── Launch.php │ │ │ ├── Movie.php │ │ │ ├── Named.php │ │ │ ├── Rendition.php │ │ │ ├── ResetForm.php │ │ │ ├── SetOCGState.php │ │ │ ├── Sound.php │ │ │ ├── SubmitForm.php │ │ │ ├── Thread.php │ │ │ ├── Trans.php │ │ │ ├── URI.php │ │ │ └── Unknown.php │ │ ├── Annotation.php │ │ ├── Annotation │ │ │ ├── FileAttachment.php │ │ │ ├── Link.php │ │ │ ├── Markup.php │ │ │ └── Text.php │ │ ├── Canvas.php │ │ ├── Canvas │ │ │ ├── Abstract.php │ │ │ └── Interface.php │ │ ├── Cmap.php │ │ ├── Cmap │ │ │ ├── ByteEncoding.php │ │ │ ├── ByteEncoding │ │ │ │ └── Static.php │ │ │ ├── SegmentToDelta.php │ │ │ └── TrimmedTable.php │ │ ├── Color.php │ │ ├── Color │ │ │ ├── Cmyk.php │ │ │ ├── GrayScale.php │ │ │ ├── Html.php │ │ │ └── Rgb.php │ │ ├── Destination.php │ │ ├── Destination │ │ │ ├── Explicit.php │ │ │ ├── Fit.php │ │ │ ├── FitBoundingBox.php │ │ │ ├── FitBoundingBoxHorizontally.php │ │ │ ├── FitBoundingBoxVertically.php │ │ │ ├── FitHorizontally.php │ │ │ ├── FitRectangle.php │ │ │ ├── FitVertically.php │ │ │ ├── Named.php │ │ │ ├── Unknown.php │ │ │ └── Zoom.php │ │ ├── Element.php │ │ ├── Element │ │ │ ├── Array.php │ │ │ ├── Boolean.php │ │ │ ├── Dictionary.php │ │ │ ├── Name.php │ │ │ ├── Null.php │ │ │ ├── Numeric.php │ │ │ ├── Object.php │ │ │ ├── Object │ │ │ │ └── Stream.php │ │ │ ├── Reference.php │ │ │ ├── Reference │ │ │ │ ├── Context.php │ │ │ │ └── Table.php │ │ │ ├── Stream.php │ │ │ ├── String.php │ │ │ └── String │ │ │ │ └── Binary.php │ │ ├── ElementFactory.php │ │ ├── ElementFactory │ │ │ ├── Interface.php │ │ │ └── Proxy.php │ │ ├── Exception.php │ │ ├── FileParser.php │ │ ├── FileParser │ │ │ ├── Font.php │ │ │ ├── Font │ │ │ │ ├── OpenType.php │ │ │ │ └── OpenType │ │ │ │ │ └── TrueType.php │ │ │ ├── Image.php │ │ │ └── Image │ │ │ │ └── Png.php │ │ ├── FileParserDataSource.php │ │ ├── FileParserDataSource │ │ │ ├── File.php │ │ │ └── String.php │ │ ├── Filter │ │ │ ├── Ascii85.php │ │ │ ├── AsciiHex.php │ │ │ ├── Compression.php │ │ │ ├── Compression │ │ │ │ ├── Flate.php │ │ │ │ └── Lzw.php │ │ │ ├── Interface.php │ │ │ └── RunLength.php │ │ ├── Font.php │ │ ├── Image.php │ │ ├── NameTree.php │ │ ├── Outline.php │ │ ├── Outline │ │ │ ├── Created.php │ │ │ └── Loaded.php │ │ ├── Page.php │ │ ├── Parser.php │ │ ├── RecursivelyIteratableObjectsContainer.php │ │ ├── Resource.php │ │ ├── Resource │ │ │ ├── ContentStream.php │ │ │ ├── Extractor.php │ │ │ ├── Font.php │ │ │ ├── Font │ │ │ │ ├── CidFont.php │ │ │ │ ├── CidFont │ │ │ │ │ └── TrueType.php │ │ │ │ ├── Extracted.php │ │ │ │ ├── FontDescriptor.php │ │ │ │ ├── Simple.php │ │ │ │ ├── Simple │ │ │ │ │ ├── Parsed.php │ │ │ │ │ ├── Parsed │ │ │ │ │ │ └── TrueType.php │ │ │ │ │ ├── Standard.php │ │ │ │ │ └── Standard │ │ │ │ │ │ ├── Courier.php │ │ │ │ │ │ ├── CourierBold.php │ │ │ │ │ │ ├── CourierBoldOblique.php │ │ │ │ │ │ ├── CourierOblique.php │ │ │ │ │ │ ├── Helvetica.php │ │ │ │ │ │ ├── HelveticaBold.php │ │ │ │ │ │ ├── HelveticaBoldOblique.php │ │ │ │ │ │ ├── HelveticaOblique.php │ │ │ │ │ │ ├── Symbol.php │ │ │ │ │ │ ├── TimesBold.php │ │ │ │ │ │ ├── TimesBoldItalic.php │ │ │ │ │ │ ├── TimesItalic.php │ │ │ │ │ │ ├── TimesRoman.php │ │ │ │ │ │ └── ZapfDingbats.php │ │ │ │ └── Type0.php │ │ │ ├── GraphicsState.php │ │ │ ├── Image.php │ │ │ ├── Image │ │ │ │ ├── Jpeg.php │ │ │ │ ├── Png.php │ │ │ │ └── Tiff.php │ │ │ ├── ImageFactory.php │ │ │ └── Unified.php │ │ ├── StringParser.php │ │ ├── Style.php │ │ ├── Target.php │ │ ├── Trailer.php │ │ ├── Trailer │ │ │ ├── Generator.php │ │ │ └── Keeper.php │ │ └── UpdateInfoContainer.php │ ├── Registry.php │ ├── Server │ │ ├── Abstract.php │ │ ├── Cache.php │ │ ├── Definition.php │ │ ├── Exception.php │ │ ├── Interface.php │ │ ├── Method │ │ │ ├── Callback.php │ │ │ ├── Definition.php │ │ │ ├── Parameter.php │ │ │ └── Prototype.php │ │ ├── Reflection.php │ │ └── Reflection │ │ │ ├── Class.php │ │ │ ├── Exception.php │ │ │ ├── Function.php │ │ │ ├── Function │ │ │ └── Abstract.php │ │ │ ├── Method.php │ │ │ ├── Node.php │ │ │ ├── Parameter.php │ │ │ ├── Prototype.php │ │ │ └── ReturnValue.php │ ├── Session.php │ ├── Session │ │ ├── Abstract.php │ │ ├── Exception.php │ │ ├── Namespace.php │ │ ├── SaveHandler │ │ │ ├── DbTable.php │ │ │ ├── Exception.php │ │ │ └── Interface.php │ │ └── Validator │ │ │ ├── Abstract.php │ │ │ ├── HttpUserAgent.php │ │ │ └── Interface.php │ ├── Soap │ │ ├── AutoDiscover.php │ │ ├── AutoDiscover │ │ │ └── Exception.php │ │ ├── Client.php │ │ ├── Client │ │ │ ├── Common.php │ │ │ ├── DotNet.php │ │ │ ├── Exception.php │ │ │ └── Local.php │ │ ├── Server.php │ │ ├── Server │ │ │ ├── Exception.php │ │ │ └── Proxy.php │ │ ├── Wsdl.php │ │ └── Wsdl │ │ │ ├── Exception.php │ │ │ └── Strategy │ │ │ ├── Abstract.php │ │ │ ├── AnyType.php │ │ │ ├── ArrayOfTypeComplex.php │ │ │ ├── ArrayOfTypeSequence.php │ │ │ ├── Composite.php │ │ │ ├── DefaultComplexType.php │ │ │ └── Interface.php │ ├── Uri.php │ ├── Uri │ │ ├── Exception.php │ │ └── Http.php │ ├── Validate.php │ ├── Validate │ │ ├── Abstract.php │ │ ├── Alnum.php │ │ ├── Alpha.php │ │ ├── Barcode.php │ │ ├── Barcode │ │ │ ├── AdapterAbstract.php │ │ │ ├── AdapterInterface.php │ │ │ ├── Code25.php │ │ │ ├── Code25interleaved.php │ │ │ ├── Code39.php │ │ │ ├── Code39ext.php │ │ │ ├── Code93.php │ │ │ ├── Code93ext.php │ │ │ ├── Ean12.php │ │ │ ├── Ean13.php │ │ │ ├── Ean14.php │ │ │ ├── Ean18.php │ │ │ ├── Ean2.php │ │ │ ├── Ean5.php │ │ │ ├── Ean8.php │ │ │ ├── Gtin12.php │ │ │ ├── Gtin13.php │ │ │ ├── Gtin14.php │ │ │ ├── Identcode.php │ │ │ ├── Intelligentmail.php │ │ │ ├── Issn.php │ │ │ ├── Itf14.php │ │ │ ├── Leitcode.php │ │ │ ├── Planet.php │ │ │ ├── Postnet.php │ │ │ ├── Royalmail.php │ │ │ ├── Sscc.php │ │ │ ├── Upca.php │ │ │ └── Upce.php │ │ ├── Between.php │ │ ├── Callback.php │ │ ├── Ccnum.php │ │ ├── CreditCard.php │ │ ├── Date.php │ │ ├── Db │ │ │ ├── Abstract.php │ │ │ ├── NoRecordExists.php │ │ │ └── RecordExists.php │ │ ├── Digits.php │ │ ├── EmailAddress.php │ │ ├── Exception.php │ │ ├── File │ │ │ ├── Count.php │ │ │ ├── Crc32.php │ │ │ ├── ExcludeExtension.php │ │ │ ├── ExcludeMimeType.php │ │ │ ├── Exists.php │ │ │ ├── Extension.php │ │ │ ├── FilesSize.php │ │ │ ├── Hash.php │ │ │ ├── ImageSize.php │ │ │ ├── IsCompressed.php │ │ │ ├── IsImage.php │ │ │ ├── Md5.php │ │ │ ├── MimeType.php │ │ │ ├── NotExists.php │ │ │ ├── Sha1.php │ │ │ ├── Size.php │ │ │ ├── Upload.php │ │ │ └── WordCount.php │ │ ├── Float.php │ │ ├── GreaterThan.php │ │ ├── Hex.php │ │ ├── Hostname.php │ │ ├── Hostname │ │ │ ├── Biz.php │ │ │ ├── Cn.php │ │ │ ├── Com.php │ │ │ └── Jp.php │ │ ├── Iban.php │ │ ├── Identical.php │ │ ├── InArray.php │ │ ├── Int.php │ │ ├── Interface.php │ │ ├── Ip.php │ │ ├── Isbn.php │ │ ├── Ldap │ │ │ └── Dn.php │ │ ├── LessThan.php │ │ ├── NotEmpty.php │ │ ├── PostCode.php │ │ ├── Regex.php │ │ ├── Sitemap │ │ │ ├── Changefreq.php │ │ │ ├── Lastmod.php │ │ │ ├── Loc.php │ │ │ └── Priority.php │ │ └── StringLength.php │ ├── Version.php │ ├── View.php │ └── View │ │ ├── Abstract.php │ │ ├── Exception.php │ │ ├── Helper │ │ ├── Abstract.php │ │ ├── Action.php │ │ ├── BaseUrl.php │ │ ├── Currency.php │ │ ├── Cycle.php │ │ ├── DeclareVars.php │ │ ├── Doctype.php │ │ ├── Fieldset.php │ │ ├── Form.php │ │ ├── FormButton.php │ │ ├── FormCheckbox.php │ │ ├── FormElement.php │ │ ├── FormErrors.php │ │ ├── FormFile.php │ │ ├── FormHidden.php │ │ ├── FormImage.php │ │ ├── FormLabel.php │ │ ├── FormMultiCheckbox.php │ │ ├── FormNote.php │ │ ├── FormPassword.php │ │ ├── FormRadio.php │ │ ├── FormReset.php │ │ ├── FormSelect.php │ │ ├── FormSubmit.php │ │ ├── FormText.php │ │ ├── FormTextarea.php │ │ ├── Gravatar.php │ │ ├── HeadLink.php │ │ ├── HeadMeta.php │ │ ├── HeadScript.php │ │ ├── HeadStyle.php │ │ ├── HeadTitle.php │ │ ├── HtmlElement.php │ │ ├── HtmlFlash.php │ │ ├── HtmlList.php │ │ ├── HtmlObject.php │ │ ├── HtmlPage.php │ │ ├── HtmlQuicktime.php │ │ ├── InlineScript.php │ │ ├── Interface.php │ │ ├── Json.php │ │ ├── Layout.php │ │ ├── Navigation.php │ │ ├── Navigation │ │ │ ├── Breadcrumbs.php │ │ │ ├── Helper.php │ │ │ ├── HelperAbstract.php │ │ │ ├── Links.php │ │ │ ├── Menu.php │ │ │ └── Sitemap.php │ │ ├── PaginationControl.php │ │ ├── Partial.php │ │ ├── Partial │ │ │ └── Exception.php │ │ ├── PartialLoop.php │ │ ├── Placeholder.php │ │ ├── Placeholder │ │ │ ├── Container.php │ │ │ ├── Container │ │ │ │ ├── Abstract.php │ │ │ │ ├── Exception.php │ │ │ │ └── Standalone.php │ │ │ ├── Registry.php │ │ │ └── Registry │ │ │ │ └── Exception.php │ │ ├── RenderToPlaceholder.php │ │ ├── ServerUrl.php │ │ ├── Translate.php │ │ ├── Url.php │ │ └── UserAgent.php │ │ ├── Interface.php │ │ └── Stream.php ├── password_compat │ └── password.php ├── phpseclib │ ├── Crypt │ │ ├── AES.php │ │ ├── Base.php │ │ ├── Blowfish.php │ │ ├── DES.php │ │ ├── Hash.php │ │ ├── RC2.php │ │ ├── RC4.php │ │ ├── RSA.php │ │ ├── Random.php │ │ ├── Rijndael.php │ │ ├── TripleDES.php │ │ └── Twofish.php │ ├── File │ │ ├── ANSI.php │ │ ├── ASN1.php │ │ ├── ASN1 │ │ │ └── Element.php │ │ └── X509.php │ ├── Math │ │ └── BigInteger.php │ ├── Net │ │ ├── SCP.php │ │ ├── SFTP.php │ │ ├── SFTP │ │ │ └── Stream.php │ │ ├── SSH1.php │ │ └── SSH2.php │ ├── System │ │ └── SSH │ │ │ ├── Agent.php │ │ │ └── Agent │ │ │ └── Identity.php │ ├── bootstrap.php │ └── openssl.cnf └── stripe-php │ ├── .github │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── build.php │ ├── composer.json │ ├── data │ ├── ca-certificates.crt │ └── test.png │ ├── init.php │ ├── lib │ ├── Account.php │ ├── AlipayAccount.php │ ├── ApiRequestor.php │ ├── ApiResource.php │ ├── ApiResponse.php │ ├── ApplePayDomain.php │ ├── ApplicationFee.php │ ├── ApplicationFeeRefund.php │ ├── AttachedObject.php │ ├── Balance.php │ ├── BalanceTransaction.php │ ├── BankAccount.php │ ├── BitcoinReceiver.php │ ├── BitcoinTransaction.php │ ├── Card.php │ ├── Charge.php │ ├── Collection.php │ ├── CountrySpec.php │ ├── Coupon.php │ ├── Customer.php │ ├── Dispute.php │ ├── Error │ │ ├── Api.php │ │ ├── ApiConnection.php │ │ ├── Authentication.php │ │ ├── Base.php │ │ ├── Card.php │ │ ├── InvalidRequest.php │ │ ├── Permission.php │ │ └── RateLimit.php │ ├── Event.php │ ├── ExternalAccount.php │ ├── FileUpload.php │ ├── HttpClient │ │ ├── ClientInterface.php │ │ └── CurlClient.php │ ├── Invoice.php │ ├── InvoiceItem.php │ ├── JsonSerializable.php │ ├── Order.php │ ├── OrderReturn.php │ ├── Plan.php │ ├── Product.php │ ├── Recipient.php │ ├── Refund.php │ ├── SKU.php │ ├── SingletonApiResource.php │ ├── Source.php │ ├── Stripe.php │ ├── StripeObject.php │ ├── Subscription.php │ ├── SubscriptionItem.php │ ├── ThreeDSecure.php │ ├── Token.php │ ├── Transfer.php │ ├── TransferReversal.php │ └── Util │ │ ├── AutoPagingIterator.php │ │ ├── RequestOptions.php │ │ ├── Set.php │ │ └── Util.php │ ├── phpunit.no_autoload.xml │ ├── phpunit.xml │ └── tests │ ├── AccountTest.php │ ├── ApiRequestorTest.php │ ├── ApplePayDomainTest.php │ ├── ApplicationFeeRefundTest.php │ ├── ApplicationFeeTest.php │ ├── AuthenticationErrorTest.php │ ├── BalanceTest.php │ ├── BalanceTransactionTest.php │ ├── BankAccountTest.php │ ├── BitcoinReceiverTest.php │ ├── CardErrorTest.php │ ├── ChargeTest.php │ ├── CollectionTest.php │ ├── CountrySpecTest.php │ ├── CouponTest.php │ ├── CurlClientTest.php │ ├── CustomerTest.php │ ├── DiscountTest.php │ ├── DisputeTest.php │ ├── ErrorTest.php │ ├── ExternalAccountTest.php │ ├── FileUploadTest.php │ ├── InvalidRequestErrorTest.php │ ├── InvoiceTest.php │ ├── PermissionsErrorTest.php │ ├── PlanTest.php │ ├── ProductTest.php │ ├── RateLimitErrorTest.php │ ├── RecipientTest.php │ ├── RefundTest.php │ ├── RequestOptionsTest.php │ ├── SourceTest.php │ ├── StripeObjectTest.php │ ├── SubscriptionItemTest.php │ ├── SubscriptionTest.php │ ├── TestCase.php │ ├── ThreeDSecureTest.php │ ├── TokenTest.php │ ├── TransferReversalTest.php │ ├── TransferTest.php │ ├── UtilTest.php │ ├── bootstrap.no_autoload.php │ └── bootstrap.php ├── mongo ├── base │ ├── config.export │ └── taxes.export ├── create.ini ├── first_users.json ├── migration │ ├── old.js │ ├── script.js │ ├── version_56.js │ └── version_57.js ├── mongorc.js ├── override_configuration │ └── subscribers │ │ ├── set_external_subscribers_mode.js │ │ └── set_internal_subscribers_mode.js ├── pl │ ├── cards.csv │ ├── cards_sample.export │ ├── charging_plans.csv │ ├── config.export │ ├── plans.export │ ├── plans.js │ ├── pp_threshold.csv │ ├── prepaidincludes.export │ ├── pricing │ │ ├── tmp_ACTIVITY_AND_PP_PLAN.csv │ │ ├── tmp_COS.csv │ │ ├── tmp_COS_PLANS.csv │ │ ├── tmp_COS_SERVICEPROVIDERS.csv │ │ ├── tmp_PPS_PREFIXES.csv │ │ ├── tmp_PP_PLAN.csv │ │ ├── tmp_PP_TARIFFS.csv │ │ ├── tmp_Prefix_Allocation_ID_clear.csv │ │ ├── tmp_SERVICE_PROVIDERS.csv │ │ ├── tmp_SUBTYPE_TRANSLATION.csv │ │ └── tmp_TIME_TYPES.csv │ ├── rates.export │ ├── rates.js │ ├── rates2.js │ ├── recurring_charging_plans.csv │ ├── roaming_rates.export │ └── serviceproviders.export ├── prod │ └── basic_config.export └── sharding.ini ├── public ├── .htaccess ├── asset-manifest.json ├── assets │ └── img │ │ ├── billRun-cloud-logo.png │ │ └── billRun-logo.png ├── build │ ├── 0.036b16a12d5b9c767327.hot-update.js │ ├── 0.8ea1d78381a731d91891.hot-update.js │ ├── 0.9990c8bbff786655640a.hot-update.js │ ├── 0.f50b261c8982a528fa67.hot-update.js │ ├── 036b16a12d5b9c767327.hot-update.json │ ├── 674f50d287a8c48dc19ba404d20fe713.eot │ ├── 8ea1d78381a731d91891.hot-update.json │ ├── 912ec66d7572ff821749319396470bde.svg │ ├── 9990c8bbff786655640a.hot-update.json │ ├── b06871f281fee6b241d60582ae9369b9.ttf │ ├── bundle.app.js │ ├── bundle.css │ ├── bundle.vendor.js │ └── f50b261c8982a528fa67.hot-update.json ├── css │ ├── bootstrap.min.css │ ├── main.css │ └── subpage_style.css ├── favicon.ico ├── globalSettings.js ├── humans.txt ├── img │ ├── Authorize.net-Logo.jpg │ ├── CreditGuard.gif │ ├── PP_logo_h_200x51.png │ ├── Paysafe_Logo.svg │ ├── Stripe_Logo.png │ ├── billRun-cloud-logo.png │ ├── billRun-logo.png │ ├── billrun-logo-tm.png │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings-white_1.png │ ├── glyphicons-halflings.png │ ├── glyphicons-halflings_1.png │ └── web-logo.png ├── index.html ├── index.php ├── js │ ├── subpage_functions.js │ └── vendor │ │ └── jquery-1.12.4.min.js ├── manifest.json ├── precache-manifest.d5d4bf228edb0e7149eef583416bceeb.js ├── robots.txt ├── service-worker.js ├── static │ ├── css │ │ ├── 2.ea29ef5f.chunk.css │ │ ├── 2.ea29ef5f.chunk.css.map │ │ ├── main.03d87f14.chunk.css │ │ ├── main.03d87f14.chunk.css.map │ │ ├── main.0a3b702c.chunk.css │ │ ├── main.0a3b702c.chunk.css.map │ │ ├── main.0f4ae086.chunk.css │ │ ├── main.0f4ae086.chunk.css.map │ │ ├── main.0f9aed1a.chunk.css │ │ ├── main.0f9aed1a.chunk.css.map │ │ ├── main.3941b614.chunk.css │ │ ├── main.3941b614.chunk.css.map │ │ ├── main.4021f65e.chunk.css │ │ ├── main.4021f65e.chunk.css.map │ │ ├── main.4c894408.chunk.css │ │ ├── main.4c894408.chunk.css.map │ │ ├── main.577bb026.chunk.css │ │ ├── main.577bb026.chunk.css.map │ │ ├── main.6885c5c8.chunk.css │ │ ├── main.6885c5c8.chunk.css.map │ │ ├── main.734c0ec8.chunk.css │ │ ├── main.734c0ec8.chunk.css.map │ │ ├── main.828d8de7.chunk.css │ │ ├── main.828d8de7.chunk.css.map │ │ ├── main.8feaa31b.chunk.css │ │ ├── main.8feaa31b.chunk.css.map │ │ ├── main.b00b1a74.chunk.css │ │ ├── main.b00b1a74.chunk.css.map │ │ ├── main.c0c5715b.chunk.css │ │ ├── main.c0c5715b.chunk.css.map │ │ ├── main.d0d45b26.chunk.css │ │ └── main.d0d45b26.chunk.css.map │ ├── js │ │ ├── 2.60f97ef4.chunk_BACKUP_21229.js │ │ ├── 2.60f97ef4.chunk_BASE_21229.js │ │ ├── 2.60f97ef4.chunk_LOCAL_21229.js │ │ ├── 2.60f97ef4.chunk_REMOTE_21229.js │ │ ├── 2.de7cae14.chunk.js │ │ ├── 2.de7cae14.chunk.js.map │ │ ├── 3.98f0c0d2.chunk.js │ │ ├── 3.98f0c0d2.chunk.js.map │ │ ├── 4.8b43f47a.chunk.js │ │ ├── 4.8b43f47a.chunk.js.map │ │ ├── main.2f14ea1b.chunk.js │ │ ├── main.2f14ea1b.chunk.js.map │ │ ├── main.b79324ac.chunk.js │ │ ├── main.b79324ac.chunk.js.map │ │ ├── runtime~main.457fd582.js │ │ └── runtime~main.457fd582.js.map │ └── media │ │ ├── billRun-cloud-logo.1f38670a.png │ │ ├── fontawesome-webfont.674f50d2.eot │ │ ├── fontawesome-webfont.912ec66d.svg │ │ ├── fontawesome-webfont.af7ae505.woff2 │ │ ├── fontawesome-webfont.b06871f2.ttf │ │ ├── fontawesome-webfont.fee66e71.woff │ │ └── footer-logo.1f38670a.png └── vendors │ ├── ckeditor │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── adapters │ │ └── jquery.js │ ├── br │ │ ├── config │ │ │ ├── invoices.js │ │ │ ├── mails.js │ │ │ └── sms.js │ │ ├── css │ │ │ ├── font-awesome.min.css │ │ │ └── invoice.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── 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 │ ├── 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 │ │ ├── base64image │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dialogs │ │ │ │ └── base64image.js │ │ │ ├── icons │ │ │ │ ├── base64image.png │ │ │ │ └── hidpi │ │ │ │ │ └── base64image.png │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.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 │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ └── plugin.js │ │ ├── btgrid │ │ │ ├── .gitignore │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dialogs │ │ │ │ └── btgrid.js │ │ │ ├── icons │ │ │ │ └── btgrid.png │ │ │ ├── lang │ │ │ │ ├── en.js │ │ │ │ ├── fr.js │ │ │ │ ├── nl.js │ │ │ │ └── ru.js │ │ │ ├── plugin.js │ │ │ └── styles │ │ │ │ └── editor.css │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── colordialog │ │ │ └── dialogs │ │ │ │ ├── colordialog.css │ │ │ │ └── colordialog.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── div │ │ │ └── dialogs │ │ │ │ └── div.js │ │ ├── find │ │ │ └── dialogs │ │ │ │ └── find.js │ │ ├── flash │ │ │ ├── dialogs │ │ │ │ └── flash.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── forms │ │ │ ├── dialogs │ │ │ │ ├── button.js │ │ │ │ ├── checkbox.js │ │ │ │ ├── form.js │ │ │ │ ├── hiddenfield.js │ │ │ │ ├── radio.js │ │ │ │ ├── select.js │ │ │ │ ├── textarea.js │ │ │ │ └── textfield.js │ │ │ └── images │ │ │ │ └── hiddenfield.gif │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── iframe │ │ │ ├── dialogs │ │ │ │ └── iframe.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── lineheight │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lang │ │ │ │ ├── LANG.js │ │ │ │ ├── ar.js │ │ │ │ ├── de.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── fr.js │ │ │ │ ├── ko.js │ │ │ │ └── pt.js │ │ │ ├── plugin.js │ │ │ └── readme.txt │ │ ├── lineutils │ │ │ ├── dev │ │ │ │ ├── dnd.html │ │ │ │ └── magicfinger.html │ │ │ └── plugin.js │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── liststyle │ │ │ └── dialogs │ │ │ │ └── liststyle.js │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ ├── pagebreak │ │ │ └── images │ │ │ │ └── pagebreak.gif │ │ ├── pastebase64 │ │ │ └── plugin.js │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── placeholder │ │ │ ├── dev │ │ │ │ └── placeholder.html │ │ │ ├── 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 │ │ │ └── samples │ │ │ │ └── placeholder.html │ │ ├── placeholder_select │ │ │ └── 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 │ │ │ │ ├── oc.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 │ │ ├── scayt │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ ├── showblocks │ │ │ └── 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 │ │ ├── smiley │ │ │ ├── dialogs │ │ │ │ └── smiley.js │ │ │ └── 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 │ │ ├── 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 │ │ │ │ ├── oc.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 │ │ │ └── samples │ │ │ │ └── sourcedialog.html │ │ ├── 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 │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tableresize │ │ │ ├── dev │ │ │ │ └── tableresize.html │ │ │ ├── plugin.js │ │ │ └── samples │ │ │ │ └── tableresize.html │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ ├── templates │ │ │ ├── dialogs │ │ │ │ ├── templates.css │ │ │ │ └── templates.js │ │ │ └── templates │ │ │ │ ├── default.js │ │ │ │ └── images │ │ │ │ ├── template1.gif │ │ │ │ ├── template2.gif │ │ │ │ └── template3.gif │ │ ├── widget │ │ │ ├── dev │ │ │ │ ├── assets │ │ │ │ │ ├── contents.css │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── simplebox │ │ │ │ │ │ ├── contents.css │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── simplebox.js │ │ │ │ │ │ ├── icons │ │ │ │ │ │ └── simplebox.png │ │ │ │ │ │ └── plugin.js │ │ │ │ ├── console.js │ │ │ │ ├── nestedwidgets.html │ │ │ │ └── widgetstyles.html │ │ │ ├── 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 │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ ├── wsc.css │ │ │ ├── wsc.js │ │ │ └── wsc_ie.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 │ │ │ ├── datafiltering.html │ │ │ ├── dialog │ │ │ │ ├── assets │ │ │ │ │ └── my_dialog.js │ │ │ │ └── dialog.html │ │ │ ├── divreplace.html │ │ │ ├── enterkey │ │ │ │ └── enterkey.html │ │ │ ├── htmlwriter │ │ │ │ ├── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ └── swfobject.js │ │ │ │ ├── outputforflash.html │ │ │ │ └── outputhtml.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── magicline │ │ │ │ └── magicline.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── toolbar │ │ │ │ └── toolbar.html │ │ │ ├── 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 │ │ └── 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 │ └── mCustomScrollbar │ ├── jquery.mCustomScrollbar.min.css │ └── jquery.mCustomScrollbar.min.js ├── scripts ├── 12dec.sh ├── 13jan.sh ├── create_leftover_aggregator_input_file.sh ├── cycle_cron.sh ├── maintenance │ ├── backup_config_fs.sh │ ├── backup_fs.conf │ ├── backup_fs.sh │ ├── cluster_index_load.sh │ ├── cluster_status.sh │ ├── cluster_stepdown.sh │ ├── cluster_storage_status.sh │ └── reset_sids.sh ├── mongodb_localhost_cluster.sh ├── pseudo_cron.sh ├── pseudo_cron_cycle.sh ├── run_billrun.sh ├── run_generate.sh └── tools │ ├── CGCompleteLast4Digits.js │ ├── RebuildBillsLinks.php │ ├── fix_past_unset_collectionsteps.js │ └── restoreVoucherNumberCG.php ├── system_tests ├── CustomerAggregator.ini ├── CustomerAggregator.php └── data │ ├── 0subscribers.json │ ├── 1subscriber_invalidPlan.json │ ├── 1subscriber_planChangePrice.json │ ├── 1subscriber_switchPlan.json │ ├── 1subscriber_upfront.json │ ├── 3subscribers.json │ ├── 3subscribers_2expired.json │ ├── plans.json │ ├── services.json │ ├── su1.json │ └── subscribers.json ├── unit_tests ├── call_scenario ├── data_scenario └── db_reset └── vendor ├── autoload.php ├── bshaffer └── oauth2-server-php │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── src │ └── OAuth2 │ │ ├── Autoloader.php │ │ ├── ClientAssertionType │ │ ├── ClientAssertionTypeInterface.php │ │ └── HttpBasic.php │ │ ├── Controller │ │ ├── AuthorizeController.php │ │ ├── AuthorizeControllerInterface.php │ │ ├── ResourceController.php │ │ ├── ResourceControllerInterface.php │ │ ├── TokenController.php │ │ └── TokenControllerInterface.php │ │ ├── Encryption │ │ ├── EncryptionInterface.php │ │ ├── FirebaseJwt.php │ │ └── Jwt.php │ │ ├── GrantType │ │ ├── AuthorizationCode.php │ │ ├── ClientCredentials.php │ │ ├── GrantTypeInterface.php │ │ ├── JwtBearer.php │ │ ├── RefreshToken.php │ │ └── UserCredentials.php │ │ ├── OpenID │ │ ├── Controller │ │ │ ├── AuthorizeController.php │ │ │ ├── AuthorizeControllerInterface.php │ │ │ ├── UserInfoController.php │ │ │ └── UserInfoControllerInterface.php │ │ ├── GrantType │ │ │ └── AuthorizationCode.php │ │ ├── ResponseType │ │ │ ├── AuthorizationCode.php │ │ │ ├── AuthorizationCodeInterface.php │ │ │ ├── CodeIdToken.php │ │ │ ├── CodeIdTokenInterface.php │ │ │ ├── IdToken.php │ │ │ ├── IdTokenInterface.php │ │ │ ├── IdTokenToken.php │ │ │ └── IdTokenTokenInterface.php │ │ └── Storage │ │ │ ├── AuthorizationCodeInterface.php │ │ │ └── UserClaimsInterface.php │ │ ├── Request.php │ │ ├── RequestInterface.php │ │ ├── Response.php │ │ ├── ResponseInterface.php │ │ ├── ResponseType │ │ ├── AccessToken.php │ │ ├── AccessTokenInterface.php │ │ ├── AuthorizationCode.php │ │ ├── AuthorizationCodeInterface.php │ │ ├── JwtAccessToken.php │ │ └── ResponseTypeInterface.php │ │ ├── Scope.php │ │ ├── ScopeInterface.php │ │ ├── Server.php │ │ ├── Storage │ │ ├── AccessTokenInterface.php │ │ ├── AuthorizationCodeInterface.php │ │ ├── Cassandra.php │ │ ├── ClientCredentialsInterface.php │ │ ├── ClientInterface.php │ │ ├── CouchbaseDB.php │ │ ├── DynamoDB.php │ │ ├── JwtAccessToken.php │ │ ├── JwtAccessTokenInterface.php │ │ ├── JwtBearerInterface.php │ │ ├── Memory.php │ │ ├── Mongo.php │ │ ├── MongoDB.php │ │ ├── Pdo.php │ │ ├── PublicKeyInterface.php │ │ ├── Redis.php │ │ ├── RefreshTokenInterface.php │ │ ├── ScopeInterface.php │ │ └── UserCredentialsInterface.php │ │ └── TokenType │ │ ├── Bearer.php │ │ ├── Mac.php │ │ └── TokenTypeInterface.php │ └── test │ ├── OAuth2 │ ├── AutoloadTest.php │ ├── Controller │ │ ├── AuthorizeControllerTest.php │ │ ├── ResourceControllerTest.php │ │ └── TokenControllerTest.php │ ├── Encryption │ │ ├── FirebaseJwtTest.php │ │ └── JwtTest.php │ ├── GrantType │ │ ├── AuthorizationCodeTest.php │ │ ├── ClientCredentialsTest.php │ │ ├── ImplicitTest.php │ │ ├── JwtBearerTest.php │ │ ├── RefreshTokenTest.php │ │ └── UserCredentialsTest.php │ ├── OpenID │ │ ├── Controller │ │ │ ├── AuthorizeControllerTest.php │ │ │ └── UserInfoControllerTest.php │ │ ├── GrantType │ │ │ └── AuthorizationCodeTest.php │ │ ├── ResponseType │ │ │ ├── CodeIdTokenTest.php │ │ │ ├── IdTokenTest.php │ │ │ └── IdTokenTokenTest.php │ │ └── Storage │ │ │ ├── AuthorizationCodeTest.php │ │ │ └── UserClaimsTest.php │ ├── RequestTest.php │ ├── ResponseTest.php │ ├── ResponseType │ │ ├── AccessTokenTest.php │ │ └── JwtAccessTokenTest.php │ ├── ScopeTest.php │ ├── ServerTest.php │ ├── Storage │ │ ├── AccessTokenTest.php │ │ ├── AuthorizationCodeTest.php │ │ ├── ClientCredentialsTest.php │ │ ├── ClientTest.php │ │ ├── DynamoDBTest.php │ │ ├── JwtAccessTokenTest.php │ │ ├── JwtBearerTest.php │ │ ├── PdoTest.php │ │ ├── PublicKeyTest.php │ │ ├── RefreshTokenTest.php │ │ ├── ScopeTest.php │ │ └── UserCredentialsTest.php │ └── TokenType │ │ └── BearerTest.php │ ├── bootstrap.php │ ├── cleanup.php │ ├── config │ ├── keys │ │ ├── id_rsa │ │ └── id_rsa.pub │ └── storage.json │ └── lib │ └── OAuth2 │ ├── Request │ └── TestRequest.php │ └── Storage │ ├── BaseTest.php │ ├── Bootstrap.php │ └── NullStorage.php ├── composer ├── ClassLoader.php ├── InstalledVersions.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.json └── installed.php ├── ezyang └── htmlpurifier │ ├── CREDITS │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── composer.json │ └── library │ ├── HTMLPurifier.auto.php │ ├── HTMLPurifier.autoload-legacy.php │ ├── HTMLPurifier.autoload.php │ ├── HTMLPurifier.composer.php │ ├── HTMLPurifier.func.php │ ├── HTMLPurifier.includes.php │ ├── HTMLPurifier.kses.php │ ├── HTMLPurifier.path.php │ ├── HTMLPurifier.php │ ├── HTMLPurifier.safe-includes.php │ └── HTMLPurifier │ ├── Arborize.php │ ├── AttrCollections.php │ ├── AttrDef.php │ ├── AttrDef │ ├── CSS.php │ ├── CSS │ │ ├── AlphaValue.php │ │ ├── Background.php │ │ ├── BackgroundPosition.php │ │ ├── Border.php │ │ ├── Color.php │ │ ├── Composite.php │ │ ├── DenyElementDecorator.php │ │ ├── Filter.php │ │ ├── Font.php │ │ ├── FontFamily.php │ │ ├── Ident.php │ │ ├── ImportantDecorator.php │ │ ├── Length.php │ │ ├── ListStyle.php │ │ ├── Multiple.php │ │ ├── Number.php │ │ ├── Percentage.php │ │ ├── TextDecoration.php │ │ └── URI.php │ ├── Clone.php │ ├── Enum.php │ ├── HTML │ │ ├── Bool.php │ │ ├── Class.php │ │ ├── Color.php │ │ ├── FrameTarget.php │ │ ├── ID.php │ │ ├── Length.php │ │ ├── LinkTypes.php │ │ ├── MultiLength.php │ │ ├── Nmtokens.php │ │ └── Pixels.php │ ├── Integer.php │ ├── Lang.php │ ├── Switch.php │ ├── Text.php │ ├── URI.php │ └── URI │ │ ├── Email.php │ │ ├── Email │ │ └── SimpleCheck.php │ │ ├── Host.php │ │ ├── IPv4.php │ │ └── IPv6.php │ ├── AttrTransform.php │ ├── AttrTransform │ ├── Background.php │ ├── BdoDir.php │ ├── BgColor.php │ ├── BoolToCSS.php │ ├── Border.php │ ├── EnumToCSS.php │ ├── ImgRequired.php │ ├── ImgSpace.php │ ├── Input.php │ ├── Lang.php │ ├── Length.php │ ├── Name.php │ ├── NameSync.php │ ├── Nofollow.php │ ├── SafeEmbed.php │ ├── SafeObject.php │ ├── SafeParam.php │ ├── ScriptRequired.php │ ├── TargetBlank.php │ ├── TargetNoopener.php │ ├── TargetNoreferrer.php │ └── Textarea.php │ ├── AttrTypes.php │ ├── AttrValidator.php │ ├── Bootstrap.php │ ├── CSSDefinition.php │ ├── ChildDef.php │ ├── ChildDef │ ├── Chameleon.php │ ├── Custom.php │ ├── Empty.php │ ├── List.php │ ├── Optional.php │ ├── Required.php │ ├── StrictBlockquote.php │ └── Table.php │ ├── Config.php │ ├── ConfigSchema.php │ ├── ConfigSchema │ ├── Builder │ │ ├── ConfigSchema.php │ │ └── Xml.php │ ├── Exception.php │ ├── Interchange.php │ ├── Interchange │ │ ├── Directive.php │ │ └── Id.php │ ├── InterchangeBuilder.php │ ├── Validator.php │ ├── ValidatorAtom.php │ ├── schema.ser │ └── schema │ │ ├── Attr.AllowedClasses.txt │ │ ├── Attr.AllowedFrameTargets.txt │ │ ├── Attr.AllowedRel.txt │ │ ├── Attr.AllowedRev.txt │ │ ├── Attr.ClassUseCDATA.txt │ │ ├── Attr.DefaultImageAlt.txt │ │ ├── Attr.DefaultInvalidImage.txt │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ ├── Attr.DefaultTextDir.txt │ │ ├── Attr.EnableID.txt │ │ ├── Attr.ForbiddenClasses.txt │ │ ├── Attr.ID.HTML5.txt │ │ ├── Attr.IDBlacklist.txt │ │ ├── Attr.IDBlacklistRegexp.txt │ │ ├── Attr.IDPrefix.txt │ │ ├── Attr.IDPrefixLocal.txt │ │ ├── AutoFormat.AutoParagraph.txt │ │ ├── AutoFormat.Custom.txt │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ ├── AutoFormat.Linkify.txt │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ ├── AutoFormat.PurifierLinkify.txt │ │ ├── AutoFormat.RemoveEmpty.Predicate.txt │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ ├── AutoFormat.RemoveEmpty.txt │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ ├── CSS.AllowDuplicates.txt │ │ ├── CSS.AllowImportant.txt │ │ ├── CSS.AllowTricky.txt │ │ ├── CSS.AllowedFonts.txt │ │ ├── CSS.AllowedProperties.txt │ │ ├── CSS.DefinitionRev.txt │ │ ├── CSS.ForbiddenProperties.txt │ │ ├── CSS.MaxImgLength.txt │ │ ├── CSS.Proprietary.txt │ │ ├── CSS.Trusted.txt │ │ ├── Cache.DefinitionImpl.txt │ │ ├── Cache.SerializerPath.txt │ │ ├── Cache.SerializerPermissions.txt │ │ ├── Core.AggressivelyFixLt.txt │ │ ├── Core.AggressivelyRemoveScript.txt │ │ ├── Core.AllowHostnameUnderscore.txt │ │ ├── Core.AllowParseManyTags.txt │ │ ├── Core.CollectErrors.txt │ │ ├── Core.ColorKeywords.txt │ │ ├── Core.ConvertDocumentToFragment.txt │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ ├── Core.DisableExcludes.txt │ │ ├── Core.EnableIDNA.txt │ │ ├── Core.Encoding.txt │ │ ├── Core.EscapeInvalidChildren.txt │ │ ├── Core.EscapeInvalidTags.txt │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ ├── Core.HiddenElements.txt │ │ ├── Core.Language.txt │ │ ├── Core.LegacyEntityDecoder.txt │ │ ├── Core.LexerImpl.txt │ │ ├── Core.MaintainLineNumbers.txt │ │ ├── Core.NormalizeNewlines.txt │ │ ├── Core.RemoveInvalidImg.txt │ │ ├── Core.RemoveProcessingInstructions.txt │ │ ├── Core.RemoveScriptContents.txt │ │ ├── Filter.Custom.txt │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ ├── Filter.ExtractStyleBlocks.txt │ │ ├── Filter.YouTube.txt │ │ ├── HTML.Allowed.txt │ │ ├── HTML.AllowedAttributes.txt │ │ ├── HTML.AllowedComments.txt │ │ ├── HTML.AllowedCommentsRegexp.txt │ │ ├── HTML.AllowedElements.txt │ │ ├── HTML.AllowedModules.txt │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ ├── HTML.BlockWrapper.txt │ │ ├── HTML.CoreModules.txt │ │ ├── HTML.CustomDoctype.txt │ │ ├── HTML.DefinitionID.txt │ │ ├── HTML.DefinitionRev.txt │ │ ├── HTML.Doctype.txt │ │ ├── HTML.FlashAllowFullScreen.txt │ │ ├── HTML.ForbiddenAttributes.txt │ │ ├── HTML.ForbiddenElements.txt │ │ ├── HTML.Forms.txt │ │ ├── HTML.MaxImgLength.txt │ │ ├── HTML.Nofollow.txt │ │ ├── HTML.Parent.txt │ │ ├── HTML.Proprietary.txt │ │ ├── HTML.SafeEmbed.txt │ │ ├── HTML.SafeIframe.txt │ │ ├── HTML.SafeObject.txt │ │ ├── HTML.SafeScripting.txt │ │ ├── HTML.Strict.txt │ │ ├── HTML.TargetBlank.txt │ │ ├── HTML.TargetNoopener.txt │ │ ├── HTML.TargetNoreferrer.txt │ │ ├── HTML.TidyAdd.txt │ │ ├── HTML.TidyLevel.txt │ │ ├── HTML.TidyRemove.txt │ │ ├── HTML.Trusted.txt │ │ ├── HTML.XHTML.txt │ │ ├── Output.CommentScriptContents.txt │ │ ├── Output.FixInnerHTML.txt │ │ ├── Output.FlashCompat.txt │ │ ├── Output.Newline.txt │ │ ├── Output.SortAttr.txt │ │ ├── Output.TidyFormat.txt │ │ ├── Test.ForceNoIconv.txt │ │ ├── URI.AllowedSchemes.txt │ │ ├── URI.Base.txt │ │ ├── URI.DefaultScheme.txt │ │ ├── URI.DefinitionID.txt │ │ ├── URI.DefinitionRev.txt │ │ ├── URI.Disable.txt │ │ ├── URI.DisableExternal.txt │ │ ├── URI.DisableExternalResources.txt │ │ ├── URI.DisableResources.txt │ │ ├── URI.Host.txt │ │ ├── URI.HostBlacklist.txt │ │ ├── URI.MakeAbsolute.txt │ │ ├── URI.Munge.txt │ │ ├── URI.MungeResources.txt │ │ ├── URI.MungeSecretKey.txt │ │ ├── URI.OverrideAllowedSchemes.txt │ │ ├── URI.SafeIframeRegexp.txt │ │ └── info.ini │ ├── ContentSets.php │ ├── Context.php │ ├── Definition.php │ ├── DefinitionCache.php │ ├── DefinitionCache │ ├── Decorator.php │ ├── Decorator │ │ ├── Cleanup.php │ │ ├── Memory.php │ │ └── Template.php.in │ ├── Null.php │ ├── Serializer.php │ └── Serializer │ │ └── README │ ├── DefinitionCacheFactory.php │ ├── Doctype.php │ ├── DoctypeRegistry.php │ ├── ElementDef.php │ ├── Encoder.php │ ├── EntityLookup.php │ ├── EntityLookup │ └── entities.ser │ ├── EntityParser.php │ ├── ErrorCollector.php │ ├── ErrorStruct.php │ ├── Exception.php │ ├── Filter.php │ ├── Filter │ ├── ExtractStyleBlocks.php │ └── YouTube.php │ ├── Generator.php │ ├── HTMLDefinition.php │ ├── HTMLModule.php │ ├── HTMLModule │ ├── Bdo.php │ ├── CommonAttributes.php │ ├── Edit.php │ ├── Forms.php │ ├── Hypertext.php │ ├── Iframe.php │ ├── Image.php │ ├── Legacy.php │ ├── List.php │ ├── Name.php │ ├── Nofollow.php │ ├── NonXMLCommonAttributes.php │ ├── Object.php │ ├── Presentation.php │ ├── Proprietary.php │ ├── Ruby.php │ ├── SafeEmbed.php │ ├── SafeObject.php │ ├── SafeScripting.php │ ├── Scripting.php │ ├── StyleAttribute.php │ ├── Tables.php │ ├── Target.php │ ├── TargetBlank.php │ ├── TargetNoopener.php │ ├── TargetNoreferrer.php │ ├── Text.php │ ├── Tidy.php │ ├── Tidy │ │ ├── Name.php │ │ ├── Proprietary.php │ │ ├── Strict.php │ │ ├── Transitional.php │ │ ├── XHTML.php │ │ └── XHTMLAndHTML4.php │ └── XMLCommonAttributes.php │ ├── HTMLModuleManager.php │ ├── IDAccumulator.php │ ├── Injector.php │ ├── Injector │ ├── AutoParagraph.php │ ├── DisplayLinkURI.php │ ├── Linkify.php │ ├── PurifierLinkify.php │ ├── RemoveEmpty.php │ ├── RemoveSpansWithoutAttributes.php │ └── SafeObject.php │ ├── Language.php │ ├── Language │ └── messages │ │ └── en.php │ ├── LanguageFactory.php │ ├── Length.php │ ├── Lexer.php │ ├── Lexer │ ├── DOMLex.php │ ├── DirectLex.php │ └── PH5P.php │ ├── Node.php │ ├── Node │ ├── Comment.php │ ├── Element.php │ └── Text.php │ ├── PercentEncoder.php │ ├── Printer.php │ ├── Printer │ ├── CSSDefinition.php │ ├── ConfigForm.css │ ├── ConfigForm.js │ ├── ConfigForm.php │ └── HTMLDefinition.php │ ├── PropertyList.php │ ├── PropertyListIterator.php │ ├── Queue.php │ ├── Strategy.php │ ├── Strategy │ ├── Composite.php │ ├── Core.php │ ├── FixNesting.php │ ├── MakeWellFormed.php │ ├── RemoveForeignElements.php │ └── ValidateAttributes.php │ ├── StringHash.php │ ├── StringHashParser.php │ ├── TagTransform.php │ ├── TagTransform │ ├── Font.php │ └── Simple.php │ ├── Token.php │ ├── Token │ ├── Comment.php │ ├── Empty.php │ ├── End.php │ ├── Start.php │ ├── Tag.php │ └── Text.php │ ├── TokenFactory.php │ ├── URI.php │ ├── URIDefinition.php │ ├── URIFilter.php │ ├── URIFilter │ ├── DisableExternal.php │ ├── DisableExternalResources.php │ ├── DisableResources.php │ ├── HostBlacklist.php │ ├── MakeAbsolute.php │ ├── Munge.php │ └── SafeIframe.php │ ├── URIParser.php │ ├── URIScheme.php │ ├── URIScheme │ ├── data.php │ ├── file.php │ ├── ftp.php │ ├── http.php │ ├── https.php │ ├── mailto.php │ ├── news.php │ ├── nntp.php │ └── tel.php │ ├── URISchemeRegistry.php │ ├── UnitConverter.php │ ├── VarParser.php │ ├── VarParser │ ├── Flexible.php │ └── Native.php │ ├── VarParserException.php │ └── Zipper.php ├── maennchen └── zipstream-php │ ├── .github │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── psalm.xml │ ├── src │ ├── Bigint.php │ ├── DeflateStream.php │ ├── Exception.php │ ├── Exception │ │ ├── EncodingException.php │ │ ├── FileNotFoundException.php │ │ ├── FileNotReadableException.php │ │ ├── IncompatibleOptionsException.php │ │ ├── OverflowException.php │ │ └── StreamNotReadableException.php │ ├── File.php │ ├── Option │ │ ├── Archive.php │ │ ├── File.php │ │ ├── Method.php │ │ └── Version.php │ ├── Stream.php │ └── ZipStream.php │ └── test │ ├── BigintTest.php │ ├── ZipStreamTest.php │ ├── bootstrap.php │ └── bug │ └── BugHonorFileTimeTest.php ├── markbaker ├── complex │ ├── README.md │ ├── classes │ │ ├── Autoloader.php │ │ ├── Bootstrap.php │ │ └── src │ │ │ ├── Complex.php │ │ │ ├── Exception.php │ │ │ ├── functions │ │ │ ├── abs.php │ │ │ ├── acos.php │ │ │ ├── acosh.php │ │ │ ├── acot.php │ │ │ ├── acoth.php │ │ │ ├── acsc.php │ │ │ ├── acsch.php │ │ │ ├── argument.php │ │ │ ├── asec.php │ │ │ ├── asech.php │ │ │ ├── asin.php │ │ │ ├── asinh.php │ │ │ ├── atan.php │ │ │ ├── atanh.php │ │ │ ├── conjugate.php │ │ │ ├── cos.php │ │ │ ├── cosh.php │ │ │ ├── cot.php │ │ │ ├── coth.php │ │ │ ├── csc.php │ │ │ ├── csch.php │ │ │ ├── exp.php │ │ │ ├── inverse.php │ │ │ ├── ln.php │ │ │ ├── log10.php │ │ │ ├── log2.php │ │ │ ├── negative.php │ │ │ ├── pow.php │ │ │ ├── rho.php │ │ │ ├── sec.php │ │ │ ├── sech.php │ │ │ ├── sin.php │ │ │ ├── sinh.php │ │ │ ├── sqrt.php │ │ │ ├── tan.php │ │ │ ├── tanh.php │ │ │ └── theta.php │ │ │ └── operations │ │ │ ├── add.php │ │ │ ├── divideby.php │ │ │ ├── divideinto.php │ │ │ ├── multiply.php │ │ │ └── subtract.php │ ├── composer.json │ ├── examples │ │ ├── complexTest.php │ │ ├── testFunctions.php │ │ └── testOperations.php │ └── license.md └── matrix │ ├── .github │ └── workflows │ │ └── main.yaml │ ├── README.md │ ├── buildPhar.php │ ├── classes │ └── src │ │ ├── Builder.php │ │ ├── Decomposition │ │ ├── Decomposition.php │ │ ├── LU.php │ │ └── QR.php │ │ ├── Exception.php │ │ ├── Functions.php │ │ ├── Functions │ │ ├── adjoint.php │ │ ├── antidiagonal.php │ │ ├── cofactors.php │ │ ├── determinant.php │ │ ├── diagonal.php │ │ ├── identity.php │ │ ├── inverse.php │ │ ├── minors.php │ │ ├── trace.php │ │ └── transpose.php │ │ ├── Matrix.php │ │ ├── Operations │ │ ├── add.php │ │ ├── directsum.php │ │ ├── divideby.php │ │ ├── divideinto.php │ │ ├── multiply.php │ │ └── subtract.php │ │ └── Operators │ │ ├── Addition.php │ │ ├── DirectSum.php │ │ ├── Division.php │ │ ├── Multiplication.php │ │ ├── Operator.php │ │ └── Subtraction.php │ ├── composer.json │ ├── examples │ └── test.php │ ├── infection.json.dist │ ├── license.md │ └── phpstan.neon ├── mongodb └── mongodb │ ├── .github │ └── ISSUE_TEMPLATE │ │ └── bug-report.md │ ├── .gitignore │ ├── .phpcs │ └── autoload.php │ ├── .travis.yml │ ├── .travis │ ├── debug-core.sh │ ├── install-extension.sh │ ├── mo.sh │ └── setup_mo.sh │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── composer.json │ ├── docs │ ├── .static │ │ └── .mongodb │ ├── includes │ │ ├── apiargs-MongoDBClient-common-option.yaml │ │ ├── apiargs-MongoDBClient-method-construct-driverOptions.yaml │ │ ├── apiargs-MongoDBClient-method-construct-param.yaml │ │ ├── apiargs-MongoDBClient-method-createClientEncryption-param.yaml │ │ ├── apiargs-MongoDBClient-method-dropDatabase-option.yaml │ │ ├── apiargs-MongoDBClient-method-dropDatabase-param.yaml │ │ ├── apiargs-MongoDBClient-method-get-param.yaml │ │ ├── apiargs-MongoDBClient-method-listDatabases-option.yaml │ │ ├── apiargs-MongoDBClient-method-listDatabases-param.yaml │ │ ├── apiargs-MongoDBClient-method-selectCollection-option.yaml │ │ ├── apiargs-MongoDBClient-method-selectCollection-param.yaml │ │ ├── apiargs-MongoDBClient-method-selectDatabase-option.yaml │ │ ├── apiargs-MongoDBClient-method-selectDatabase-param.yaml │ │ ├── apiargs-MongoDBClient-method-watch-option.yaml │ │ ├── apiargs-MongoDBClient-method-watch-param.yaml │ │ ├── apiargs-MongoDBCollection-common-option.yaml │ │ ├── apiargs-MongoDBCollection-common-param.yaml │ │ ├── apiargs-MongoDBCollection-method-aggregate-option.yaml │ │ ├── apiargs-MongoDBCollection-method-aggregate-param.yaml │ │ ├── apiargs-MongoDBCollection-method-bulkWrite-option.yaml │ │ ├── apiargs-MongoDBCollection-method-bulkWrite-param.yaml │ │ ├── apiargs-MongoDBCollection-method-construct-option.yaml │ │ ├── apiargs-MongoDBCollection-method-construct-param.yaml │ │ ├── apiargs-MongoDBCollection-method-count-option.yaml │ │ ├── apiargs-MongoDBCollection-method-count-param.yaml │ │ ├── apiargs-MongoDBCollection-method-countDocuments-option.yaml │ │ ├── apiargs-MongoDBCollection-method-countDocuments-param.yaml │ │ ├── apiargs-MongoDBCollection-method-createIndex-option.yaml │ │ ├── apiargs-MongoDBCollection-method-createIndex-param.yaml │ │ ├── apiargs-MongoDBCollection-method-createIndexes-option.yaml │ │ ├── apiargs-MongoDBCollection-method-createIndexes-param.yaml │ │ ├── apiargs-MongoDBCollection-method-deleteMany-option.yaml │ │ ├── apiargs-MongoDBCollection-method-deleteMany-param.yaml │ │ ├── apiargs-MongoDBCollection-method-deleteOne-option.yaml │ │ ├── apiargs-MongoDBCollection-method-deleteOne-param.yaml │ │ ├── apiargs-MongoDBCollection-method-distinct-option.yaml │ │ ├── apiargs-MongoDBCollection-method-distinct-param.yaml │ │ ├── apiargs-MongoDBCollection-method-drop-option.yaml │ │ ├── apiargs-MongoDBCollection-method-drop-param.yaml │ │ ├── apiargs-MongoDBCollection-method-dropIndex-option.yaml │ │ ├── apiargs-MongoDBCollection-method-dropIndex-param.yaml │ │ ├── apiargs-MongoDBCollection-method-dropIndexes-option.yaml │ │ ├── apiargs-MongoDBCollection-method-dropIndexes-param.yaml │ │ ├── apiargs-MongoDBCollection-method-estimateDocumentCount-option.yaml │ │ ├── apiargs-MongoDBCollection-method-estimateDocumentCount-param.yaml │ │ ├── apiargs-MongoDBCollection-method-explain-option.yaml │ │ ├── apiargs-MongoDBCollection-method-explain-param.yaml │ │ ├── apiargs-MongoDBCollection-method-find-option.yaml │ │ ├── apiargs-MongoDBCollection-method-find-param.yaml │ │ ├── apiargs-MongoDBCollection-method-findOne-option.yaml │ │ ├── apiargs-MongoDBCollection-method-findOne-param.yaml │ │ ├── apiargs-MongoDBCollection-method-findOneAndDelete-option.yaml │ │ ├── apiargs-MongoDBCollection-method-findOneAndDelete-param.yaml │ │ ├── apiargs-MongoDBCollection-method-findOneAndReplace-option.yaml │ │ ├── apiargs-MongoDBCollection-method-findOneAndReplace-param.yaml │ │ ├── apiargs-MongoDBCollection-method-findOneAndUpdate-option.yaml │ │ ├── apiargs-MongoDBCollection-method-findOneAndUpdate-param.yaml │ │ ├── apiargs-MongoDBCollection-method-insertMany-option.yaml │ │ ├── apiargs-MongoDBCollection-method-insertMany-param.yaml │ │ ├── apiargs-MongoDBCollection-method-insertOne-option.yaml │ │ ├── apiargs-MongoDBCollection-method-insertOne-param.yaml │ │ ├── apiargs-MongoDBCollection-method-listIndexes-option.yaml │ │ ├── apiargs-MongoDBCollection-method-listIndexes-param.yaml │ │ ├── apiargs-MongoDBCollection-method-mapReduce-option.yaml │ │ ├── apiargs-MongoDBCollection-method-mapReduce-param.yaml │ │ ├── apiargs-MongoDBCollection-method-replaceOne-option.yaml │ │ ├── apiargs-MongoDBCollection-method-replaceOne-param.yaml │ │ ├── apiargs-MongoDBCollection-method-updateMany-option.yaml │ │ ├── apiargs-MongoDBCollection-method-updateMany-param.yaml │ │ ├── apiargs-MongoDBCollection-method-updateOne-option.yaml │ │ ├── apiargs-MongoDBCollection-method-updateOne-param.yaml │ │ ├── apiargs-MongoDBCollection-method-watch-option.yaml │ │ ├── apiargs-MongoDBCollection-method-watch-param.yaml │ │ ├── apiargs-MongoDBCollection-method-withOptions-option.yaml │ │ ├── apiargs-MongoDBCollection-method-withOptions-param.yaml │ │ ├── apiargs-MongoDBDatabase-common-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-aggregate-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-aggregate-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-command-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-command-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-construct-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-construct-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-createCollection-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-createCollection-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-drop-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-drop-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-dropCollection-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-dropCollection-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-get-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-listCollections-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-listCollections-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-modifyCollection-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-modifyCollection-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-selectCollection-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-selectCollection-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-selectGridFSBucket-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-selectGridFSBucket-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-watch-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-watch-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-withOptions-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-withOptions-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-common-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-common-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-construct-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-construct-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-delete-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-downloadToStream-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-downloadToStreamByName-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-downloadToStreamByName-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-find-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-findOne-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-getFileDocumentForStream-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-getFileIdForStream-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-openDownloadStream-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-openDownloadStreamByName-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-openDownloadStreamByName-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-openUploadStream-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-openUploadStream-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-rename-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-uploadFromStream-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-uploadFromStream-param.yaml │ │ ├── apiargs-aggregate-option.yaml │ │ ├── apiargs-common-option.yaml │ │ ├── apiargs-common-param.yaml │ │ ├── apiargs-function-with_transaction-param.yaml │ │ ├── apiargs-method-watch-option.yaml │ │ ├── apiargs-method-watch-param.yaml │ │ ├── extracts-bulkwriteexception.yaml │ │ ├── extracts-error.yaml │ │ └── extracts-note.yaml │ ├── index.txt │ ├── pretty.js │ ├── reference.txt │ ├── reference │ │ ├── bson.txt │ │ ├── class │ │ │ ├── MongoDBClient.txt │ │ │ ├── MongoDBCollection.txt │ │ │ ├── MongoDBDatabase.txt │ │ │ └── MongoDBGridFSBucket.txt │ │ ├── enumeration-classes.txt │ │ ├── exception-classes.txt │ │ ├── function │ │ │ └── with_transaction.txt │ │ ├── functions.txt │ │ ├── method │ │ │ ├── MongoDBBulkWriteResult-getDeletedCount.txt │ │ │ ├── MongoDBBulkWriteResult-getInsertedCount.txt │ │ │ ├── MongoDBBulkWriteResult-getInsertedIds.txt │ │ │ ├── MongoDBBulkWriteResult-getMatchedCount.txt │ │ │ ├── MongoDBBulkWriteResult-getModifiedCount.txt │ │ │ ├── MongoDBBulkWriteResult-getUpsertedCount.txt │ │ │ ├── MongoDBBulkWriteResult-getUpsertedIds.txt │ │ │ ├── MongoDBBulkWriteResult-isAcknowledged.txt │ │ │ ├── MongoDBChangeStream-current.txt │ │ │ ├── MongoDBChangeStream-getCursorId.txt │ │ │ ├── MongoDBChangeStream-getResumeToken.txt │ │ │ ├── MongoDBChangeStream-key.txt │ │ │ ├── MongoDBChangeStream-next.txt │ │ │ ├── MongoDBChangeStream-rewind.txt │ │ │ ├── MongoDBChangeStream-valid.txt │ │ │ ├── MongoDBClient-createClientEncryption.txt │ │ │ ├── MongoDBClient-dropDatabase.txt │ │ │ ├── MongoDBClient-getManager.txt │ │ │ ├── MongoDBClient-getReadConcern.txt │ │ │ ├── MongoDBClient-getReadPreference.txt │ │ │ ├── MongoDBClient-getTypeMap.txt │ │ │ ├── MongoDBClient-getWriteConcern.txt │ │ │ ├── MongoDBClient-listDatabases.txt │ │ │ ├── MongoDBClient-selectCollection.txt │ │ │ ├── MongoDBClient-selectDatabase.txt │ │ │ ├── MongoDBClient-startSession.txt │ │ │ ├── MongoDBClient-watch.txt │ │ │ ├── MongoDBClient__construct.txt │ │ │ ├── MongoDBClient__get.txt │ │ │ ├── MongoDBCollection-aggregate.txt │ │ │ ├── MongoDBCollection-bulkWrite.txt │ │ │ ├── MongoDBCollection-count.txt │ │ │ ├── MongoDBCollection-countDocuments.txt │ │ │ ├── MongoDBCollection-createIndex.txt │ │ │ ├── MongoDBCollection-createIndexes.txt │ │ │ ├── MongoDBCollection-deleteMany.txt │ │ │ ├── MongoDBCollection-deleteOne.txt │ │ │ ├── MongoDBCollection-distinct.txt │ │ │ ├── MongoDBCollection-drop.txt │ │ │ ├── MongoDBCollection-dropIndex.txt │ │ │ ├── MongoDBCollection-dropIndexes.txt │ │ │ ├── MongoDBCollection-estimatedDocumentCount.txt │ │ │ ├── MongoDBCollection-explain.txt │ │ │ ├── MongoDBCollection-find.txt │ │ │ ├── MongoDBCollection-findOne.txt │ │ │ ├── MongoDBCollection-findOneAndDelete.txt │ │ │ ├── MongoDBCollection-findOneAndReplace.txt │ │ │ ├── MongoDBCollection-findOneAndUpdate.txt │ │ │ ├── MongoDBCollection-getCollectionName.txt │ │ │ ├── MongoDBCollection-getDatabaseName.txt │ │ │ ├── MongoDBCollection-getManager.txt │ │ │ ├── MongoDBCollection-getNamespace.txt │ │ │ ├── MongoDBCollection-getReadConcern.txt │ │ │ ├── MongoDBCollection-getReadPreference.txt │ │ │ ├── MongoDBCollection-getTypeMap.txt │ │ │ ├── MongoDBCollection-getWriteConcern.txt │ │ │ ├── MongoDBCollection-insertMany.txt │ │ │ ├── MongoDBCollection-insertOne.txt │ │ │ ├── MongoDBCollection-listIndexes.txt │ │ │ ├── MongoDBCollection-mapReduce.txt │ │ │ ├── MongoDBCollection-replaceOne.txt │ │ │ ├── MongoDBCollection-updateMany.txt │ │ │ ├── MongoDBCollection-updateOne.txt │ │ │ ├── MongoDBCollection-watch.txt │ │ │ ├── MongoDBCollection-withOptions.txt │ │ │ ├── MongoDBCollection__construct.txt │ │ │ ├── MongoDBDatabase-aggregate.txt │ │ │ ├── MongoDBDatabase-command.txt │ │ │ ├── MongoDBDatabase-createCollection.txt │ │ │ ├── MongoDBDatabase-drop.txt │ │ │ ├── MongoDBDatabase-dropCollection.txt │ │ │ ├── MongoDBDatabase-getDatabaseName.txt │ │ │ ├── MongoDBDatabase-getManager.txt │ │ │ ├── MongoDBDatabase-getReadConcern.txt │ │ │ ├── MongoDBDatabase-getReadPreference.txt │ │ │ ├── MongoDBDatabase-getTypeMap.txt │ │ │ ├── MongoDBDatabase-getWriteConcern.txt │ │ │ ├── MongoDBDatabase-listCollections.txt │ │ │ ├── MongoDBDatabase-modifyCollection.txt │ │ │ ├── MongoDBDatabase-selectCollection.txt │ │ │ ├── MongoDBDatabase-selectGridFSBucket.txt │ │ │ ├── MongoDBDatabase-watch.txt │ │ │ ├── MongoDBDatabase-withOptions.txt │ │ │ ├── MongoDBDatabase__construct.txt │ │ │ ├── MongoDBDatabase__get.txt │ │ │ ├── MongoDBDeleteResult-getDeletedCount.txt │ │ │ ├── MongoDBDeleteResult-isAcknowledged.txt │ │ │ ├── MongoDBGridFSBucket-delete.txt │ │ │ ├── MongoDBGridFSBucket-downloadToStream.txt │ │ │ ├── MongoDBGridFSBucket-downloadToStreamByName.txt │ │ │ ├── MongoDBGridFSBucket-drop.txt │ │ │ ├── MongoDBGridFSBucket-find.txt │ │ │ ├── MongoDBGridFSBucket-findOne.txt │ │ │ ├── MongoDBGridFSBucket-getBucketName.txt │ │ │ ├── MongoDBGridFSBucket-getChunkSizeBytes.txt │ │ │ ├── MongoDBGridFSBucket-getChunksCollection.txt │ │ │ ├── MongoDBGridFSBucket-getDatabaseName.txt │ │ │ ├── MongoDBGridFSBucket-getFileDocumentForStream.txt │ │ │ ├── MongoDBGridFSBucket-getFileIdForStream.txt │ │ │ ├── MongoDBGridFSBucket-getFilesCollection.txt │ │ │ ├── MongoDBGridFSBucket-getReadConcern.txt │ │ │ ├── MongoDBGridFSBucket-getReadPreference.txt │ │ │ ├── MongoDBGridFSBucket-getTypeMap.txt │ │ │ ├── MongoDBGridFSBucket-getWriteConcern.txt │ │ │ ├── MongoDBGridFSBucket-openDownloadStream.txt │ │ │ ├── MongoDBGridFSBucket-openDownloadStreamByName.txt │ │ │ ├── MongoDBGridFSBucket-openUploadStream.txt │ │ │ ├── MongoDBGridFSBucket-rename.txt │ │ │ ├── MongoDBGridFSBucket-uploadFromStream.txt │ │ │ ├── MongoDBGridFSBucket__construct.txt │ │ │ ├── MongoDBInsertManyResult-getInsertedCount.txt │ │ │ ├── MongoDBInsertManyResult-getInsertedIds.txt │ │ │ ├── MongoDBInsertManyResult-isAcknowledged.txt │ │ │ ├── MongoDBInsertOneResult-getInsertedCount.txt │ │ │ ├── MongoDBInsertOneResult-getInsertedId.txt │ │ │ ├── MongoDBInsertOneResult-isAcknowledged.txt │ │ │ ├── MongoDBMapReduceResult-getCounts.txt │ │ │ ├── MongoDBMapReduceResult-getExecutionTimeMS.txt │ │ │ ├── MongoDBMapReduceResult-getIterator.txt │ │ │ ├── MongoDBMapReduceResult-getTiming.txt │ │ │ ├── MongoDBModelCollectionInfo-getCappedMax.txt │ │ │ ├── MongoDBModelCollectionInfo-getCappedSize.txt │ │ │ ├── MongoDBModelCollectionInfo-getName.txt │ │ │ ├── MongoDBModelCollectionInfo-getOptions.txt │ │ │ ├── MongoDBModelCollectionInfo-isCapped.txt │ │ │ ├── MongoDBModelDatabaseInfo-getName.txt │ │ │ ├── MongoDBModelDatabaseInfo-getSizeOnDisk.txt │ │ │ ├── MongoDBModelDatabaseInfo-isEmpty.txt │ │ │ ├── MongoDBModelIndexInfo-getKey.txt │ │ │ ├── MongoDBModelIndexInfo-getName.txt │ │ │ ├── MongoDBModelIndexInfo-getNamespace.txt │ │ │ ├── MongoDBModelIndexInfo-getVersion.txt │ │ │ ├── MongoDBModelIndexInfo-is2dSphere.txt │ │ │ ├── MongoDBModelIndexInfo-isGeoHaystack.txt │ │ │ ├── MongoDBModelIndexInfo-isSparse.txt │ │ │ ├── MongoDBModelIndexInfo-isText.txt │ │ │ ├── MongoDBModelIndexInfo-isTtl.txt │ │ │ ├── MongoDBModelIndexInfo-isUnique.txt │ │ │ ├── MongoDBUpdateResult-getMatchedCount.txt │ │ │ ├── MongoDBUpdateResult-getModifiedCount.txt │ │ │ ├── MongoDBUpdateResult-getUpsertedCount.txt │ │ │ ├── MongoDBUpdateResult-getUpsertedId.txt │ │ │ └── MongoDBUpdateResult-isAcknowledged.txt │ │ ├── result-classes.txt │ │ └── write-result-classes.txt │ ├── tutorial.txt │ ├── tutorial │ │ ├── client-side-encryption.txt │ │ ├── collation.txt │ │ ├── commands.txt │ │ ├── crud.txt │ │ ├── custom-types.txt │ │ ├── decimal128.txt │ │ ├── example-data.txt │ │ ├── gridfs.txt │ │ ├── indexes.txt │ │ ├── install-php-library.txt │ │ └── tailable-cursor.txt │ └── upgrade.txt │ ├── mongo-orchestration │ ├── replica_sets │ │ ├── replicaset-old.json │ │ ├── replicaset-one-node.json │ │ └── replicaset.json │ ├── sharded_clusters │ │ ├── cluster.json │ │ └── cluster_replset.json │ ├── ssl │ │ ├── ca.pem │ │ ├── client.pem │ │ ├── crl.pem │ │ └── server.pem │ └── standalone │ │ ├── standalone-auth.json │ │ ├── standalone-old.json │ │ ├── standalone-ssl.json │ │ └── standalone.json │ ├── phpcs.xml.dist │ ├── phpunit.xml.dist │ ├── src │ ├── BulkWriteResult.php │ ├── ChangeStream.php │ ├── Client.php │ ├── Collection.php │ ├── Database.php │ ├── DeleteResult.php │ ├── Exception │ │ ├── BadMethodCallException.php │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ ├── ResumeTokenException.php │ │ ├── RuntimeException.php │ │ ├── UnexpectedValueException.php │ │ └── UnsupportedException.php │ ├── GridFS │ │ ├── Bucket.php │ │ ├── CollectionWrapper.php │ │ ├── Exception │ │ │ ├── CorruptFileException.php │ │ │ └── FileNotFoundException.php │ │ ├── ReadableStream.php │ │ ├── StreamWrapper.php │ │ └── WritableStream.php │ ├── InsertManyResult.php │ ├── InsertOneResult.php │ ├── MapReduceResult.php │ ├── Model │ │ ├── BSONArray.php │ │ ├── BSONDocument.php │ │ ├── BSONIterator.php │ │ ├── CachingIterator.php │ │ ├── ChangeStreamIterator.php │ │ ├── CollectionInfo.php │ │ ├── CollectionInfoCommandIterator.php │ │ ├── CollectionInfoIterator.php │ │ ├── DatabaseInfo.php │ │ ├── DatabaseInfoIterator.php │ │ ├── DatabaseInfoLegacyIterator.php │ │ ├── IndexInfo.php │ │ ├── IndexInfoIterator.php │ │ ├── IndexInfoIteratorIterator.php │ │ └── IndexInput.php │ ├── Operation │ │ ├── Aggregate.php │ │ ├── BulkWrite.php │ │ ├── Count.php │ │ ├── CountDocuments.php │ │ ├── CreateCollection.php │ │ ├── CreateIndexes.php │ │ ├── DatabaseCommand.php │ │ ├── Delete.php │ │ ├── DeleteMany.php │ │ ├── DeleteOne.php │ │ ├── Distinct.php │ │ ├── DropCollection.php │ │ ├── DropDatabase.php │ │ ├── DropIndexes.php │ │ ├── EstimatedDocumentCount.php │ │ ├── Executable.php │ │ ├── Explain.php │ │ ├── Explainable.php │ │ ├── Find.php │ │ ├── FindAndModify.php │ │ ├── FindOne.php │ │ ├── FindOneAndDelete.php │ │ ├── FindOneAndReplace.php │ │ ├── FindOneAndUpdate.php │ │ ├── InsertMany.php │ │ ├── InsertOne.php │ │ ├── ListCollections.php │ │ ├── ListDatabases.php │ │ ├── ListIndexes.php │ │ ├── MapReduce.php │ │ ├── ModifyCollection.php │ │ ├── ReplaceOne.php │ │ ├── Update.php │ │ ├── UpdateMany.php │ │ ├── UpdateOne.php │ │ ├── Watch.php │ │ └── WithTransaction.php │ ├── UpdateResult.php │ └── functions.php │ └── tests │ ├── ClientFunctionalTest.php │ ├── ClientTest.php │ ├── Collection │ ├── CollectionFunctionalTest.php │ ├── CrudSpecFunctionalTest.php │ ├── FunctionalTestCase.php │ └── spec-tests │ │ ├── read │ │ ├── aggregate-collation.json │ │ ├── aggregate-out.json │ │ ├── aggregate.json │ │ ├── count-collation.json │ │ ├── count-empty.json │ │ ├── count.json │ │ ├── distinct-collation.json │ │ ├── distinct.json │ │ ├── find-collation.json │ │ └── find.json │ │ └── write │ │ ├── bulkWrite-arrayFilters.json │ │ ├── bulkWrite-collation.json │ │ ├── bulkWrite.json │ │ ├── deleteMany-collation.json │ │ ├── deleteMany.json │ │ ├── deleteOne-collation.json │ │ ├── deleteOne.json │ │ ├── findOneAndDelete-collation.json │ │ ├── findOneAndDelete.json │ │ ├── findOneAndReplace-collation.json │ │ ├── findOneAndReplace-upsert.json │ │ ├── findOneAndReplace.json │ │ ├── findOneAndUpdate-arrayFilters.json │ │ ├── findOneAndUpdate-collation.json │ │ ├── findOneAndUpdate.json │ │ ├── insertMany.json │ │ ├── insertOne.json │ │ ├── replaceOne-collation.json │ │ ├── replaceOne.json │ │ ├── updateMany-arrayFilters.json │ │ ├── updateMany-collation.json │ │ ├── updateMany.json │ │ ├── updateOne-arrayFilters.json │ │ ├── updateOne-collation.json │ │ └── updateOne.json │ ├── CommandObserver.php │ ├── Compat │ └── PolyfillAssertTrait.php │ ├── Database │ ├── CollectionManagementFunctionalTest.php │ ├── DatabaseFunctionalTest.php │ └── FunctionalTestCase.php │ ├── DocumentationExamplesTest.php │ ├── FunctionalTestCase.php │ ├── FunctionsTest.php │ ├── GridFS │ ├── BucketFunctionalTest.php │ ├── FunctionalTestCase.php │ ├── ReadableStreamFunctionalTest.php │ ├── SpecFunctionalTest.php │ ├── StreamWrapperFunctionalTest.php │ ├── WritableStreamFunctionalTest.php │ └── spec-tests │ │ ├── delete.json │ │ ├── download.json │ │ ├── download_by_name.json │ │ └── upload.json │ ├── Model │ ├── BSONArrayTest.php │ ├── BSONDocumentTest.php │ ├── BSONIteratorTest.php │ ├── CachingIteratorTest.php │ ├── ChangeStreamIteratorTest.php │ ├── CollectionInfoTest.php │ ├── DatabaseInfoTest.php │ ├── IndexInfoFunctionalTest.php │ ├── IndexInfoTest.php │ ├── IndexInputTest.php │ └── UncloneableObject.php │ ├── Operation │ ├── AggregateFunctionalTest.php │ ├── AggregateTest.php │ ├── BulkWriteFunctionalTest.php │ ├── BulkWriteTest.php │ ├── CountDocumentsFunctionalTest.php │ ├── CountDocumentsTest.php │ ├── CountFunctionalTest.php │ ├── CountTest.php │ ├── CreateCollectionFunctionalTest.php │ ├── CreateCollectionTest.php │ ├── CreateIndexesFunctionalTest.php │ ├── CreateIndexesTest.php │ ├── DatabaseCommandFunctionalTest.php │ ├── DatabaseCommandTest.php │ ├── DeleteFunctionalTest.php │ ├── DeleteTest.php │ ├── DistinctFunctionalTest.php │ ├── DistinctTest.php │ ├── DropCollectionFunctionalTest.php │ ├── DropCollectionTest.php │ ├── DropDatabaseFunctionalTest.php │ ├── DropDatabaseTest.php │ ├── DropIndexesFunctionalTest.php │ ├── DropIndexesTest.php │ ├── EstimatedDocumentCountTest.php │ ├── ExplainFunctionalTest.php │ ├── ExplainTest.php │ ├── FindAndModifyFunctionalTest.php │ ├── FindAndModifyTest.php │ ├── FindFunctionalTest.php │ ├── FindOneAndDeleteTest.php │ ├── FindOneAndReplaceTest.php │ ├── FindOneAndUpdateTest.php │ ├── FindOneFunctionalTest.php │ ├── FindTest.php │ ├── FunctionalTestCase.php │ ├── InsertManyFunctionalTest.php │ ├── InsertManyTest.php │ ├── InsertOneFunctionalTest.php │ ├── InsertOneTest.php │ ├── ListCollectionsFunctionalTest.php │ ├── ListCollectionsTest.php │ ├── ListDatabasesFunctionalTest.php │ ├── ListDatabasesTest.php │ ├── ListIndexesFunctionalTest.php │ ├── ListIndexesTest.php │ ├── MapReduceFunctionalTest.php │ ├── MapReduceTest.php │ ├── ModifyCollectionFunctionalTest.php │ ├── ModifyCollectionTest.php │ ├── ReplaceOneTest.php │ ├── TestCase.php │ ├── UpdateFunctionalTest.php │ ├── UpdateManyTest.php │ ├── UpdateOneTest.php │ ├── UpdateTest.php │ ├── WatchFunctionalTest.php │ └── WatchTest.php │ ├── PedantryTest.php │ ├── SpecTests │ ├── ChangeStreamsSpecTest.php │ ├── ClientSideEncryptionSpecTest.php │ ├── CommandExpectations.php │ ├── CommandMonitoringSpecTest.php │ ├── Context.php │ ├── CrudSpecTest.php │ ├── DocumentsMatchConstraint.php │ ├── DocumentsMatchConstraintTest.php │ ├── ErrorExpectation.php │ ├── FunctionalTestCase.php │ ├── Operation.php │ ├── PrimaryStepDownSpecTest.php │ ├── ResultExpectation.php │ ├── RetryableReadsSpecTest.php │ ├── RetryableWritesSpecTest.php │ ├── TransactionsSpecTest.php │ ├── change-streams │ │ ├── README.rst │ │ ├── change-streams-errors.json │ │ ├── change-streams-errors.yml │ │ ├── change-streams.json │ │ └── change-streams.yml │ ├── client-side-encryption │ │ ├── corpus │ │ │ ├── corpus-encrypted.json │ │ │ ├── corpus-key-aws.json │ │ │ ├── corpus-key-local.json │ │ │ ├── corpus-schema.json │ │ │ └── corpus.json │ │ ├── external │ │ │ ├── external-key.json │ │ │ └── external-schema.json │ │ ├── limits │ │ │ ├── limits-doc.json │ │ │ ├── limits-key.json │ │ │ └── limits-schema.json │ │ └── tests │ │ │ ├── aggregate.json │ │ │ ├── badQueries.json │ │ │ ├── badSchema.json │ │ │ ├── basic.json │ │ │ ├── bulk.json │ │ │ ├── bypassAutoEncryption.json │ │ │ ├── bypassedCommand.json │ │ │ ├── count.json │ │ │ ├── countDocuments.json │ │ │ ├── delete.json │ │ │ ├── distinct.json │ │ │ ├── explain.json │ │ │ ├── find.json │ │ │ ├── findOneAndDelete.json │ │ │ ├── findOneAndReplace.json │ │ │ ├── findOneAndUpdate.json │ │ │ ├── getMore.json │ │ │ ├── insert.json │ │ │ ├── keyAltName.json │ │ │ ├── localKMS.json │ │ │ ├── localSchema.json │ │ │ ├── malformedCiphertext.json │ │ │ ├── maxWireVersion.json │ │ │ ├── missingKey.json │ │ │ ├── replaceOne.json │ │ │ ├── types.json │ │ │ ├── unsupportedCommand.json │ │ │ ├── updateMany.json │ │ │ └── updateOne.json │ ├── command-monitoring │ │ ├── bulkWrite.json │ │ ├── command.json │ │ ├── deleteMany.json │ │ ├── deleteOne.json │ │ ├── find.json │ │ ├── insertMany.json │ │ ├── insertOne.json │ │ ├── unacknowledgedBulkWrite.json │ │ ├── updateMany.json │ │ └── updateOne.json │ ├── crud │ │ ├── aggregate-merge.json │ │ ├── aggregate-out-readConcern.json │ │ ├── bulkWrite-arrayFilters.json │ │ ├── bulkWrite-update-hint.json │ │ ├── db-aggregate.json │ │ ├── find-allowdiskuse.json │ │ ├── replaceOne-hint.json │ │ ├── updateMany-hint.json │ │ ├── updateOne-hint.json │ │ └── updateWithPipelines.json │ ├── retryable-reads │ │ ├── aggregate-merge.json │ │ ├── aggregate-serverErrors.json │ │ ├── aggregate.json │ │ ├── changeStreams-client.watch-serverErrors.json │ │ ├── changeStreams-client.watch.json │ │ ├── changeStreams-db.coll.watch-serverErrors.json │ │ ├── changeStreams-db.coll.watch.json │ │ ├── changeStreams-db.watch-serverErrors.json │ │ ├── changeStreams-db.watch.json │ │ ├── count-serverErrors.json │ │ ├── count.json │ │ ├── countDocuments-serverErrors.json │ │ ├── countDocuments.json │ │ ├── distinct-serverErrors.json │ │ ├── distinct.json │ │ ├── estimatedDocumentCount-serverErrors.json │ │ ├── estimatedDocumentCount.json │ │ ├── find-serverErrors.json │ │ ├── find.json │ │ ├── findOne-serverErrors.json │ │ ├── findOne.json │ │ ├── gridfs-download-serverErrors.json │ │ ├── gridfs-download.json │ │ ├── gridfs-downloadByName-serverErrors.json │ │ ├── gridfs-downloadByName.json │ │ ├── listCollectionNames-serverErrors.json │ │ ├── listCollectionNames.json │ │ ├── listCollectionObjects-serverErrors.json │ │ ├── listCollectionObjects.json │ │ ├── listCollections-serverErrors.json │ │ ├── listCollections.json │ │ ├── listDatabaseNames-serverErrors.json │ │ ├── listDatabaseNames.json │ │ ├── listDatabaseObjects-serverErrors.json │ │ ├── listDatabaseObjects.json │ │ ├── listDatabases-serverErrors.json │ │ ├── listDatabases.json │ │ ├── listIndexNames-serverErrors.json │ │ ├── listIndexNames.json │ │ ├── listIndexes-serverErrors.json │ │ ├── listIndexes.json │ │ └── mapReduce.json │ ├── retryable-writes │ │ ├── bulkWrite-serverErrors.json │ │ ├── bulkWrite.json │ │ ├── deleteMany.json │ │ ├── deleteOne-serverErrors.json │ │ ├── deleteOne.json │ │ ├── findOneAndDelete-serverErrors.json │ │ ├── findOneAndDelete.json │ │ ├── findOneAndReplace-serverErrors.json │ │ ├── findOneAndReplace.json │ │ ├── findOneAndUpdate-serverErrors.json │ │ ├── findOneAndUpdate.json │ │ ├── insertMany-serverErrors.json │ │ ├── insertMany.json │ │ ├── insertOne-serverErrors.json │ │ ├── insertOne.json │ │ ├── replaceOne-serverErrors.json │ │ ├── replaceOne.json │ │ ├── updateMany.json │ │ ├── updateOne-serverErrors.json │ │ └── updateOne.json │ ├── transactions-convenient-api │ │ ├── callback-aborts.json │ │ ├── callback-commits.json │ │ ├── callback-retry.json │ │ ├── commit-retry.json │ │ ├── commit-transienttransactionerror-4.2.json │ │ ├── commit-transienttransactionerror.json │ │ ├── commit-writeconcernerror.json │ │ ├── commit.json │ │ └── transaction-options.json │ └── transactions │ │ ├── abort.json │ │ ├── bulk.json │ │ ├── causal-consistency.json │ │ ├── commit.json │ │ ├── count.json │ │ ├── delete.json │ │ ├── error-labels.json │ │ ├── errors-client.json │ │ ├── errors.json │ │ ├── findOneAndDelete.json │ │ ├── findOneAndReplace.json │ │ ├── findOneAndUpdate.json │ │ ├── insert.json │ │ ├── isolation.json │ │ ├── mongos-pin-auto.json │ │ ├── mongos-recovery-token.json │ │ ├── pin-mongos.json │ │ ├── read-concern.json │ │ ├── read-pref.json │ │ ├── reads.json │ │ ├── retryable-abort.json │ │ ├── retryable-commit.json │ │ ├── retryable-writes.json │ │ ├── run-command.json │ │ ├── transaction-options.json │ │ ├── update.json │ │ └── write-concern.json │ ├── TestCase.php │ └── bootstrap.php ├── myclabs └── php-enum │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ ├── psalm.xml │ └── src │ ├── Enum.php │ └── PHPUnit │ └── Comparator.php ├── phpoffice └── phpspreadsheet │ ├── .phpcs.xml.dist │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── PhpSpreadsheet │ ├── Calculation │ ├── Calculation.php │ ├── Category.php │ ├── Database.php │ ├── DateTime.php │ ├── Engine │ │ ├── CyclicReferenceStack.php │ │ └── Logger.php │ ├── Engineering.php │ ├── Engineering │ │ └── ConvertUOM.php │ ├── Exception.php │ ├── ExceptionHandler.php │ ├── Financial.php │ ├── FormulaParser.php │ ├── FormulaToken.php │ ├── Functions.php │ ├── Logical.php │ ├── LookupRef.php │ ├── MathTrig.php │ ├── Statistical.php │ ├── TextData.php │ ├── Token │ │ └── Stack.php │ ├── Web.php │ ├── functionlist.txt │ └── locale │ │ ├── bg │ │ ├── config │ │ └── functions │ │ ├── cs │ │ ├── config │ │ └── functions │ │ ├── da │ │ ├── config │ │ └── functions │ │ ├── de │ │ ├── config │ │ └── functions │ │ ├── en │ │ └── uk │ │ │ └── config │ │ ├── es │ │ ├── config │ │ └── functions │ │ ├── fi │ │ ├── config │ │ └── functions │ │ ├── fr │ │ ├── config │ │ └── functions │ │ ├── hu │ │ ├── config │ │ └── functions │ │ ├── it │ │ ├── config │ │ └── functions │ │ ├── nl │ │ ├── config │ │ └── functions │ │ ├── no │ │ ├── config │ │ └── functions │ │ ├── pl │ │ ├── config │ │ └── functions │ │ ├── pt │ │ ├── br │ │ │ ├── config │ │ │ └── functions │ │ ├── config │ │ └── functions │ │ ├── ru │ │ ├── config │ │ └── functions │ │ ├── sv │ │ ├── config │ │ └── functions │ │ └── tr │ │ ├── config │ │ └── functions │ ├── Cell │ ├── AddressHelper.php │ ├── AdvancedValueBinder.php │ ├── Cell.php │ ├── Coordinate.php │ ├── DataType.php │ ├── DataValidation.php │ ├── DataValidator.php │ ├── DefaultValueBinder.php │ ├── Hyperlink.php │ ├── IValueBinder.php │ └── StringValueBinder.php │ ├── Chart │ ├── Axis.php │ ├── Chart.php │ ├── DataSeries.php │ ├── DataSeriesValues.php │ ├── Exception.php │ ├── GridLines.php │ ├── Layout.php │ ├── Legend.php │ ├── PlotArea.php │ ├── Properties.php │ ├── Renderer │ │ ├── IRenderer.php │ │ ├── JpGraph.php │ │ └── PHP Charting Libraries.txt │ └── Title.php │ ├── Collection │ ├── Cells.php │ ├── CellsFactory.php │ └── Memory.php │ ├── Comment.php │ ├── DefinedName.php │ ├── Document │ ├── Properties.php │ └── Security.php │ ├── DocumentGenerator.php │ ├── Exception.php │ ├── HashTable.php │ ├── Helper │ ├── Html.php │ └── Sample.php │ ├── IComparable.php │ ├── IOFactory.php │ ├── NamedFormula.php │ ├── NamedRange.php │ ├── Reader │ ├── BaseReader.php │ ├── Csv.php │ ├── DefaultReadFilter.php │ ├── Exception.php │ ├── Gnumeric.php │ ├── Gnumeric │ │ └── PageSetup.php │ ├── Html.php │ ├── IReadFilter.php │ ├── IReader.php │ ├── Ods.php │ ├── Ods │ │ ├── PageSettings.php │ │ └── Properties.php │ ├── Security │ │ └── XmlScanner.php │ ├── Slk.php │ ├── Xls.php │ ├── Xls │ │ ├── Color.php │ │ ├── Color │ │ │ ├── BIFF5.php │ │ │ ├── BIFF8.php │ │ │ └── BuiltIn.php │ │ ├── ErrorCode.php │ │ ├── Escher.php │ │ ├── MD5.php │ │ ├── RC4.php │ │ └── Style │ │ │ ├── Border.php │ │ │ └── FillPattern.php │ ├── Xlsx.php │ ├── Xlsx │ │ ├── AutoFilter.php │ │ ├── BaseParserClass.php │ │ ├── Chart.php │ │ ├── ColumnAndRowAttributes.php │ │ ├── ConditionalStyles.php │ │ ├── DataValidations.php │ │ ├── Hyperlinks.php │ │ ├── PageSetup.php │ │ ├── Properties.php │ │ ├── SheetViewOptions.php │ │ ├── SheetViews.php │ │ ├── Styles.php │ │ └── Theme.php │ ├── Xml.php │ └── Xml │ │ └── PageSettings.php │ ├── ReferenceHelper.php │ ├── RichText │ ├── ITextElement.php │ ├── RichText.php │ ├── Run.php │ └── TextElement.php │ ├── Settings.php │ ├── Shared │ ├── CodePage.php │ ├── Date.php │ ├── Drawing.php │ ├── Escher.php │ ├── Escher │ │ ├── DgContainer.php │ │ ├── DgContainer │ │ │ ├── SpgrContainer.php │ │ │ └── SpgrContainer │ │ │ │ └── SpContainer.php │ │ ├── DggContainer.php │ │ └── DggContainer │ │ │ ├── BstoreContainer.php │ │ │ └── BstoreContainer │ │ │ ├── BSE.php │ │ │ └── BSE │ │ │ └── Blip.php │ ├── File.php │ ├── Font.php │ ├── JAMA │ │ ├── CHANGELOG.TXT │ │ ├── CholeskyDecomposition.php │ │ ├── EigenvalueDecomposition.php │ │ ├── LUDecomposition.php │ │ ├── Matrix.php │ │ ├── QRDecomposition.php │ │ ├── SingularValueDecomposition.php │ │ └── utils │ │ │ └── Maths.php │ ├── OLE.php │ ├── OLE │ │ ├── ChainedBlockStream.php │ │ ├── PPS.php │ │ └── PPS │ │ │ ├── File.php │ │ │ └── Root.php │ ├── OLERead.php │ ├── PasswordHasher.php │ ├── StringHelper.php │ ├── TimeZone.php │ ├── Trend │ │ ├── BestFit.php │ │ ├── ExponentialBestFit.php │ │ ├── LinearBestFit.php │ │ ├── LogarithmicBestFit.php │ │ ├── PolynomialBestFit.php │ │ ├── PowerBestFit.php │ │ └── Trend.php │ ├── XMLWriter.php │ └── Xls.php │ ├── Spreadsheet.php │ ├── Style │ ├── Alignment.php │ ├── Border.php │ ├── Borders.php │ ├── Color.php │ ├── Conditional.php │ ├── Fill.php │ ├── Font.php │ ├── NumberFormat.php │ ├── Protection.php │ ├── Style.php │ └── Supervisor.php │ ├── Worksheet │ ├── AutoFilter.php │ ├── AutoFilter │ │ ├── Column.php │ │ └── Column │ │ │ └── Rule.php │ ├── BaseDrawing.php │ ├── CellIterator.php │ ├── Column.php │ ├── ColumnCellIterator.php │ ├── ColumnDimension.php │ ├── ColumnIterator.php │ ├── Dimension.php │ ├── Drawing.php │ ├── Drawing │ │ └── Shadow.php │ ├── HeaderFooter.php │ ├── HeaderFooterDrawing.php │ ├── Iterator.php │ ├── MemoryDrawing.php │ ├── PageMargins.php │ ├── PageSetup.php │ ├── Protection.php │ ├── Row.php │ ├── RowCellIterator.php │ ├── RowDimension.php │ ├── RowIterator.php │ ├── SheetView.php │ └── Worksheet.php │ └── Writer │ ├── BaseWriter.php │ ├── Csv.php │ ├── Exception.php │ ├── Html.php │ ├── IWriter.php │ ├── Ods.php │ ├── Ods │ ├── Cell │ │ └── Comment.php │ ├── Content.php │ ├── Formula.php │ ├── Meta.php │ ├── MetaInf.php │ ├── Mimetype.php │ ├── NamedExpressions.php │ ├── Settings.php │ ├── Styles.php │ ├── Thumbnails.php │ └── WriterPart.php │ ├── Pdf.php │ ├── Pdf │ ├── Dompdf.php │ ├── Mpdf.php │ └── Tcpdf.php │ ├── Xls.php │ ├── Xls │ ├── BIFFwriter.php │ ├── Escher.php │ ├── Font.php │ ├── Parser.php │ ├── Workbook.php │ ├── Worksheet.php │ └── Xf.php │ ├── Xlsx.php │ └── Xlsx │ ├── Chart.php │ ├── Comments.php │ ├── ContentTypes.php │ ├── DefinedNames.php │ ├── DocProps.php │ ├── Drawing.php │ ├── Rels.php │ ├── RelsRibbon.php │ ├── RelsVBA.php │ ├── StringTable.php │ ├── Style.php │ ├── Theme.php │ ├── Workbook.php │ ├── Worksheet.php │ ├── WriterPart.php │ └── Xlfn.php ├── psr ├── http-client │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ClientExceptionInterface.php │ │ ├── ClientInterface.php │ │ ├── NetworkExceptionInterface.php │ │ └── RequestExceptionInterface.php ├── http-factory │ ├── .gitignore │ ├── .pullapprove.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── RequestFactoryInterface.php │ │ ├── ResponseFactoryInterface.php │ │ ├── ServerRequestFactoryInterface.php │ │ ├── StreamFactoryInterface.php │ │ ├── UploadedFileFactoryInterface.php │ │ └── UriFactoryInterface.php ├── http-message │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── MessageInterface.php │ │ ├── RequestInterface.php │ │ ├── ResponseInterface.php │ │ ├── ServerRequestInterface.php │ │ ├── StreamInterface.php │ │ ├── UploadedFileInterface.php │ │ └── UriInterface.php └── simple-cache │ ├── .editorconfig │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ └── src │ ├── CacheException.php │ ├── CacheInterface.php │ └── InvalidArgumentException.php ├── simpletest └── simpletest │ ├── .phan │ └── config.php │ ├── Changelog.md │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── arguments.php │ ├── authentication.php │ ├── autorun.php │ ├── browser.php │ ├── collector.php │ ├── compatibility.php │ ├── composer.json │ ├── cookies.php │ ├── default_reporter.php │ ├── detached.php │ ├── dumper.php │ ├── eclipse.php │ ├── encoding.php │ ├── errors.php │ ├── exceptions.php │ ├── expectation.php │ ├── extensions │ ├── colortext_reporter.php │ ├── coverage │ │ ├── autocoverage.php │ │ ├── bin │ │ │ ├── php-coverage-close.php │ │ │ ├── php-coverage-open.php │ │ │ └── php-coverage-report.php │ │ ├── coverage.php │ │ ├── coverage_calculator.php │ │ ├── coverage_data_handler.php │ │ ├── coverage_reporter.php │ │ ├── coverage_utils.php │ │ ├── coverage_writer.php │ │ ├── templates │ │ │ ├── file.php │ │ │ └── index.php │ │ └── test │ │ │ ├── coverage_calculator_test.php │ │ │ ├── coverage_data_handler_test.php │ │ │ ├── coverage_reporter_test.php │ │ │ ├── coverage_test.php │ │ │ ├── coverage_utils_test.php │ │ │ ├── coverage_writer_test.php │ │ │ ├── sample │ │ │ └── code.php │ │ │ └── test.php │ ├── css │ │ └── webunit.css │ ├── dom_tester.php │ ├── dom_tester │ │ ├── css_selector.php │ │ └── test │ │ │ ├── dom_tester_doc_test.php │ │ │ ├── dom_tester_test.php │ │ │ └── support │ │ │ ├── child_adjacent.html │ │ │ └── dom_tester.html │ ├── img │ │ └── wait.gif │ ├── js │ │ ├── tests │ │ │ └── TestOfWebunit.js.html │ │ ├── webunit.js │ │ └── x.js │ ├── junit_xml_reporter.php │ ├── phpunit │ │ ├── PHPUnitTestCase.php │ │ └── tests │ │ │ └── adapter_test.php │ ├── selenese_tester.php │ ├── selenium.php │ ├── selenium │ │ ├── remote-control.php │ │ └── test │ │ │ └── remote-control_test.php │ ├── testdox.php │ ├── testdox │ │ └── test.php │ ├── treemap_reporter.php │ ├── treemap_reporter │ │ ├── jquery.php │ │ ├── test │ │ │ └── treemap_node_test.php │ │ └── treemap_recorder.php │ └── webunit_reporter.php │ ├── form.php │ ├── frames.php │ ├── http.php │ ├── invoker.php │ ├── mock_objects.php │ ├── page.php │ ├── php_parser.php │ ├── recorder.php │ ├── reflection.php │ ├── remote.php │ ├── reporter.php │ ├── scorer.php │ ├── selector.php │ ├── shell_tester.php │ ├── simpletest.php │ ├── socket.php │ ├── tag.php │ ├── test │ ├── acceptance_test.php │ ├── all_tests.php │ ├── arguments_test.php │ ├── authentication_test.php │ ├── autorun_test.php │ ├── bad_test_suite.php │ ├── browser_test.php │ ├── collector_test.php │ ├── command_line_test.php │ ├── compatibility_test.php │ ├── cookies_test.php │ ├── detached_test.php │ ├── dumper_test.php │ ├── eclipse_test.php │ ├── encoding_test.php │ ├── errors_test.php │ ├── exceptions_test.php │ ├── expectation_test.php │ ├── extensions_tests.php │ ├── form_test.php │ ├── frames_test.php │ ├── http_test.php │ ├── interfaces_test.php │ ├── issues │ │ ├── test_issue29.php │ │ └── test_issue34.php │ ├── live_test.php │ ├── mock_objects_test.php │ ├── page_test.php │ ├── parse_error_test.php │ ├── parsing_test.php │ ├── php_parser_test.php │ ├── recorder_test.php │ ├── reflection_test.php │ ├── remote_test.php │ ├── shell_test.php │ ├── shell_tester_test.php │ ├── simpletest_test.php │ ├── site │ │ ├── .htaccess │ │ ├── 1.html │ │ ├── 2.html │ │ ├── 3.html │ │ ├── base_change_redirect.php │ │ ├── base_tag │ │ │ ├── base_link.html │ │ │ ├── form.html │ │ │ ├── frameset.html │ │ │ ├── frameset_with_base_tag.html │ │ │ ├── page_1.html │ │ │ ├── page_2.html │ │ │ └── relative_link.html │ │ ├── cookie_based_counter.php │ │ ├── counting_frameset.html │ │ ├── double_base_change_redirect.php │ │ ├── file.html │ │ ├── form.html │ │ ├── form_data_encoded_form.html │ │ ├── form_with_array_based_inputs.php │ │ ├── form_with_false_defaults.html │ │ ├── form_with_mixed_post_and_get.html │ │ ├── form_with_quoted_values.php │ │ ├── form_with_radio_buttons.html │ │ ├── form_with_tricky_defaults.html │ │ ├── form_with_unnamed_submit.html │ │ ├── form_without_action.php │ │ ├── frame_a.html │ │ ├── frame_b.html │ │ ├── frame_links.html │ │ ├── frameset.html │ │ ├── front_controller_style │ │ │ ├── a_page.php │ │ │ ├── index.php │ │ │ └── show_request.php │ │ ├── index.html │ │ ├── link_confirm.php │ │ ├── local_redirect.php │ │ ├── messy_frameset.html │ │ ├── multiple_widget_form.html │ │ ├── nested_frameset.html │ │ ├── network_confirm.php │ │ ├── one_page_frameset.html │ │ ├── page_request.php │ │ ├── path │ │ │ ├── base_change_redirect.php │ │ │ ├── network_confirm.php │ │ │ └── show_cookies.php │ │ ├── protected │ │ │ ├── .htaccess │ │ │ ├── .htpasswd │ │ │ ├── 1.html │ │ │ ├── 2.html │ │ │ ├── 3.html │ │ │ ├── local_redirect.php │ │ │ └── network_confirm.php │ │ ├── redirect.php │ │ ├── request_methods.php │ │ ├── savant_style_form.html │ │ ├── search.png │ │ ├── self.php │ │ ├── self_form.php │ │ ├── set_cookies.php │ │ ├── slow_page.php │ │ ├── timestamp.php │ │ ├── upload_form.html │ │ └── upload_handler.php │ ├── socket_test.php │ ├── support │ │ ├── collector │ │ │ ├── collectable.1 │ │ │ └── collectable.2 │ │ ├── empty_test_file.php │ │ ├── failing_test.php │ │ ├── latin1_sample │ │ ├── passing_test.php │ │ ├── recorder_sample.php │ │ ├── spl_examples.php │ │ ├── supplementary_upload_sample.txt │ │ ├── test1.php │ │ └── upload_sample.txt │ ├── tag_test.php │ ├── test_with_parse_error.php │ ├── unit_tester_test.php │ ├── unit_tests.php │ ├── url_test.php │ ├── user_agent_test.php │ ├── utf8_test.php │ ├── visual │ │ └── visual_errors.php │ ├── visual_test.php │ ├── web_tester_test.php │ └── xml_test.php │ ├── test_case.php │ ├── tidy_parser.php │ ├── unit_tester.php │ ├── url.php │ ├── user_agent.php │ ├── web_tester.php │ └── xml.php └── symfony └── polyfill-mbstring ├── LICENSE ├── Mbstring.php ├── README.md ├── Resources └── unidata │ ├── lowerCase.php │ ├── titleCaseRegexp.php │ └── upperCase.php ├── bootstrap.php ├── bootstrap80.php └── composer.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/README.md -------------------------------------------------------------------------------- /application/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/Bootstrap.php -------------------------------------------------------------------------------- /application/controllers/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/controllers/Admin.php -------------------------------------------------------------------------------- /application/controllers/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/controllers/Api.php -------------------------------------------------------------------------------- /application/controllers/Api2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/controllers/Api2.php -------------------------------------------------------------------------------- /application/controllers/Cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/controllers/Cli.php -------------------------------------------------------------------------------- /application/controllers/Cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/controllers/Cron.php -------------------------------------------------------------------------------- /application/controllers/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/controllers/Error.php -------------------------------------------------------------------------------- /application/controllers/Import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/controllers/Import.php -------------------------------------------------------------------------------- /application/controllers/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/controllers/Index.php -------------------------------------------------------------------------------- /application/controllers/Locale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/controllers/Locale.php -------------------------------------------------------------------------------- /application/controllers/Oauth2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/controllers/Oauth2.php -------------------------------------------------------------------------------- /application/controllers/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/controllers/Test.php -------------------------------------------------------------------------------- /application/controllers/Utest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/controllers/Utest.php -------------------------------------------------------------------------------- /application/helpers/Action/VLR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/helpers/Action/VLR.php -------------------------------------------------------------------------------- /application/models/Archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Archive.php -------------------------------------------------------------------------------- /application/models/Balances.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Balances.php -------------------------------------------------------------------------------- /application/models/Billrun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Billrun.php -------------------------------------------------------------------------------- /application/models/Cards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Cards.php -------------------------------------------------------------------------------- /application/models/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Config.php -------------------------------------------------------------------------------- /application/models/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Events.php -------------------------------------------------------------------------------- /application/models/Lines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Lines.php -------------------------------------------------------------------------------- /application/models/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Log.php -------------------------------------------------------------------------------- /application/models/Plans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Plans.php -------------------------------------------------------------------------------- /application/models/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Queue.php -------------------------------------------------------------------------------- /application/models/Rates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Rates.php -------------------------------------------------------------------------------- /application/models/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Report.php -------------------------------------------------------------------------------- /application/models/ResetLines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/ResetLines.php -------------------------------------------------------------------------------- /application/models/Statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Statistics.php -------------------------------------------------------------------------------- /application/models/Subscribers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Subscribers.php -------------------------------------------------------------------------------- /application/models/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Table.php -------------------------------------------------------------------------------- /application/models/Tabledate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Tabledate.php -------------------------------------------------------------------------------- /application/models/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Users.php -------------------------------------------------------------------------------- /application/models/Versions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/Versions.php -------------------------------------------------------------------------------- /application/models/utest/Call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/utest/Call.php -------------------------------------------------------------------------------- /application/models/utest/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/utest/Data.php -------------------------------------------------------------------------------- /application/models/utest/Sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/models/utest/Sms.php -------------------------------------------------------------------------------- /application/plugins/autorenew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/plugins/autorenew.php -------------------------------------------------------------------------------- /application/plugins/calcCpu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/plugins/calcCpu.php -------------------------------------------------------------------------------- /application/plugins/csi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/plugins/csi.php -------------------------------------------------------------------------------- /application/plugins/fraud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/plugins/fraud.php -------------------------------------------------------------------------------- /application/plugins/ggsn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/plugins/ggsn.php -------------------------------------------------------------------------------- /application/plugins/nsn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/plugins/nsn.php -------------------------------------------------------------------------------- /application/plugins/pelephone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/plugins/pelephone.php -------------------------------------------------------------------------------- /application/plugins/prepaid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/plugins/prepaid.php -------------------------------------------------------------------------------- /application/plugins/realtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/plugins/realtime.php -------------------------------------------------------------------------------- /application/plugins/skipEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/plugins/skipEvents.php -------------------------------------------------------------------------------- /application/plugins/sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/plugins/sms.php -------------------------------------------------------------------------------- /application/plugins/tap3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/plugins/tap3.php -------------------------------------------------------------------------------- /application/plugins/webhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/plugins/webhooks.php -------------------------------------------------------------------------------- /application/views/admin/edit.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/views/admin/edit.phtml -------------------------------------------------------------------------------- /application/views/admin/home.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/views/admin/home.phtml -------------------------------------------------------------------------------- /application/views/admin/permission.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/views/api/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/views/api/index.phtml -------------------------------------------------------------------------------- /application/views/api/locale.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/views/api/locale.phtml -------------------------------------------------------------------------------- /application/views/api2/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/views/api2/index.phtml -------------------------------------------------------------------------------- /application/views/cli/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/views/cli/index.phtml -------------------------------------------------------------------------------- /application/views/cron/index.phtml: -------------------------------------------------------------------------------- 1 | message . PHP_EOL; 4 | -------------------------------------------------------------------------------- /application/views/error/error.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/views/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/views/index.phtml -------------------------------------------------------------------------------- /application/views/index/test.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/views/menu.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BillRun/system/HEAD/application/views/menu.phtml -------------------------------------------------------------------------------- /application/views/oauth2/index.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/views/sendrequest/sendrequest.phtml: -------------------------------------------------------------------------------- 1 |