├── README.md ├── app ├── admin │ ├── annotation │ │ ├── AdminMenuAnnotation.php │ │ └── AdminMenuRootAnnotation.php │ ├── api │ │ ├── NavApi.php │ │ ├── NavMenuApi.php │ │ └── SlideApi.php │ ├── controller │ │ ├── AppController.php │ │ ├── ApplyController.php │ │ ├── CertificateController.php │ │ ├── DialogController.php │ │ ├── DownloadController.php │ │ ├── HookController.php │ │ ├── IndexController.php │ │ ├── LinkController.php │ │ ├── MailerController.php │ │ ├── MainController.php │ │ ├── MembersController.php │ │ ├── MenuController.php │ │ ├── NavController.php │ │ ├── NavMenuController.php │ │ ├── PluginController.php │ │ ├── PublicController.php │ │ ├── RbacController.php │ │ ├── RecycleBinController.php │ │ ├── ReportController.php │ │ ├── RouteController.php │ │ ├── SettingController.php │ │ ├── SlideController.php │ │ ├── SlideItemController.php │ │ ├── StorageController.php │ │ ├── SystemsController.php │ │ ├── ThemeController.php │ │ └── UserController.php │ ├── lang │ │ ├── en-us.php │ │ ├── en-us │ │ │ ├── admin_menu.php │ │ │ └── common.php │ │ ├── zh-cn.php │ │ └── zh-cn │ │ │ ├── admin.php │ │ │ ├── admin_menu.php │ │ │ └── common.php │ ├── model │ │ ├── AdminMenuModel.php │ │ ├── HookModel.php │ │ ├── HookPluginModel.php │ │ ├── LinkModel.php │ │ ├── NavMenuModel.php │ │ ├── NavModel.php │ │ ├── OptionModel.php │ │ ├── PluginModel.php │ │ ├── RouteModel.php │ │ ├── SlideItemModel.php │ │ ├── SlideModel.php │ │ └── ThemeModel.php │ ├── service │ │ └── ApiService.php │ └── validate │ │ ├── AdminMenuValidate.php │ │ ├── LinkValidate.php │ │ ├── RoleValidate.php │ │ ├── RouteValidate.php │ │ ├── SettingSiteValidate.php │ │ ├── SlideValidate.php │ │ ├── StorageQiniuValidate.php │ │ └── UserValidate.php ├── command.php ├── config.php ├── database.php ├── debug.php ├── portal │ ├── api │ │ ├── CategoryApi.php │ │ └── PageApi.php │ ├── controller │ │ ├── AdminArticleController.php │ │ ├── AdminCategoryController.php │ │ ├── AdminIndexController.php │ │ ├── AdminPageController.php │ │ ├── AdminTagController.php │ │ ├── ArticleController.php │ │ ├── IndexController.php │ │ ├── IndexController.php.renzheng │ │ ├── ListController.php │ │ ├── PageController.php │ │ ├── PostedController.php │ │ ├── SearchController.php │ │ ├── TagController.php │ │ └── TestController.php │ ├── hooks.php │ ├── lang │ │ ├── en-us.php │ │ ├── en-us │ │ │ └── common.php │ │ ├── zh-cn.php │ │ └── zh-cn │ │ │ ├── common.php │ │ │ └── home.php │ ├── model │ │ ├── PortalCategoryModel.php │ │ ├── PortalPostModel.php │ │ ├── PortalTagModel.php │ │ └── UserModel.php │ ├── nav.php │ ├── service │ │ ├── ApiService.php │ │ └── PostService.php │ ├── taglib │ │ ├── Portal.php │ │ └── validate │ │ │ ├── AdminArticleValidate.php │ │ │ ├── AdminPageValidate.php │ │ │ └── PortalCategoryValidate.php │ ├── url.php │ └── user_action.php ├── release.php ├── route.php ├── tags.php └── user │ ├── controller │ ├── AdminAssetController.php │ ├── AdminIndexController.php │ ├── AdminOauthController.php │ ├── AdminUserActionController.php │ ├── AssetController.php │ ├── CertificateController.php │ ├── CommentController.php │ ├── FavoriteController.php │ ├── IndexController.php │ ├── InstallController.php │ ├── LoginController.php │ ├── PayController.php │ ├── ProfileController.php │ ├── PublicController.php │ ├── RegisterController.php │ ├── TubeController.php │ ├── UeditorController.php │ └── VerificationCodeController.php │ ├── lang │ ├── en-us.php │ ├── en-us │ │ └── admin_menu.php │ ├── zh-cn.php │ └── zh-cn │ │ └── admin_menu.php │ ├── model │ ├── AssetModel.php │ ├── CommentModel.php │ ├── UserFavoriteModel.php │ ├── UserModel.php │ └── UserPostedModel.php │ ├── url.php │ ├── user_action.php │ └── validate │ ├── FavoriteValidate.php │ └── UserArticlesValidate.php ├── assets ├── js │ ├── app.js │ ├── bootstrap.js │ ├── components │ │ └── Example.vue │ └── helper.js └── sass │ └── app.scss ├── data ├── conf │ ├── database.php │ └── route.php ├── install.lock └── lang │ └── zh-cn │ └── admin_menu.php ├── isign-php.sql ├── public ├── .htaccess ├── .well-known │ └── pki-validation │ │ └── fileauth.txt ├── about.html ├── aboutfiles │ └── header_include_fashion.min.css ├── adminer.php ├── certificate │ └── F9SZ9H4C46 │ │ ├── 20191118 │ │ ├── b0b85fe7b516e5385ea6a40772b2a039.p8 │ │ └── b8240be6aaba421d0032037be1a76f57.p12 │ │ └── 20191119 │ │ ├── 20aaf96ff316c4f729286795f0138489.p8 │ │ └── c9709007139b8d7334bd522076dccea7.p12 ├── dist │ └── app-info-parser.js ├── getudid.mobileconfig ├── icon.png ├── index.php ├── ios_describe │ └── .gitignore ├── ios_describe_aoi │ └── .gitignore ├── ios_movileprovision │ ├── 450482c7e9ea840edd8c11d1181a6360946dc586.mobileprovision │ └── c381afbbf6aecc2975bddbfff0210d491b5de57f.mobileprovision ├── lib │ ├── CFPropertyList │ │ ├── CFBinaryPropertyList.php │ │ ├── CFPropertyList.php │ │ ├── CFType.php │ │ ├── CFTypeDetector.php │ │ ├── IOException.php │ │ └── PListException.php │ ├── alipay │ │ ├── AopSdk.php │ │ ├── aop │ │ │ ├── AlipayMobilePublicMultiMediaClient.php │ │ │ ├── AlipayMobilePublicMultiMediaExecute.php │ │ │ ├── AopClient.php │ │ │ ├── AopEncrypt.php │ │ │ ├── EncryptParseItem.php │ │ │ ├── EncryptResponseData.php │ │ │ ├── SignData.php │ │ │ ├── request │ │ │ │ ├── AlipayAccountExrateAdviceAcceptRequest.php │ │ │ │ ├── AlipayAccountExrateAllclientrateQueryRequest.php │ │ │ │ ├── AlipayAccountExrateRatequeryRequest.php │ │ │ │ ├── AlipayAcquireCancelRequest.php │ │ │ │ ├── AlipayAcquireCloseRequest.php │ │ │ │ ├── AlipayAcquireCreateandpayRequest.php │ │ │ │ ├── AlipayAcquirePrecreateRequest.php │ │ │ │ ├── AlipayAcquireQueryRequest.php │ │ │ │ ├── AlipayAcquireRefundRequest.php │ │ │ │ ├── AlipayAppTokenGetRequest.php │ │ │ │ ├── AlipayAssetAccountBindRequest.php │ │ │ │ ├── AlipayAssetAccountGetRequest.php │ │ │ │ ├── AlipayAssetAccountUnbindRequest.php │ │ │ │ ├── AlipayAssetPointBalanceQueryRequest.php │ │ │ │ ├── AlipayAssetPointBudgetQueryRequest.php │ │ │ │ ├── AlipayAssetPointOrderCreateRequest.php │ │ │ │ ├── AlipayAssetPointOrderQueryRequest.php │ │ │ │ ├── AlipayBossCsChannelQueryRequest.php │ │ │ │ ├── AlipayBossProdArrangementOfflineQueryRequest.php │ │ │ │ ├── AlipayCommerceCityfacilitatorCityQueryRequest.php │ │ │ │ ├── AlipayCommerceCityfacilitatorDepositCancelRequest.php │ │ │ │ ├── AlipayCommerceCityfacilitatorDepositConfirmRequest.php │ │ │ │ ├── AlipayCommerceCityfacilitatorDepositQueryRequest.php │ │ │ │ ├── AlipayCommerceCityfacilitatorFunctionQueryRequest.php │ │ │ │ ├── AlipayCommerceCityfacilitatorScriptQueryRequest.php │ │ │ │ ├── AlipayCommerceCityfacilitatorStationQueryRequest.php │ │ │ │ ├── AlipayCommerceCityfacilitatorVoucherBatchqueryRequest.php │ │ │ │ ├── AlipayCommerceCityfacilitatorVoucherCancelRequest.php │ │ │ │ ├── AlipayCommerceCityfacilitatorVoucherConfirmRequest.php │ │ │ │ ├── AlipayCommerceCityfacilitatorVoucherGenerateRequest.php │ │ │ │ ├── AlipayCommerceCityfacilitatorVoucherQueryRequest.php │ │ │ │ ├── AlipayCommerceCityfacilitatorVoucherRefundRequest.php │ │ │ │ ├── AlipayCommerceCityfacilitatorVoucherUploadRequest.php │ │ │ │ ├── AlipayCommerceEducateStudentinfoShareRequest.php │ │ │ │ ├── AlipayCommerceMedicalInstcardBindRequest.php │ │ │ │ ├── AlipayCommerceTransportOfflinepayKeyQueryRequest.php │ │ │ │ ├── AlipayCommerceTransportOfflinepayRecordVerifyRequest.php │ │ │ │ ├── AlipayCommerceTransportOfflinepayUserblacklistQueryRequest.php │ │ │ │ ├── AlipayDaoweiOrderCancelRequest.php │ │ │ │ ├── AlipayDaoweiOrderConfirmRequest.php │ │ │ │ ├── AlipayDaoweiOrderModifyRequest.php │ │ │ │ ├── AlipayDaoweiOrderQueryRequest.php │ │ │ │ ├── AlipayDaoweiOrderRefundRequest.php │ │ │ │ ├── AlipayDaoweiOrderRefuseRequest.php │ │ │ │ ├── AlipayDaoweiOrderSpModifyRequest.php │ │ │ │ ├── AlipayDaoweiOrderTransferRequest.php │ │ │ │ ├── AlipayDaoweiServiceModifyRequest.php │ │ │ │ ├── AlipayDaoweiServicePriceModifyRequest.php │ │ │ │ ├── AlipayDaoweiSpModifyRequest.php │ │ │ │ ├── AlipayDaoweiSpScheduleModifyRequest.php │ │ │ │ ├── AlipayDataBillDownloadurlGetRequest.php │ │ │ │ ├── AlipayDataDataexchangeSfasdfRequest.php │ │ │ │ ├── AlipayDataDataserviceBillDownloadurlQueryRequest.php │ │ │ │ ├── AlipayDataDataserviceChinaremodelQueryRequest.php │ │ │ │ ├── AlipayDataDataserviceCodeRecoRequest.php │ │ │ │ ├── AlipayDataDataserviceSdfsdfRequest.php │ │ │ │ ├── AlipayDataDataserviceUserlevelZrankGetRequest.php │ │ │ │ ├── AlipayEbppBillAddRequest.php │ │ │ │ ├── AlipayEbppBillGetRequest.php │ │ │ │ ├── AlipayEbppBillSearchRequest.php │ │ │ │ ├── AlipayEbppMerchantConfigGetRequest.php │ │ │ │ ├── AlipayEbppPdeductBillPayStatusRequest.php │ │ │ │ ├── AlipayEbppPdeductPayRequest.php │ │ │ │ ├── AlipayEbppPdeductSignAddRequest.php │ │ │ │ ├── AlipayEbppPdeductSignCancelRequest.php │ │ │ │ ├── AlipayEbppPdeductSignQueryRequest.php │ │ │ │ ├── AlipayEbppPdeductSignValidateRequest.php │ │ │ │ ├── AlipayEcapiprodCreditGetRequest.php │ │ │ │ ├── AlipayEcapiprodDataPutRequest.php │ │ │ │ ├── AlipayEcapiprodDrawndnContractGetRequest.php │ │ │ │ ├── AlipayEcapiprodDrawndnDrawndnlistQueryRequest.php │ │ │ │ ├── AlipayEcapiprodDrawndnFeerecordQueryRequest.php │ │ │ │ ├── AlipayEcapiprodDrawndnLendingrecordQueryRequest.php │ │ │ │ ├── AlipayEcapiprodDrawndnPaymentscheduleGetRequest.php │ │ │ │ ├── AlipayEcapiprodDrawndnRepaymentrecordQueryRequest.php │ │ │ │ ├── AlipayEcardEduPublicBindRequest.php │ │ │ │ ├── AlipayEcoCplifeBasicserviceInitializeRequest.php │ │ │ │ ├── AlipayEcoCplifeBasicserviceModifyRequest.php │ │ │ │ ├── AlipayEcoCplifeBillBatchUploadRequest.php │ │ │ │ ├── AlipayEcoCplifeBillBatchqueryRequest.php │ │ │ │ ├── AlipayEcoCplifeBillDeleteRequest.php │ │ │ │ ├── AlipayEcoCplifeBillModifyRequest.php │ │ │ │ ├── AlipayEcoCplifeBillSyncRequest.php │ │ │ │ ├── AlipayEcoCplifeCommunityBatchqueryRequest.php │ │ │ │ ├── AlipayEcoCplifeCommunityCreateRequest.php │ │ │ │ ├── AlipayEcoCplifeCommunityDetailsQueryRequest.php │ │ │ │ ├── AlipayEcoCplifeCommunityModifyRequest.php │ │ │ │ ├── AlipayEcoCplifeNoticeDeleteRequest.php │ │ │ │ ├── AlipayEcoCplifeNoticePublishRequest.php │ │ │ │ ├── AlipayEcoCplifeRepairStatusUpdateRequest.php │ │ │ │ ├── AlipayEcoCplifeResidentinfoDeleteRequest.php │ │ │ │ ├── AlipayEcoCplifeResidentinfoUploadRequest.php │ │ │ │ ├── AlipayEcoCplifeRoominfoDeleteRequest.php │ │ │ │ ├── AlipayEcoCplifeRoominfoQueryRequest.php │ │ │ │ ├── AlipayEcoCplifeRoominfoUploadRequest.php │ │ │ │ ├── AlipayEcoCplifeRooominfoQueryRequest.php │ │ │ │ ├── AlipayEcoCplifeUseridentityStatusUpdateRequest.php │ │ │ │ ├── AlipayEcoMycarCarlibInfoPushRequest.php │ │ │ │ ├── AlipayEcoMycarCarmodelModifyRequest.php │ │ │ │ ├── AlipayEcoMycarDataExternalQueryRequest.php │ │ │ │ ├── AlipayEcoMycarDataExternalSendRequest.php │ │ │ │ ├── AlipayEcoMycarDataserviceViolationinfoShareRequest.php │ │ │ │ ├── AlipayEcoMycarMaintainDataUpdateRequest.php │ │ │ │ ├── AlipayEcoMycarMaintainOrderCreateRequest.php │ │ │ │ ├── AlipayEcoMycarMaintainOrderstatusUpdateRequest.php │ │ │ │ ├── AlipayEcoMycarOrderStatusQueryRequest.php │ │ │ │ ├── AlipayEcoMycarParkingCardbarcodeCreateRequest.php │ │ │ │ ├── AlipayEcoMycarParkingEnterinfoSyncRequest.php │ │ │ │ ├── AlipayEcoMycarParkingExitinfoSyncRequest.php │ │ │ │ ├── AlipayEcoMycarParkingLotbarcodeCreateRequest.php │ │ │ │ ├── AlipayEcoMycarParkingOrderSyncRequest.php │ │ │ │ ├── AlipayEcoMycarParkingOrderUpdateRequest.php │ │ │ │ ├── AlipayEcoMycarParkingOrderstatusQueryRequest.php │ │ │ │ ├── AlipayEcoMycarParkingParkinglotinfoCreateRequest.php │ │ │ │ ├── AlipayEcoMycarParkingParkinglotinfoUpdateRequest.php │ │ │ │ ├── AlipayEcoMycarParkingVehicleQueryRequest.php │ │ │ │ ├── AlipayEcoMycarPromoTicketPushRequest.php │ │ │ │ ├── AlipayEcoMycarPromoTicketSyncRequest.php │ │ │ │ ├── AlipayEcoMycarPromoVoucherVerifyRequest.php │ │ │ │ ├── AlipayEcoMycarTradeRefundRequest.php │ │ │ │ ├── AlipayEcoMycarViolationCityPushRequest.php │ │ │ │ ├── AlipayEcoMycarViolationInfoPushRequest.php │ │ │ │ ├── AlipayEcoWelfareCodeSyncRequest.php │ │ │ │ ├── AlipayExscUserCurrentsignGetRequest.php │ │ │ │ ├── AlipayExscUserFirstfundinpourGetRequest.php │ │ │ │ ├── AlipayExscUserFirstsignGetRequest.php │ │ │ │ ├── AlipayFlashsalesStockSyncUpdateRequest.php │ │ │ │ ├── AlipayFundAuthOperationCancelRequest.php │ │ │ │ ├── AlipayFundAuthOperationDetailQueryRequest.php │ │ │ │ ├── AlipayFundAuthOrderFreezeRequest.php │ │ │ │ ├── AlipayFundAuthOrderUnfreezeRequest.php │ │ │ │ ├── AlipayFundTransOrderQueryRequest.php │ │ │ │ ├── AlipayFundTransToaccountTransferRequest.php │ │ │ │ ├── AlipayInsAutoCarSaveRequest.php │ │ │ │ ├── AlipayInsSceneApplicationIssueConfirmRequest.php │ │ │ │ ├── AlipayInsSceneCouponReceiveRequest.php │ │ │ │ ├── AlipayInsSceneCouponSendRequest.php │ │ │ │ ├── AlipayMarketingCampaignActivityOfflineCreateRequest.php │ │ │ │ ├── AlipayMarketingCampaignActivityOfflineTriggerRequest.php │ │ │ │ ├── AlipayMarketingCampaignCashCreateRequest.php │ │ │ │ ├── AlipayMarketingCampaignCashDetailQueryRequest.php │ │ │ │ ├── AlipayMarketingCampaignCashListQueryRequest.php │ │ │ │ ├── AlipayMarketingCampaignCashStatusModifyRequest.php │ │ │ │ ├── AlipayMarketingCampaignCashTriggerRequest.php │ │ │ │ ├── AlipayMarketingCampaignCertCreateRequest.php │ │ │ │ ├── AlipayMarketingCampaignDiscountBudgetAppendRequest.php │ │ │ │ ├── AlipayMarketingCampaignDiscountBudgetCreateRequest.php │ │ │ │ ├── AlipayMarketingCampaignDiscountBudgetQueryRequest.php │ │ │ │ ├── AlipayMarketingCampaignDiscountOperateRequest.php │ │ │ │ ├── AlipayMarketingCampaignDiscountQueryRequest.php │ │ │ │ ├── AlipayMarketingCampaignDiscountStatusUpdateRequest.php │ │ │ │ ├── AlipayMarketingCampaignDiscountWhitelistQueryRequest.php │ │ │ │ ├── AlipayMarketingCampaignDiscountWhitelistUpdateRequest.php │ │ │ │ ├── AlipayMarketingCampaignDrawcampCreateRequest.php │ │ │ │ ├── AlipayMarketingCampaignDrawcampQueryRequest.php │ │ │ │ ├── AlipayMarketingCampaignDrawcampStatusUpdateRequest.php │ │ │ │ ├── AlipayMarketingCampaignDrawcampTriggerRequest.php │ │ │ │ ├── AlipayMarketingCampaignDrawcampUpdateRequest.php │ │ │ │ ├── AlipayMarketingCampaignDrawcampWhitelistCreateRequest.php │ │ │ │ ├── AlipayMarketingCampaignPrizeAmountQueryRequest.php │ │ │ │ ├── AlipayMarketingCardActivateformQueryRequest.php │ │ │ │ ├── AlipayMarketingCardActivateurlApplyRequest.php │ │ │ │ ├── AlipayMarketingCardConsumeSyncRequest.php │ │ │ │ ├── AlipayMarketingCardDeleteRequest.php │ │ │ │ ├── AlipayMarketingCardOpenRequest.php │ │ │ │ ├── AlipayMarketingCardQueryRequest.php │ │ │ │ ├── AlipayMarketingCardTemplateCreateRequest.php │ │ │ │ ├── AlipayMarketingCardTemplateModifyRequest.php │ │ │ │ ├── AlipayMarketingCardTemplateQueryRequest.php │ │ │ │ ├── AlipayMarketingCardUpdateRequest.php │ │ │ │ ├── AlipayMarketingCashvoucherTemplateCreateRequest.php │ │ │ │ ├── AlipayMarketingCashvoucherTemplateModifyRequest.php │ │ │ │ ├── AlipayMarketingCdpAdvertiseCreateRequest.php │ │ │ │ ├── AlipayMarketingCdpAdvertiseModifyRequest.php │ │ │ │ ├── AlipayMarketingCdpAdvertiseOperateRequest.php │ │ │ │ ├── AlipayMarketingCdpAdvertiseQueryRequest.php │ │ │ │ ├── AlipayMarketingCdpAdvertiseReportQueryRequest.php │ │ │ │ ├── AlipayMarketingCdpRecommendQueryRequest.php │ │ │ │ ├── AlipayMarketingToolFengdieActivityCreateRequest.php │ │ │ │ ├── AlipayMarketingToolFengdieActivityQueryRequest.php │ │ │ │ ├── AlipayMarketingToolFengdieEditorQueryRequest.php │ │ │ │ ├── AlipayMarketingToolFengdieTemplateQueryRequest.php │ │ │ │ ├── AlipayMarketingVoucherAuthSendRequest.php │ │ │ │ ├── AlipayMarketingVoucherConfirmRequest.php │ │ │ │ ├── AlipayMarketingVoucherListQueryRequest.php │ │ │ │ ├── AlipayMarketingVoucherTemplateDeleteRequest.php │ │ │ │ ├── AlipayMarketingVoucherTemplatedetailQueryRequest.php │ │ │ │ ├── AlipayMarketingVoucherTemplatelistQueryRequest.php │ │ │ │ ├── AlipayMdataTagGetRequest.php │ │ │ │ ├── AlipayMemberCouponQuerylistRequest.php │ │ │ │ ├── AlipayMicropayOrderConfirmpayurlGetRequest.php │ │ │ │ ├── AlipayMicropayOrderDirectPayRequest.php │ │ │ │ ├── AlipayMicropayOrderFreezeRequest.php │ │ │ │ ├── AlipayMicropayOrderFreezepayurlGetRequest.php │ │ │ │ ├── AlipayMicropayOrderGetRequest.php │ │ │ │ ├── AlipayMicropayOrderUnfreezeRequest.php │ │ │ │ ├── AlipayMobileBeaconDeviceAddRequest.php │ │ │ │ ├── AlipayMobileBeaconDeviceDeleteRequest.php │ │ │ │ ├── AlipayMobileBeaconDeviceModifyRequest.php │ │ │ │ ├── AlipayMobileBeaconDeviceQueryRequest.php │ │ │ │ ├── AlipayMobileBeaconMessageSendRequest.php │ │ │ │ ├── AlipayMobileBksigntokenVerifyRequest.php │ │ │ │ ├── AlipayMobileCodeCreateRequest.php │ │ │ │ ├── AlipayMobileCodeQueryRequest.php │ │ │ │ ├── AlipayMobilePublicAccountAddRequest.php │ │ │ │ ├── AlipayMobilePublicAccountDeleteRequest.php │ │ │ │ ├── AlipayMobilePublicAccountQueryRequest.php │ │ │ │ ├── AlipayMobilePublicAccountResetRequest.php │ │ │ │ ├── AlipayMobilePublicAppinfoUpdateRequest.php │ │ │ │ ├── AlipayMobilePublicContactFollowListRequest.php │ │ │ │ ├── AlipayMobilePublicFollowListRequest.php │ │ │ │ ├── AlipayMobilePublicGisGetRequest.php │ │ │ │ ├── AlipayMobilePublicInfoModifyRequest.php │ │ │ │ ├── AlipayMobilePublicInfoQueryRequest.php │ │ │ │ ├── AlipayMobilePublicLabelAddRequest.php │ │ │ │ ├── AlipayMobilePublicLabelDeleteRequest.php │ │ │ │ ├── AlipayMobilePublicLabelQueryRequest.php │ │ │ │ ├── AlipayMobilePublicLabelUpdateRequest.php │ │ │ │ ├── AlipayMobilePublicLabelUserAddRequest.php │ │ │ │ ├── AlipayMobilePublicLabelUserDeleteRequest.php │ │ │ │ ├── AlipayMobilePublicLabelUserQueryRequest.php │ │ │ │ ├── AlipayMobilePublicMenuAddRequest.php │ │ │ │ ├── AlipayMobilePublicMenuDeleteRequest.php │ │ │ │ ├── AlipayMobilePublicMenuGetRequest.php │ │ │ │ ├── AlipayMobilePublicMenuQueryRequest.php │ │ │ │ ├── AlipayMobilePublicMenuUpdateRequest.php │ │ │ │ ├── AlipayMobilePublicMenuUserQueryRequest.php │ │ │ │ ├── AlipayMobilePublicMenuUserUpdateRequest.php │ │ │ │ ├── AlipayMobilePublicMessageCustomSendRequest.php │ │ │ │ ├── AlipayMobilePublicMessageLabelSendRequest.php │ │ │ │ ├── AlipayMobilePublicMessagePushRequest.php │ │ │ │ ├── AlipayMobilePublicMessageSingleSendRequest.php │ │ │ │ ├── AlipayMobilePublicMessageTotalSendRequest.php │ │ │ │ ├── AlipayMobilePublicMessagebatchPushRequest.php │ │ │ │ ├── AlipayMobilePublicMessagespecifyPushRequest.php │ │ │ │ ├── AlipayMobilePublicMockListsmlistApiRequest.php │ │ │ │ ├── AlipayMobilePublicQrcodeCreateRequest.php │ │ │ │ ├── AlipayMobilePublicShortlinkCreateRequest.php │ │ │ │ ├── AlipayMobilePublicStdMockListsmlistApiRequest.php │ │ │ │ ├── AlipayMobilePublicTemplateMessageDeleteRequest.php │ │ │ │ ├── AlipayMobilePublicTemplateMessageGetRequest.php │ │ │ │ ├── AlipayMobilePublicTemplateMessageModifyRequest.php │ │ │ │ ├── AlipayMobilePublicTemplateMessageQueryRequest.php │ │ │ │ ├── AlipayMobileRecommendGetRequest.php │ │ │ │ ├── AlipayMobileShakeUserQueryRequest.php │ │ │ │ ├── AlipayMobileStdPublicAccountQueryRequest.php │ │ │ │ ├── AlipayMobileStdPublicExpressUserQueryRequest.php │ │ │ │ ├── AlipayMobileStdPublicFollowListRequest.php │ │ │ │ ├── AlipayMobileStdPublicMenuQueryRequest.php │ │ │ │ ├── AlipayMobileStdPublicMessageCustomSendRequest.php │ │ │ │ ├── AlipayMpointprodBenefitDetailGetRequest.php │ │ │ │ ├── AlipayMsaasMediarecogVoiceMediaaudioUploadRequest.php │ │ │ │ ├── AlipayMsaasPromotionCpainfoCreateRequest.php │ │ │ │ ├── AlipayOfflineMarketApplyorderBatchqueryRequest.php │ │ │ │ ├── AlipayOfflineMarketItemCreateRequest.php │ │ │ │ ├── AlipayOfflineMarketItemModifyRequest.php │ │ │ │ ├── AlipayOfflineMarketItemStateRequest.php │ │ │ │ ├── AlipayOfflineMarketLeadsBatchqueryRequest.php │ │ │ │ ├── AlipayOfflineMarketLeadsQrcodeQueryRequest.php │ │ │ │ ├── AlipayOfflineMarketMcommentQueryRequest.php │ │ │ │ ├── AlipayOfflineMarketProductBatchqueryRequest.php │ │ │ │ ├── AlipayOfflineMarketProductQuerydetailRequest.php │ │ │ │ ├── AlipayOfflineMarketReportGetRequest.php │ │ │ │ ├── AlipayOfflineMarketReporterrorCreateRequest.php │ │ │ │ ├── AlipayOfflineMarketShopApplyorderCancelRequest.php │ │ │ │ ├── AlipayOfflineMarketShopBatchqueryRequest.php │ │ │ │ ├── AlipayOfflineMarketShopCategoryQueryRequest.php │ │ │ │ ├── AlipayOfflineMarketShopCreateRequest.php │ │ │ │ ├── AlipayOfflineMarketShopDiscountQueryRequest.php │ │ │ │ ├── AlipayOfflineMarketShopModifyRequest.php │ │ │ │ ├── AlipayOfflineMarketShopPublicBindRequest.php │ │ │ │ ├── AlipayOfflineMarketShopPublicUnbindRequest.php │ │ │ │ ├── AlipayOfflineMarketShopQuerydetailRequest.php │ │ │ │ ├── AlipayOfflineMarketShopSummaryBatchqueryRequest.php │ │ │ │ ├── AlipayOfflineMarketingVoucherCodeUploadRequest.php │ │ │ │ ├── AlipayOfflineMarketingVoucherCreateRequest.php │ │ │ │ ├── AlipayOfflineMarketingVoucherModifyRequest.php │ │ │ │ ├── AlipayOfflineMarketingVoucherOfflineRequest.php │ │ │ │ ├── AlipayOfflineMarketingVoucherStatusQueryRequest.php │ │ │ │ ├── AlipayOfflineMarketingVoucherUseRequest.php │ │ │ │ ├── AlipayOfflineMaterialImageDownloadRequest.php │ │ │ │ ├── AlipayOfflineMaterialImageModifyRequest.php │ │ │ │ ├── AlipayOfflineMaterialImageQueryRequest.php │ │ │ │ ├── AlipayOfflineMaterialImageUploadRequest.php │ │ │ │ ├── AlipayOfflineProviderDishQueryRequest.php │ │ │ │ ├── AlipayOfflineProviderEquipmentAuthQuerybypageRequest.php │ │ │ │ ├── AlipayOfflineProviderEquipmentAuthRemoveRequest.php │ │ │ │ ├── AlipayOfflineProviderMonitorLogSyncRequest.php │ │ │ │ ├── AlipayOfflineProviderShopactionRecordRequest.php │ │ │ │ ├── AlipayOfflineProviderStaffUpdateRequest.php │ │ │ │ ├── AlipayOfflineProviderUseractionRecordRequest.php │ │ │ │ ├── AlipayOpenAppCodetesttestRequest.php │ │ │ │ ├── AlipayOpenAppPackagetestRequest.php │ │ │ │ ├── AlipayOpenAuthIndustryPlatformCreateTokenRequest.php │ │ │ │ ├── AlipayOpenAuthTokenAppQueryRequest.php │ │ │ │ ├── AlipayOpenAuthTokenAppRequest.php │ │ │ │ ├── AlipayOpenPublicAccountCreateRequest.php │ │ │ │ ├── AlipayOpenPublicAccountDeleteRequest.php │ │ │ │ ├── AlipayOpenPublicAccountQueryRequest.php │ │ │ │ ├── AlipayOpenPublicAccountResetRequest.php │ │ │ │ ├── AlipayOpenPublicContactFollowBatchqueryRequest.php │ │ │ │ ├── AlipayOpenPublicFollowBatchqueryRequest.php │ │ │ │ ├── AlipayOpenPublicGisQueryRequest.php │ │ │ │ ├── AlipayOpenPublicInfoModifyRequest.php │ │ │ │ ├── AlipayOpenPublicInfoQueryRequest.php │ │ │ │ ├── AlipayOpenPublicLabelCreateRequest.php │ │ │ │ ├── AlipayOpenPublicLabelDeleteRequest.php │ │ │ │ ├── AlipayOpenPublicLabelModifyRequest.php │ │ │ │ ├── AlipayOpenPublicLabelQueryRequest.php │ │ │ │ ├── AlipayOpenPublicLabelUserCreateRequest.php │ │ │ │ ├── AlipayOpenPublicLabelUserDeleteRequest.php │ │ │ │ ├── AlipayOpenPublicLabelUserQueryRequest.php │ │ │ │ ├── AlipayOpenPublicLifeAccountCreateRequest.php │ │ │ │ ├── AlipayOpenPublicLifeMsgRecallRequest.php │ │ │ │ ├── AlipayOpenPublicLifeMsgSendRequest.php │ │ │ │ ├── AlipayOpenPublicMenuCreateRequest.php │ │ │ │ ├── AlipayOpenPublicMenuModifyRequest.php │ │ │ │ ├── AlipayOpenPublicMenuQueryRequest.php │ │ │ │ ├── AlipayOpenPublicMessageCustomSendRequest.php │ │ │ │ ├── AlipayOpenPublicMessageLabelSendRequest.php │ │ │ │ ├── AlipayOpenPublicMessageSingleSendRequest.php │ │ │ │ ├── AlipayOpenPublicMessageTotalSendRequest.php │ │ │ │ ├── AlipayOpenPublicMultimediaDownloadProxyRequest.php │ │ │ │ ├── AlipayOpenPublicPartnerMenuOperateRequest.php │ │ │ │ ├── AlipayOpenPublicPartnerMenuQueryRequest.php │ │ │ │ ├── AlipayOpenPublicPartnerSubscribeSyncRequest.php │ │ │ │ ├── AlipayOpenPublicQrcodeCreateRequest.php │ │ │ │ ├── AlipayOpenPublicShortlinkCreateRequest.php │ │ │ │ ├── AlipayOpenPublicTemplateMessageGetRequest.php │ │ │ │ ├── AlipayOpenPublicTemplateMessageIndustryModifyRequest.php │ │ │ │ ├── AlipayOpenPublicThirdCustomerServiceRequest.php │ │ │ │ ├── AlipayOpenServicemarketCommodityShopOfflineRequest.php │ │ │ │ ├── AlipayOpenServicemarketCommodityShopOnlineRequest.php │ │ │ │ ├── AlipayOpenServicemarketOrderAcceptRequest.php │ │ │ │ ├── AlipayOpenServicemarketOrderItemCancelRequest.php │ │ │ │ ├── AlipayOpenServicemarketOrderItemCompleteRequest.php │ │ │ │ ├── AlipayOpenServicemarketOrderItemConfirmRequest.php │ │ │ │ ├── AlipayOpenServicemarketOrderNotifyRequest.php │ │ │ │ ├── AlipayOpenServicemarketOrderQueryRequest.php │ │ │ │ ├── AlipayOpenServicemarketOrderRejectRequest.php │ │ │ │ ├── AlipayOperatorMobileBindRequest.php │ │ │ │ ├── AlipayPassCodeAddRequest.php │ │ │ │ ├── AlipayPassCodeVerifyRequest.php │ │ │ │ ├── AlipayPassFileAddRequest.php │ │ │ │ ├── AlipayPassInstanceAddRequest.php │ │ │ │ ├── AlipayPassInstanceUpdateRequest.php │ │ │ │ ├── AlipayPassSyncAddRequest.php │ │ │ │ ├── AlipayPassSyncUpdateRequest.php │ │ │ │ ├── AlipayPassTemplateAddRequest.php │ │ │ │ ├── AlipayPassTemplateUpdateRequest.php │ │ │ │ ├── AlipayPassTplAddRequest.php │ │ │ │ ├── AlipayPassTplContentAddRequest.php │ │ │ │ ├── AlipayPassTplContentUpdateRequest.php │ │ │ │ ├── AlipayPassTplUpdateRequest.php │ │ │ │ ├── AlipayPassVerifyQueryRequest.php │ │ │ │ ├── AlipayPcreditHuabeiPromoQueryRequest.php │ │ │ │ ├── AlipayPcreditLoanApplyCreateRequest.php │ │ │ │ ├── AlipayPcreditLoanRefundCreateRequest.php │ │ │ │ ├── AlipayPlatformOpenidGetRequest.php │ │ │ │ ├── AlipayPlatformUseridGetRequest.php │ │ │ │ ├── AlipayPointBalanceGetRequest.php │ │ │ │ ├── AlipayPointBudgetGetRequest.php │ │ │ │ ├── AlipayPointOrderAddRequest.php │ │ │ │ ├── AlipayPointOrderGetRequest.php │ │ │ │ ├── AlipayPromorulecenterRuleAnalyzeRequest.php │ │ │ │ ├── AlipaySecurityInfoAnalysisRequest.php │ │ │ │ ├── AlipaySecurityProdAlipaySecurityProdTestRequest.php │ │ │ │ ├── AlipaySecurityProdAmlriskQueryRequest.php │ │ │ │ ├── AlipaySecurityProdFacerepoAddRequest.php │ │ │ │ ├── AlipaySecurityProdFacerepoSearchRequest.php │ │ │ │ ├── AlipaySecurityProdFingerprintApplyInitializeRequest.php │ │ │ │ ├── AlipaySecurityProdFingerprintApplyRequest.php │ │ │ │ ├── AlipaySecurityProdFingerprintDeleteRequest.php │ │ │ │ ├── AlipaySecurityProdFingerprintVerifyInitializeRequest.php │ │ │ │ ├── AlipaySecurityProdFingerprintVerifyRequest.php │ │ │ │ ├── AlipaySecurityRiskDetectRequest.php │ │ │ │ ├── AlipaySecurityRiskHideDeviceidQueryRequest.php │ │ │ │ ├── AlipaySecurityRiskRainscoreQueryRequest.php │ │ │ │ ├── AlipaySystemOauthTokenRequest.php │ │ │ │ ├── AlipayTradeAppPayRequest.php │ │ │ │ ├── AlipayTradeCancelRequest.php │ │ │ │ ├── AlipayTradeCloseRequest.php │ │ │ │ ├── AlipayTradeCreateRequest.php │ │ │ │ ├── AlipayTradeCustomsDeclareRequest.php │ │ │ │ ├── AlipayTradeCustomsQueryRequest.php │ │ │ │ ├── AlipayTradeFastpayRefundQueryRequest.php │ │ │ │ ├── AlipayTradeOrderSettleRequest.php │ │ │ │ ├── AlipayTradePagePayRequest.php │ │ │ │ ├── AlipayTradePayRequest.php │ │ │ │ ├── AlipayTradePrecreateRequest.php │ │ │ │ ├── AlipayTradeQueryRequest.php │ │ │ │ ├── AlipayTradeRefundRequest.php │ │ │ │ ├── AlipayTradeVendorpayDevicedataUploadRequest.php │ │ │ │ ├── AlipayTradeWapPayRequest.php │ │ │ │ ├── AlipayTransferThirdpartyBillCreateRequest.php │ │ │ │ ├── AlipayTrustUserAuthSendRequest.php │ │ │ │ ├── AlipayTrustUserReportGetRequest.php │ │ │ │ ├── AlipayTrustUserRiskSummaryGetRequest.php │ │ │ │ ├── AlipayTrustUserRiskidentifyGetRequest.php │ │ │ │ ├── AlipayTrustUserScoreGetRequest.php │ │ │ │ ├── AlipayTrustUserStandardVerifyGetRequest.php │ │ │ │ ├── AlipayTrustUserTokenGetRequest.php │ │ │ │ ├── AlipayTrustUserZminfoPairGetRequest.php │ │ │ │ ├── AlipayUserAccountFreezeGetRequest.php │ │ │ │ ├── AlipayUserAccountGetRequest.php │ │ │ │ ├── AlipayUserAccountSearchRequest.php │ │ │ │ ├── AlipayUserAccountUseridBatchqueryRequest.php │ │ │ │ ├── AlipayUserContractGetRequest.php │ │ │ │ ├── AlipayUserFinanceinfoShareRequest.php │ │ │ │ ├── AlipayUserGetRequest.php │ │ │ │ ├── AlipayUserInfoAuthRequest.php │ │ │ │ ├── AlipayUserInfoShareRequest.php │ │ │ │ ├── AlipayUserTestRequest.php │ │ │ │ ├── AlipayUserTradeSearchRequest.php │ │ │ │ ├── AlipayUserUserinfoShareRequest.php │ │ │ │ ├── AlipayZdataassetsEasyserviceRequest.php │ │ │ │ ├── AlipayZdataassetsFcdatalabZdatamergetaskRequest.php │ │ │ │ ├── AlipayZdataassetsMetadataRequest.php │ │ │ │ ├── AlipayZdatafrontCommonQueryRequest.php │ │ │ │ ├── AlipayZdatafrontDatatransferedFileuploadRequest.php │ │ │ │ ├── AlipayZdatafrontDatatransferedSendRequest.php │ │ │ │ ├── AlipayZdataserviceUnidataQueryRequest.php │ │ │ │ ├── AlipayZmscoreZrankGetRequest.php │ │ │ │ ├── AntMerchantExpandEnterpriseApplyRequest.php │ │ │ │ ├── AntMerchantExpandImageUploadRequest.php │ │ │ │ ├── AntMerchantExpandMapplyorderQueryRequest.php │ │ │ │ ├── AntMerchantExpandPersonalApplyRequest.php │ │ │ │ ├── KoubeiContentCommentDataBatchqueryRequest.php │ │ │ │ ├── KoubeiContentCommentReplyCreateRequest.php │ │ │ │ ├── KoubeiCraftsmanDataProviderBatchqueryRequest.php │ │ │ │ ├── KoubeiCraftsmanDataProviderCreateRequest.php │ │ │ │ ├── KoubeiCraftsmanDataProviderModifyRequest.php │ │ │ │ ├── KoubeiCraftsmanDataWorkBatchqueryRequest.php │ │ │ │ ├── KoubeiCraftsmanDataWorkCreateRequest.php │ │ │ │ ├── KoubeiCraftsmanDataWorkDeleteRequest.php │ │ │ │ ├── KoubeiCraftsmanDataWorkModifyRequest.php │ │ │ │ ├── KoubeiItemBatchqueryRequest.php │ │ │ │ ├── KoubeiItemCreateRequest.php │ │ │ │ ├── KoubeiItemExtitemBatchqueryRequest.php │ │ │ │ ├── KoubeiItemExtitemBrandQueryRequest.php │ │ │ │ ├── KoubeiItemExtitemCategoryQueryRequest.php │ │ │ │ ├── KoubeiItemExtitemCreateRequest.php │ │ │ │ ├── KoubeiItemExtitemExistedQueryRequest.php │ │ │ │ ├── KoubeiItemExtitemQueryRequest.php │ │ │ │ ├── KoubeiItemExtitemUpdateRequest.php │ │ │ │ ├── KoubeiItemModifyRequest.php │ │ │ │ ├── KoubeiItemStateRequest.php │ │ │ │ ├── KoubeiMarketingCampaignActivityBatchqueryRequest.php │ │ │ │ ├── KoubeiMarketingCampaignActivityCreateRequest.php │ │ │ │ ├── KoubeiMarketingCampaignActivityModifyRequest.php │ │ │ │ ├── KoubeiMarketingCampaignActivityOfflineRequest.php │ │ │ │ ├── KoubeiMarketingCampaignActivityQueryRequest.php │ │ │ │ ├── KoubeiMarketingCampaignCrowdBatchqueryRequest.php │ │ │ │ ├── KoubeiMarketingCampaignCrowdCountRequest.php │ │ │ │ ├── KoubeiMarketingCampaignCrowdCreateRequest.php │ │ │ │ ├── KoubeiMarketingCampaignCrowdDeleteRequest.php │ │ │ │ ├── KoubeiMarketingCampaignCrowdDetailQueryRequest.php │ │ │ │ ├── KoubeiMarketingCampaignCrowdModifyRequest.php │ │ │ │ ├── KoubeiMarketingCampaignRecruitApplyQueryRequest.php │ │ │ │ ├── KoubeiMarketingCampaignRecruitShopQueryRequest.php │ │ │ │ ├── KoubeiMarketingCampaignTagsQueryRequest.php │ │ │ │ ├── KoubeiMarketingDataActivityBillDownloadRequest.php │ │ │ │ ├── KoubeiMarketingDataActivityReportQueryRequest.php │ │ │ │ ├── KoubeiMarketingDataAlisisReportBatchqueryRequest.php │ │ │ │ ├── KoubeiMarketingDataAlisisReportQueryRequest.php │ │ │ │ ├── KoubeiMarketingDataCustomreportBatchqueryRequest.php │ │ │ │ ├── KoubeiMarketingDataCustomreportDeleteRequest.php │ │ │ │ ├── KoubeiMarketingDataCustomreportDetailQueryRequest.php │ │ │ │ ├── KoubeiMarketingDataCustomreportQueryRequest.php │ │ │ │ ├── KoubeiMarketingDataCustomreportSaveRequest.php │ │ │ │ ├── KoubeiMarketingDataDishdiagnoseBatchqueryRequest.php │ │ │ │ ├── KoubeiMarketingDataDishdiagnosetypeBatchqueryRequest.php │ │ │ │ ├── KoubeiMarketingDataIndicatorQueryRequest.php │ │ │ │ ├── KoubeiMarketingDataMemberReportQueryRequest.php │ │ │ │ ├── KoubeiMarketingDataMessageDeliverRequest.php │ │ │ │ ├── KoubeiMarketingDataRetailDmQueryRequest.php │ │ │ │ ├── KoubeiMarketingDataSmartactivityConfigRequest.php │ │ │ │ ├── KoubeiMarketingDataSmartactivityForecastRequest.php │ │ │ │ ├── KoubeiMarketingDataSmartmanagementDiagnoseRequest.php │ │ │ │ ├── KoubeiMarketingDataTradeHabbitQueryRequest.php │ │ │ │ ├── KoubeiMarketingToolPointsQueryRequest.php │ │ │ │ ├── KoubeiMarketingToolPointsUpdateRequest.php │ │ │ │ ├── KoubeiMarketingToolPrizesendAuthRequest.php │ │ │ │ ├── KoubeiMemberBrandownerNameQueryRequest.php │ │ │ │ ├── KoubeiMemberDataOauthQueryRequest.php │ │ │ │ ├── KoubeiMemberRetailerQueryRequest.php │ │ │ │ ├── KoubeiQualityTestCloudacptActivityQueryRequest.php │ │ │ │ ├── KoubeiQualityTestCloudacptBatchQueryRequest.php │ │ │ │ ├── KoubeiQualityTestCloudacptCheckresultSubmitRequest.php │ │ │ │ ├── KoubeiQualityTestCloudacptItemQueryRequest.php │ │ │ │ ├── KoubeiTradeItemBuyRequest.php │ │ │ │ ├── KoubeiTradeOrderQueryRequest.php │ │ │ │ ├── MonitorHeartbeatSynRequest.php │ │ │ │ ├── MybankFinanceYulibaoAccountQueryRequest.php │ │ │ │ ├── MybankFinanceYulibaoCapitalPurchaseRequest.php │ │ │ │ ├── MybankFinanceYulibaoCapitalRansomRequest.php │ │ │ │ ├── MybankFinanceYulibaoPriceQueryRequest.php │ │ │ │ ├── MybankFinanceYulibaoTransHistoryQueryRequest.php │ │ │ │ ├── SsdataDataserviceRiskAlixiaohaoQueryRequest.php │ │ │ │ ├── SsdataDataserviceRiskRainscoreQueryRequest.php │ │ │ │ ├── ZhimaAuthInfoAuthqueryRequest.php │ │ │ │ ├── ZhimaCreditAntifraudVerifyRequest.php │ │ │ │ ├── ZhimaCreditScoreBriefGetRequest.php │ │ │ │ ├── ZhimaCreditWatchlistBriefGetRequest.php │ │ │ │ ├── ZhimaCustomerCertificationCertifyRequest.php │ │ │ │ ├── ZhimaCustomerCertificationInitializeRequest.php │ │ │ │ ├── ZhimaCustomerCertificationQueryRequest.php │ │ │ │ ├── ZhimaDataBatchFeedbackRequest.php │ │ │ │ ├── ZhimaDataFeedbackurlQueryRequest.php │ │ │ │ └── ZhimaMerchantTestPracticeRequest.php │ │ │ └── test │ │ │ │ └── TestImage.php │ │ ├── config.php │ │ ├── index.php │ │ ├── log.txt │ │ ├── lotusphp_runtime │ │ │ ├── Autoloader │ │ │ │ └── Autoloader.php │ │ │ ├── Cache │ │ │ │ ├── Adapter │ │ │ │ │ ├── CacheAdapter.php │ │ │ │ │ ├── CacheAdapterApc.php │ │ │ │ │ ├── CacheAdapterEAccelerator.php │ │ │ │ │ ├── CacheAdapterFile.php │ │ │ │ │ ├── CacheAdapterMemcache.php │ │ │ │ │ ├── CacheAdapterMemcached.php │ │ │ │ │ ├── CacheAdapterPhps.php │ │ │ │ │ └── CacheAdapterXcache.php │ │ │ │ ├── Cache.php │ │ │ │ ├── CacheAdapterFactory.php │ │ │ │ ├── CacheConfigBuilder.php │ │ │ │ ├── CacheConnectionManager.php │ │ │ │ ├── CacheHandle.php │ │ │ │ └── QueryEngine │ │ │ │ │ └── TableDataGateway │ │ │ │ │ └── CacheTableDataGateway.php │ │ │ ├── Captcha │ │ │ │ ├── Captcha.php │ │ │ │ ├── CaptchaImageEngine.php │ │ │ │ └── fonts │ │ │ │ │ ├── AntykwaBold.ttf │ │ │ │ │ ├── Candice.ttf │ │ │ │ │ ├── Ding-DongDaddyO.ttf │ │ │ │ │ ├── Duality.ttf │ │ │ │ │ ├── Jura.ttf │ │ │ │ │ ├── StayPuft.ttf │ │ │ │ │ ├── TimesNewRomanBold.ttf │ │ │ │ │ └── VeraSansBold.ttf │ │ │ ├── Config.php │ │ │ ├── ConfigExpression.php │ │ │ ├── Cookie │ │ │ │ └── Cookie.php │ │ │ ├── DB │ │ │ │ ├── Adapter │ │ │ │ │ ├── ConnectionAdapter │ │ │ │ │ │ ├── DbConnectionAdapter.php │ │ │ │ │ │ ├── DbConnectionAdapterMysql.php │ │ │ │ │ │ ├── DbConnectionAdapterMysqli.php │ │ │ │ │ │ ├── DbConnectionAdapterPdo.php │ │ │ │ │ │ ├── DbConnectionAdapterPgsql.php │ │ │ │ │ │ └── DbConnectionAdapterSqlite.php │ │ │ │ │ └── SqlAdapter │ │ │ │ │ │ ├── DbSqlAdapter.php │ │ │ │ │ │ ├── DbSqlAdapterMysql.php │ │ │ │ │ │ ├── DbSqlAdapterPgsql.php │ │ │ │ │ │ └── DbSqlAdapterSqlite.php │ │ │ │ ├── Db.php │ │ │ │ ├── DbAdapterFactory.php │ │ │ │ ├── DbConfigBuilder.php │ │ │ │ ├── DbConnectionManager.php │ │ │ │ ├── DbHandle.php │ │ │ │ ├── DbSqlExpression.php │ │ │ │ └── QueryEngine │ │ │ │ │ ├── SqlMap │ │ │ │ │ ├── AbstractDbSqlMapFilterObject.php │ │ │ │ │ ├── DbSqlMapClient.php │ │ │ │ │ └── DbSqlMapResultFactory.php │ │ │ │ │ └── TableDataGateway │ │ │ │ │ ├── DbTableDataGateway.php │ │ │ │ │ ├── DbTableRelation.php │ │ │ │ │ └── DbWhereCondition.php │ │ │ ├── Inflector │ │ │ │ └── Inflector.php │ │ │ ├── Logger │ │ │ │ └── Logger.php │ │ │ ├── Lotus.php │ │ │ ├── MVC │ │ │ │ ├── Action.php │ │ │ │ ├── Component.php │ │ │ │ ├── Context.php │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── TemplateView.php │ │ │ │ └── View.php │ │ │ ├── ObjectUtil │ │ │ │ └── ObjectUtil.php │ │ │ ├── Pagination │ │ │ │ └── Pagination.php │ │ │ ├── RBAC │ │ │ │ └── Rbac.php │ │ │ ├── Router │ │ │ │ └── Router.php │ │ │ ├── Session │ │ │ │ ├── Session.php │ │ │ │ ├── SessionStore │ │ │ │ └── Store │ │ │ │ │ ├── SessionStoreFile.php │ │ │ │ │ ├── SessionStoreMemcache.php │ │ │ │ │ ├── SessionStoreMysql.php │ │ │ │ │ └── SessionStoreSqlite.php │ │ │ ├── Store.php │ │ │ ├── StoreFile.php │ │ │ ├── StoreMemory.php │ │ │ ├── Url │ │ │ │ └── Url.php │ │ │ ├── Validator │ │ │ │ ├── Validator.php │ │ │ │ └── ValidatorDtd.php │ │ │ ├── XML │ │ │ │ └── Xml.php │ │ │ └── shortcut.php │ │ ├── notify_url.php │ │ ├── orderlog │ │ │ ├── alipay_notify_2018-02-06143613.txt │ │ │ ├── alipay_notifys_2018-02-06145946.txt │ │ │ ├── alipay_notifys_2018-02-06150227.txt │ │ │ ├── alipay_notifys_2018-02-12105916.txt │ │ │ ├── alipay_notifys_2018-03-17121825.txt │ │ │ ├── alipay_notifys_2018-04-03154649.txt │ │ │ ├── alipay_notifys_2018-04-19154827.txt │ │ │ ├── alipay_notifys_2018-04-23141103.txt │ │ │ ├── alipay_notifys_2018-05-05110210.txt │ │ │ ├── alipay_notifys_2018-05-07110459.txt │ │ │ ├── alipay_notifys_2018-05-09163202.txt │ │ │ ├── alipay_notifys_2018-05-10222955.txt │ │ │ ├── alipay_notifys_2018-05-26150628.txt │ │ │ ├── alipay_notifys_2018-05-28162428.txt │ │ │ ├── alipay_notifys_2018-08-03123458.txt │ │ │ ├── alipay_notifys_2018-08-03221536.txt │ │ │ ├── alipay_return_2018-02-06143625.txt │ │ │ ├── alipay_return_2018-02-06145957.txt │ │ │ ├── alipay_return_2018-02-06150243.txt │ │ │ ├── alipay_return_2018-03-17121837.txt │ │ │ ├── alipay_return_2018-04-03154709.txt │ │ │ ├── alipay_return_2018-04-19154837.txt │ │ │ ├── alipay_return_2018-04-23141117.txt │ │ │ ├── alipay_return_2018-05-05110230.txt │ │ │ ├── alipay_return_2018-05-07110510.txt │ │ │ ├── alipay_return_2018-05-09163220.txt │ │ │ ├── alipay_return_2018-05-10223009.txt │ │ │ ├── alipay_return_2018-05-26150641.txt │ │ │ ├── alipay_return_2018-05-28162443.txt │ │ │ ├── alipay_return_2018-08-03123513.txt │ │ │ └── alipay_return_2018-08-03221554.txt │ │ ├── pagepay │ │ │ ├── buildermodel │ │ │ │ ├── AlipayTradeCloseContentBuilder.php │ │ │ │ ├── AlipayTradeFastpayRefundQueryContentBuilder.php │ │ │ │ ├── AlipayTradePagePayContentBuilder.php │ │ │ │ ├── AlipayTradeQueryContentBuilder.php │ │ │ │ └── AlipayTradeRefundContentBuilder.php │ │ │ ├── close.php │ │ │ ├── pagepay.bak.php │ │ │ ├── pagepay.php │ │ │ ├── query.php │ │ │ ├── refund.php │ │ │ ├── refundquery.php │ │ │ └── service │ │ │ │ └── AlipayTradeService.php │ │ ├── readme.txt │ │ └── return_url.php │ ├── apk.js │ ├── index.js │ ├── ipa.js │ ├── paeser │ │ └── Parser.php │ ├── resource-finder.js │ ├── utils.js │ ├── xml-parser │ │ ├── binary.js │ │ └── manifest.js │ └── zip.js ├── mobileprovision │ ├── embedded1.mobileprovision │ └── jump.mobileprovision ├── nologo.png ├── plist │ ├── LICENSE │ ├── README.md │ ├── build.sh │ ├── classes │ │ └── CFPropertyList │ │ │ ├── CFBinaryPropertyList.php │ │ │ ├── CFPropertyList.php │ │ │ ├── CFType.php │ │ │ ├── CFTypeDetector.php │ │ │ ├── IOException.php │ │ │ └── PListException.php │ ├── composer.json │ ├── examples │ │ ├── example-create-01.php │ │ ├── example-create-02.php │ │ ├── example-create-03.php │ │ ├── example-create-04.php │ │ ├── example-modify-01.php │ │ ├── example-read-01.php │ │ ├── example-read-02.php │ │ ├── example-read-03.php │ │ ├── example-read-04.php │ │ ├── example-read-05.php │ │ ├── plist.xml │ │ ├── sample.binary.plist │ │ ├── sample.xml.plist │ │ └── sample.xml.plist.bak │ └── tests │ │ ├── BinaryParseTest.php │ │ ├── EmptyElementsTest.php │ │ ├── ParseXMLTest.php │ │ ├── WriteBinaryTest.php │ │ ├── WriteXMLTest.php │ │ ├── binary-data.plist │ │ ├── uid-list.plist │ │ ├── uid-list.xml │ │ └── xml-data.plist ├── plistjs │ ├── jquery-1.10.2.min.js │ ├── plist_parser.js │ └── test │ │ ├── example.xml.plist │ │ ├── google.sample.xml.plist │ │ ├── index.html │ │ ├── portfolio.xml.plist │ │ ├── test.css │ │ └── test.js ├── plugins │ ├── alicloud │ │ ├── adbario │ │ │ └── php-dot-notation │ │ │ │ ├── LICENSE.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ ├── Dot.php │ │ │ │ └── helpers.php │ │ ├── alibabacloud │ │ │ └── client │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── NOTICE.md │ │ │ │ ├── README-zh-CN.md │ │ │ │ ├── README.md │ │ │ │ ├── UPGRADING.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ ├── Accept.php │ │ │ │ ├── AlibabaCloud.php │ │ │ │ ├── Clients │ │ │ │ ├── AccessKeyClient.php │ │ │ │ ├── BearerTokenClient.php │ │ │ │ ├── Client.php │ │ │ │ ├── EcsRamRoleClient.php │ │ │ │ ├── ManageTrait.php │ │ │ │ ├── RamRoleArnClient.php │ │ │ │ ├── RsaKeyPairClient.php │ │ │ │ └── StsClient.php │ │ │ │ ├── Config │ │ │ │ ├── Config.php │ │ │ │ └── Data.php │ │ │ │ ├── Credentials │ │ │ │ ├── AccessKeyCredential.php │ │ │ │ ├── BearerTokenCredential.php │ │ │ │ ├── CredentialsInterface.php │ │ │ │ ├── EcsRamRoleCredential.php │ │ │ │ ├── Ini │ │ │ │ │ ├── CreateTrait.php │ │ │ │ │ ├── IniCredential.php │ │ │ │ │ └── OptionsTrait.php │ │ │ │ ├── Providers │ │ │ │ │ ├── CredentialsProvider.php │ │ │ │ │ ├── EcsRamRoleProvider.php │ │ │ │ │ ├── Provider.php │ │ │ │ │ ├── RamRoleArnProvider.php │ │ │ │ │ └── RsaKeyPairProvider.php │ │ │ │ ├── RamRoleArnCredential.php │ │ │ │ ├── Requests │ │ │ │ │ ├── AssumeRole.php │ │ │ │ │ └── GenerateSessionAccessKey.php │ │ │ │ ├── RsaKeyPairCredential.php │ │ │ │ └── StsCredential.php │ │ │ │ ├── DefaultAcsClient.php │ │ │ │ ├── Encode.php │ │ │ │ ├── Exception │ │ │ │ ├── AlibabaCloudException.php │ │ │ │ ├── ClientException.php │ │ │ │ └── ServerException.php │ │ │ │ ├── Filter │ │ │ │ ├── ApiFilter.php │ │ │ │ ├── ClientFilter.php │ │ │ │ ├── CredentialFilter.php │ │ │ │ ├── Filter.php │ │ │ │ └── HttpFilter.php │ │ │ │ ├── Functions.php │ │ │ │ ├── Log │ │ │ │ └── LogFormatter.php │ │ │ │ ├── Profile │ │ │ │ └── DefaultProfile.php │ │ │ │ ├── Regions │ │ │ │ ├── EndpointProvider.php │ │ │ │ ├── LocationService.php │ │ │ │ └── LocationServiceRequest.php │ │ │ │ ├── Release.php │ │ │ │ ├── Request │ │ │ │ ├── Request.php │ │ │ │ ├── RoaRequest.php │ │ │ │ ├── RpcRequest.php │ │ │ │ ├── Traits │ │ │ │ │ ├── AcsTrait.php │ │ │ │ │ ├── ClientTrait.php │ │ │ │ │ ├── DeprecatedRoaTrait.php │ │ │ │ │ ├── DeprecatedTrait.php │ │ │ │ │ └── RetryTrait.php │ │ │ │ └── UserAgent.php │ │ │ │ ├── Resolver │ │ │ │ ├── ActionResolverTrait.php │ │ │ │ ├── ApiResolver.php │ │ │ │ ├── CallTrait.php │ │ │ │ ├── Roa.php │ │ │ │ ├── Rpc.php │ │ │ │ └── VersionResolver.php │ │ │ │ ├── Result │ │ │ │ └── Result.php │ │ │ │ ├── SDK.php │ │ │ │ ├── Signature │ │ │ │ ├── BearerTokenSignature.php │ │ │ │ ├── ShaHmac1Signature.php │ │ │ │ ├── ShaHmac256Signature.php │ │ │ │ ├── ShaHmac256WithRsaSignature.php │ │ │ │ ├── Signature.php │ │ │ │ └── SignatureInterface.php │ │ │ │ ├── Support │ │ │ │ ├── Arrays.php │ │ │ │ ├── Path.php │ │ │ │ └── Sign.php │ │ │ │ └── Traits │ │ │ │ ├── ArrayAccessTrait.php │ │ │ │ ├── ClientTrait.php │ │ │ │ ├── DefaultRegionTrait.php │ │ │ │ ├── EndpointTrait.php │ │ │ │ ├── HasDataTrait.php │ │ │ │ ├── HistoryTrait.php │ │ │ │ ├── HttpTrait.php │ │ │ │ ├── LogTrait.php │ │ │ │ ├── MockTrait.php │ │ │ │ ├── ObjectAccessTrait.php │ │ │ │ ├── RegionTrait.php │ │ │ │ └── RequestTrait.php │ │ ├── autoload.php │ │ ├── bin │ │ │ └── jp.php │ │ ├── clagiordano │ │ │ └── weblibs-configmanager │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── composer.lock │ │ │ │ ├── phpunit.xml │ │ │ │ ├── src │ │ │ │ └── ConfigManager.php │ │ │ │ ├── tests │ │ │ │ └── ConfigManagerTest.php │ │ │ │ └── testsdata │ │ │ │ └── sample_config_data.php │ │ ├── composer │ │ │ ├── ClassLoader.php │ │ │ ├── LICENSE │ │ │ ├── autoload_classmap.php │ │ │ ├── autoload_files.php │ │ │ ├── autoload_namespaces.php │ │ │ ├── autoload_psr4.php │ │ │ ├── autoload_real.php │ │ │ ├── autoload_static.php │ │ │ └── installed.json │ │ ├── danielstjules │ │ │ └── stringy │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ ├── Create.php │ │ │ │ ├── StaticStringy.php │ │ │ │ └── Stringy.php │ │ ├── guzzlehttp │ │ │ ├── guzzle │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── UPGRADING.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── ClientInterface.php │ │ │ │ │ ├── Cookie │ │ │ │ │ ├── CookieJar.php │ │ │ │ │ ├── CookieJarInterface.php │ │ │ │ │ ├── FileCookieJar.php │ │ │ │ │ ├── SessionCookieJar.php │ │ │ │ │ └── SetCookie.php │ │ │ │ │ ├── Exception │ │ │ │ │ ├── BadResponseException.php │ │ │ │ │ ├── ClientException.php │ │ │ │ │ ├── ConnectException.php │ │ │ │ │ ├── GuzzleException.php │ │ │ │ │ ├── RequestException.php │ │ │ │ │ ├── SeekException.php │ │ │ │ │ ├── ServerException.php │ │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ │ └── TransferException.php │ │ │ │ │ ├── Handler │ │ │ │ │ ├── CurlFactory.php │ │ │ │ │ ├── CurlFactoryInterface.php │ │ │ │ │ ├── CurlHandler.php │ │ │ │ │ ├── CurlMultiHandler.php │ │ │ │ │ ├── EasyHandle.php │ │ │ │ │ ├── MockHandler.php │ │ │ │ │ ├── Proxy.php │ │ │ │ │ └── StreamHandler.php │ │ │ │ │ ├── HandlerStack.php │ │ │ │ │ ├── MessageFormatter.php │ │ │ │ │ ├── Middleware.php │ │ │ │ │ ├── Pool.php │ │ │ │ │ ├── PrepareBodyMiddleware.php │ │ │ │ │ ├── RedirectMiddleware.php │ │ │ │ │ ├── RequestOptions.php │ │ │ │ │ ├── RetryMiddleware.php │ │ │ │ │ ├── TransferStats.php │ │ │ │ │ ├── UriTemplate.php │ │ │ │ │ ├── functions.php │ │ │ │ │ └── functions_include.php │ │ │ ├── promises │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── AggregateException.php │ │ │ │ │ ├── CancellationException.php │ │ │ │ │ ├── Coroutine.php │ │ │ │ │ ├── EachPromise.php │ │ │ │ │ ├── FulfilledPromise.php │ │ │ │ │ ├── Promise.php │ │ │ │ │ ├── PromiseInterface.php │ │ │ │ │ ├── PromisorInterface.php │ │ │ │ │ ├── RejectedPromise.php │ │ │ │ │ ├── RejectionException.php │ │ │ │ │ ├── TaskQueue.php │ │ │ │ │ ├── TaskQueueInterface.php │ │ │ │ │ ├── functions.php │ │ │ │ │ └── functions_include.php │ │ │ └── psr7 │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ ├── AppendStream.php │ │ │ │ ├── BufferStream.php │ │ │ │ ├── CachingStream.php │ │ │ │ ├── DroppingStream.php │ │ │ │ ├── FnStream.php │ │ │ │ ├── InflateStream.php │ │ │ │ ├── LazyOpenStream.php │ │ │ │ ├── LimitStream.php │ │ │ │ ├── MessageTrait.php │ │ │ │ ├── MultipartStream.php │ │ │ │ ├── NoSeekStream.php │ │ │ │ ├── PumpStream.php │ │ │ │ ├── Request.php │ │ │ │ ├── Response.php │ │ │ │ ├── Rfc7230.php │ │ │ │ ├── ServerRequest.php │ │ │ │ ├── Stream.php │ │ │ │ ├── StreamDecoratorTrait.php │ │ │ │ ├── StreamWrapper.php │ │ │ │ ├── UploadedFile.php │ │ │ │ ├── Uri.php │ │ │ │ ├── UriNormalizer.php │ │ │ │ ├── UriResolver.php │ │ │ │ ├── functions.php │ │ │ │ └── functions_include.php │ │ ├── mtdowling │ │ │ └── jmespath.php │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.rst │ │ │ │ ├── bin │ │ │ │ ├── jp.php │ │ │ │ └── perf.php │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit.xml.dist │ │ │ │ ├── src │ │ │ │ ├── AstRuntime.php │ │ │ │ ├── CompilerRuntime.php │ │ │ │ ├── DebugRuntime.php │ │ │ │ ├── Env.php │ │ │ │ ├── FnDispatcher.php │ │ │ │ ├── JmesPath.php │ │ │ │ ├── Lexer.php │ │ │ │ ├── Parser.php │ │ │ │ ├── SyntaxErrorException.php │ │ │ │ ├── TreeCompiler.php │ │ │ │ ├── TreeInterpreter.php │ │ │ │ └── Utils.php │ │ │ │ └── tests │ │ │ │ ├── ComplianceTest.php │ │ │ │ ├── EnvTest.php │ │ │ │ ├── FnDispatcherTest.php │ │ │ │ ├── LexerTest.php │ │ │ │ ├── ParserTest.php │ │ │ │ ├── SyntaxErrorExceptionTest.php │ │ │ │ ├── TreeCompilerTest.php │ │ │ │ ├── TreeInterpreterTest.php │ │ │ │ ├── UtilsTest.php │ │ │ │ └── compliance │ │ │ │ ├── basic.json │ │ │ │ ├── boolean.json │ │ │ │ ├── current.json │ │ │ │ ├── escape.json │ │ │ │ ├── filters.json │ │ │ │ ├── functions.json │ │ │ │ ├── identifiers.json │ │ │ │ ├── indices.json │ │ │ │ ├── literal.json │ │ │ │ ├── multiselect.json │ │ │ │ ├── perf │ │ │ │ ├── basic.json │ │ │ │ ├── deep_hierarchy.json │ │ │ │ ├── deep_projection.json │ │ │ │ ├── functions.json │ │ │ │ ├── multiwildcard.json │ │ │ │ └── wildcardindex.json │ │ │ │ ├── pipe.json │ │ │ │ ├── slice.json │ │ │ │ ├── syntax.json │ │ │ │ ├── unicode.json │ │ │ │ └── wildcard.json │ │ ├── psr │ │ │ └── http-message │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ ├── MessageInterface.php │ │ │ │ ├── RequestInterface.php │ │ │ │ ├── ResponseInterface.php │ │ │ │ ├── ServerRequestInterface.php │ │ │ │ ├── StreamInterface.php │ │ │ │ ├── UploadedFileInterface.php │ │ │ │ └── UriInterface.php │ │ ├── ralouphie │ │ │ └── getallheaders │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ └── getallheaders.php │ │ └── symfony │ │ │ └── polyfill-mbstring │ │ │ ├── LICENSE │ │ │ ├── Mbstring.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ ├── aliyun │ │ ├── .coveralls.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README-CN.md │ │ ├── README.md │ │ ├── autoload.php │ │ ├── build-phar.sh │ │ ├── composer.json │ │ ├── example.jpg │ │ ├── index.php │ │ ├── phpunit.xml │ │ ├── samples │ │ │ ├── Bucket.php │ │ │ ├── BucketCors.php │ │ │ ├── BucketLifecycle.php │ │ │ ├── BucketLogging.php │ │ │ ├── BucketReferer.php │ │ │ ├── BucketWebsite.php │ │ │ ├── Callback.php │ │ │ ├── Common.php │ │ │ ├── Config.php │ │ │ ├── Image.php │ │ │ ├── LiveChannel.php │ │ │ ├── MultipartUpload.php │ │ │ ├── Object.php │ │ │ ├── RunAll.php │ │ │ └── Signature.php │ │ ├── src │ │ │ └── OSS │ │ │ │ ├── Core │ │ │ │ ├── MimeTypes.php │ │ │ │ ├── OssException.php │ │ │ │ └── OssUtil.php │ │ │ │ ├── Http │ │ │ │ ├── LICENSE │ │ │ │ ├── RequestCore.php │ │ │ │ ├── RequestCore_Exception.php │ │ │ │ └── ResponseCore.php │ │ │ │ ├── Model │ │ │ │ ├── BucketInfo.php │ │ │ │ ├── BucketListInfo.php │ │ │ │ ├── CnameConfig.php │ │ │ │ ├── CorsConfig.php │ │ │ │ ├── CorsRule.php │ │ │ │ ├── GetLiveChannelHistory.php │ │ │ │ ├── GetLiveChannelInfo.php │ │ │ │ ├── GetLiveChannelStatus.php │ │ │ │ ├── LifecycleAction.php │ │ │ │ ├── LifecycleConfig.php │ │ │ │ ├── LifecycleRule.php │ │ │ │ ├── ListMultipartUploadInfo.php │ │ │ │ ├── ListPartsInfo.php │ │ │ │ ├── LiveChannelConfig.php │ │ │ │ ├── LiveChannelHistory.php │ │ │ │ ├── LiveChannelInfo.php │ │ │ │ ├── LiveChannelListInfo.php │ │ │ │ ├── LoggingConfig.php │ │ │ │ ├── ObjectInfo.php │ │ │ │ ├── ObjectListInfo.php │ │ │ │ ├── PartInfo.php │ │ │ │ ├── PrefixInfo.php │ │ │ │ ├── RefererConfig.php │ │ │ │ ├── StorageCapacityConfig.php │ │ │ │ ├── UploadInfo.php │ │ │ │ ├── WebsiteConfig.php │ │ │ │ └── XmlConfig.php │ │ │ │ ├── OssClient.php │ │ │ │ └── Result │ │ │ │ ├── AclResult.php │ │ │ │ ├── AppendResult.php │ │ │ │ ├── BodyResult.php │ │ │ │ ├── CallbackResult.php │ │ │ │ ├── CopyObjectResult.php │ │ │ │ ├── DeleteObjectsResult.php │ │ │ │ ├── ExistResult.php │ │ │ │ ├── GetCnameResult.php │ │ │ │ ├── GetCorsResult.php │ │ │ │ ├── GetLifecycleResult.php │ │ │ │ ├── GetLiveChannelHistoryResult.php │ │ │ │ ├── GetLiveChannelInfoResult.php │ │ │ │ ├── GetLiveChannelStatusResult.php │ │ │ │ ├── GetLocationResult.php │ │ │ │ ├── GetLoggingResult.php │ │ │ │ ├── GetRefererResult.php │ │ │ │ ├── GetStorageCapacityResult.php │ │ │ │ ├── GetWebsiteResult.php │ │ │ │ ├── HeaderResult.php │ │ │ │ ├── InitiateMultipartUploadResult.php │ │ │ │ ├── ListBucketsResult.php │ │ │ │ ├── ListLiveChannelResult.php │ │ │ │ ├── ListMultipartUploadResult.php │ │ │ │ ├── ListObjectsResult.php │ │ │ │ ├── ListPartsResult.php │ │ │ │ ├── PutLiveChannelResult.php │ │ │ │ ├── PutSetDeleteResult.php │ │ │ │ ├── Result.php │ │ │ │ ├── SymlinkResult.php │ │ │ │ └── UploadPartResult.php │ │ └── tests │ │ │ └── OSS │ │ │ └── Tests │ │ │ ├── AclResultTest.php │ │ │ ├── BodyResultTest.php │ │ │ ├── BucketCnameTest.php │ │ │ ├── BucketInfoTest.php │ │ │ ├── BucketLiveChannelTest.php │ │ │ ├── CallbackTest.php │ │ │ ├── CnameConfigTest.php │ │ │ ├── Common.php │ │ │ ├── ContentTypeTest.php │ │ │ ├── CopyObjectResult.php │ │ │ ├── CorsConfigTest.php │ │ │ ├── ExistResultTest.php │ │ │ ├── GetCorsResultTest.php │ │ │ ├── GetLifecycleResultTest.php │ │ │ ├── GetLoggingResultTest.php │ │ │ ├── GetRefererResultTest.php │ │ │ ├── GetWebsiteResultTest.php │ │ │ ├── HeaderResultTest.php │ │ │ ├── HttpTest.php │ │ │ ├── InitiateMultipartUploadResultTest.php │ │ │ ├── LifecycleConfigTest.php │ │ │ ├── ListBucketsResultTest.php │ │ │ ├── ListMultipartUploadResultTest.php │ │ │ ├── ListObjectsResultTest.php │ │ │ ├── ListPartsResultTest.php │ │ │ ├── LiveChannelXmlTest.php │ │ │ ├── LoggingConfigTest.php │ │ │ ├── MimeTypesTest.php │ │ │ ├── ObjectAclTest.php │ │ │ ├── OssClientBucketCorsTest.php │ │ │ ├── OssClientBucketLifecycleTest.php │ │ │ ├── OssClientBucketLoggingTest.php │ │ │ ├── OssClientBucketRefererTest.php │ │ │ ├── OssClientBucketStorageCapacityTest.php │ │ │ ├── OssClientBucketTest.php │ │ │ ├── OssClientBucketWebsiteTest.php │ │ │ ├── OssClientImageTest.php │ │ │ ├── OssClientMultipartUploadTest.php │ │ │ ├── OssClientObjectTest.php │ │ │ ├── OssClientRestoreObjectTest.php │ │ │ ├── OssClientSignatureTest.php │ │ │ ├── OssClientTest.php │ │ │ ├── OssExceptionTest.php │ │ │ ├── OssUtilTest.php │ │ │ ├── PutSetDeleteResultTest.php │ │ │ ├── RefererConfigTest.php │ │ │ ├── StorageCapacityTest.php │ │ │ ├── SymlinkTest.php │ │ │ ├── TestOssClientBase.php │ │ │ ├── UploadPartResultTest.php │ │ │ └── WebsiteConfigTest.php │ ├── custom_admin_login │ │ ├── CustomAdminLoginPlugin.php │ │ └── view │ │ │ └── widget.html │ ├── demo │ │ ├── DemoPlugin.php │ │ ├── README.txt │ │ ├── config.php │ │ ├── controller │ │ │ ├── AdminIndexController.php │ │ │ └── IndexController.php │ │ ├── lang │ │ │ ├── en-us.php │ │ │ └── zh-cn.php │ │ ├── model │ │ │ └── PluginDemoModel.php │ │ └── view │ │ │ ├── admin_index.html │ │ │ ├── index.html │ │ │ ├── public │ │ │ ├── assets │ │ │ │ └── images │ │ │ │ │ └── favicon.ico │ │ │ ├── head.html │ │ │ └── scripts.html │ │ │ └── widget.html │ ├── ipaphp │ │ ├── AuthKey_7ZHWJ7UDZQ.p8 │ │ ├── AuthKey_D7RX7TAVYM.p8 │ │ ├── b.mobileprovision │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── test.php │ │ └── vendor │ │ │ ├── autoload.php │ │ │ ├── composer │ │ │ ├── ClassLoader.php │ │ │ ├── LICENSE │ │ │ ├── autoload_classmap.php │ │ │ ├── autoload_namespaces.php │ │ │ ├── autoload_psr4.php │ │ │ ├── autoload_real.php │ │ │ ├── autoload_static.php │ │ │ └── installed.json │ │ │ ├── php-curl-class │ │ │ └── php-curl-class │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ └── Curl │ │ │ │ ├── ArrayUtil.php │ │ │ │ ├── CaseInsensitiveArray.php │ │ │ │ ├── Curl.php │ │ │ │ ├── Decoder.php │ │ │ │ ├── Encoder.php │ │ │ │ ├── MultiCurl.php │ │ │ │ ├── StringUtil.php │ │ │ │ └── Url.php │ │ │ ├── rmccue │ │ │ └── requests │ │ │ │ ├── .coveralls.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── create_pear_package.php │ │ │ │ ├── composer.json │ │ │ │ ├── docs │ │ │ │ ├── README.md │ │ │ │ ├── authentication-custom.md │ │ │ │ ├── authentication.md │ │ │ │ ├── goals.md │ │ │ │ ├── hooks.md │ │ │ │ ├── proxy.md │ │ │ │ ├── usage-advanced.md │ │ │ │ ├── usage.md │ │ │ │ └── why-requests.md │ │ │ │ ├── examples │ │ │ │ ├── basic-auth.php │ │ │ │ ├── cookie.php │ │ │ │ ├── cookie_jar.php │ │ │ │ ├── get.php │ │ │ │ ├── multiple.php │ │ │ │ ├── post.php │ │ │ │ ├── proxy.php │ │ │ │ ├── session.php │ │ │ │ └── timeout.php │ │ │ │ ├── library │ │ │ │ ├── Requests.php │ │ │ │ └── Requests │ │ │ │ │ ├── Auth.php │ │ │ │ │ ├── Auth │ │ │ │ │ └── Basic.php │ │ │ │ │ ├── Cookie.php │ │ │ │ │ ├── Cookie │ │ │ │ │ └── Jar.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── Exception │ │ │ │ │ ├── HTTP.php │ │ │ │ │ ├── HTTP │ │ │ │ │ │ ├── 304.php │ │ │ │ │ │ ├── 305.php │ │ │ │ │ │ ├── 306.php │ │ │ │ │ │ ├── 400.php │ │ │ │ │ │ ├── 401.php │ │ │ │ │ │ ├── 402.php │ │ │ │ │ │ ├── 403.php │ │ │ │ │ │ ├── 404.php │ │ │ │ │ │ ├── 405.php │ │ │ │ │ │ ├── 406.php │ │ │ │ │ │ ├── 407.php │ │ │ │ │ │ ├── 408.php │ │ │ │ │ │ ├── 409.php │ │ │ │ │ │ ├── 410.php │ │ │ │ │ │ ├── 411.php │ │ │ │ │ │ ├── 412.php │ │ │ │ │ │ ├── 413.php │ │ │ │ │ │ ├── 414.php │ │ │ │ │ │ ├── 415.php │ │ │ │ │ │ ├── 416.php │ │ │ │ │ │ ├── 417.php │ │ │ │ │ │ ├── 418.php │ │ │ │ │ │ ├── 428.php │ │ │ │ │ │ ├── 429.php │ │ │ │ │ │ ├── 431.php │ │ │ │ │ │ ├── 500.php │ │ │ │ │ │ ├── 501.php │ │ │ │ │ │ ├── 502.php │ │ │ │ │ │ ├── 503.php │ │ │ │ │ │ ├── 504.php │ │ │ │ │ │ ├── 505.php │ │ │ │ │ │ ├── 511.php │ │ │ │ │ │ └── Unknown.php │ │ │ │ │ ├── Transport.php │ │ │ │ │ └── Transport │ │ │ │ │ │ └── cURL.php │ │ │ │ │ ├── Hooker.php │ │ │ │ │ ├── Hooks.php │ │ │ │ │ ├── IDNAEncoder.php │ │ │ │ │ ├── IPv6.php │ │ │ │ │ ├── IRI.php │ │ │ │ │ ├── Proxy.php │ │ │ │ │ ├── Proxy │ │ │ │ │ └── HTTP.php │ │ │ │ │ ├── Response.php │ │ │ │ │ ├── Response │ │ │ │ │ └── Headers.php │ │ │ │ │ ├── SSL.php │ │ │ │ │ ├── Session.php │ │ │ │ │ ├── Transport.php │ │ │ │ │ ├── Transport │ │ │ │ │ ├── cURL.php │ │ │ │ │ ├── cacert.pem │ │ │ │ │ └── fsockopen.php │ │ │ │ │ └── Utility │ │ │ │ │ ├── CaseInsensitiveDictionary.php │ │ │ │ │ └── FilteredIterator.php │ │ │ │ ├── package.xml.tpl │ │ │ │ └── tests │ │ │ │ ├── Auth │ │ │ │ └── Basic.php │ │ │ │ ├── ChunkedEncoding.php │ │ │ │ ├── Cookies.php │ │ │ │ ├── Encoding.php │ │ │ │ ├── IDNAEncoder.php │ │ │ │ ├── IRI.php │ │ │ │ ├── Proxy │ │ │ │ └── HTTP.php │ │ │ │ ├── Requests.php │ │ │ │ ├── Response │ │ │ │ └── Headers.php │ │ │ │ ├── SSL.php │ │ │ │ ├── Session.php │ │ │ │ ├── Transport │ │ │ │ ├── Base.php │ │ │ │ ├── cURL.php │ │ │ │ └── fsockopen.php │ │ │ │ ├── bootstrap.php │ │ │ │ ├── phpunit.xml.dist │ │ │ │ └── utils │ │ │ │ └── proxy │ │ │ │ ├── proxy.py │ │ │ │ ├── start.sh │ │ │ │ └── stop.sh │ │ │ └── yunchuang │ │ │ └── appstore-connect-api │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── Api │ │ │ ├── AbstractApi.php │ │ │ ├── ApiInterface.php │ │ │ ├── BundleId.php │ │ │ ├── BundleIdCapability.php │ │ │ ├── Certificates.php │ │ │ ├── Device.php │ │ │ └── Profiles.php │ │ │ ├── Client.php │ │ │ ├── Exceptions │ │ │ ├── ConfigException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ │ │ └── Utils │ │ │ ├── HttpClient.php │ │ │ └── JWT.php │ ├── mobile_code_demo │ │ ├── MobileCodeDemoPlugin.php │ │ └── config.php │ ├── qiniu │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── QiniuPlugin.php │ │ ├── autoload.php │ │ ├── composer.json │ │ ├── config.php │ │ ├── lib │ │ │ └── Qiniu.php │ │ ├── lizi │ │ │ ├── README.md │ │ │ ├── cdn_get_bandwidth.php │ │ │ ├── cdn_get_flux.php │ │ │ ├── cdn_get_log_list.php │ │ │ ├── cdn_refresh_urls_dirs.php │ │ │ ├── cdn_timestamp_antileech.php │ │ │ ├── image_url_builder.php │ │ │ ├── persistent_fop_init.php │ │ │ ├── persistent_fop_status.php │ │ │ ├── pfop_mkzip.php │ │ │ ├── pfop_vframe.php │ │ │ ├── pfop_video_avthumb.php │ │ │ ├── pfop_watermark.php │ │ │ ├── php-logo.png │ │ │ ├── prefop.php │ │ │ ├── qetag.php │ │ │ ├── rs_batch_change_mime.php │ │ │ ├── rs_batch_change_type.php │ │ │ ├── rs_batch_copy.php │ │ │ ├── rs_batch_delete.php │ │ │ ├── rs_batch_delete_after_days.php │ │ │ ├── rs_batch_move.php │ │ │ ├── rs_batch_stat.php │ │ │ ├── rs_bucket_domains.php │ │ │ ├── rs_buckets.php │ │ │ ├── rs_change_mime.php │ │ │ ├── rs_change_type.php │ │ │ ├── rs_copy.php │ │ │ ├── rs_delete.php │ │ │ ├── rs_delete_after_days.php │ │ │ ├── rs_download_urls.php │ │ │ ├── rs_fetch.php │ │ │ ├── rs_move.php │ │ │ ├── rs_prefetch.php │ │ │ ├── rs_stat.php │ │ │ ├── rsf_list_bucket.php │ │ │ ├── rsf_list_files.php │ │ │ ├── saveas.php │ │ │ ├── upload_and_callback.php │ │ │ ├── upload_and_pfop.php │ │ │ ├── upload_mgr_init.php │ │ │ ├── upload_multi_demos.php │ │ │ ├── upload_simple_file.php │ │ │ ├── upload_tokens.php │ │ │ └── upload_verify_callback.php │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ └── Qiniu │ │ │ │ ├── Auth.php │ │ │ │ ├── Cdn │ │ │ │ └── CdnManager.php │ │ │ │ ├── Config.php │ │ │ │ ├── Etag.php │ │ │ │ ├── Http │ │ │ │ ├── Client.php │ │ │ │ ├── Error.php │ │ │ │ ├── Request.php │ │ │ │ └── Response.php │ │ │ │ ├── Processing │ │ │ │ ├── ImageUrlBuilder.php │ │ │ │ ├── Operation.php │ │ │ │ └── PersistentFop.php │ │ │ │ ├── Storage │ │ │ │ ├── BucketManager.php │ │ │ │ ├── FormUploader.php │ │ │ │ ├── ResumeUploader.php │ │ │ │ └── UploadManager.php │ │ │ │ ├── Zone.php │ │ │ │ └── functions.php │ │ ├── test-env.sh │ │ └── tests │ │ │ ├── Qiniu │ │ │ └── Tests │ │ │ │ ├── AuthTest.php │ │ │ │ ├── Base64Test.php │ │ │ │ ├── BucketTest.php │ │ │ │ ├── CdnManagerTest.php │ │ │ │ ├── Crc32Test.php │ │ │ │ ├── DownloadTest.php │ │ │ │ ├── EtagTest.php │ │ │ │ ├── FopTest.php │ │ │ │ ├── FormUpTest.php │ │ │ │ ├── HttpTest.php │ │ │ │ ├── ImageUrlBuilderTest.php │ │ │ │ ├── PfopTest.php │ │ │ │ ├── ResumeUpTest.php │ │ │ │ └── ZoneTest.php │ │ │ └── bootstrap.php │ ├── switch_theme_demo │ │ ├── SwitchThemeDemoPlugin.php │ │ └── config.php │ └── system_info │ │ ├── SystemInfoPlugin.php │ │ └── view │ │ └── widget.html ├── robots.txt ├── router.php ├── sign │ ├── ca-bundle.pem │ ├── cert.pem │ ├── chain.pem │ ├── fullchain.pem │ ├── mbaike.crt │ ├── mbaikenopass.key │ └── privkey.pem ├── sign_error_log │ ├── 450482c7e9ea840edd8c11d1181a6360946dc586bajuntu1574127377.txt │ ├── 450482c7e9ea840edd8c11d1181a6360946dc586bajuntu1574127377ml.txt │ ├── 450482c7e9ea840edd8c11d1181a6360946dc586io.dcloud.43fk41574127793.txt │ ├── 450482c7e9ea840edd8c11d1181a6360946dc586io.dcloud.43fk41574127793ml.txt │ ├── c381afbbf6aecc2975bddbfff0210d491b5de57fio.dcloud.43fk41574127693.txt │ ├── c381afbbf6aecc2975bddbfff0210d491b5de57fio.dcloud.43fk41574127693ml.txt │ ├── c381afbbf6aecc2975bddbfff0210d491b5de57fyataiqukuaidan1574127452.txt │ ├── c381afbbf6aecc2975bddbfff0210d491b5de57fyataiqukuaidan1574127452ml.txt │ ├── c381afbbf6aecc2975bddbfff0210d491b5de57fyataiqukuaidan1574127463.txt │ └── c381afbbf6aecc2975bddbfff0210d491b5de57fyataiqukuaidan1574127463ml.txt ├── spcer │ ├── 22certificate.pem │ ├── 22key.pem │ ├── 25certificate.pem │ ├── 25key.pem │ ├── 26certificate.pem │ └── 26key.pem ├── static │ ├── font-awesome │ │ ├── css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── images │ │ ├── enterprise_signature_bg_2x.png │ │ ├── headicon.png │ │ ├── logo.png │ │ └── super_signature_bg_2x.png │ ├── install │ │ ├── css │ │ │ └── install.css │ │ ├── images │ │ │ ├── bg.png │ │ │ └── loading.gif │ │ └── simpleboot │ │ │ ├── css │ │ │ ├── simplebootadmin.css │ │ │ └── simplebootadminindex-ie.css │ │ │ └── themes │ │ │ └── flat │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── theme.min.css │ └── js │ │ ├── admin.js │ │ ├── ajaxForm.js │ │ ├── ajaxfileupload.js │ │ ├── animate │ │ └── animate.css │ │ ├── artDialog │ │ ├── artDialog.js │ │ ├── iframeTools.js │ │ ├── iframeTools.old.js │ │ └── skins │ │ │ ├── blue.css │ │ │ ├── blue │ │ │ ├── bg.png │ │ │ ├── bg2.png │ │ │ ├── bg_css3.png │ │ │ ├── bg_css3_2.png │ │ │ └── ie6 │ │ │ │ ├── close.hover.png │ │ │ │ ├── close.png │ │ │ │ ├── e.png │ │ │ │ ├── n.png │ │ │ │ ├── ne.png │ │ │ │ ├── nw.png │ │ │ │ ├── s.png │ │ │ │ ├── se.png │ │ │ │ ├── sw.png │ │ │ │ └── w.png │ │ │ ├── default.css │ │ │ └── icons │ │ │ ├── error.png │ │ │ ├── face-sad.png │ │ │ ├── face-smile.png │ │ │ ├── loading.gif │ │ │ ├── question.png │ │ │ ├── succeed.png │ │ │ └── warning.png │ │ ├── base.js │ │ ├── base64.min.js │ │ ├── bootstrap-datetimepicker │ │ ├── css │ │ │ └── bootstrap-datetimepicker.css │ │ └── js │ │ │ ├── bootstrap-datetimepicker.js │ │ │ └── locales │ │ │ ├── bootstrap-datetimepicker.ar.js │ │ │ ├── bootstrap-datetimepicker.az.js │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ ├── bootstrap-datetimepicker.bn.js │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ ├── bootstrap-datetimepicker.ee.js │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ ├── bootstrap-datetimepicker.hy.js │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ ├── bootstrap-datetimepicker.ka.js │ │ │ ├── bootstrap-datetimepicker.ko.js │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ ├── bootstrap-datetimepicker.no.js │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ │ ├── bootstrap.min.js │ │ ├── colorpicker │ │ ├── css │ │ │ └── colorpicker.css │ │ ├── images │ │ │ ├── blank.gif │ │ │ ├── colorpicker_background.png │ │ │ ├── colorpicker_hex.png │ │ │ ├── colorpicker_hsb_b.png │ │ │ ├── colorpicker_hsb_h.png │ │ │ ├── colorpicker_hsb_s.png │ │ │ ├── colorpicker_indic.gif │ │ │ ├── colorpicker_overlay.png │ │ │ ├── colorpicker_rgb_b.png │ │ │ ├── colorpicker_rgb_g.png │ │ │ ├── colorpicker_rgb_r.png │ │ │ ├── colorpicker_select.gif │ │ │ ├── colorpicker_submit.png │ │ │ ├── custom_background.png │ │ │ ├── custom_hex.png │ │ │ ├── custom_hsb_b.png │ │ │ ├── custom_hsb_h.png │ │ │ ├── custom_hsb_s.png │ │ │ ├── custom_indic.gif │ │ │ ├── custom_rgb_b.png │ │ │ ├── custom_rgb_g.png │ │ │ ├── custom_rgb_r.png │ │ │ ├── custom_submit.png │ │ │ ├── select.png │ │ │ ├── select2.png │ │ │ └── slider.png │ │ └── js │ │ │ └── colorpicker.js │ │ ├── cookie.js │ │ ├── datePicker │ │ ├── bg.png │ │ ├── datePicker.js │ │ └── style.css │ │ ├── draggable.js │ │ ├── dragula │ │ ├── dragula.min.css │ │ └── dragula.min.js │ │ ├── echarts │ │ └── echarts.min.js │ │ ├── frontend.js │ │ ├── imgready.js │ │ ├── jcrop │ │ ├── css │ │ │ ├── Jcrop.gif │ │ │ └── jquery.Jcrop.min.css │ │ └── js │ │ │ └── jcrop.js │ │ ├── jquery.js │ │ ├── jquery.validate │ │ ├── additional-methods.js │ │ └── jquery.validate.js │ │ ├── layer │ │ ├── layer.js │ │ ├── mobile │ │ │ ├── layer.js │ │ │ └── need │ │ │ │ └── layer.css │ │ └── skin │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ ├── layui │ │ ├── css │ │ │ ├── layui.css │ │ │ ├── layui.mobile.css │ │ │ └── modules │ │ │ │ ├── code.css │ │ │ │ ├── laydate │ │ │ │ └── default │ │ │ │ │ └── laydate.css │ │ │ │ └── layer │ │ │ │ └── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ ├── images │ │ │ └── face │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 51.gif │ │ │ │ ├── 52.gif │ │ │ │ ├── 53.gif │ │ │ │ ├── 54.gif │ │ │ │ ├── 55.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 57.gif │ │ │ │ ├── 58.gif │ │ │ │ ├── 59.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 60.gif │ │ │ │ ├── 61.gif │ │ │ │ ├── 62.gif │ │ │ │ ├── 63.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 65.gif │ │ │ │ ├── 66.gif │ │ │ │ ├── 67.gif │ │ │ │ ├── 68.gif │ │ │ │ ├── 69.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 70.gif │ │ │ │ ├── 71.gif │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ ├── lay │ │ │ └── modules │ │ │ │ ├── carousel.js │ │ │ │ ├── code.js │ │ │ │ ├── element.js │ │ │ │ ├── flow.js │ │ │ │ ├── form.js │ │ │ │ ├── jquery.js │ │ │ │ ├── laydate.js │ │ │ │ ├── layedit.js │ │ │ │ ├── layer.js │ │ │ │ ├── laypage.js │ │ │ │ ├── laytpl.js │ │ │ │ ├── mobile.js │ │ │ │ ├── table.js │ │ │ │ ├── tree.js │ │ │ │ ├── upload.js │ │ │ │ └── util.js │ │ ├── layui.all.js │ │ └── layui.js │ │ ├── lazyload.js │ │ ├── masonry │ │ ├── imagesloaded.pkgd.min.js │ │ └── masonry.pkgd.min.js │ │ ├── noty │ │ └── noty.js │ │ ├── noty3 │ │ ├── noty.css │ │ └── noty.min.js │ │ ├── plupload │ │ ├── Moxie.swf │ │ ├── Moxie.xap │ │ ├── i18n │ │ │ ├── en.js │ │ │ ├── zh_CN.js │ │ │ └── zh_TW.js │ │ └── plupload.full.min.js │ │ ├── tabs │ │ └── tabs.js │ │ ├── treeTable │ │ ├── images │ │ │ ├── toggle-collapse-dark.png │ │ │ └── toggle-expand-dark.png │ │ ├── treeTable.css │ │ └── treeTable.js │ │ ├── treeview.js │ │ ├── ueditor │ │ ├── config.json │ │ ├── dialogs │ │ │ ├── anchor │ │ │ │ └── anchor.html │ │ │ ├── attachment │ │ │ │ ├── attachment.css │ │ │ │ ├── attachment.html │ │ │ │ ├── attachment.js │ │ │ │ ├── fileTypeImages │ │ │ │ │ ├── icon_chm.gif │ │ │ │ │ ├── icon_default.png │ │ │ │ │ ├── icon_doc.gif │ │ │ │ │ ├── icon_exe.gif │ │ │ │ │ ├── icon_jpg.gif │ │ │ │ │ ├── icon_mp3.gif │ │ │ │ │ ├── icon_mv.gif │ │ │ │ │ ├── icon_pdf.gif │ │ │ │ │ ├── icon_ppt.gif │ │ │ │ │ ├── icon_psd.gif │ │ │ │ │ ├── icon_rar.gif │ │ │ │ │ ├── icon_txt.gif │ │ │ │ │ └── icon_xls.gif │ │ │ │ └── images │ │ │ │ │ ├── alignicon.gif │ │ │ │ │ ├── alignicon.png │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── background │ │ │ │ ├── background.css │ │ │ │ ├── background.html │ │ │ │ ├── background.js │ │ │ │ └── images │ │ │ │ │ ├── bg.png │ │ │ │ │ └── success.png │ │ │ ├── charts │ │ │ │ ├── chart.config.js │ │ │ │ ├── charts.css │ │ │ │ ├── charts.html │ │ │ │ ├── charts.js │ │ │ │ └── images │ │ │ │ │ ├── charts0.png │ │ │ │ │ ├── charts1.png │ │ │ │ │ ├── charts2.png │ │ │ │ │ ├── charts3.png │ │ │ │ │ ├── charts4.png │ │ │ │ │ └── charts5.png │ │ │ ├── emotion │ │ │ │ ├── emotion.css │ │ │ │ ├── emotion.html │ │ │ │ ├── emotion.js │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── bface.gif │ │ │ │ │ ├── cface.gif │ │ │ │ │ ├── fface.gif │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── tface.gif │ │ │ │ │ ├── wface.gif │ │ │ │ │ └── yface.gif │ │ │ ├── gmap │ │ │ │ └── gmap.html │ │ │ ├── help │ │ │ │ ├── help.css │ │ │ │ ├── help.html │ │ │ │ └── help.js │ │ │ ├── image │ │ │ │ ├── image.css │ │ │ │ ├── image.html │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── alignicon.jpg │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── insertframe │ │ │ │ └── insertframe.html │ │ │ ├── internal.js │ │ │ ├── link │ │ │ │ └── link.html │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── show.html │ │ │ ├── music │ │ │ │ ├── music.css │ │ │ │ ├── music.html │ │ │ │ └── music.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scrawl │ │ │ │ ├── images │ │ │ │ │ ├── addimg.png │ │ │ │ │ ├── brush.png │ │ │ │ │ ├── delimg.png │ │ │ │ │ ├── delimgH.png │ │ │ │ │ ├── empty.png │ │ │ │ │ ├── emptyH.png │ │ │ │ │ ├── eraser.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── redoH.png │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── scaleH.png │ │ │ │ │ ├── size.png │ │ │ │ │ ├── undo.png │ │ │ │ │ └── undoH.png │ │ │ │ ├── scrawl.css │ │ │ │ ├── scrawl.html │ │ │ │ └── scrawl.js │ │ │ ├── searchreplace │ │ │ │ ├── searchreplace.html │ │ │ │ └── searchreplace.js │ │ │ ├── snapscreen │ │ │ │ └── snapscreen.html │ │ │ ├── spechars │ │ │ │ ├── spechars.html │ │ │ │ └── spechars.js │ │ │ ├── table │ │ │ │ ├── dragicon.png │ │ │ │ ├── edittable.css │ │ │ │ ├── edittable.html │ │ │ │ ├── edittable.js │ │ │ │ ├── edittd.html │ │ │ │ └── edittip.html │ │ │ ├── template │ │ │ │ ├── config.js │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── pre0.png │ │ │ │ │ ├── pre1.png │ │ │ │ │ ├── pre2.png │ │ │ │ │ ├── pre3.png │ │ │ │ │ └── pre4.png │ │ │ │ ├── template.css │ │ │ │ ├── template.html │ │ │ │ └── template.js │ │ │ ├── video │ │ │ │ ├── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── center_focus.jpg │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── left_focus.jpg │ │ │ │ │ ├── none_focus.jpg │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── right_focus.jpg │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ │ ├── video.css │ │ │ │ ├── video.html │ │ │ │ └── video.js │ │ │ └── wordimage │ │ │ │ ├── fClipboard_ueditor.swf │ │ │ │ ├── imageUploader.swf │ │ │ │ ├── tangram.js │ │ │ │ ├── wordimage.html │ │ │ │ └── wordimage.js │ │ ├── index.html │ │ ├── lang │ │ │ ├── en │ │ │ │ ├── en.js │ │ │ │ └── images │ │ │ │ │ ├── addimage.png │ │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ │ ├── background.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── deletedisable.png │ │ │ │ │ ├── deleteenable.png │ │ │ │ │ ├── listbackground.png │ │ │ │ │ ├── localimage.png │ │ │ │ │ ├── music.png │ │ │ │ │ ├── rotateleftdisable.png │ │ │ │ │ ├── rotateleftenable.png │ │ │ │ │ ├── rotaterightdisable.png │ │ │ │ │ ├── rotaterightenable.png │ │ │ │ │ └── upload.png │ │ │ └── zh-cn │ │ │ │ ├── images │ │ │ │ ├── copy.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ └── upload.png │ │ │ │ └── zh-cn.js │ │ ├── themes │ │ │ ├── default │ │ │ │ ├── css │ │ │ │ │ ├── ueditor.css │ │ │ │ │ └── ueditor.min.css │ │ │ │ ├── dialogbase.css │ │ │ │ └── images │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ ├── button-bg.gif │ │ │ │ │ ├── cancelbutton.gif │ │ │ │ │ ├── charts.png │ │ │ │ │ ├── cursor_h.gif │ │ │ │ │ ├── cursor_h.png │ │ │ │ │ ├── cursor_v.gif │ │ │ │ │ ├── cursor_v.png │ │ │ │ │ ├── dialog-title-bg.png │ │ │ │ │ ├── filescan.png │ │ │ │ │ ├── highlighted.gif │ │ │ │ │ ├── icons-all.gif │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── loaderror.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── lock.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── spacer.gif │ │ │ │ │ ├── sparator_v.png │ │ │ │ │ ├── table-cell-align.png │ │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ │ ├── toolbar_bg.png │ │ │ │ │ ├── unhighlighted.gif │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── videologo.gif │ │ │ │ │ ├── word.gif │ │ │ │ │ └── wordpaste.png │ │ │ └── iframe.css │ │ ├── third-party │ │ │ ├── SyntaxHighlighter │ │ │ │ ├── shCore.js │ │ │ │ └── shCoreDefault.css │ │ │ ├── codemirror │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ ├── highcharts │ │ │ │ ├── adapters │ │ │ │ │ ├── mootools-adapter.js │ │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ │ ├── prototype-adapter.js │ │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ │ ├── standalone-framework.js │ │ │ │ │ └── standalone-framework.src.js │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highcharts-more.src.js │ │ │ │ ├── highcharts.js │ │ │ │ ├── highcharts.src.js │ │ │ │ ├── modules │ │ │ │ │ ├── annotations.js │ │ │ │ │ ├── annotations.src.js │ │ │ │ │ ├── canvas-tools.js │ │ │ │ │ ├── canvas-tools.src.js │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.src.js │ │ │ │ │ ├── drilldown.js │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ ├── exporting.js │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ ├── funnel.js │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ ├── heatmap.js │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── map.src.js │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ └── no-data-to-display.src.js │ │ │ │ └── themes │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ ├── dark-green.js │ │ │ │ │ ├── gray.js │ │ │ │ │ ├── grid.js │ │ │ │ │ └── skies.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── video-js │ │ │ │ ├── font │ │ │ │ │ ├── vjs.eot │ │ │ │ │ ├── vjs.svg │ │ │ │ │ ├── vjs.ttf │ │ │ │ │ └── vjs.woff │ │ │ │ ├── video-js.css │ │ │ │ ├── video-js.min.css │ │ │ │ ├── video-js.swf │ │ │ │ ├── video.dev.js │ │ │ │ └── video.js │ │ │ ├── webuploader │ │ │ │ ├── Uploader.swf │ │ │ │ ├── webuploader.css │ │ │ │ ├── webuploader.custom.js │ │ │ │ ├── webuploader.custom.min.js │ │ │ │ ├── webuploader.flashonly.js │ │ │ │ ├── webuploader.flashonly.min.js │ │ │ │ ├── webuploader.html5only.js │ │ │ │ ├── webuploader.html5only.min.js │ │ │ │ ├── webuploader.js │ │ │ │ ├── webuploader.min.js │ │ │ │ ├── webuploader.withoutimage.js │ │ │ │ └── webuploader.withoutimage.min.js │ │ │ ├── xss.min.js │ │ │ └── zeroclipboard │ │ │ │ ├── ZeroClipboard.js │ │ │ │ ├── ZeroClipboard.min.js │ │ │ │ └── ZeroClipboard.swf │ │ ├── ueditor.all.min.js │ │ ├── ueditor.config.js │ │ ├── ueditor.frontend.config.js │ │ └── ueditor.parse.min.js │ │ ├── validate.js │ │ ├── webuploader │ │ ├── README.md │ │ ├── Uploader.swf │ │ ├── image-upload │ │ │ ├── bg.png │ │ │ ├── expressInstall.swf │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── progress.png │ │ │ ├── style.css │ │ │ └── success.png │ │ ├── webuploader.css │ │ └── webuploader.min.js │ │ ├── wind.js │ │ ├── xd.js │ │ └── zipjs │ │ ├── deflate.js │ │ ├── inflate.js │ │ ├── mime-types.js │ │ ├── pako │ │ └── codecs.js │ │ ├── tests │ │ ├── arraybuffer.js │ │ ├── base64.js │ │ ├── config.js │ │ ├── dataview.js │ │ ├── lorem.txt │ │ ├── lorem.zip │ │ ├── lorem2.zip │ │ ├── lorem_store.zip │ │ ├── test1.html │ │ ├── test1.js │ │ ├── test10.html │ │ ├── test10.js │ │ ├── test11.html │ │ ├── test11.js │ │ ├── test12.html │ │ ├── test12.js │ │ ├── test13.html │ │ ├── test13.js │ │ ├── test14.html │ │ ├── test14.js │ │ ├── test15.html │ │ ├── test15.js │ │ ├── test16.html │ │ ├── test16.js │ │ ├── test17.html │ │ ├── test17.js │ │ ├── test18.html │ │ ├── test18.js │ │ ├── test19-codecs-interop.html │ │ ├── test2.html │ │ ├── test2.js │ │ ├── test20.html │ │ ├── test20.js │ │ ├── test3.html │ │ ├── test3.js │ │ ├── test4.html │ │ ├── test4.js │ │ ├── test5.html │ │ ├── test5.js │ │ ├── test6.html │ │ ├── test6.js │ │ ├── test7.html │ │ ├── test7.js │ │ ├── test8.html │ │ ├── test8.js │ │ ├── test9.html │ │ ├── test9.js │ │ └── util.js │ │ ├── z-worker.js │ │ ├── zip-ext.js │ │ ├── zip-fs.js │ │ ├── zip.js │ │ └── zlib-asm │ │ └── codecs.js ├── themes │ ├── 97013266 │ │ ├── manifest.json │ │ ├── portal │ │ │ ├── about.html │ │ │ ├── about1.html │ │ │ ├── article.html │ │ │ ├── article.json │ │ │ ├── contact.html │ │ │ ├── contact.json │ │ │ ├── distribute_sign.html │ │ │ ├── index.html │ │ │ ├── index.json │ │ │ ├── list.html │ │ │ ├── list.json │ │ │ ├── page.html │ │ │ ├── page.json │ │ │ ├── posted.html │ │ │ ├── posted │ │ │ │ ├── deduction.html │ │ │ │ ├── index.html │ │ │ │ ├── supernumber.html │ │ │ │ └── supindex.html │ │ │ ├── protocol.html │ │ │ ├── search.html │ │ │ ├── search.json │ │ │ ├── supper_sign.html │ │ │ ├── supposted.html │ │ │ └── supposted1.html │ │ ├── public │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── demo.css │ │ │ │ │ ├── index.css │ │ │ │ │ ├── install.css │ │ │ │ │ ├── posted.css │ │ │ │ │ ├── slippry │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── img │ │ │ │ │ │ │ │ ├── arrows.png │ │ │ │ │ │ │ │ ├── arrows.svg │ │ │ │ │ │ │ │ └── sy-loader.gif │ │ │ │ │ │ └── slippry.css │ │ │ │ │ ├── style.css │ │ │ │ │ ├── sup_sign.css │ │ │ │ │ ├── tube.css │ │ │ │ │ ├── uploader.css │ │ │ │ │ └── user-center.css │ │ │ │ ├── images │ │ │ │ │ ├── Shape11.png │ │ │ │ │ ├── abg.png │ │ │ │ │ ├── achievement_bc.png │ │ │ │ │ ├── admin1.png │ │ │ │ │ ├── background3.png │ │ │ │ │ ├── banner_bac.png │ │ │ │ │ ├── banner_tu1.png │ │ │ │ │ ├── chaojiqianming.png │ │ │ │ │ ├── default-thumbnail.png │ │ │ │ │ ├── default_tupian1.png │ │ │ │ │ ├── default_tupian4.png │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── 1.jpg │ │ │ │ │ │ ├── 2.jpg │ │ │ │ │ │ ├── 3.jpg │ │ │ │ │ │ └── banner-dispatch.png │ │ │ │ │ ├── download.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── favicon.png │ │ │ │ │ ├── head.png │ │ │ │ │ ├── headicon.png │ │ │ │ │ ├── headicon_128.png │ │ │ │ │ ├── headicon_30.png │ │ │ │ │ ├── headicon_40.png │ │ │ │ │ ├── headicon_50.png │ │ │ │ │ ├── login_bac.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── me.png │ │ │ │ │ ├── null_cart2.jpg │ │ │ │ │ ├── project1.png │ │ │ │ │ ├── project2.png │ │ │ │ │ ├── project3.png │ │ │ │ │ ├── project4.png │ │ │ │ │ ├── publish.png │ │ │ │ │ ├── publish1.png │ │ │ │ │ ├── qianming.png │ │ │ │ │ ├── qianming1.png │ │ │ │ │ ├── qiyeqianming.png │ │ │ │ │ ├── question.png │ │ │ │ │ ├── seach.png │ │ │ │ │ ├── summary.png │ │ │ │ │ ├── summarya.png │ │ │ │ │ ├── summarya1.png │ │ │ │ │ ├── user_na.png │ │ │ │ │ ├── weixin.png │ │ │ │ │ ├── xian.png │ │ │ │ │ └── zhifubao.png │ │ │ │ ├── js │ │ │ │ │ ├── Q.Uploader.UI.File.js │ │ │ │ │ ├── Q.Uploader.js │ │ │ │ │ ├── Q.js │ │ │ │ │ ├── demo.js │ │ │ │ │ ├── frappe-charts.min.js │ │ │ │ │ ├── imagesloaded.pkgd.min.js │ │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ │ ├── jquery-1.10.2.min.map │ │ │ │ │ ├── jquery-migrate-1.2.1.js │ │ │ │ │ ├── jquery.infiniteScroll.js │ │ │ │ │ ├── jquery.qrcode.min.js │ │ │ │ │ ├── masonry.pkgd.min.js │ │ │ │ │ ├── plist_parser.js │ │ │ │ │ ├── qrcode.min.js │ │ │ │ │ ├── slippry.min.js │ │ │ │ │ └── slippry.min.map │ │ │ │ ├── qiniu_sdk │ │ │ │ │ ├── dist │ │ │ │ │ │ └── qiniu.min.js │ │ │ │ │ ├── highlight.css │ │ │ │ │ ├── highlight.js │ │ │ │ │ ├── main.css │ │ │ │ │ ├── main.js │ │ │ │ │ └── ui.js │ │ │ │ └── simpleboot3 │ │ │ │ │ ├── bootstrap │ │ │ │ │ └── js │ │ │ │ │ │ └── bootstrap.min.js │ │ │ │ │ ├── font-awesome │ │ │ │ │ ├── 4.2.0 │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ └── fonts │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ └── 4.4.0 │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ └── themes │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── simpleboot3 │ │ │ │ │ └── bootstrap.min.css │ │ │ ├── banner.html │ │ │ ├── config.html │ │ │ ├── config.json │ │ │ ├── footer.html │ │ │ ├── function.html │ │ │ ├── head.html │ │ │ ├── nav.html │ │ │ ├── nav.json │ │ │ ├── nav_new.html │ │ │ ├── scripts.html │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ └── pc.css │ │ │ │ ├── fonts │ │ │ │ │ ├── fontawesome-webfont-4.6.3.svg │ │ │ │ │ ├── fontawesome-webfont-4.6.3.woff │ │ │ │ │ ├── fontawesome-webfont-4.6.31.woff2 │ │ │ │ │ ├── glyphicons-halflings-regular1.woff2 │ │ │ │ │ ├── glyphicons-halflings-regular4.svg │ │ │ │ │ ├── montserrat │ │ │ │ │ │ ├── montserrat-bold-webfont.ttf │ │ │ │ │ │ ├── montserrat-bold-webfont.woff │ │ │ │ │ │ ├── montserrat-bold-webfont1.woff2 │ │ │ │ │ │ ├── montserrat-light-webfont.ttf │ │ │ │ │ │ ├── montserrat-light-webfont.woff │ │ │ │ │ │ ├── montserrat-light-webfont.woff2 │ │ │ │ │ │ ├── montserrat-regular-webfont1.woff2 │ │ │ │ │ │ └── montserrat-semibold-webfont1.woff2 │ │ │ │ │ ├── open-sans │ │ │ │ │ │ ├── fontawesome-webfont-4.6.31.woff2 │ │ │ │ │ │ ├── glyphicons-halflings-regular1.woff2 │ │ │ │ │ │ ├── opensans-bold-webfont.ttf │ │ │ │ │ │ ├── opensans-bold-webfont.woff │ │ │ │ │ │ ├── opensans-bold-webfont1.woff2 │ │ │ │ │ │ ├── opensans-regular-webfont.ttf │ │ │ │ │ │ ├── opensans-regular-webfont.woff │ │ │ │ │ │ ├── opensans-regular-webfont1.woff2 │ │ │ │ │ │ ├── opensans-semibold-webfont1.woff2 │ │ │ │ │ │ └── themify1.woff │ │ │ │ │ ├── themify.svg │ │ │ │ │ └── themify1.woff │ │ │ │ ├── image │ │ │ │ │ ├── bg-gray.png │ │ │ │ │ ├── bg-parallax.jpg │ │ │ │ │ ├── broker1.jpg │ │ │ │ │ ├── broker2.jpg │ │ │ │ │ ├── broker4.jpg │ │ │ │ │ ├── broker5.jpg │ │ │ │ │ ├── broker6.jpg │ │ │ │ │ ├── code-qq.png │ │ │ │ │ ├── code-wechat (1).png │ │ │ │ │ ├── code-wechat (2).png │ │ │ │ │ ├── code-wechat.png │ │ │ │ │ ├── img-d.png │ │ │ │ │ ├── img-wave.png │ │ │ │ │ ├── loading.jpg │ │ │ │ │ ├── logo1.png │ │ │ │ │ ├── logo2.png │ │ │ │ │ ├── phone.png │ │ │ │ │ ├── screen1.png │ │ │ │ │ ├── shape-1.png │ │ │ │ │ ├── shape-2.png │ │ │ │ │ ├── shape-3.png │ │ │ │ │ └── shape-4.png │ │ │ │ ├── js │ │ │ │ │ ├── 1.js │ │ │ │ │ └── pc.js │ │ │ │ └── ш╢Еч║зчн╛хРНцРнх╗║QQ208620005.mp3 │ │ │ ├── tube.html │ │ │ ├── tube1.html │ │ │ ├── uploads.html │ │ │ └── usernav.html │ │ └── user │ │ │ ├── certificate │ │ │ ├── add_certificate.html │ │ │ ├── edit_certificate.html │ │ │ └── index.html │ │ │ ├── comment │ │ │ └── index.html │ │ │ ├── favorite │ │ │ └── index.html │ │ │ ├── find_password.html │ │ │ ├── index.html │ │ │ ├── install │ │ │ ├── add_success.html │ │ │ ├── disclaimer.html │ │ │ ├── downfile_ios.xml │ │ │ ├── index.html │ │ │ ├── index_new.html │ │ │ ├── index_new1.html │ │ │ ├── ios_install.html │ │ │ └── report.html │ │ │ ├── login.html │ │ │ ├── profile │ │ │ ├── avatar.html │ │ │ ├── binding.html │ │ │ ├── cattle.html │ │ │ ├── center.html │ │ │ ├── edit.html │ │ │ ├── password.html │ │ │ └── real_name_auth.html │ │ │ ├── register.html │ │ │ └── tube │ │ │ ├── details.html │ │ │ ├── editor.html │ │ │ ├── hebing.html │ │ │ ├── index.html │ │ │ ├── index1.html │ │ │ ├── sup_details.html │ │ │ └── sup_editor.html │ ├── admin_simpleboot3 │ │ ├── admin │ │ │ ├── app │ │ │ │ ├── edit.html │ │ │ │ └── index.html │ │ │ ├── apply │ │ │ │ └── addindex.html │ │ │ ├── certificate │ │ │ │ ├── add_certificate.html │ │ │ │ ├── edit_certificate.html │ │ │ │ └── index.html │ │ │ ├── dialog │ │ │ │ └── map.html │ │ │ ├── download │ │ │ │ ├── add.html │ │ │ │ ├── add_charge.html │ │ │ │ ├── add_sup.html │ │ │ │ ├── add_sup_charge.html │ │ │ │ ├── charge.html │ │ │ │ ├── index.html │ │ │ │ ├── sup_add_charge.html │ │ │ │ └── supindex.html │ │ │ ├── hook │ │ │ │ ├── index.html │ │ │ │ ├── plugins.html │ │ │ │ └── sync.html │ │ │ ├── index │ │ │ │ └── index.html │ │ │ ├── link │ │ │ │ ├── add.html │ │ │ │ ├── edit.html │ │ │ │ └── index.html │ │ │ ├── login.html │ │ │ ├── mailer │ │ │ │ ├── index.html │ │ │ │ ├── template_verification_code.html │ │ │ │ └── test.html │ │ │ ├── main │ │ │ │ └── index.html │ │ │ ├── members │ │ │ │ ├── charge.html │ │ │ │ ├── index.html │ │ │ │ └── sele.html │ │ │ ├── menu │ │ │ │ ├── add.html │ │ │ │ ├── edit.html │ │ │ │ ├── getactions.html │ │ │ │ ├── index.html │ │ │ │ └── lists.html │ │ │ ├── nav │ │ │ │ ├── add.html │ │ │ │ ├── edit.html │ │ │ │ └── index.html │ │ │ ├── nav_menu │ │ │ │ ├── add.html │ │ │ │ ├── edit.html │ │ │ │ └── index.html │ │ │ ├── plugin │ │ │ │ ├── functions.html │ │ │ │ ├── index.html │ │ │ │ └── setting.html │ │ │ ├── rbac │ │ │ │ ├── authorize.html │ │ │ │ ├── index.html │ │ │ │ ├── member.html │ │ │ │ ├── roleadd.html │ │ │ │ └── roleedit.html │ │ │ ├── recycle_bin │ │ │ │ └── index.html │ │ │ ├── report │ │ │ │ └── index.html │ │ │ ├── route │ │ │ │ ├── add.html │ │ │ │ ├── edit.html │ │ │ │ ├── function.html │ │ │ │ ├── index.html │ │ │ │ └── select.html │ │ │ ├── setting │ │ │ │ ├── clearcache.html │ │ │ │ ├── password.html │ │ │ │ ├── site.html │ │ │ │ └── upload.html │ │ │ ├── slide │ │ │ │ ├── add.html │ │ │ │ ├── edit.html │ │ │ │ └── index.html │ │ │ ├── slide_item │ │ │ │ ├── add.html │ │ │ │ ├── edit.html │ │ │ │ └── index.html │ │ │ ├── storage │ │ │ │ └── index.html │ │ │ ├── systems │ │ │ │ ├── Live │ │ │ │ │ ├── add_sys.html │ │ │ │ │ └── index.html │ │ │ │ ├── add_sys.html │ │ │ │ └── index.html │ │ │ ├── theme │ │ │ │ ├── datasource.html │ │ │ │ ├── file_array_data.html │ │ │ │ ├── file_array_data_edit.html │ │ │ │ ├── file_var_setting.html │ │ │ │ ├── file_widget_setting.html │ │ │ │ ├── files.html │ │ │ │ ├── functions.html │ │ │ │ ├── index.html │ │ │ │ ├── install.html │ │ │ │ └── scripts.html │ │ │ └── user │ │ │ │ ├── add.html │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ └── userinfo.html │ │ ├── portal │ │ │ ├── admin_article │ │ │ │ ├── add.html │ │ │ │ ├── copy.html │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ ├── move.html │ │ │ │ └── recyclebin.html │ │ │ ├── admin_category │ │ │ │ ├── add.html │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ └── select.html │ │ │ ├── admin_page │ │ │ │ ├── add.html │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ └── recyclebin.html │ │ │ └── admin_tag │ │ │ │ ├── add.html │ │ │ │ ├── index.html │ │ │ │ └── select.html │ │ ├── public │ │ │ ├── assets │ │ │ │ ├── images │ │ │ │ │ ├── default-thumbnail.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── logo-18.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── tv-collapsable.gif │ │ │ │ │ ├── tv-expandable.gif │ │ │ │ │ ├── upload_del.png │ │ │ │ │ └── upload_pic.jpg │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ │ └── jquery-1.10.2.min.map │ │ │ │ ├── simpleboot3 │ │ │ │ │ ├── css │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ └── simplebootadmin.css │ │ │ │ │ └── js │ │ │ │ │ │ ├── adminindex.js │ │ │ │ │ │ └── frappe-charts.min.js │ │ │ │ └── themes │ │ │ │ │ ├── flatadmin │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── loadingbg.png │ │ │ │ │ ├── login.css │ │ │ │ │ └── simplebootadminindex.min.css │ │ │ │ │ └── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── header.html │ │ └── user │ │ │ ├── admin_asset │ │ │ └── index.html │ │ │ ├── admin_index │ │ │ ├── auth_info_manage.html │ │ │ └── index.html │ │ │ ├── admin_oauth │ │ │ └── index.html │ │ │ ├── admin_user_action │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ └── sync.html │ │ │ └── webuploader.html │ ├── simpleboot3 │ │ ├── manifest.json │ │ ├── portal │ │ │ ├── about.html │ │ │ ├── about1.html │ │ │ ├── article.html │ │ │ ├── article.json │ │ │ ├── contact.html │ │ │ ├── contact.json │ │ │ ├── distribute_sign.html │ │ │ ├── index.html │ │ │ ├── index.json │ │ │ ├── list.html │ │ │ ├── list.json │ │ │ ├── page.html │ │ │ ├── page.json │ │ │ ├── posted.html │ │ │ ├── posted │ │ │ │ ├── deduction.html │ │ │ │ ├── index.html │ │ │ │ ├── supernumber.html │ │ │ │ └── supindex.html │ │ │ ├── protocol.html │ │ │ ├── search.html │ │ │ ├── search.json │ │ │ ├── supper_sign.html │ │ │ ├── supposted.html │ │ │ └── supposted1.html │ │ ├── public │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── demo.css │ │ │ │ │ ├── index.css │ │ │ │ │ ├── install.css │ │ │ │ │ ├── posted.css │ │ │ │ │ ├── slippry │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── img │ │ │ │ │ │ │ │ ├── arrows.png │ │ │ │ │ │ │ │ ├── arrows.svg │ │ │ │ │ │ │ │ └── sy-loader.gif │ │ │ │ │ │ └── slippry.css │ │ │ │ │ ├── style.css │ │ │ │ │ ├── sup_sign.css │ │ │ │ │ ├── tube.css │ │ │ │ │ ├── uploader.css │ │ │ │ │ └── user-center.css │ │ │ │ ├── images │ │ │ │ │ ├── Shape11.png │ │ │ │ │ ├── abg.png │ │ │ │ │ ├── achievement_bc.png │ │ │ │ │ ├── admin1.png │ │ │ │ │ ├── background3.png │ │ │ │ │ ├── banner_bac.png │ │ │ │ │ ├── banner_tu1.png │ │ │ │ │ ├── chaojiqianming.png │ │ │ │ │ ├── default-thumbnail.png │ │ │ │ │ ├── default_tupian1.png │ │ │ │ │ ├── default_tupian4.png │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── 1.jpg │ │ │ │ │ │ ├── 2.jpg │ │ │ │ │ │ ├── 3.jpg │ │ │ │ │ │ └── banner-dispatch.png │ │ │ │ │ ├── download.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── favicon.png │ │ │ │ │ ├── head.png │ │ │ │ │ ├── headicon.png │ │ │ │ │ ├── headicon_128.png │ │ │ │ │ ├── headicon_30.png │ │ │ │ │ ├── headicon_40.png │ │ │ │ │ ├── headicon_50.png │ │ │ │ │ ├── login_bac.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── me.png │ │ │ │ │ ├── null_cart2.jpg │ │ │ │ │ ├── project1.png │ │ │ │ │ ├── project2.png │ │ │ │ │ ├── project3.png │ │ │ │ │ ├── project4.png │ │ │ │ │ ├── publish.png │ │ │ │ │ ├── publish1.png │ │ │ │ │ ├── qianming.png │ │ │ │ │ ├── qianming1.png │ │ │ │ │ ├── qiyeqianming.png │ │ │ │ │ ├── question.png │ │ │ │ │ ├── seach.png │ │ │ │ │ ├── summary.png │ │ │ │ │ ├── summarya.png │ │ │ │ │ ├── summarya1.png │ │ │ │ │ ├── user_na.png │ │ │ │ │ ├── weixin.png │ │ │ │ │ ├── xian.png │ │ │ │ │ └── zhifubao.png │ │ │ │ ├── js │ │ │ │ │ ├── Q.Uploader.UI.File.js │ │ │ │ │ ├── Q.Uploader.js │ │ │ │ │ ├── Q.js │ │ │ │ │ ├── demo.js │ │ │ │ │ ├── frappe-charts.min.js │ │ │ │ │ ├── imagesloaded.pkgd.min.js │ │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ │ ├── jquery-1.10.2.min.map │ │ │ │ │ ├── jquery-migrate-1.2.1.js │ │ │ │ │ ├── jquery.infiniteScroll.js │ │ │ │ │ ├── jquery.qrcode.min.js │ │ │ │ │ ├── masonry.pkgd.min.js │ │ │ │ │ ├── plist_parser.js │ │ │ │ │ ├── qrcode.min.js │ │ │ │ │ ├── slippry.min.js │ │ │ │ │ └── slippry.min.map │ │ │ │ ├── qiniu_sdk │ │ │ │ │ ├── dist │ │ │ │ │ │ └── qiniu.min.js │ │ │ │ │ ├── highlight.css │ │ │ │ │ ├── highlight.js │ │ │ │ │ ├── main.css │ │ │ │ │ ├── main.js │ │ │ │ │ └── ui.js │ │ │ │ └── simpleboot3 │ │ │ │ │ ├── bootstrap │ │ │ │ │ └── js │ │ │ │ │ │ └── bootstrap.min.js │ │ │ │ │ ├── font-awesome │ │ │ │ │ ├── 4.2.0 │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ └── fonts │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ └── 4.4.0 │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ └── themes │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── simpleboot3 │ │ │ │ │ └── bootstrap.min.css │ │ │ ├── banner.html │ │ │ ├── config.html │ │ │ ├── config.json │ │ │ ├── footer.html │ │ │ ├── function.html │ │ │ ├── head.html │ │ │ ├── nav.html │ │ │ ├── nav.json │ │ │ ├── nav_new.html │ │ │ ├── scripts.html │ │ │ ├── tube.html │ │ │ ├── tube1.html │ │ │ ├── uploads.html │ │ │ └── usernav.html │ │ └── user │ │ │ ├── certificate │ │ │ ├── add_certificate.html │ │ │ ├── edit_certificate.html │ │ │ └── index.html │ │ │ ├── comment │ │ │ └── index.html │ │ │ ├── favorite │ │ │ └── index.html │ │ │ ├── find_password.html │ │ │ ├── index.html │ │ │ ├── install │ │ │ ├── add_success.html │ │ │ ├── disclaimer.html │ │ │ ├── downfile_ios.xml │ │ │ ├── index.html │ │ │ ├── index_new.html │ │ │ ├── index_new1.html │ │ │ ├── ios_install.html │ │ │ └── report.html │ │ │ ├── login.html │ │ │ ├── profile │ │ │ ├── avatar.html │ │ │ ├── binding.html │ │ │ ├── cattle.html │ │ │ ├── center.html │ │ │ ├── edit.html │ │ │ ├── password.html │ │ │ └── real_name_auth.html │ │ │ ├── register.html │ │ │ └── tube │ │ │ ├── details.html │ │ │ ├── editor.html │ │ │ ├── hebing.html │ │ │ ├── index.html │ │ │ ├── index1.html │ │ │ ├── sup_details.html │ │ │ └── sup_editor.html │ └── simpleboot3_new │ │ ├── manifest.json │ │ ├── portal │ │ ├── about.html │ │ ├── article.html │ │ ├── article.json │ │ ├── contact.html │ │ ├── contact.json │ │ ├── index.html │ │ ├── index.json │ │ ├── list.html │ │ ├── list.json │ │ ├── page.html │ │ ├── page.json │ │ ├── posted.html │ │ ├── posted │ │ │ ├── deduction.html │ │ │ ├── index.html │ │ │ ├── supernumber.html │ │ │ └── supindex.html │ │ ├── posted_new.html │ │ ├── protocol.html │ │ ├── search.html │ │ ├── search.json │ │ ├── supper_sign.html │ │ └── supposted.html │ │ ├── public │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── demo.css │ │ │ │ ├── index.css │ │ │ │ ├── install.css │ │ │ │ ├── posted.css │ │ │ │ ├── slippry │ │ │ │ │ ├── assets │ │ │ │ │ │ └── img │ │ │ │ │ │ │ ├── arrows.png │ │ │ │ │ │ │ ├── arrows.svg │ │ │ │ │ │ │ └── sy-loader.gif │ │ │ │ │ └── slippry.css │ │ │ │ ├── style.css │ │ │ │ ├── sup_sign.css │ │ │ │ ├── tube.css │ │ │ │ ├── uploader.css │ │ │ │ └── user-center.css │ │ │ ├── images │ │ │ │ ├── Shape11.png │ │ │ │ ├── abg.png │ │ │ │ ├── achievement_bc.png │ │ │ │ ├── admin1.png │ │ │ │ ├── background3.png │ │ │ │ ├── banner_bac.png │ │ │ │ ├── banner_tu1.png │ │ │ │ ├── chaojiqianming.png │ │ │ │ ├── default-thumbnail.png │ │ │ │ ├── default_tupian1.png │ │ │ │ ├── default_tupian4.png │ │ │ │ ├── demo │ │ │ │ │ ├── 1.jpg │ │ │ │ │ ├── 2.jpg │ │ │ │ │ ├── 3.jpg │ │ │ │ │ └── banner-dispatch.png │ │ │ │ ├── download.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── favicon.png │ │ │ │ ├── head.png │ │ │ │ ├── head3.png │ │ │ │ ├── headicon.png │ │ │ │ ├── headicon_128.png │ │ │ │ ├── headicon_30.png │ │ │ │ ├── headicon_40.png │ │ │ │ ├── headicon_50.png │ │ │ │ ├── login_bac.png │ │ │ │ ├── logo.png │ │ │ │ ├── me.png │ │ │ │ ├── null_cart2.jpg │ │ │ │ ├── project1.png │ │ │ │ ├── project2.png │ │ │ │ ├── project3.png │ │ │ │ ├── project4.png │ │ │ │ ├── publish.png │ │ │ │ ├── publish1.png │ │ │ │ ├── qianming.png │ │ │ │ ├── qianming1.png │ │ │ │ ├── qiyeqianming.png │ │ │ │ ├── question.png │ │ │ │ ├── seach.png │ │ │ │ ├── summary.png │ │ │ │ ├── summarya.png │ │ │ │ ├── summarya1.png │ │ │ │ ├── user_na.png │ │ │ │ ├── weixin.png │ │ │ │ ├── xian.png │ │ │ │ └── zhifubao.png │ │ │ ├── js │ │ │ │ ├── Q.Uploader.UI.File.js │ │ │ │ ├── Q.Uploader.js │ │ │ │ ├── Q.js │ │ │ │ ├── demo.js │ │ │ │ ├── imagesloaded.pkgd.min.js │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ ├── jquery-1.10.2.min.map │ │ │ │ ├── jquery-migrate-1.2.1.js │ │ │ │ ├── jquery.infiniteScroll.js │ │ │ │ ├── jquery.qrcode.min.js │ │ │ │ ├── masonry.pkgd.min.js │ │ │ │ ├── plist_parser.js │ │ │ │ ├── qrcode.min.js │ │ │ │ ├── slippry.min.js │ │ │ │ └── slippry.min.map │ │ │ ├── qiniu_sdk │ │ │ │ ├── dist │ │ │ │ │ └── qiniu.min.js │ │ │ │ ├── highlight.css │ │ │ │ ├── highlight.js │ │ │ │ ├── main.css │ │ │ │ ├── main.js │ │ │ │ └── ui.js │ │ │ ├── simpleboot3 │ │ │ │ ├── bootstrap │ │ │ │ │ └── js │ │ │ │ │ │ └── bootstrap.min.js │ │ │ │ ├── font-awesome │ │ │ │ │ ├── 4.2.0 │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ └── fonts │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ └── 4.4.0 │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ └── themes │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── simpleboot3 │ │ │ │ │ └── bootstrap.min.css │ │ │ └── webuploader-0.1.5 │ │ │ │ ├── README.md │ │ │ │ ├── Uploader.swf │ │ │ │ ├── webuploader.css │ │ │ │ ├── webuploader.custom.js │ │ │ │ ├── webuploader.custom.min.js │ │ │ │ ├── webuploader.fis.js │ │ │ │ ├── webuploader.flashonly.js │ │ │ │ ├── webuploader.flashonly.min.js │ │ │ │ ├── webuploader.html5only.js │ │ │ │ ├── webuploader.html5only.min.js │ │ │ │ ├── webuploader.js │ │ │ │ ├── webuploader.min.js │ │ │ │ ├── webuploader.noimage.js │ │ │ │ ├── webuploader.noimage.min.js │ │ │ │ ├── webuploader.nolog.js │ │ │ │ ├── webuploader.nolog.min.js │ │ │ │ ├── webuploader.withoutimage.js │ │ │ │ └── webuploader.withoutimage.min.js │ │ ├── banner.html │ │ ├── config.html │ │ ├── config.json │ │ ├── footer.html │ │ ├── function.html │ │ ├── head.html │ │ ├── left_menu.html │ │ ├── nav.html │ │ ├── nav.json │ │ ├── nav_new.html │ │ ├── scripts.html │ │ ├── tube.html │ │ ├── uploads.html │ │ └── usernav.html │ │ └── user │ │ ├── certificate │ │ ├── add_certificate.html │ │ ├── edit_certificate.html │ │ └── index.html │ │ ├── comment │ │ └── index.html │ │ ├── favorite │ │ └── index.html │ │ ├── find_password.html │ │ ├── index.html │ │ ├── install │ │ ├── add_success.html │ │ ├── disclaimer.html │ │ ├── downfile_ios.xml │ │ ├── index.html │ │ ├── index_new.html │ │ ├── ios_install.html │ │ └── report.html │ │ ├── login.html │ │ ├── profile │ │ ├── avatar.html │ │ ├── binding.html │ │ ├── binding1.html │ │ ├── cattle.html │ │ ├── center.html │ │ ├── center1.html │ │ ├── edit.html │ │ ├── password.html │ │ ├── password1.html │ │ ├── real_name_auth.html │ │ ├── real_name_auth1.html │ │ └── user_nav.html │ │ ├── profile╤З╨к╨Ф╤Е╨Щ╨┐╤Ж╨м_avatar.html │ │ ├── profile╤З╨к╨Ф╤Е╨Щ╨┐╤Ж╨м_binding.html │ │ ├── profile╤З╨к╨Ф╤Е╨Щ╨┐╤Ж╨м_binding1.html │ │ ├── profile╤З╨к╨Ф╤Е╨Щ╨┐╤Ж╨м_cattle.html │ │ ├── profile╤З╨к╨Ф╤Е╨Щ╨┐╤Ж╨м_center.html │ │ ├── profile╤З╨к╨Ф╤Е╨Щ╨┐╤Ж╨м_center1.html │ │ ├── profile╤З╨к╨Ф╤Е╨Щ╨┐╤Ж╨м_edit.html │ │ ├── profile╤З╨к╨Ф╤Е╨Щ╨┐╤Ж╨м_password.html │ │ ├── profile╤З╨к╨Ф╤Е╨Щ╨┐╤Ж╨м_password1.html │ │ ├── profile╤З╨к╨Ф╤Е╨Щ╨┐╤Ж╨м_real_name_auth.html │ │ ├── profile╤З╨к╨Ф╤Е╨Щ╨┐╤Ж╨м_real_name_auth1.html │ │ ├── register.html │ │ └── tube │ │ ├── details.html │ │ ├── editor.html │ │ ├── hebing.html │ │ ├── index.html │ │ ├── overview.html │ │ ├── sup_details.html │ │ └── sup_editor.html ├── thinkcmf.conf ├── tools │ ├── AXMLPrinter2.2.0.jar │ ├── AXMLPrinter2.jar │ └── AXMLPrinter2.jar.bug └── upload │ ├── default │ ├── 20191012 │ │ └── 053ad1cd982ad2d33cf4df6ba7ef1a29.jpg │ └── 20191021 │ │ ├── 3a849e1ef47b281889a597cd9749e448.png │ │ ├── 826df4f13d94dbe943bc8609d1d41906.png │ │ └── e1cfb213aacd3d7c33d1b8a190b27fce.png │ ├── plist │ ├── 1b4bd97d2bd8ef4b77a4cc2691094e06.plist │ ├── 1eb93ed0d8dea1cedb06ae7b6c9d5f40.plist │ ├── 38cb5a596c3e839c91868c77d5dcb530.plist │ ├── 563b587c3c037be82c96da223be006b9.plist │ ├── d39151b493904277203c86882d1c5127.plist │ ├── d45fd300d10a81bfa5144d714d246335.plist │ └── eec78cdfdc8975a01de068f545ec580d.plist │ ├── super_signature │ └── .gitignore │ ├── super_signature_ipa │ └── .gitignore │ └── udidplist │ ├── 450482c7e9ea840edd8c11d1181a6360946dc586_013d407166ec4fa56eb1e1f8cbe183b9.plist │ ├── 450482c7e9ea840edd8c11d1181a6360946dc586_a8baa56554f96369ab93e4f3bb068c22.plist │ ├── c381afbbf6aecc2975bddbfff0210d491b5de57f_0f28b5d49b3020afeecd95b4009adf4c.plist │ ├── c381afbbf6aecc2975bddbfff0210d491b5de57f_1385974ed5904a438616ff7bdb3f7439.plist │ └── c381afbbf6aecc2975bddbfff0210d491b5de57f_e00da03b685a0dd18fb6a08af0923de0.plist └── simplewind ├── cmf ├── LICENSE.txt ├── behavior │ ├── AdminLangBehavior.php │ ├── HomeLangBehavior.php │ ├── InitHookBehavior.php │ └── LangBehavior.php ├── common.php ├── controller │ ├── AdminBaseController.php │ ├── BaseController.php │ ├── CaptchaController.php │ ├── HomeBaseController.php │ ├── PluginBaseController.php │ ├── PluginController.php │ ├── RestAdminBaseController.php │ ├── RestBaseController.php │ ├── RestUserBaseController.php │ └── UserBaseController.php ├── lang │ ├── en-us.php │ └── zh-cn.php ├── lib │ ├── Auth.php │ ├── Oauth2.php │ ├── Plugin.php │ ├── Storage.php │ ├── Upload.php │ ├── storage │ │ └── Local.php │ └── taglib │ │ └── Cmf.php └── paginator │ └── Bootstrap.php ├── extend ├── dir │ └── Dir.php ├── phpQuery │ ├── QueryPath │ │ ├── CssEventHandler.php │ │ ├── CssParser.php │ │ ├── Extension │ │ │ ├── QPDB.php │ │ │ ├── QPList.php │ │ │ ├── QPTPL.php │ │ │ ├── QPXML.php │ │ │ └── QPXSL.php │ │ ├── QueryPath.php │ │ └── QueryPathExtension.php │ └── phpQuery.php ├── phpqrcode │ ├── CHANGELOG │ ├── INSTALL │ ├── LICENSE │ ├── README │ ├── VERSION │ ├── bindings │ │ └── tcpdf │ │ │ └── qrcode.php │ ├── cache │ │ ├── frame_1.dat │ │ ├── frame_1.png │ │ ├── frame_10.dat │ │ ├── frame_10.png │ │ ├── frame_11.dat │ │ ├── frame_11.png │ │ ├── frame_12.dat │ │ ├── frame_12.png │ │ ├── frame_13.dat │ │ ├── frame_13.png │ │ ├── frame_14.dat │ │ ├── frame_14.png │ │ ├── frame_15.dat │ │ ├── frame_15.png │ │ ├── frame_16.dat │ │ ├── frame_16.png │ │ ├── frame_17.dat │ │ ├── frame_17.png │ │ ├── frame_18.dat │ │ ├── frame_18.png │ │ ├── frame_19.dat │ │ ├── frame_19.png │ │ ├── frame_2.dat │ │ ├── frame_2.png │ │ ├── frame_20.dat │ │ ├── frame_20.png │ │ ├── frame_21.dat │ │ ├── frame_21.png │ │ ├── frame_22.dat │ │ ├── frame_22.png │ │ ├── frame_23.dat │ │ ├── frame_23.png │ │ ├── frame_24.dat │ │ ├── frame_24.png │ │ ├── frame_25.dat │ │ ├── frame_25.png │ │ ├── frame_26.dat │ │ ├── frame_26.png │ │ ├── frame_27.dat │ │ ├── frame_27.png │ │ ├── frame_28.dat │ │ ├── frame_28.png │ │ ├── frame_29.dat │ │ ├── frame_29.png │ │ ├── frame_3.dat │ │ ├── frame_3.png │ │ ├── frame_30.dat │ │ ├── frame_30.png │ │ ├── frame_31.dat │ │ ├── frame_31.png │ │ ├── frame_32.dat │ │ ├── frame_32.png │ │ ├── frame_33.dat │ │ ├── frame_33.png │ │ ├── frame_34.dat │ │ ├── frame_34.png │ │ ├── frame_35.dat │ │ ├── frame_35.png │ │ ├── frame_36.dat │ │ ├── frame_36.png │ │ ├── frame_37.dat │ │ ├── frame_37.png │ │ ├── frame_38.dat │ │ ├── frame_38.png │ │ ├── frame_39.dat │ │ ├── frame_39.png │ │ ├── frame_4.dat │ │ ├── frame_4.png │ │ ├── frame_40.dat │ │ ├── frame_40.png │ │ ├── frame_5.dat │ │ ├── frame_5.png │ │ ├── frame_6.dat │ │ ├── frame_6.png │ │ ├── frame_7.dat │ │ ├── frame_7.png │ │ ├── frame_8.dat │ │ ├── frame_8.png │ │ ├── frame_9.dat │ │ ├── frame_9.png │ │ ├── mask_0 │ │ │ ├── mask_101_0.dat │ │ │ ├── mask_105_0.dat │ │ │ ├── mask_109_0.dat │ │ │ ├── mask_113_0.dat │ │ │ ├── mask_117_0.dat │ │ │ ├── mask_121_0.dat │ │ │ ├── mask_125_0.dat │ │ │ ├── mask_129_0.dat │ │ │ ├── mask_133_0.dat │ │ │ ├── mask_137_0.dat │ │ │ ├── mask_141_0.dat │ │ │ ├── mask_145_0.dat │ │ │ ├── mask_149_0.dat │ │ │ ├── mask_153_0.dat │ │ │ ├── mask_157_0.dat │ │ │ ├── mask_161_0.dat │ │ │ ├── mask_165_0.dat │ │ │ ├── mask_169_0.dat │ │ │ ├── mask_173_0.dat │ │ │ ├── mask_177_0.dat │ │ │ ├── mask_21_0.dat │ │ │ ├── mask_25_0.dat │ │ │ ├── mask_29_0.dat │ │ │ ├── mask_33_0.dat │ │ │ ├── mask_37_0.dat │ │ │ ├── mask_41_0.dat │ │ │ ├── mask_45_0.dat │ │ │ ├── mask_49_0.dat │ │ │ ├── mask_53_0.dat │ │ │ ├── mask_57_0.dat │ │ │ ├── mask_61_0.dat │ │ │ ├── mask_65_0.dat │ │ │ ├── mask_69_0.dat │ │ │ ├── mask_73_0.dat │ │ │ ├── mask_77_0.dat │ │ │ ├── mask_81_0.dat │ │ │ ├── mask_85_0.dat │ │ │ ├── mask_89_0.dat │ │ │ ├── mask_93_0.dat │ │ │ └── mask_97_0.dat │ │ ├── mask_1 │ │ │ ├── mask_101_1.dat │ │ │ ├── mask_105_1.dat │ │ │ ├── mask_109_1.dat │ │ │ ├── mask_113_1.dat │ │ │ ├── mask_117_1.dat │ │ │ ├── mask_121_1.dat │ │ │ ├── mask_125_1.dat │ │ │ ├── mask_129_1.dat │ │ │ ├── mask_133_1.dat │ │ │ ├── mask_137_1.dat │ │ │ ├── mask_141_1.dat │ │ │ ├── mask_145_1.dat │ │ │ ├── mask_149_1.dat │ │ │ ├── mask_153_1.dat │ │ │ ├── mask_157_1.dat │ │ │ ├── mask_161_1.dat │ │ │ ├── mask_165_1.dat │ │ │ ├── mask_169_1.dat │ │ │ ├── mask_173_1.dat │ │ │ ├── mask_177_1.dat │ │ │ ├── mask_21_1.dat │ │ │ ├── mask_25_1.dat │ │ │ ├── mask_29_1.dat │ │ │ ├── mask_33_1.dat │ │ │ ├── mask_37_1.dat │ │ │ ├── mask_41_1.dat │ │ │ ├── mask_45_1.dat │ │ │ ├── mask_49_1.dat │ │ │ ├── mask_53_1.dat │ │ │ ├── mask_57_1.dat │ │ │ ├── mask_61_1.dat │ │ │ ├── mask_65_1.dat │ │ │ ├── mask_69_1.dat │ │ │ ├── mask_73_1.dat │ │ │ ├── mask_77_1.dat │ │ │ ├── mask_81_1.dat │ │ │ ├── mask_85_1.dat │ │ │ ├── mask_89_1.dat │ │ │ ├── mask_93_1.dat │ │ │ └── mask_97_1.dat │ │ ├── mask_2 │ │ │ ├── mask_101_2.dat │ │ │ ├── mask_105_2.dat │ │ │ ├── mask_109_2.dat │ │ │ ├── mask_113_2.dat │ │ │ ├── mask_117_2.dat │ │ │ ├── mask_121_2.dat │ │ │ ├── mask_125_2.dat │ │ │ ├── mask_129_2.dat │ │ │ ├── mask_133_2.dat │ │ │ ├── mask_137_2.dat │ │ │ ├── mask_141_2.dat │ │ │ ├── mask_145_2.dat │ │ │ ├── mask_149_2.dat │ │ │ ├── mask_153_2.dat │ │ │ ├── mask_157_2.dat │ │ │ ├── mask_161_2.dat │ │ │ ├── mask_165_2.dat │ │ │ ├── mask_169_2.dat │ │ │ ├── mask_173_2.dat │ │ │ ├── mask_177_2.dat │ │ │ ├── mask_21_2.dat │ │ │ ├── mask_25_2.dat │ │ │ ├── mask_29_2.dat │ │ │ ├── mask_33_2.dat │ │ │ ├── mask_37_2.dat │ │ │ ├── mask_41_2.dat │ │ │ ├── mask_45_2.dat │ │ │ ├── mask_49_2.dat │ │ │ ├── mask_53_2.dat │ │ │ ├── mask_57_2.dat │ │ │ ├── mask_61_2.dat │ │ │ ├── mask_65_2.dat │ │ │ ├── mask_69_2.dat │ │ │ ├── mask_73_2.dat │ │ │ ├── mask_77_2.dat │ │ │ ├── mask_81_2.dat │ │ │ ├── mask_85_2.dat │ │ │ ├── mask_89_2.dat │ │ │ ├── mask_93_2.dat │ │ │ └── mask_97_2.dat │ │ ├── mask_3 │ │ │ ├── mask_101_3.dat │ │ │ ├── mask_105_3.dat │ │ │ ├── mask_109_3.dat │ │ │ ├── mask_113_3.dat │ │ │ ├── mask_117_3.dat │ │ │ ├── mask_121_3.dat │ │ │ ├── mask_125_3.dat │ │ │ ├── mask_129_3.dat │ │ │ ├── mask_133_3.dat │ │ │ ├── mask_137_3.dat │ │ │ ├── mask_141_3.dat │ │ │ ├── mask_145_3.dat │ │ │ ├── mask_149_3.dat │ │ │ ├── mask_153_3.dat │ │ │ ├── mask_157_3.dat │ │ │ ├── mask_161_3.dat │ │ │ ├── mask_165_3.dat │ │ │ ├── mask_169_3.dat │ │ │ ├── mask_173_3.dat │ │ │ ├── mask_177_3.dat │ │ │ ├── mask_21_3.dat │ │ │ ├── mask_25_3.dat │ │ │ ├── mask_29_3.dat │ │ │ ├── mask_33_3.dat │ │ │ ├── mask_37_3.dat │ │ │ ├── mask_41_3.dat │ │ │ ├── mask_45_3.dat │ │ │ ├── mask_49_3.dat │ │ │ ├── mask_53_3.dat │ │ │ ├── mask_57_3.dat │ │ │ ├── mask_61_3.dat │ │ │ ├── mask_65_3.dat │ │ │ ├── mask_69_3.dat │ │ │ ├── mask_73_3.dat │ │ │ ├── mask_77_3.dat │ │ │ ├── mask_81_3.dat │ │ │ ├── mask_85_3.dat │ │ │ ├── mask_89_3.dat │ │ │ ├── mask_93_3.dat │ │ │ └── mask_97_3.dat │ │ ├── mask_4 │ │ │ ├── mask_101_4.dat │ │ │ ├── mask_105_4.dat │ │ │ ├── mask_109_4.dat │ │ │ ├── mask_113_4.dat │ │ │ ├── mask_117_4.dat │ │ │ ├── mask_121_4.dat │ │ │ ├── mask_125_4.dat │ │ │ ├── mask_129_4.dat │ │ │ ├── mask_133_4.dat │ │ │ ├── mask_137_4.dat │ │ │ ├── mask_141_4.dat │ │ │ ├── mask_145_4.dat │ │ │ ├── mask_149_4.dat │ │ │ ├── mask_153_4.dat │ │ │ ├── mask_157_4.dat │ │ │ ├── mask_161_4.dat │ │ │ ├── mask_165_4.dat │ │ │ ├── mask_169_4.dat │ │ │ ├── mask_173_4.dat │ │ │ ├── mask_177_4.dat │ │ │ ├── mask_21_4.dat │ │ │ ├── mask_25_4.dat │ │ │ ├── mask_29_4.dat │ │ │ ├── mask_33_4.dat │ │ │ ├── mask_37_4.dat │ │ │ ├── mask_41_4.dat │ │ │ ├── mask_45_4.dat │ │ │ ├── mask_49_4.dat │ │ │ ├── mask_53_4.dat │ │ │ ├── mask_57_4.dat │ │ │ ├── mask_61_4.dat │ │ │ ├── mask_65_4.dat │ │ │ ├── mask_69_4.dat │ │ │ ├── mask_73_4.dat │ │ │ ├── mask_77_4.dat │ │ │ ├── mask_81_4.dat │ │ │ ├── mask_85_4.dat │ │ │ ├── mask_89_4.dat │ │ │ ├── mask_93_4.dat │ │ │ └── mask_97_4.dat │ │ ├── mask_5 │ │ │ ├── mask_101_5.dat │ │ │ ├── mask_105_5.dat │ │ │ ├── mask_109_5.dat │ │ │ ├── mask_113_5.dat │ │ │ ├── mask_117_5.dat │ │ │ ├── mask_121_5.dat │ │ │ ├── mask_125_5.dat │ │ │ ├── mask_129_5.dat │ │ │ ├── mask_133_5.dat │ │ │ ├── mask_137_5.dat │ │ │ ├── mask_141_5.dat │ │ │ ├── mask_145_5.dat │ │ │ ├── mask_149_5.dat │ │ │ ├── mask_153_5.dat │ │ │ ├── mask_157_5.dat │ │ │ ├── mask_161_5.dat │ │ │ ├── mask_165_5.dat │ │ │ ├── mask_169_5.dat │ │ │ ├── mask_173_5.dat │ │ │ ├── mask_177_5.dat │ │ │ ├── mask_21_5.dat │ │ │ ├── mask_25_5.dat │ │ │ ├── mask_29_5.dat │ │ │ ├── mask_33_5.dat │ │ │ ├── mask_37_5.dat │ │ │ ├── mask_41_5.dat │ │ │ ├── mask_45_5.dat │ │ │ ├── mask_49_5.dat │ │ │ ├── mask_53_5.dat │ │ │ ├── mask_57_5.dat │ │ │ ├── mask_61_5.dat │ │ │ ├── mask_65_5.dat │ │ │ ├── mask_69_5.dat │ │ │ ├── mask_73_5.dat │ │ │ ├── mask_77_5.dat │ │ │ ├── mask_81_5.dat │ │ │ ├── mask_85_5.dat │ │ │ ├── mask_89_5.dat │ │ │ ├── mask_93_5.dat │ │ │ └── mask_97_5.dat │ │ ├── mask_6 │ │ │ ├── mask_101_6.dat │ │ │ ├── mask_105_6.dat │ │ │ ├── mask_109_6.dat │ │ │ ├── mask_113_6.dat │ │ │ ├── mask_117_6.dat │ │ │ ├── mask_121_6.dat │ │ │ ├── mask_125_6.dat │ │ │ ├── mask_129_6.dat │ │ │ ├── mask_133_6.dat │ │ │ ├── mask_137_6.dat │ │ │ ├── mask_141_6.dat │ │ │ ├── mask_145_6.dat │ │ │ ├── mask_149_6.dat │ │ │ ├── mask_153_6.dat │ │ │ ├── mask_157_6.dat │ │ │ ├── mask_161_6.dat │ │ │ ├── mask_165_6.dat │ │ │ ├── mask_169_6.dat │ │ │ ├── mask_173_6.dat │ │ │ ├── mask_177_6.dat │ │ │ ├── mask_21_6.dat │ │ │ ├── mask_25_6.dat │ │ │ ├── mask_29_6.dat │ │ │ ├── mask_33_6.dat │ │ │ ├── mask_37_6.dat │ │ │ ├── mask_41_6.dat │ │ │ ├── mask_45_6.dat │ │ │ ├── mask_49_6.dat │ │ │ ├── mask_53_6.dat │ │ │ ├── mask_57_6.dat │ │ │ ├── mask_61_6.dat │ │ │ ├── mask_65_6.dat │ │ │ ├── mask_69_6.dat │ │ │ ├── mask_73_6.dat │ │ │ ├── mask_77_6.dat │ │ │ ├── mask_81_6.dat │ │ │ ├── mask_85_6.dat │ │ │ ├── mask_89_6.dat │ │ │ ├── mask_93_6.dat │ │ │ └── mask_97_6.dat │ │ └── mask_7 │ │ │ ├── mask_101_7.dat │ │ │ ├── mask_105_7.dat │ │ │ ├── mask_109_7.dat │ │ │ ├── mask_113_7.dat │ │ │ ├── mask_117_7.dat │ │ │ ├── mask_121_7.dat │ │ │ ├── mask_125_7.dat │ │ │ ├── mask_129_7.dat │ │ │ ├── mask_133_7.dat │ │ │ ├── mask_137_7.dat │ │ │ ├── mask_141_7.dat │ │ │ ├── mask_145_7.dat │ │ │ ├── mask_149_7.dat │ │ │ ├── mask_153_7.dat │ │ │ ├── mask_157_7.dat │ │ │ ├── mask_161_7.dat │ │ │ ├── mask_165_7.dat │ │ │ ├── mask_169_7.dat │ │ │ ├── mask_173_7.dat │ │ │ ├── mask_177_7.dat │ │ │ ├── mask_21_7.dat │ │ │ ├── mask_25_7.dat │ │ │ ├── mask_29_7.dat │ │ │ ├── mask_33_7.dat │ │ │ ├── mask_37_7.dat │ │ │ ├── mask_41_7.dat │ │ │ ├── mask_45_7.dat │ │ │ ├── mask_49_7.dat │ │ │ ├── mask_53_7.dat │ │ │ ├── mask_57_7.dat │ │ │ ├── mask_61_7.dat │ │ │ ├── mask_65_7.dat │ │ │ ├── mask_69_7.dat │ │ │ ├── mask_73_7.dat │ │ │ ├── mask_77_7.dat │ │ │ ├── mask_81_7.dat │ │ │ ├── mask_85_7.dat │ │ │ ├── mask_89_7.dat │ │ │ ├── mask_93_7.dat │ │ │ └── mask_97_7.dat │ ├── index.php │ ├── phpqrcode.php │ ├── qrbitstream.php │ ├── qrconfig.php │ ├── qrconst.php │ ├── qrencode.php │ ├── qrimage.php │ ├── qrinput.php │ ├── qrlib.php │ ├── qrmask.php │ ├── qrrscode.php │ ├── qrspec.php │ ├── qrsplit.php │ ├── qrtools.php │ └── tools │ │ ├── merge.bat │ │ ├── merge.php │ │ ├── merge.sh │ │ ├── merged_config.php │ │ └── merged_header.php ├── tree │ └── Tree.php └── wxapp │ └── aes │ ├── ErrorCode.php │ ├── PKCS7Encoder.php │ ├── Prpcrypt.php │ ├── WXBizDataCrypt.php │ └── demo.php ├── thinkphp ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── base.php ├── codecov.yml ├── composer.json ├── console.php ├── convention.php ├── helper.php ├── lang │ └── zh-cn.php ├── library │ ├── think │ │ ├── App.php │ │ ├── Build.php │ │ ├── Cache.php │ │ ├── Collection.php │ │ ├── Config.php │ │ ├── Console.php │ │ ├── Controller.php │ │ ├── Cookie.php │ │ ├── Db.php │ │ ├── Debug.php │ │ ├── Env.php │ │ ├── Error.php │ │ ├── Exception.php │ │ ├── File.php │ │ ├── Hook.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Log.php │ │ ├── Model.php │ │ ├── Paginator.php │ │ ├── Process.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Route.php │ │ ├── Session.php │ │ ├── Template.php │ │ ├── Url.php │ │ ├── Validate.php │ │ ├── View.php │ │ ├── cache │ │ │ ├── Driver.php │ │ │ └── driver │ │ │ │ ├── File.php │ │ │ │ ├── Lite.php │ │ │ │ ├── Memcache.php │ │ │ │ ├── Memcached.php │ │ │ │ ├── Redis.php │ │ │ │ ├── Sqlite.php │ │ │ │ ├── Wincache.php │ │ │ │ └── Xcache.php │ │ ├── config │ │ │ └── driver │ │ │ │ ├── Ini.php │ │ │ │ ├── Json.php │ │ │ │ └── Xml.php │ │ ├── console │ │ │ ├── Command.php │ │ │ ├── Input.php │ │ │ ├── LICENSE │ │ │ ├── Output.php │ │ │ ├── bin │ │ │ │ ├── README.md │ │ │ │ └── hiddeninput.exe │ │ │ ├── command │ │ │ │ ├── Build.php │ │ │ │ ├── Clear.php │ │ │ │ ├── Help.php │ │ │ │ ├── Lists.php │ │ │ │ ├── Make.php │ │ │ │ ├── make │ │ │ │ │ ├── Controller.php │ │ │ │ │ ├── Model.php │ │ │ │ │ └── stubs │ │ │ │ │ │ ├── controller.plain.stub │ │ │ │ │ │ ├── controller.stub │ │ │ │ │ │ └── model.stub │ │ │ │ └── optimize │ │ │ │ │ ├── Autoload.php │ │ │ │ │ ├── Config.php │ │ │ │ │ ├── Route.php │ │ │ │ │ └── Schema.php │ │ │ ├── input │ │ │ │ ├── Argument.php │ │ │ │ ├── Definition.php │ │ │ │ └── Option.php │ │ │ └── output │ │ │ │ ├── Ask.php │ │ │ │ ├── Descriptor.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── Question.php │ │ │ │ ├── descriptor │ │ │ │ └── Console.php │ │ │ │ ├── driver │ │ │ │ ├── Buffer.php │ │ │ │ ├── Console.php │ │ │ │ └── Nothing.php │ │ │ │ ├── formatter │ │ │ │ ├── Stack.php │ │ │ │ └── Style.php │ │ │ │ └── question │ │ │ │ ├── Choice.php │ │ │ │ └── Confirmation.php │ │ ├── controller │ │ │ ├── Rest.php │ │ │ └── Yar.php │ │ ├── db │ │ │ ├── Builder.php │ │ │ ├── Connection.php │ │ │ ├── Query.php │ │ │ ├── builder │ │ │ │ ├── Mysql.php │ │ │ │ ├── Pgsql.php │ │ │ │ ├── Sqlite.php │ │ │ │ └── Sqlsrv.php │ │ │ ├── connector │ │ │ │ ├── Mysql.php │ │ │ │ ├── Pgsql.php │ │ │ │ ├── Sqlite.php │ │ │ │ ├── Sqlsrv.php │ │ │ │ └── pgsql.sql │ │ │ └── exception │ │ │ │ ├── BindParamException.php │ │ │ │ ├── DataNotFoundException.php │ │ │ │ └── ModelNotFoundException.php │ │ ├── debug │ │ │ ├── Console.php │ │ │ └── Html.php │ │ ├── exception │ │ │ ├── ClassNotFoundException.php │ │ │ ├── DbException.php │ │ │ ├── ErrorException.php │ │ │ ├── Handle.php │ │ │ ├── HttpException.php │ │ │ ├── HttpResponseException.php │ │ │ ├── PDOException.php │ │ │ ├── RouteNotFoundException.php │ │ │ ├── TemplateNotFoundException.php │ │ │ ├── ThrowableError.php │ │ │ └── ValidateException.php │ │ ├── log │ │ │ └── driver │ │ │ │ ├── File.php │ │ │ │ ├── Socket.php │ │ │ │ └── Test.php │ │ ├── model │ │ │ ├── Collection.php │ │ │ ├── Merge.php │ │ │ ├── Pivot.php │ │ │ ├── Relation.php │ │ │ └── relation │ │ │ │ ├── BelongsTo.php │ │ │ │ ├── BelongsToMany.php │ │ │ │ ├── HasMany.php │ │ │ │ ├── HasManyThrough.php │ │ │ │ ├── HasOne.php │ │ │ │ ├── MorphMany.php │ │ │ │ ├── MorphOne.php │ │ │ │ ├── MorphTo.php │ │ │ │ └── OneToOne.php │ │ ├── paginator │ │ │ └── driver │ │ │ │ └── Bootstrap.php │ │ ├── process │ │ │ ├── Builder.php │ │ │ ├── Utils.php │ │ │ ├── exception │ │ │ │ ├── Failed.php │ │ │ │ └── Timeout.php │ │ │ └── pipes │ │ │ │ ├── Pipes.php │ │ │ │ ├── Unix.php │ │ │ │ └── Windows.php │ │ ├── response │ │ │ ├── Json.php │ │ │ ├── Jsonp.php │ │ │ ├── Redirect.php │ │ │ ├── View.php │ │ │ └── Xml.php │ │ ├── session │ │ │ └── driver │ │ │ │ ├── Memcache.php │ │ │ │ ├── Memcached.php │ │ │ │ └── Redis.php │ │ ├── template │ │ │ ├── TagLib.php │ │ │ ├── driver │ │ │ │ └── File.php │ │ │ └── taglib │ │ │ │ └── Cx.php │ │ └── view │ │ │ └── driver │ │ │ ├── Php.php │ │ │ └── Think.php │ └── traits │ │ ├── controller │ │ └── Jump.php │ │ ├── model │ │ └── SoftDelete.php │ │ └── think │ │ └── Instance.php ├── logo.png ├── phpunit.xml ├── start.php └── tpl │ ├── default_index.tpl │ ├── dispatch_jump.tpl │ ├── page_trace.tpl │ └── think_exception.tpl └── vendor ├── aliyun ├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README-CN.md ├── README.md ├── autoload.php ├── build-phar.sh ├── composer.json ├── example.jpg ├── index.php ├── phpunit.xml ├── samples │ ├── Bucket.php │ ├── BucketCors.php │ ├── BucketLifecycle.php │ ├── BucketLogging.php │ ├── BucketReferer.php │ ├── BucketWebsite.php │ ├── Callback.php │ ├── Common.php │ ├── Config.php │ ├── Image.php │ ├── LiveChannel.php │ ├── MultipartUpload.php │ ├── Object.php │ ├── RunAll.php │ └── Signature.php ├── src │ └── OSS │ │ ├── Core │ │ ├── MimeTypes.php │ │ ├── OssException.php │ │ └── OssUtil.php │ │ ├── Http │ │ ├── LICENSE │ │ ├── RequestCore.php │ │ ├── RequestCore_Exception.php │ │ └── ResponseCore.php │ │ ├── Model │ │ ├── BucketInfo.php │ │ ├── BucketListInfo.php │ │ ├── CnameConfig.php │ │ ├── CorsConfig.php │ │ ├── CorsRule.php │ │ ├── GetLiveChannelHistory.php │ │ ├── GetLiveChannelInfo.php │ │ ├── GetLiveChannelStatus.php │ │ ├── LifecycleAction.php │ │ ├── LifecycleConfig.php │ │ ├── LifecycleRule.php │ │ ├── ListMultipartUploadInfo.php │ │ ├── ListPartsInfo.php │ │ ├── LiveChannelConfig.php │ │ ├── LiveChannelHistory.php │ │ ├── LiveChannelInfo.php │ │ ├── LiveChannelListInfo.php │ │ ├── LoggingConfig.php │ │ ├── ObjectInfo.php │ │ ├── ObjectListInfo.php │ │ ├── PartInfo.php │ │ ├── PrefixInfo.php │ │ ├── RefererConfig.php │ │ ├── StorageCapacityConfig.php │ │ ├── UploadInfo.php │ │ ├── WebsiteConfig.php │ │ └── XmlConfig.php │ │ ├── OssClient.php │ │ └── Result │ │ ├── AclResult.php │ │ ├── AppendResult.php │ │ ├── BodyResult.php │ │ ├── CallbackResult.php │ │ ├── CopyObjectResult.php │ │ ├── DeleteObjectsResult.php │ │ ├── ExistResult.php │ │ ├── GetCnameResult.php │ │ ├── GetCorsResult.php │ │ ├── GetLifecycleResult.php │ │ ├── GetLiveChannelHistoryResult.php │ │ ├── GetLiveChannelInfoResult.php │ │ ├── GetLiveChannelStatusResult.php │ │ ├── GetLocationResult.php │ │ ├── GetLoggingResult.php │ │ ├── GetRefererResult.php │ │ ├── GetStorageCapacityResult.php │ │ ├── GetWebsiteResult.php │ │ ├── HeaderResult.php │ │ ├── InitiateMultipartUploadResult.php │ │ ├── ListBucketsResult.php │ │ ├── ListLiveChannelResult.php │ │ ├── ListMultipartUploadResult.php │ │ ├── ListObjectsResult.php │ │ ├── ListPartsResult.php │ │ ├── PutLiveChannelResult.php │ │ ├── PutSetDeleteResult.php │ │ ├── Result.php │ │ ├── SymlinkResult.php │ │ └── UploadPartResult.php └── tests │ └── OSS │ └── Tests │ ├── AclResultTest.php │ ├── BodyResultTest.php │ ├── BucketCnameTest.php │ ├── BucketInfoTest.php │ ├── BucketLiveChannelTest.php │ ├── CallbackTest.php │ ├── CnameConfigTest.php │ ├── Common.php │ ├── ContentTypeTest.php │ ├── CopyObjectResult.php │ ├── CorsConfigTest.php │ ├── ExistResultTest.php │ ├── GetCorsResultTest.php │ ├── GetLifecycleResultTest.php │ ├── GetLoggingResultTest.php │ ├── GetRefererResultTest.php │ ├── GetWebsiteResultTest.php │ ├── HeaderResultTest.php │ ├── HttpTest.php │ ├── InitiateMultipartUploadResultTest.php │ ├── LifecycleConfigTest.php │ ├── ListBucketsResultTest.php │ ├── ListMultipartUploadResultTest.php │ ├── ListObjectsResultTest.php │ ├── ListPartsResultTest.php │ ├── LiveChannelXmlTest.php │ ├── LoggingConfigTest.php │ ├── MimeTypesTest.php │ ├── ObjectAclTest.php │ ├── OssClientBucketCorsTest.php │ ├── OssClientBucketLifecycleTest.php │ ├── OssClientBucketLoggingTest.php │ ├── OssClientBucketRefererTest.php │ ├── OssClientBucketStorageCapacityTest.php │ ├── OssClientBucketTest.php │ ├── OssClientBucketWebsiteTest.php │ ├── OssClientImageTest.php │ ├── OssClientMultipartUploadTest.php │ ├── OssClientObjectTest.php │ ├── OssClientRestoreObjectTest.php │ ├── OssClientSignatureTest.php │ ├── OssClientTest.php │ ├── OssExceptionTest.php │ ├── OssUtilTest.php │ ├── PutSetDeleteResultTest.php │ ├── RefererConfigTest.php │ ├── StorageCapacityTest.php │ ├── SymlinkTest.php │ ├── TestOssClientBase.php │ ├── UploadPartResultTest.php │ └── WebsiteConfigTest.php ├── autoload.php ├── baidu ├── Config.php ├── DataApiConnection.php ├── LoginConnection.php ├── LoginService.php ├── ReportService.php ├── Utility.php ├── api_pub.key └── env_check.php ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json ├── dompdf └── dompdf │ ├── CONTRIBUTING.md │ ├── LICENSE.LGPL │ ├── README.md │ ├── VERSION │ ├── autoload.inc.php │ ├── composer.json │ ├── lib │ ├── Cpdf.php │ ├── fonts │ │ ├── Courier-Bold.afm │ │ ├── Courier-BoldOblique.afm │ │ ├── Courier-Oblique.afm │ │ ├── Courier.afm │ │ ├── DejaVuSans-Bold.ttf │ │ ├── DejaVuSans-Bold.ufm │ │ ├── DejaVuSans-BoldOblique.ttf │ │ ├── DejaVuSans-BoldOblique.ufm │ │ ├── DejaVuSans-Oblique.ttf │ │ ├── DejaVuSans-Oblique.ufm │ │ ├── DejaVuSans.ttf │ │ ├── DejaVuSans.ufm │ │ ├── DejaVuSansMono-Bold.ttf │ │ ├── DejaVuSansMono-Bold.ufm │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ ├── DejaVuSansMono-BoldOblique.ufm │ │ ├── DejaVuSansMono-Oblique.ttf │ │ ├── DejaVuSansMono-Oblique.ufm │ │ ├── DejaVuSansMono.ttf │ │ ├── DejaVuSansMono.ufm │ │ ├── DejaVuSerif-Bold.ttf │ │ ├── DejaVuSerif-Bold.ufm │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ ├── DejaVuSerif-BoldItalic.ufm │ │ ├── DejaVuSerif-Italic.ttf │ │ ├── DejaVuSerif-Italic.ufm │ │ ├── DejaVuSerif.ttf │ │ ├── DejaVuSerif.ufm │ │ ├── Fzshusong.ttf │ │ ├── Fzshusong.ufm │ │ ├── Helvetica-Bold.afm │ │ ├── Helvetica-BoldOblique.afm │ │ ├── Helvetica-Oblique.afm │ │ ├── Helvetica.afm │ │ ├── Symbol.afm │ │ ├── Times-Bold.afm │ │ ├── Times-BoldItalic.afm │ │ ├── Times-Italic.afm │ │ ├── Times-Roman.afm │ │ ├── ZapfDingbats.afm │ │ ├── dompdf_font_family_cache.dist.php │ │ ├── dompdf_font_family_cache.php │ │ └── mustRead.html │ ├── html5lib │ │ ├── Data.php │ │ ├── InputStream.php │ │ ├── Parser.php │ │ ├── Tokenizer.php │ │ ├── TreeBuilder.php │ │ └── named-character-references.ser │ └── res │ │ ├── broken_image.png │ │ └── html.css │ ├── phpcs.xml │ └── src │ ├── Adapter │ ├── CPDF.php │ ├── GD.php │ └── PDFLib.php │ ├── Autoloader.php │ ├── Canvas.php │ ├── CanvasFactory.php │ ├── Cellmap.php │ ├── Css │ ├── AttributeTranslator.php │ ├── Color.php │ ├── Style.php │ └── Stylesheet.php │ ├── Dompdf.php │ ├── Exception.php │ ├── Exception │ └── ImageException.php │ ├── FontMetrics.php │ ├── Frame.php │ ├── Frame │ ├── Factory.php │ ├── FrameList.php │ ├── FrameListIterator.php │ ├── FrameTree.php │ ├── FrameTreeIterator.php │ └── FrameTreeList.php │ ├── FrameDecorator │ ├── AbstractFrameDecorator.php │ ├── Block.php │ ├── Image.php │ ├── Inline.php │ ├── ListBullet.php │ ├── ListBulletImage.php │ ├── NullFrameDecorator.php │ ├── Page.php │ ├── Table.php │ ├── TableCell.php │ ├── TableRow.php │ ├── TableRowGroup.php │ └── Text.php │ ├── FrameReflower │ ├── AbstractFrameReflower.php │ ├── Block.php │ ├── Image.php │ ├── Inline.php │ ├── ListBullet.php │ ├── NullFrameReflower.php │ ├── Page.php │ ├── Table.php │ ├── TableCell.php │ ├── TableRow.php │ ├── TableRowGroup.php │ └── Text.php │ ├── Helpers.php │ ├── Image │ └── Cache.php │ ├── JavascriptEmbedder.php │ ├── LineBox.php │ ├── Options.php │ ├── PhpEvaluator.php │ ├── Positioner │ ├── Absolute.php │ ├── AbstractPositioner.php │ ├── Block.php │ ├── Fixed.php │ ├── Inline.php │ ├── ListBullet.php │ ├── NullPositioner.php │ ├── TableCell.php │ └── TableRow.php │ ├── Renderer.php │ └── Renderer │ ├── AbstractRenderer.php │ ├── Block.php │ ├── Image.php │ ├── Inline.php │ ├── ListBullet.php │ ├── TableCell.php │ ├── TableRowGroup.php │ └── Text.php ├── endroid └── qrcode │ ├── LICENSE │ ├── README.md │ ├── assets │ ├── data │ │ ├── qrv10_0.dat │ │ ├── qrv10_1.dat │ │ ├── qrv10_2.dat │ │ ├── qrv10_3.dat │ │ ├── qrv11_0.dat │ │ ├── qrv11_1.dat │ │ ├── qrv11_2.dat │ │ ├── qrv11_3.dat │ │ ├── qrv12_0.dat │ │ ├── qrv12_1.dat │ │ ├── qrv12_2.dat │ │ ├── qrv12_3.dat │ │ ├── qrv13_0.dat │ │ ├── qrv13_1.dat │ │ ├── qrv13_2.dat │ │ ├── qrv13_3.dat │ │ ├── qrv14_0.dat │ │ ├── qrv14_1.dat │ │ ├── qrv14_2.dat │ │ ├── qrv14_3.dat │ │ ├── qrv15_0.dat │ │ ├── qrv15_1.dat │ │ ├── qrv15_2.dat │ │ ├── qrv15_3.dat │ │ ├── qrv16_0.dat │ │ ├── qrv16_1.dat │ │ ├── qrv16_2.dat │ │ ├── qrv16_3.dat │ │ ├── qrv17_0.dat │ │ ├── qrv17_1.dat │ │ ├── qrv17_2.dat │ │ ├── qrv17_3.dat │ │ ├── qrv18_0.dat │ │ ├── qrv18_1.dat │ │ ├── qrv18_2.dat │ │ ├── qrv18_3.dat │ │ ├── qrv19_0.dat │ │ ├── qrv19_1.dat │ │ ├── qrv19_2.dat │ │ ├── qrv19_3.dat │ │ ├── qrv1_0.dat │ │ ├── qrv1_1.dat │ │ ├── qrv1_2.dat │ │ ├── qrv1_3.dat │ │ ├── qrv20_0.dat │ │ ├── qrv20_1.dat │ │ ├── qrv20_2.dat │ │ ├── qrv20_3.dat │ │ ├── qrv21_0.dat │ │ ├── qrv21_1.dat │ │ ├── qrv21_2.dat │ │ ├── qrv21_3.dat │ │ ├── qrv22_0.dat │ │ ├── qrv22_1.dat │ │ ├── qrv22_2.dat │ │ ├── qrv22_3.dat │ │ ├── qrv23_0.dat │ │ ├── qrv23_1.dat │ │ ├── qrv23_2.dat │ │ ├── qrv23_3.dat │ │ ├── qrv24_0.dat │ │ ├── qrv24_1.dat │ │ ├── qrv24_2.dat │ │ ├── qrv24_3.dat │ │ ├── qrv25_0.dat │ │ ├── qrv25_1.dat │ │ ├── qrv25_2.dat │ │ ├── qrv25_3.dat │ │ ├── qrv26_0.dat │ │ ├── qrv26_1.dat │ │ ├── qrv26_2.dat │ │ ├── qrv26_3.dat │ │ ├── qrv27_0.dat │ │ ├── qrv27_1.dat │ │ ├── qrv27_2.dat │ │ ├── qrv27_3.dat │ │ ├── qrv28_0.dat │ │ ├── qrv28_1.dat │ │ ├── qrv28_2.dat │ │ ├── qrv28_3.dat │ │ ├── qrv29_0.dat │ │ ├── qrv29_1.dat │ │ ├── qrv29_2.dat │ │ ├── qrv29_3.dat │ │ ├── qrv2_0.dat │ │ ├── qrv2_1.dat │ │ ├── qrv2_2.dat │ │ ├── qrv2_3.dat │ │ ├── qrv30_0.dat │ │ ├── qrv30_1.dat │ │ ├── qrv30_2.dat │ │ ├── qrv30_3.dat │ │ ├── qrv31_0.dat │ │ ├── qrv31_1.dat │ │ ├── qrv31_2.dat │ │ ├── qrv31_3.dat │ │ ├── qrv32_0.dat │ │ ├── qrv32_1.dat │ │ ├── qrv32_2.dat │ │ ├── qrv32_3.dat │ │ ├── qrv33_0.dat │ │ ├── qrv33_1.dat │ │ ├── qrv33_2.dat │ │ ├── qrv33_3.dat │ │ ├── qrv34_0.dat │ │ ├── qrv34_1.dat │ │ ├── qrv34_2.dat │ │ ├── qrv34_3.dat │ │ ├── qrv35_0.dat │ │ ├── qrv35_1.dat │ │ ├── qrv35_2.dat │ │ ├── qrv35_3.dat │ │ ├── qrv36_0.dat │ │ ├── qrv36_1.dat │ │ ├── qrv36_2.dat │ │ ├── qrv36_3.dat │ │ ├── qrv37_0.dat │ │ ├── qrv37_1.dat │ │ ├── qrv37_2.dat │ │ ├── qrv37_3.dat │ │ ├── qrv38_0.dat │ │ ├── qrv38_1.dat │ │ ├── qrv38_2.dat │ │ ├── qrv38_3.dat │ │ ├── qrv39_0.dat │ │ ├── qrv39_1.dat │ │ ├── qrv39_2.dat │ │ ├── qrv39_3.dat │ │ ├── qrv3_0.dat │ │ ├── qrv3_1.dat │ │ ├── qrv3_2.dat │ │ ├── qrv3_3.dat │ │ ├── qrv40_0.dat │ │ ├── qrv40_1.dat │ │ ├── qrv40_2.dat │ │ ├── qrv40_3.dat │ │ ├── qrv4_0.dat │ │ ├── qrv4_1.dat │ │ ├── qrv4_2.dat │ │ ├── qrv4_3.dat │ │ ├── qrv5_0.dat │ │ ├── qrv5_1.dat │ │ ├── qrv5_2.dat │ │ ├── qrv5_3.dat │ │ ├── qrv6_0.dat │ │ ├── qrv6_1.dat │ │ ├── qrv6_2.dat │ │ ├── qrv6_3.dat │ │ ├── qrv7_0.dat │ │ ├── qrv7_1.dat │ │ ├── qrv7_2.dat │ │ ├── qrv7_3.dat │ │ ├── qrv8_0.dat │ │ ├── qrv8_1.dat │ │ ├── qrv8_2.dat │ │ ├── qrv8_3.dat │ │ ├── qrv9_0.dat │ │ ├── qrv9_1.dat │ │ ├── qrv9_2.dat │ │ ├── qrv9_3.dat │ │ ├── qrvfr1.dat │ │ ├── qrvfr10.dat │ │ ├── qrvfr11.dat │ │ ├── qrvfr12.dat │ │ ├── qrvfr13.dat │ │ ├── qrvfr14.dat │ │ ├── qrvfr15.dat │ │ ├── qrvfr16.dat │ │ ├── qrvfr17.dat │ │ ├── qrvfr18.dat │ │ ├── qrvfr19.dat │ │ ├── qrvfr2.dat │ │ ├── qrvfr20.dat │ │ ├── qrvfr21.dat │ │ ├── qrvfr22.dat │ │ ├── qrvfr23.dat │ │ ├── qrvfr24.dat │ │ ├── qrvfr25.dat │ │ ├── qrvfr26.dat │ │ ├── qrvfr27.dat │ │ ├── qrvfr28.dat │ │ ├── qrvfr29.dat │ │ ├── qrvfr3.dat │ │ ├── qrvfr30.dat │ │ ├── qrvfr31.dat │ │ ├── qrvfr32.dat │ │ ├── qrvfr33.dat │ │ ├── qrvfr34.dat │ │ ├── qrvfr35.dat │ │ ├── qrvfr36.dat │ │ ├── qrvfr37.dat │ │ ├── qrvfr38.dat │ │ ├── qrvfr39.dat │ │ ├── qrvfr4.dat │ │ ├── qrvfr40.dat │ │ ├── qrvfr5.dat │ │ ├── qrvfr6.dat │ │ ├── qrvfr7.dat │ │ ├── qrvfr8.dat │ │ ├── qrvfr9.dat │ │ ├── rsc10.dat │ │ ├── rsc13.dat │ │ ├── rsc15.dat │ │ ├── rsc16.dat │ │ ├── rsc17.dat │ │ ├── rsc18.dat │ │ ├── rsc20.dat │ │ ├── rsc22.dat │ │ ├── rsc24.dat │ │ ├── rsc26.dat │ │ ├── rsc28.dat │ │ ├── rsc30.dat │ │ ├── rsc32.dat │ │ ├── rsc34.dat │ │ ├── rsc36.dat │ │ ├── rsc40.dat │ │ ├── rsc42.dat │ │ ├── rsc44.dat │ │ ├── rsc46.dat │ │ ├── rsc48.dat │ │ ├── rsc50.dat │ │ ├── rsc52.dat │ │ ├── rsc54.dat │ │ ├── rsc56.dat │ │ ├── rsc58.dat │ │ ├── rsc60.dat │ │ ├── rsc62.dat │ │ ├── rsc64.dat │ │ ├── rsc66.dat │ │ ├── rsc68.dat │ │ └── rsc7.dat │ ├── font │ │ └── opensans.ttf │ └── image │ │ ├── b.png │ │ ├── d.png │ │ ├── logo.png │ │ ├── qrv1.png │ │ ├── qrv10.png │ │ ├── qrv11.png │ │ ├── qrv12.png │ │ ├── qrv13.png │ │ ├── qrv14.png │ │ ├── qrv15.png │ │ ├── qrv16.png │ │ ├── qrv17.png │ │ ├── qrv18.png │ │ ├── qrv19.png │ │ ├── qrv2.png │ │ ├── qrv20.png │ │ ├── qrv21.png │ │ ├── qrv22.png │ │ ├── qrv23.png │ │ ├── qrv24.png │ │ ├── qrv25.png │ │ ├── qrv26.png │ │ ├── qrv27.png │ │ ├── qrv28.png │ │ ├── qrv29.png │ │ ├── qrv3.png │ │ ├── qrv30.png │ │ ├── qrv31.png │ │ ├── qrv32.png │ │ ├── qrv33.png │ │ ├── qrv34.png │ │ ├── qrv35.png │ │ ├── qrv36.png │ │ ├── qrv37.png │ │ ├── qrv38.png │ │ ├── qrv39.png │ │ ├── qrv4.png │ │ ├── qrv40.png │ │ ├── qrv5.png │ │ ├── qrv6.png │ │ ├── qrv7.png │ │ ├── qrv8.png │ │ └── qrv9.png │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ ├── Exceptions │ │ ├── DataDoesntExistsException.php │ │ ├── FreeTypeLibraryMissingException.php │ │ ├── ImageFunctionFailedException.php │ │ ├── ImageFunctionUnknownException.php │ │ ├── ImageSizeTooLargeException.php │ │ ├── ImageTypeInvalidException.php │ │ └── VersionTooLargeException.php │ ├── Factory │ │ └── QrCodeFactory.php │ └── QrCode.php │ └── tests │ └── QrCodeTest.php ├── ezyang └── htmlpurifier │ ├── CREDITS │ ├── INSTALL │ ├── INSTALL.fr.utf8 │ ├── LICENSE │ ├── NEWS │ ├── README.md │ ├── TODO │ ├── VERSION │ ├── WHATSNEW │ ├── WYSIWYG │ ├── composer.json │ ├── extras │ ├── ConfigDoc │ │ └── HTMLXSLTProcessor.php │ ├── FSTools.php │ ├── FSTools │ │ └── File.php │ ├── HTMLPurifierExtras.auto.php │ ├── HTMLPurifierExtras.autoload.php │ ├── HTMLPurifierExtras.php │ └── README │ ├── library │ ├── HTMLPurifier.auto.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.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.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 │ │ ├── classes │ │ │ └── en-x-test.php │ │ └── messages │ │ │ ├── en-x-test.php │ │ │ ├── en-x-testmini.php │ │ │ └── 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 │ ├── maintenance │ ├── PH5P.patch │ ├── PH5P.php │ ├── add-vimline.php │ ├── common.php │ ├── compile-doxygen.sh │ ├── config-scanner.php │ ├── flush-definition-cache.php │ ├── flush.php │ ├── generate-entity-file.php │ ├── generate-includes.php │ ├── generate-ph5p-patch.php │ ├── generate-schema-cache.php │ ├── generate-standalone.php │ ├── merge-library.php │ ├── old-extract-schema.php │ ├── old-remove-require-once.php │ ├── old-remove-schema-def.php │ ├── regenerate-docs.sh │ ├── remove-trailing-whitespace.php │ ├── rename-config.php │ └── update-config.php │ ├── package.php │ ├── phpdoc.ini │ ├── plugins │ ├── modx.txt │ └── phorum │ │ ├── Changelog │ │ ├── INSTALL │ │ ├── README │ │ ├── config.default.php │ │ ├── htmlpurifier.php │ │ ├── info.txt │ │ ├── init-config.php │ │ ├── migrate.bbcode.php │ │ ├── settings.php │ │ └── settings │ │ ├── form.php │ │ ├── migrate-sigs-form.php │ │ ├── migrate-sigs.php │ │ └── save.php │ ├── release1-update.php │ ├── release2-tag.php │ ├── test-settings.sample.php │ ├── test-settings.travis.php │ └── tests │ └── path2class.func.php ├── mindplay └── annotations │ ├── CHANGELOG.md │ ├── README.md │ ├── composer.json │ ├── demo │ ├── annotations │ │ ├── LengthAnnotation.php │ │ ├── Package.php │ │ ├── RequiredAnnotation.php │ │ ├── TextAnnotation.php │ │ └── ValidationAnnotationBase.php │ ├── index.php │ └── wiki-doc.php │ ├── docs │ ├── AnnotationLibrary.rst │ ├── ConsumingAnnotations.rst │ ├── CustomAnnotations.rst │ ├── DemoScript.rst │ ├── DesignConsiderations.rst │ ├── Makefile │ ├── README.md │ ├── Roadmap.rst │ ├── UsingAnnotations.rst │ ├── conf.py │ ├── getting-started.rst │ └── index.rst │ ├── lgpl-3.0.txt │ ├── php-doc notes.txt │ ├── src │ └── annotations │ │ ├── Annotation.php │ │ ├── AnnotationCache.php │ │ ├── AnnotationException.php │ │ ├── AnnotationFile.php │ │ ├── AnnotationManager.php │ │ ├── AnnotationParser.php │ │ ├── Annotations.php │ │ ├── IAnnotation.php │ │ ├── IAnnotationFileAware.php │ │ ├── IAnnotationParser.php │ │ ├── StopAnnotation.php │ │ ├── UsageAnnotation.php │ │ └── standard │ │ ├── MethodAnnotation.php │ │ ├── ParamAnnotation.php │ │ ├── PropertyAnnotation.php │ │ ├── PropertyReadAnnotation.php │ │ ├── PropertyWriteAnnotation.php │ │ ├── ReturnAnnotation.php │ │ ├── TypeAnnotation.php │ │ └── VarAnnotation.php │ ├── test │ ├── annotations │ │ ├── Package.php │ │ ├── RequiredAnnotation.php │ │ └── ValidationAnnotationBase.php │ ├── lib │ │ ├── Colors.php │ │ ├── ResultPrinter │ │ │ ├── CliResultPrinter.php │ │ │ ├── ResultPrinter.php │ │ │ └── WebResultPrinter.php │ │ ├── xTest.php │ │ ├── xTestException.php │ │ └── xTestRunner.php │ ├── suite │ │ ├── Annotations.Sample.case.php │ │ ├── Annotations.case.php │ │ ├── Annotations.test.php │ │ ├── Sample │ │ │ ├── AliasMe.php │ │ │ ├── AnnotationInDefaultNamespace.php │ │ │ ├── IgnoreMe.php │ │ │ ├── OrphanedAnnotations.php │ │ │ └── SampleClass.php │ │ └── traits │ │ │ ├── namespaced.php │ │ │ ├── property_conflict.php │ │ │ └── toplevel.php │ └── test.php │ └── todo.txt ├── phenx ├── php-font-lib │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── composer.json │ ├── index.php │ ├── maps │ │ ├── adobe-standard-encoding.map │ │ ├── cp1250.map │ │ ├── cp1251.map │ │ ├── cp1252.map │ │ ├── cp1253.map │ │ ├── cp1254.map │ │ ├── cp1255.map │ │ ├── cp1257.map │ │ ├── cp1258.map │ │ ├── cp874.map │ │ ├── iso-8859-1.map │ │ ├── iso-8859-11.map │ │ ├── iso-8859-15.map │ │ ├── iso-8859-16.map │ │ ├── iso-8859-2.map │ │ ├── iso-8859-4.map │ │ ├── iso-8859-5.map │ │ ├── iso-8859-7.map │ │ ├── iso-8859-9.map │ │ ├── koi8-r.map │ │ └── koi8-u.map │ ├── phpunit.xml.dist │ ├── sample-fonts │ │ └── IntelClear-Light.ttf │ ├── src │ │ └── FontLib │ │ │ ├── AdobeFontMetrics.php │ │ │ ├── Autoloader.php │ │ │ ├── BinaryStream.php │ │ │ ├── EOT │ │ │ ├── File.php │ │ │ └── Header.php │ │ │ ├── EncodingMap.php │ │ │ ├── Exception │ │ │ └── FontNotFoundException.php │ │ │ ├── Font.php │ │ │ ├── Glyph │ │ │ ├── Outline.php │ │ │ ├── OutlineComponent.php │ │ │ ├── OutlineComposite.php │ │ │ └── OutlineSimple.php │ │ │ ├── Header.php │ │ │ ├── OpenType │ │ │ ├── File.php │ │ │ └── TableDirectoryEntry.php │ │ │ ├── Table │ │ │ ├── DirectoryEntry.php │ │ │ ├── Table.php │ │ │ └── Type │ │ │ │ ├── cmap.php │ │ │ │ ├── glyf.php │ │ │ │ ├── head.php │ │ │ │ ├── hhea.php │ │ │ │ ├── hmtx.php │ │ │ │ ├── kern.php │ │ │ │ ├── loca.php │ │ │ │ ├── maxp.php │ │ │ │ ├── name.php │ │ │ │ ├── nameRecord.php │ │ │ │ ├── os2.php │ │ │ │ └── post.php │ │ │ ├── TrueType │ │ │ ├── Collection.php │ │ │ ├── File.php │ │ │ ├── Header.php │ │ │ └── TableDirectoryEntry.php │ │ │ └── WOFF │ │ │ ├── File.php │ │ │ ├── Header.php │ │ │ └── TableDirectoryEntry.php │ └── tests │ │ └── FontLib │ │ └── FontTest.php └── php-svg-lib │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ ├── src │ ├── Svg │ │ ├── DefaultStyle.php │ │ ├── Document.php │ │ ├── Gradient │ │ │ └── Stop.php │ │ ├── Style.php │ │ ├── Surface │ │ │ ├── CPdf.php │ │ │ ├── SurfaceCpdf.php │ │ │ ├── SurfaceGmagick.php │ │ │ ├── SurfaceInterface.php │ │ │ └── SurfacePDFLib.php │ │ └── Tag │ │ │ ├── AbstractTag.php │ │ │ ├── Anchor.php │ │ │ ├── Circle.php │ │ │ ├── ClipPath.php │ │ │ ├── Ellipse.php │ │ │ ├── Group.php │ │ │ ├── Image.php │ │ │ ├── Line.php │ │ │ ├── LinearGradient.php │ │ │ ├── Path.php │ │ │ ├── Polygon.php │ │ │ ├── Polyline.php │ │ │ ├── RadialGradient.php │ │ │ ├── Rect.php │ │ │ ├── Shape.php │ │ │ ├── Stop.php │ │ │ ├── StyleTag.php │ │ │ ├── Text.php │ │ │ └── UseTag.php │ └── autoload.php │ └── tests │ └── Svg │ └── StyleTest.php ├── phpmailer └── phpmailer │ ├── LICENSE │ ├── PHPMailerAutoload.php │ ├── VERSION │ ├── class.phpmailer.php │ ├── class.phpmaileroauth.php │ ├── class.phpmaileroauthgoogle.php │ ├── class.pop3.php │ ├── class.smtp.php │ ├── composer.json │ ├── composer.lock │ ├── examples │ ├── DKIM.phps │ ├── code_generator.phps │ ├── contactform.phps │ ├── contents.html │ ├── contentsutf8.html │ ├── exceptions.phps │ ├── gmail.phps │ ├── gmail_xoauth.phps │ ├── images │ │ ├── phpmailer.png │ │ └── phpmailer_mini.png │ ├── index.html │ ├── mail.phps │ ├── mailing_list.phps │ ├── pop_before_smtp.phps │ ├── scripts │ │ ├── XRegExp.js │ │ ├── shAutoloader.js │ │ ├── shBrushPhp.js │ │ ├── shCore.js │ │ └── shLegacy.js │ ├── send_file_upload.phps │ ├── send_multiple_file_upload.phps │ ├── sendmail.phps │ ├── signed-mail.phps │ ├── smtp.phps │ ├── smtp_check.phps │ ├── smtp_no_auth.phps │ ├── ssl_options.phps │ └── styles │ │ ├── shCore.css │ │ ├── shCoreDefault.css │ │ ├── shCoreDjango.css │ │ ├── shCoreEclipse.css │ │ ├── shCoreEmacs.css │ │ ├── shCoreFadeToGrey.css │ │ ├── shCoreMDUltra.css │ │ ├── shCoreMidnight.css │ │ ├── shCoreRDark.css │ │ ├── shThemeAppleScript.css │ │ ├── shThemeDefault.css │ │ ├── shThemeDjango.css │ │ ├── shThemeEclipse.css │ │ ├── shThemeEmacs.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeMDUltra.css │ │ ├── shThemeMidnight.css │ │ ├── shThemeRDark.css │ │ ├── shThemeVisualStudio.css │ │ └── wrapping.png │ ├── extras │ ├── EasyPeasyICS.php │ ├── README.md │ ├── htmlfilter.php │ └── ntlm_sasl_client.php │ ├── get_oauth_token.php │ └── language │ ├── phpmailer.lang-am.php │ ├── phpmailer.lang-ar.php │ ├── phpmailer.lang-az.php │ ├── phpmailer.lang-ba.php │ ├── phpmailer.lang-be.php │ ├── phpmailer.lang-bg.php │ ├── phpmailer.lang-ca.php │ ├── phpmailer.lang-ch.php │ ├── phpmailer.lang-cs.php │ ├── phpmailer.lang-da.php │ ├── phpmailer.lang-de.php │ ├── phpmailer.lang-el.php │ ├── phpmailer.lang-eo.php │ ├── phpmailer.lang-es.php │ ├── phpmailer.lang-et.php │ ├── phpmailer.lang-fa.php │ ├── phpmailer.lang-fi.php │ ├── phpmailer.lang-fo.php │ ├── phpmailer.lang-fr.php │ ├── phpmailer.lang-gl.php │ ├── phpmailer.lang-he.php │ ├── phpmailer.lang-hr.php │ ├── phpmailer.lang-hu.php │ ├── phpmailer.lang-id.php │ ├── phpmailer.lang-it.php │ ├── phpmailer.lang-ja.php │ ├── phpmailer.lang-ka.php │ ├── phpmailer.lang-ko.php │ ├── phpmailer.lang-lt.php │ ├── phpmailer.lang-lv.php │ ├── phpmailer.lang-ms.php │ ├── phpmailer.lang-nb.php │ ├── phpmailer.lang-nl.php │ ├── phpmailer.lang-pl.php │ ├── phpmailer.lang-pt.php │ ├── phpmailer.lang-pt_br.php │ ├── phpmailer.lang-ro.php │ ├── phpmailer.lang-rs.php │ ├── phpmailer.lang-ru.php │ ├── phpmailer.lang-sk.php │ ├── phpmailer.lang-sl.php │ ├── phpmailer.lang-sv.php │ ├── phpmailer.lang-tr.php │ ├── phpmailer.lang-uk.php │ ├── phpmailer.lang-vi.php │ ├── phpmailer.lang-zh.php │ └── phpmailer.lang-zh_cn.php ├── phpoffice └── phpexcel │ ├── Classes │ ├── PHPExcel.php │ └── PHPExcel │ │ ├── Autoloader.php │ │ ├── CachedObjectStorage │ │ ├── APC.php │ │ ├── CacheBase.php │ │ ├── DiscISAM.php │ │ ├── ICache.php │ │ ├── Igbinary.php │ │ ├── Memcache.php │ │ ├── Memory.php │ │ ├── MemoryGZip.php │ │ ├── MemorySerialized.php │ │ ├── PHPTemp.php │ │ ├── SQLite.php │ │ ├── SQLite3.php │ │ └── Wincache.php │ │ ├── CachedObjectStorageFactory.php │ │ ├── CalcEngine │ │ ├── CyclicReferenceStack.php │ │ └── Logger.php │ │ ├── Calculation.php │ │ ├── Calculation │ │ ├── Database.php │ │ ├── DateTime.php │ │ ├── Engineering.php │ │ ├── Exception.php │ │ ├── ExceptionHandler.php │ │ ├── Financial.php │ │ ├── FormulaParser.php │ │ ├── FormulaToken.php │ │ ├── Function.php │ │ ├── Functions.php │ │ ├── Logical.php │ │ ├── LookupRef.php │ │ ├── MathTrig.php │ │ ├── Statistical.php │ │ ├── TextData.php │ │ ├── Token │ │ │ └── Stack.php │ │ └── functionlist.txt │ │ ├── Cell.php │ │ ├── Cell │ │ ├── AdvancedValueBinder.php │ │ ├── DataType.php │ │ ├── DataValidation.php │ │ ├── DefaultValueBinder.php │ │ ├── Hyperlink.php │ │ └── IValueBinder.php │ │ ├── Chart.php │ │ ├── Chart │ │ ├── Axis.php │ │ ├── DataSeries.php │ │ ├── DataSeriesValues.php │ │ ├── Exception.php │ │ ├── GridLines.php │ │ ├── Layout.php │ │ ├── Legend.php │ │ ├── PlotArea.php │ │ ├── Properties.php │ │ ├── Renderer │ │ │ ├── PHP Charting Libraries.txt │ │ │ └── jpgraph.php │ │ └── Title.php │ │ ├── Comment.php │ │ ├── DocumentProperties.php │ │ ├── DocumentSecurity.php │ │ ├── Exception.php │ │ ├── HashTable.php │ │ ├── Helper │ │ └── HTML.php │ │ ├── IComparable.php │ │ ├── IOFactory.php │ │ ├── NamedRange.php │ │ ├── Reader │ │ ├── Abstract.php │ │ ├── CSV.php │ │ ├── DefaultReadFilter.php │ │ ├── Excel2003XML.php │ │ ├── Excel2007.php │ │ ├── Excel2007 │ │ │ ├── Chart.php │ │ │ └── Theme.php │ │ ├── Excel5.php │ │ ├── Excel5 │ │ │ ├── Escher.php │ │ │ ├── MD5.php │ │ │ └── RC4.php │ │ ├── Exception.php │ │ ├── Gnumeric.php │ │ ├── HTML.php │ │ ├── IReadFilter.php │ │ ├── IReader.php │ │ ├── OOCalc.php │ │ └── SYLK.php │ │ ├── ReferenceHelper.php │ │ ├── RichText.php │ │ ├── RichText │ │ ├── ITextElement.php │ │ ├── Run.php │ │ └── TextElement.php │ │ ├── Settings.php │ │ ├── Shared │ │ ├── CodePage.php │ │ ├── Date.php │ │ ├── Drawing.php │ │ ├── Escher.php │ │ ├── Escher │ │ │ ├── DgContainer.php │ │ │ ├── DgContainer │ │ │ │ ├── SpgrContainer.php │ │ │ │ └── SpgrContainer │ │ │ │ │ └── SpContainer.php │ │ │ ├── DggContainer.php │ │ │ └── DggContainer │ │ │ │ ├── BstoreContainer.php │ │ │ │ └── BstoreContainer │ │ │ │ ├── BSE.php │ │ │ │ └── BSE │ │ │ │ └── Blip.php │ │ ├── Excel5.php │ │ ├── File.php │ │ ├── Font.php │ │ ├── JAMA │ │ │ ├── CHANGELOG.TXT │ │ │ ├── CholeskyDecomposition.php │ │ │ ├── EigenvalueDecomposition.php │ │ │ ├── LUDecomposition.php │ │ │ ├── Matrix.php │ │ │ ├── QRDecomposition.php │ │ │ ├── SingularValueDecomposition.php │ │ │ └── utils │ │ │ │ ├── Error.php │ │ │ │ └── Maths.php │ │ ├── OLE.php │ │ ├── OLE │ │ │ ├── ChainedBlockStream.php │ │ │ ├── PPS.php │ │ │ └── PPS │ │ │ │ ├── File.php │ │ │ │ └── Root.php │ │ ├── OLERead.php │ │ ├── PCLZip │ │ │ ├── gnu-lgpl.txt │ │ │ ├── pclzip.lib.php │ │ │ └── readme.txt │ │ ├── PasswordHasher.php │ │ ├── String.php │ │ ├── TimeZone.php │ │ ├── XMLWriter.php │ │ ├── ZipArchive.php │ │ ├── ZipStreamWrapper.php │ │ └── trend │ │ │ ├── bestFitClass.php │ │ │ ├── exponentialBestFitClass.php │ │ │ ├── linearBestFitClass.php │ │ │ ├── logarithmicBestFitClass.php │ │ │ ├── polynomialBestFitClass.php │ │ │ ├── powerBestFitClass.php │ │ │ └── trendClass.php │ │ ├── Style.php │ │ ├── Style │ │ ├── Alignment.php │ │ ├── Border.php │ │ ├── Borders.php │ │ ├── Color.php │ │ ├── Conditional.php │ │ ├── Fill.php │ │ ├── Font.php │ │ ├── NumberFormat.php │ │ ├── Protection.php │ │ └── Supervisor.php │ │ ├── Worksheet.php │ │ ├── Worksheet │ │ ├── AutoFilter.php │ │ ├── AutoFilter │ │ │ ├── Column.php │ │ │ └── Column │ │ │ │ └── Rule.php │ │ ├── BaseDrawing.php │ │ ├── CellIterator.php │ │ ├── Column.php │ │ ├── ColumnCellIterator.php │ │ ├── ColumnDimension.php │ │ ├── ColumnIterator.php │ │ ├── Drawing.php │ │ ├── Drawing │ │ │ └── Shadow.php │ │ ├── HeaderFooter.php │ │ ├── HeaderFooterDrawing.php │ │ ├── MemoryDrawing.php │ │ ├── PageMargins.php │ │ ├── PageSetup.php │ │ ├── Protection.php │ │ ├── Row.php │ │ ├── RowCellIterator.php │ │ ├── RowDimension.php │ │ ├── RowIterator.php │ │ └── SheetView.php │ │ ├── WorksheetIterator.php │ │ ├── Writer │ │ ├── Abstract.php │ │ ├── CSV.php │ │ ├── Excel2007.php │ │ ├── Excel2007 │ │ │ ├── Chart.php │ │ │ ├── Comments.php │ │ │ ├── ContentTypes.php │ │ │ ├── DocProps.php │ │ │ ├── Drawing.php │ │ │ ├── Rels.php │ │ │ ├── RelsRibbon.php │ │ │ ├── RelsVBA.php │ │ │ ├── StringTable.php │ │ │ ├── Style.php │ │ │ ├── Theme.php │ │ │ ├── Workbook.php │ │ │ ├── Worksheet.php │ │ │ └── WriterPart.php │ │ ├── Excel5.php │ │ ├── Excel5 │ │ │ ├── BIFFwriter.php │ │ │ ├── Escher.php │ │ │ ├── Font.php │ │ │ ├── Parser.php │ │ │ ├── Workbook.php │ │ │ ├── Worksheet.php │ │ │ └── Xf.php │ │ ├── Exception.php │ │ ├── HTML.php │ │ ├── IWriter.php │ │ ├── OpenDocument.php │ │ ├── OpenDocument │ │ │ ├── Cell │ │ │ │ └── Comment.php │ │ │ ├── Content.php │ │ │ ├── Meta.php │ │ │ ├── MetaInf.php │ │ │ ├── Mimetype.php │ │ │ ├── Settings.php │ │ │ ├── Styles.php │ │ │ ├── Thumbnails.php │ │ │ └── WriterPart.php │ │ ├── PDF.php │ │ └── PDF │ │ │ ├── Core.php │ │ │ ├── DomPDF.php │ │ │ ├── mPDF.php │ │ │ └── tcPDF.php │ │ └── locale │ │ ├── bg │ │ └── config │ │ ├── cs │ │ ├── config │ │ └── functions │ │ ├── da │ │ ├── config │ │ └── functions │ │ ├── de │ │ ├── config │ │ └── functions │ │ ├── en │ │ └── uk │ │ │ └── config │ │ ├── es │ │ ├── config │ │ └── functions │ │ ├── fi │ │ ├── config │ │ └── functions │ │ ├── fr │ │ ├── config │ │ └── functions │ │ ├── hu │ │ ├── config │ │ └── functions │ │ ├── it │ │ ├── config │ │ └── functions │ │ ├── nl │ │ ├── config │ │ └── functions │ │ ├── no │ │ ├── config │ │ └── functions │ │ ├── pl │ │ ├── config │ │ └── functions │ │ ├── pt │ │ ├── br │ │ │ ├── config │ │ │ └── functions │ │ ├── config │ │ └── functions │ │ ├── ru │ │ ├── config │ │ └── functions │ │ ├── sv │ │ ├── config │ │ └── functions │ │ └── tr │ │ ├── config │ │ └── functions │ ├── Examples │ ├── 01pharSimple.php │ ├── 01simple-download-ods.php │ ├── 01simple-download-pdf.php │ ├── 01simple-download-xls.php │ ├── 01simple-download-xlsx.php │ ├── 01simple.php │ ├── 01simplePCLZip.php │ ├── 02types-xls.php │ ├── 02types.php │ ├── 03formulas.php │ ├── 04printing.php │ ├── 05featuredemo.inc.php │ ├── 05featuredemo.php │ ├── 06largescale-with-cellcaching-sqlite.php │ ├── 06largescale-with-cellcaching-sqlite3.php │ ├── 06largescale-with-cellcaching.php │ ├── 06largescale-xls.php │ ├── 06largescale.php │ ├── 07reader.php │ ├── 07readerPCLZip.php │ ├── 08conditionalformatting.php │ ├── 08conditionalformatting2.php │ ├── 09pagebreaks.php │ ├── 10autofilter-selection-1.php │ ├── 10autofilter-selection-2.php │ ├── 10autofilter-selection-display.php │ ├── 10autofilter.php │ ├── 11documentsecurity-xls.php │ ├── 11documentsecurity.php │ ├── 12cellProtection.php │ ├── 13calculation.php │ ├── 14excel5.php │ ├── 15datavalidation-xls.php │ ├── 15datavalidation.php │ ├── 16csv.php │ ├── 17html.php │ ├── 18extendedcalculation.php │ ├── 19namedrange.php │ ├── 20readexcel5.php │ ├── 21pdf.php │ ├── 22heavilyformatted.php │ ├── 23sharedstyles.php │ ├── 24readfilter.php │ ├── 25inmemoryimage.php │ ├── 26utf8.php │ ├── 27imagesexcel5.php │ ├── 28iterator.php │ ├── 29advancedvaluebinder.php │ ├── 30template.php │ ├── 31docproperties_write-xls.php │ ├── 31docproperties_write.php │ ├── 32chartreadwrite.php │ ├── 33chartcreate-area.php │ ├── 33chartcreate-bar-stacked.php │ ├── 33chartcreate-bar.php │ ├── 33chartcreate-column-2.php │ ├── 33chartcreate-column.php │ ├── 33chartcreate-composite.php │ ├── 33chartcreate-line.php │ ├── 33chartcreate-multiple-charts.php │ ├── 33chartcreate-pie.php │ ├── 33chartcreate-radar.php │ ├── 33chartcreate-scatter.php │ ├── 33chartcreate-stock.php │ ├── 34chartupdate.php │ ├── 35chartrender.php │ ├── 36chartreadwriteHTML.php │ ├── 36chartreadwritePDF.php │ ├── 37page_layout_view.php │ ├── 38cloneWorksheet.php │ ├── 39dropdown.php │ ├── 40duplicateStyle.php │ ├── 41password.php │ ├── 42richText.php │ ├── Excel2003XMLReader.php │ ├── Excel2003XMLTest.xml │ ├── GnumericReader.php │ ├── GnumericTest.gnumeric │ ├── OOCalcReader.php │ ├── OOCalcReaderPCLZip.php │ ├── OOCalcTest.ods │ ├── Quadratic.php │ ├── Quadratic2.php │ ├── SylkReader.php │ ├── SylkTest.slk │ ├── XMLReader.php │ ├── XMLTest.xml │ ├── data │ │ └── continents │ │ │ ├── Africa.txt │ │ │ ├── Asia.txt │ │ │ ├── Europe.txt │ │ │ ├── North America.txt │ │ │ ├── Oceania.txt │ │ │ └── South America.txt │ ├── images │ │ ├── officelogo.jpg │ │ ├── paid.png │ │ ├── phpexcel_logo.gif │ │ └── termsconditions.jpg │ └── runall.php │ ├── changelog.txt │ ├── composer.json │ ├── install.txt │ ├── license.md │ └── unitTests │ ├── Classes │ └── PHPExcel │ │ ├── AutoloaderTest.php │ │ ├── Calculation │ │ ├── DateTimeTest.php │ │ ├── EngineeringTest.php │ │ ├── FinancialTest.php │ │ ├── FunctionsTest.php │ │ ├── LogicalTest.php │ │ ├── LookupRefTest.php │ │ ├── MathTrigTest.php │ │ └── TextDataTest.php │ │ ├── CalculationTest.php │ │ ├── Cell │ │ ├── AdvancedValueBinderTest.php │ │ ├── DataTypeTest.php │ │ ├── DefaultValueBinderTest.php │ │ └── HyperlinkTest.php │ │ ├── CellTest.php │ │ ├── Chart │ │ ├── DataSeriesValuesTest.php │ │ ├── LayoutTest.php │ │ └── LegendTest.php │ │ ├── Reader │ │ └── XEEValidatorTest.php │ │ ├── ReferenceHelperTest.php │ │ ├── Shared │ │ ├── CodePageTest.php │ │ ├── DateTest.php │ │ ├── FileTest.php │ │ ├── FontTest.php │ │ ├── PasswordHasherTest.php │ │ ├── StringTest.php │ │ └── TimeZoneTest.php │ │ ├── Style │ │ ├── ColorTest.php │ │ └── NumberFormatTest.php │ │ └── Worksheet │ │ ├── AutoFilter │ │ ├── Column │ │ │ └── RuleTest.php │ │ └── ColumnTest.php │ │ ├── AutoFilterTest.php │ │ ├── CellCollectionTest.php │ │ ├── ColumnCellIteratorTest.php │ │ ├── ColumnIteratorTest.php │ │ ├── RowCellIteratorTest.php │ │ ├── RowIteratorTest.php │ │ ├── WorksheetColumnTest.php │ │ └── WorksheetRowTest.php │ ├── bootstrap.php │ ├── custom │ ├── Complex.php │ └── complexAssert.php │ ├── phpunit-cc.xml │ ├── phpunit.xml │ ├── rawTestData │ ├── Calculation │ │ ├── DateTime │ │ │ ├── DATE.data │ │ │ ├── DATEDIF.data │ │ │ ├── DATEVALUE.data │ │ │ ├── DAY.data │ │ │ ├── DAYS360.data │ │ │ ├── EDATE.data │ │ │ ├── EOMONTH.data │ │ │ ├── HOUR.data │ │ │ ├── MINUTE.data │ │ │ ├── MONTH.data │ │ │ ├── NETWORKDAYS.data │ │ │ ├── SECOND.data │ │ │ ├── TIME.data │ │ │ ├── TIMEVALUE.data │ │ │ ├── WEEKDAY.data │ │ │ ├── WEEKNUM.data │ │ │ ├── WORKDAY.data │ │ │ ├── YEAR.data │ │ │ └── YEARFRAC.data │ │ ├── Engineering │ │ │ ├── BESSELI.data │ │ │ ├── BESSELJ.data │ │ │ ├── BESSELK.data │ │ │ ├── BESSELY.data │ │ │ ├── BIN2DEC.data │ │ │ ├── BIN2HEX.data │ │ │ ├── BIN2OCT.data │ │ │ ├── COMPLEX.data │ │ │ ├── CONVERTUOM.data │ │ │ ├── DEC2BIN.data │ │ │ ├── DEC2HEX.data │ │ │ ├── DEC2OCT.data │ │ │ ├── DELTA.data │ │ │ ├── ERF.data │ │ │ ├── ERFC.data │ │ │ ├── GESTEP.data │ │ │ ├── HEX2BIN.data │ │ │ ├── HEX2DEC.data │ │ │ ├── HEX2OCT.data │ │ │ ├── IMABS.data │ │ │ ├── IMAGINARY.data │ │ │ ├── IMARGUMENT.data │ │ │ ├── IMCONJUGATE.data │ │ │ ├── IMCOS.data │ │ │ ├── IMDIV.data │ │ │ ├── IMEXP.data │ │ │ ├── IMLN.data │ │ │ ├── IMLOG10.data │ │ │ ├── IMLOG2.data │ │ │ ├── IMPOWER.data │ │ │ ├── IMPRODUCT.data │ │ │ ├── IMREAL.data │ │ │ ├── IMSIN.data │ │ │ ├── IMSQRT.data │ │ │ ├── IMSUB.data │ │ │ ├── IMSUM.data │ │ │ ├── OCT2BIN.data │ │ │ ├── OCT2DEC.data │ │ │ └── OCT2HEX.data │ │ ├── Financial │ │ │ ├── ACCRINT.data │ │ │ ├── ACCRINTM.data │ │ │ ├── AMORDEGRC.data │ │ │ ├── AMORLINC.data │ │ │ ├── COUPDAYBS.data │ │ │ ├── COUPDAYS.data │ │ │ ├── COUPDAYSNC.data │ │ │ ├── COUPNCD.data │ │ │ ├── COUPNUM.data │ │ │ ├── COUPPCD.data │ │ │ ├── CUMIPMT.data │ │ │ ├── CUMPRINC.data │ │ │ ├── DB.data │ │ │ ├── DDB.data │ │ │ ├── DISC.data │ │ │ ├── DOLLARDE.data │ │ │ ├── DOLLARFR.data │ │ │ ├── EFFECT.data │ │ │ ├── FV.data │ │ │ ├── FVSCHEDULE.data │ │ │ ├── INTRATE.data │ │ │ ├── IPMT.data │ │ │ ├── IRR.data │ │ │ ├── ISPMT.data │ │ │ ├── MIRR.data │ │ │ ├── NOMINAL.data │ │ │ ├── NPER.data │ │ │ ├── NPV.data │ │ │ ├── PRICE.data │ │ │ ├── RATE.data │ │ │ └── XIRR.data │ │ ├── Functions │ │ │ ├── ERROR_TYPE.data │ │ │ ├── IS_BLANK.data │ │ │ ├── IS_ERR.data │ │ │ ├── IS_ERROR.data │ │ │ ├── IS_EVEN.data │ │ │ ├── IS_LOGICAL.data │ │ │ ├── IS_NA.data │ │ │ ├── IS_NONTEXT.data │ │ │ ├── IS_NUMBER.data │ │ │ ├── IS_ODD.data │ │ │ ├── IS_TEXT.data │ │ │ ├── N.data │ │ │ └── TYPE.data │ │ ├── Logical │ │ │ ├── AND.data │ │ │ ├── IF.data │ │ │ ├── IFERROR.data │ │ │ ├── NOT.data │ │ │ └── OR.data │ │ ├── LookupRef │ │ │ ├── HLOOKUP.data │ │ │ └── VLOOKUP.data │ │ ├── MathTrig │ │ │ ├── ATAN2.data │ │ │ ├── CEILING.data │ │ │ ├── COMBIN.data │ │ │ ├── EVEN.data │ │ │ ├── FACT.data │ │ │ ├── FACTDOUBLE.data │ │ │ ├── FLOOR.data │ │ │ ├── GCD.data │ │ │ ├── INT.data │ │ │ ├── LCM.data │ │ │ ├── LOG.data │ │ │ ├── MDETERM.data │ │ │ ├── MINVERSE.data │ │ │ ├── MMULT.data │ │ │ ├── MOD.data │ │ │ ├── MROUND.data │ │ │ ├── MULTINOMIAL.data │ │ │ ├── ODD.data │ │ │ ├── POWER.data │ │ │ ├── PRODUCT.data │ │ │ ├── QUOTIENT.data │ │ │ ├── ROMAN.data │ │ │ ├── ROUNDDOWN.data │ │ │ ├── ROUNDUP.data │ │ │ ├── SERIESSUM.data │ │ │ ├── SIGN.data │ │ │ ├── SQRTPI.data │ │ │ ├── SUMSQ.data │ │ │ └── TRUNC.data │ │ └── TextData │ │ │ ├── CHAR.data │ │ │ ├── CLEAN.data │ │ │ ├── CODE.data │ │ │ ├── CONCATENATE.data │ │ │ ├── DOLLAR.data │ │ │ ├── FIND.data │ │ │ ├── FIXED.data │ │ │ ├── LEFT.data │ │ │ ├── LEN.data │ │ │ ├── LOWER.data │ │ │ ├── MID.data │ │ │ ├── PROPER.data │ │ │ ├── REPLACE.data │ │ │ ├── RIGHT.data │ │ │ ├── SEARCH.data │ │ │ ├── SUBSTITUTE.data │ │ │ ├── T.data │ │ │ ├── TEXT.data │ │ │ ├── TRIM.data │ │ │ ├── UPPER.data │ │ │ └── VALUE.data │ ├── CalculationBinaryComparisonOperation.data │ ├── Cell │ │ └── DefaultValueBinder.data │ ├── CellAbsoluteCoordinate.data │ ├── CellAbsoluteReference.data │ ├── CellBuildRange.data │ ├── CellCoordinates.data │ ├── CellExtractAllCellReferencesInRange.data │ ├── CellGetRangeBoundaries.data │ ├── CellRangeBoundaries.data │ ├── CellRangeDimension.data │ ├── CellSplitRange.data │ ├── ColumnIndex.data │ ├── ColumnString.data │ ├── Reader │ │ ├── XEETestInvalidUTF-16.xml │ │ ├── XEETestInvalidUTF-16BE.xml │ │ ├── XEETestInvalidUTF-16LE.xml │ │ ├── XEETestInvalidUTF-8.xml │ │ ├── XEETestValidUTF-16.xml │ │ ├── XEETestValidUTF-16BE.xml │ │ ├── XEETestValidUTF-16LE.xml │ │ └── XEETestValidUTF-8.xml │ ├── Shared │ │ ├── CentimeterSizeToPixels.data │ │ ├── CodePage.data │ │ ├── DateTimeExcelToPHP1900.data │ │ ├── DateTimeExcelToPHP1900Timezone.data │ │ ├── DateTimeExcelToPHP1904.data │ │ ├── DateTimeFormatCodes.data │ │ ├── DateTimeFormattedPHPToExcel1900.data │ │ ├── DateTimePHPToExcel1900.data │ │ ├── DateTimePHPToExcel1904.data │ │ ├── FontSizeToPixels.data │ │ ├── InchSizeToPixels.data │ │ └── PasswordHashes.data │ └── Style │ │ ├── ColorChangeBrightness.data │ │ ├── ColorGetBlue.data │ │ ├── ColorGetGreen.data │ │ ├── ColorGetRed.data │ │ └── NumberFormat.data │ └── testDataFileIterator.php ├── phpqrcode ├── CHANGELOG ├── INSTALL ├── LICENSE ├── README ├── VERSION ├── bindings │ └── tcpdf │ │ └── qrcode.php ├── cache │ ├── frame_1.dat │ ├── frame_1.png │ ├── frame_10.dat │ ├── frame_10.png │ ├── frame_11.dat │ ├── frame_11.png │ ├── frame_12.dat │ ├── frame_12.png │ ├── frame_13.dat │ ├── frame_13.png │ ├── frame_14.dat │ ├── frame_14.png │ ├── frame_15.dat │ ├── frame_15.png │ ├── frame_16.dat │ ├── frame_16.png │ ├── frame_17.dat │ ├── frame_17.png │ ├── frame_18.dat │ ├── frame_18.png │ ├── frame_19.dat │ ├── frame_19.png │ ├── frame_2.dat │ ├── frame_2.png │ ├── frame_20.dat │ ├── frame_20.png │ ├── frame_21.dat │ ├── frame_21.png │ ├── frame_22.dat │ ├── frame_22.png │ ├── frame_23.dat │ ├── frame_23.png │ ├── frame_24.dat │ ├── frame_24.png │ ├── frame_25.dat │ ├── frame_25.png │ ├── frame_26.dat │ ├── frame_26.png │ ├── frame_27.dat │ ├── frame_27.png │ ├── frame_28.dat │ ├── frame_28.png │ ├── frame_29.dat │ ├── frame_29.png │ ├── frame_3.dat │ ├── frame_3.png │ ├── frame_30.dat │ ├── frame_30.png │ ├── frame_31.dat │ ├── frame_31.png │ ├── frame_32.dat │ ├── frame_32.png │ ├── frame_33.dat │ ├── frame_33.png │ ├── frame_34.dat │ ├── frame_34.png │ ├── frame_35.dat │ ├── frame_35.png │ ├── frame_36.dat │ ├── frame_36.png │ ├── frame_37.dat │ ├── frame_37.png │ ├── frame_38.dat │ ├── frame_38.png │ ├── frame_39.dat │ ├── frame_39.png │ ├── frame_4.dat │ ├── frame_4.png │ ├── frame_40.dat │ ├── frame_40.png │ ├── frame_5.dat │ ├── frame_5.png │ ├── frame_6.dat │ ├── frame_6.png │ ├── frame_7.dat │ ├── frame_7.png │ ├── frame_8.dat │ ├── frame_8.png │ ├── frame_9.dat │ ├── frame_9.png │ ├── mask_0 │ │ ├── mask_101_0.dat │ │ ├── mask_105_0.dat │ │ ├── mask_109_0.dat │ │ ├── mask_113_0.dat │ │ ├── mask_117_0.dat │ │ ├── mask_121_0.dat │ │ ├── mask_125_0.dat │ │ ├── mask_129_0.dat │ │ ├── mask_133_0.dat │ │ ├── mask_137_0.dat │ │ ├── mask_141_0.dat │ │ ├── mask_145_0.dat │ │ ├── mask_149_0.dat │ │ ├── mask_153_0.dat │ │ ├── mask_157_0.dat │ │ ├── mask_161_0.dat │ │ ├── mask_165_0.dat │ │ ├── mask_169_0.dat │ │ ├── mask_173_0.dat │ │ ├── mask_177_0.dat │ │ ├── mask_21_0.dat │ │ ├── mask_25_0.dat │ │ ├── mask_29_0.dat │ │ ├── mask_33_0.dat │ │ ├── mask_37_0.dat │ │ ├── mask_41_0.dat │ │ ├── mask_45_0.dat │ │ ├── mask_49_0.dat │ │ ├── mask_53_0.dat │ │ ├── mask_57_0.dat │ │ ├── mask_61_0.dat │ │ ├── mask_65_0.dat │ │ ├── mask_69_0.dat │ │ ├── mask_73_0.dat │ │ ├── mask_77_0.dat │ │ ├── mask_81_0.dat │ │ ├── mask_85_0.dat │ │ ├── mask_89_0.dat │ │ ├── mask_93_0.dat │ │ └── mask_97_0.dat │ ├── mask_1 │ │ ├── mask_101_1.dat │ │ ├── mask_105_1.dat │ │ ├── mask_109_1.dat │ │ ├── mask_113_1.dat │ │ ├── mask_117_1.dat │ │ ├── mask_121_1.dat │ │ ├── mask_125_1.dat │ │ ├── mask_129_1.dat │ │ ├── mask_133_1.dat │ │ ├── mask_137_1.dat │ │ ├── mask_141_1.dat │ │ ├── mask_145_1.dat │ │ ├── mask_149_1.dat │ │ ├── mask_153_1.dat │ │ ├── mask_157_1.dat │ │ ├── mask_161_1.dat │ │ ├── mask_165_1.dat │ │ ├── mask_169_1.dat │ │ ├── mask_173_1.dat │ │ ├── mask_177_1.dat │ │ ├── mask_21_1.dat │ │ ├── mask_25_1.dat │ │ ├── mask_29_1.dat │ │ ├── mask_33_1.dat │ │ ├── mask_37_1.dat │ │ ├── mask_41_1.dat │ │ ├── mask_45_1.dat │ │ ├── mask_49_1.dat │ │ ├── mask_53_1.dat │ │ ├── mask_57_1.dat │ │ ├── mask_61_1.dat │ │ ├── mask_65_1.dat │ │ ├── mask_69_1.dat │ │ ├── mask_73_1.dat │ │ ├── mask_77_1.dat │ │ ├── mask_81_1.dat │ │ ├── mask_85_1.dat │ │ ├── mask_89_1.dat │ │ ├── mask_93_1.dat │ │ └── mask_97_1.dat │ ├── mask_2 │ │ ├── mask_101_2.dat │ │ ├── mask_105_2.dat │ │ ├── mask_109_2.dat │ │ ├── mask_113_2.dat │ │ ├── mask_117_2.dat │ │ ├── mask_121_2.dat │ │ ├── mask_125_2.dat │ │ ├── mask_129_2.dat │ │ ├── mask_133_2.dat │ │ ├── mask_137_2.dat │ │ ├── mask_141_2.dat │ │ ├── mask_145_2.dat │ │ ├── mask_149_2.dat │ │ ├── mask_153_2.dat │ │ ├── mask_157_2.dat │ │ ├── mask_161_2.dat │ │ ├── mask_165_2.dat │ │ ├── mask_169_2.dat │ │ ├── mask_173_2.dat │ │ ├── mask_177_2.dat │ │ ├── mask_21_2.dat │ │ ├── mask_25_2.dat │ │ ├── mask_29_2.dat │ │ ├── mask_33_2.dat │ │ ├── mask_37_2.dat │ │ ├── mask_41_2.dat │ │ ├── mask_45_2.dat │ │ ├── mask_49_2.dat │ │ ├── mask_53_2.dat │ │ ├── mask_57_2.dat │ │ ├── mask_61_2.dat │ │ ├── mask_65_2.dat │ │ ├── mask_69_2.dat │ │ ├── mask_73_2.dat │ │ ├── mask_77_2.dat │ │ ├── mask_81_2.dat │ │ ├── mask_85_2.dat │ │ ├── mask_89_2.dat │ │ ├── mask_93_2.dat │ │ └── mask_97_2.dat │ ├── mask_3 │ │ ├── mask_101_3.dat │ │ ├── mask_105_3.dat │ │ ├── mask_109_3.dat │ │ ├── mask_113_3.dat │ │ ├── mask_117_3.dat │ │ ├── mask_121_3.dat │ │ ├── mask_125_3.dat │ │ ├── mask_129_3.dat │ │ ├── mask_133_3.dat │ │ ├── mask_137_3.dat │ │ ├── mask_141_3.dat │ │ ├── mask_145_3.dat │ │ ├── mask_149_3.dat │ │ ├── mask_153_3.dat │ │ ├── mask_157_3.dat │ │ ├── mask_161_3.dat │ │ ├── mask_165_3.dat │ │ ├── mask_169_3.dat │ │ ├── mask_173_3.dat │ │ ├── mask_177_3.dat │ │ ├── mask_21_3.dat │ │ ├── mask_25_3.dat │ │ ├── mask_29_3.dat │ │ ├── mask_33_3.dat │ │ ├── mask_37_3.dat │ │ ├── mask_41_3.dat │ │ ├── mask_45_3.dat │ │ ├── mask_49_3.dat │ │ ├── mask_53_3.dat │ │ ├── mask_57_3.dat │ │ ├── mask_61_3.dat │ │ ├── mask_65_3.dat │ │ ├── mask_69_3.dat │ │ ├── mask_73_3.dat │ │ ├── mask_77_3.dat │ │ ├── mask_81_3.dat │ │ ├── mask_85_3.dat │ │ ├── mask_89_3.dat │ │ ├── mask_93_3.dat │ │ └── mask_97_3.dat │ ├── mask_4 │ │ ├── mask_101_4.dat │ │ ├── mask_105_4.dat │ │ ├── mask_109_4.dat │ │ ├── mask_113_4.dat │ │ ├── mask_117_4.dat │ │ ├── mask_121_4.dat │ │ ├── mask_125_4.dat │ │ ├── mask_129_4.dat │ │ ├── mask_133_4.dat │ │ ├── mask_137_4.dat │ │ ├── mask_141_4.dat │ │ ├── mask_145_4.dat │ │ ├── mask_149_4.dat │ │ ├── mask_153_4.dat │ │ ├── mask_157_4.dat │ │ ├── mask_161_4.dat │ │ ├── mask_165_4.dat │ │ ├── mask_169_4.dat │ │ ├── mask_173_4.dat │ │ ├── mask_177_4.dat │ │ ├── mask_21_4.dat │ │ ├── mask_25_4.dat │ │ ├── mask_29_4.dat │ │ ├── mask_33_4.dat │ │ ├── mask_37_4.dat │ │ ├── mask_41_4.dat │ │ ├── mask_45_4.dat │ │ ├── mask_49_4.dat │ │ ├── mask_53_4.dat │ │ ├── mask_57_4.dat │ │ ├── mask_61_4.dat │ │ ├── mask_65_4.dat │ │ ├── mask_69_4.dat │ │ ├── mask_73_4.dat │ │ ├── mask_77_4.dat │ │ ├── mask_81_4.dat │ │ ├── mask_85_4.dat │ │ ├── mask_89_4.dat │ │ ├── mask_93_4.dat │ │ └── mask_97_4.dat │ ├── mask_5 │ │ ├── mask_101_5.dat │ │ ├── mask_105_5.dat │ │ ├── mask_109_5.dat │ │ ├── mask_113_5.dat │ │ ├── mask_117_5.dat │ │ ├── mask_121_5.dat │ │ ├── mask_125_5.dat │ │ ├── mask_129_5.dat │ │ ├── mask_133_5.dat │ │ ├── mask_137_5.dat │ │ ├── mask_141_5.dat │ │ ├── mask_145_5.dat │ │ ├── mask_149_5.dat │ │ ├── mask_153_5.dat │ │ ├── mask_157_5.dat │ │ ├── mask_161_5.dat │ │ ├── mask_165_5.dat │ │ ├── mask_169_5.dat │ │ ├── mask_173_5.dat │ │ ├── mask_177_5.dat │ │ ├── mask_21_5.dat │ │ ├── mask_25_5.dat │ │ ├── mask_29_5.dat │ │ ├── mask_33_5.dat │ │ ├── mask_37_5.dat │ │ ├── mask_41_5.dat │ │ ├── mask_45_5.dat │ │ ├── mask_49_5.dat │ │ ├── mask_53_5.dat │ │ ├── mask_57_5.dat │ │ ├── mask_61_5.dat │ │ ├── mask_65_5.dat │ │ ├── mask_69_5.dat │ │ ├── mask_73_5.dat │ │ ├── mask_77_5.dat │ │ ├── mask_81_5.dat │ │ ├── mask_85_5.dat │ │ ├── mask_89_5.dat │ │ ├── mask_93_5.dat │ │ └── mask_97_5.dat │ ├── mask_6 │ │ ├── mask_101_6.dat │ │ ├── mask_105_6.dat │ │ ├── mask_109_6.dat │ │ ├── mask_113_6.dat │ │ ├── mask_117_6.dat │ │ ├── mask_121_6.dat │ │ ├── mask_125_6.dat │ │ ├── mask_129_6.dat │ │ ├── mask_133_6.dat │ │ ├── mask_137_6.dat │ │ ├── mask_141_6.dat │ │ ├── mask_145_6.dat │ │ ├── mask_149_6.dat │ │ ├── mask_153_6.dat │ │ ├── mask_157_6.dat │ │ ├── mask_161_6.dat │ │ ├── mask_165_6.dat │ │ ├── mask_169_6.dat │ │ ├── mask_173_6.dat │ │ ├── mask_177_6.dat │ │ ├── mask_21_6.dat │ │ ├── mask_25_6.dat │ │ ├── mask_29_6.dat │ │ ├── mask_33_6.dat │ │ ├── mask_37_6.dat │ │ ├── mask_41_6.dat │ │ ├── mask_45_6.dat │ │ ├── mask_49_6.dat │ │ ├── mask_53_6.dat │ │ ├── mask_57_6.dat │ │ ├── mask_61_6.dat │ │ ├── mask_65_6.dat │ │ ├── mask_69_6.dat │ │ ├── mask_73_6.dat │ │ ├── mask_77_6.dat │ │ ├── mask_81_6.dat │ │ ├── mask_85_6.dat │ │ ├── mask_89_6.dat │ │ ├── mask_93_6.dat │ │ └── mask_97_6.dat │ └── mask_7 │ │ ├── mask_101_7.dat │ │ ├── mask_105_7.dat │ │ ├── mask_109_7.dat │ │ ├── mask_113_7.dat │ │ ├── mask_117_7.dat │ │ ├── mask_121_7.dat │ │ ├── mask_125_7.dat │ │ ├── mask_129_7.dat │ │ ├── mask_133_7.dat │ │ ├── mask_137_7.dat │ │ ├── mask_141_7.dat │ │ ├── mask_145_7.dat │ │ ├── mask_149_7.dat │ │ ├── mask_153_7.dat │ │ ├── mask_157_7.dat │ │ ├── mask_161_7.dat │ │ ├── mask_165_7.dat │ │ ├── mask_169_7.dat │ │ ├── mask_173_7.dat │ │ ├── mask_177_7.dat │ │ ├── mask_21_7.dat │ │ ├── mask_25_7.dat │ │ ├── mask_29_7.dat │ │ ├── mask_33_7.dat │ │ ├── mask_37_7.dat │ │ ├── mask_41_7.dat │ │ ├── mask_45_7.dat │ │ ├── mask_49_7.dat │ │ ├── mask_53_7.dat │ │ ├── mask_57_7.dat │ │ ├── mask_61_7.dat │ │ ├── mask_65_7.dat │ │ ├── mask_69_7.dat │ │ ├── mask_73_7.dat │ │ ├── mask_77_7.dat │ │ ├── mask_81_7.dat │ │ ├── mask_85_7.dat │ │ ├── mask_89_7.dat │ │ ├── mask_93_7.dat │ │ └── mask_97_7.dat ├── index.php ├── phpqrcode.php ├── qrbitstream.php ├── qrconfig.php ├── qrconst.php ├── qrencode.php ├── qrimage.php ├── qrinput.php ├── qrlib.php ├── qrmask.php ├── qrrscode.php ├── qrspec.php ├── qrsplit.php ├── qrtools.php └── tools │ ├── merge.bat │ ├── merge.php │ ├── merge.sh │ ├── merged_config.php │ └── merged_header.php ├── qiniu └── php-sdk │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── autoload.php │ ├── composer.json │ ├── examples │ ├── README.md │ ├── cdn_get_bandwidth.php │ ├── cdn_get_flux.php │ ├── cdn_get_log_list.php │ ├── cdn_refresh_urls_dirs.php │ ├── cdn_timestamp_antileech.php │ ├── image_url_builder.php │ ├── persistent_fop_init.php │ ├── persistent_fop_status.php │ ├── pfop_mkzip.php │ ├── pfop_vframe.php │ ├── pfop_video_avthumb.php │ ├── pfop_watermark.php │ ├── php-logo.png │ ├── prefop.php │ ├── qetag.php │ ├── rs_batch_change_mime.php │ ├── rs_batch_change_type.php │ ├── rs_batch_copy.php │ ├── rs_batch_delete.php │ ├── rs_batch_delete_after_days.php │ ├── rs_batch_move.php │ ├── rs_batch_stat.php │ ├── rs_bucket_domains.php │ ├── rs_buckets.php │ ├── rs_change_mime.php │ ├── rs_change_type.php │ ├── rs_copy.php │ ├── rs_delete.php │ ├── rs_delete_after_days.php │ ├── rs_download_urls.php │ ├── rs_fetch.php │ ├── rs_move.php │ ├── rs_prefetch.php │ ├── rs_stat.php │ ├── rsf_list_bucket.php │ ├── rsf_list_files.php │ ├── saveas.php │ ├── upload_and_callback.php │ ├── upload_and_pfop.php │ ├── upload_mgr_init.php │ ├── upload_multi_demos.php │ ├── upload_simple_file.php │ ├── upload_tokens.php │ └── upload_verify_callback.php │ ├── phpunit.xml.dist │ ├── src │ └── Qiniu │ │ ├── Auth.php │ │ ├── Cdn │ │ └── CdnManager.php │ │ ├── Config.php │ │ ├── Etag.php │ │ ├── Http │ │ ├── Client.php │ │ ├── Error.php │ │ ├── Request.php │ │ └── Response.php │ │ ├── Processing │ │ ├── ImageUrlBuilder.php │ │ ├── Operation.php │ │ └── PersistentFop.php │ │ ├── Storage │ │ ├── BucketManager.php │ │ ├── FormUploader.php │ │ ├── ResumeUploader.php │ │ └── UploadManager.php │ │ ├── Zone.php │ │ └── functions.php │ ├── test-env.sh │ └── tests │ ├── Qiniu │ └── Tests │ │ ├── AuthTest.php │ │ ├── Base64Test.php │ │ ├── BucketTest.php │ │ ├── CdnManagerTest.php │ │ ├── Crc32Test.php │ │ ├── DownloadTest.php │ │ ├── EtagTest.php │ │ ├── FopTest.php │ │ ├── FormUpTest.php │ │ ├── HttpTest.php │ │ ├── ImageUrlBuilderTest.php │ │ ├── PfopTest.php │ │ ├── ResumeUpTest.php │ │ └── ZoneTest.php │ └── bootstrap.php ├── sabberworm └── php-css-parser │ ├── CHANGELOG.md │ ├── Doxyfile │ ├── README.md │ ├── composer.json │ ├── lib │ └── Sabberworm │ │ └── CSS │ │ ├── CSSList │ │ ├── AtRuleBlockList.php │ │ ├── CSSBlockList.php │ │ ├── CSSList.php │ │ ├── Document.php │ │ └── KeyFrame.php │ │ ├── OutputFormat.php │ │ ├── Parser.php │ │ ├── Parsing │ │ ├── OutputException.php │ │ └── UnexpectedTokenException.php │ │ ├── Property │ │ ├── AtRule.php │ │ ├── CSSNamespace.php │ │ ├── Charset.php │ │ ├── Import.php │ │ └── Selector.php │ │ ├── Renderable.php │ │ ├── Rule │ │ └── Rule.php │ │ ├── RuleSet │ │ ├── AtRuleSet.php │ │ ├── DeclarationBlock.php │ │ └── RuleSet.php │ │ ├── Settings.php │ │ └── Value │ │ ├── CSSFunction.php │ │ ├── Color.php │ │ ├── PrimitiveValue.php │ │ ├── RuleValueList.php │ │ ├── Size.php │ │ ├── String.php │ │ ├── URL.php │ │ ├── Value.php │ │ └── ValueList.php │ ├── phpunit.xml │ └── tests │ ├── Sabberworm │ └── CSS │ │ ├── OutputFormatTest.php │ │ ├── ParserTest.php │ │ └── RuleSet │ │ ├── DeclarationBlockTest.php │ │ └── LenientParsingTest.php │ ├── bootstrap.php │ ├── files │ ├── -end-token-2.css │ ├── -end-token.css │ ├── -fault-tolerance.css │ ├── -tobedone.css │ ├── 1readme.css │ ├── 2readme.css │ ├── atrules.css │ ├── case-insensitivity.css │ ├── colortest.css │ ├── comments.css │ ├── create-shorthands.css │ ├── docuwiki.css │ ├── expand-shorthands.css │ ├── functions.css │ ├── ie.css │ ├── important.css │ ├── inner-color.css │ ├── namespaces.css │ ├── nested.css │ ├── slashed.css │ ├── specificity.css │ ├── unicode.css │ ├── values.css │ ├── webkit.css │ └── whitespace.css │ ├── phpunit.xml │ └── quickdump.php └── topthink ├── think-captcha ├── LICENSE ├── README.md ├── assets │ ├── bgs │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ └── 8.jpg │ ├── ttfs │ │ ├── 1.ttf │ │ ├── 2.ttf │ │ ├── 3.ttf │ │ ├── 4.ttf │ │ ├── 5.ttf │ │ └── 6.ttf │ └── zhttfs │ │ └── 1.ttf ├── composer.json └── src │ ├── Captcha.php │ ├── CaptchaController.php │ └── helper.php ├── think-helper ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Arr.php │ ├── Hash.php │ ├── Str.php │ ├── Time.php │ ├── hash │ ├── Bcrypt.php │ └── Md5.php │ └── helper.php └── think-image ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Image.php └── image │ ├── Exception.php │ └── gif │ ├── Decoder.php │ ├── Encoder.php │ └── Gif.php └── tests ├── CropTest.php ├── FlipTest.php ├── InfoTest.php ├── RotateTest.php ├── TestCase.php ├── TextTest.php ├── ThumbTest.php ├── WaterTest.php ├── autoload.php └── images ├── test.bmp ├── test.gif ├── test.jpg ├── test.png └── test.ttf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/README.md -------------------------------------------------------------------------------- /app/admin/annotation/AdminMenuAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/annotation/AdminMenuAnnotation.php -------------------------------------------------------------------------------- /app/admin/api/NavApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/api/NavApi.php -------------------------------------------------------------------------------- /app/admin/api/NavMenuApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/api/NavMenuApi.php -------------------------------------------------------------------------------- /app/admin/api/SlideApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/api/SlideApi.php -------------------------------------------------------------------------------- /app/admin/controller/AppController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/AppController.php -------------------------------------------------------------------------------- /app/admin/controller/ApplyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/ApplyController.php -------------------------------------------------------------------------------- /app/admin/controller/DialogController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/DialogController.php -------------------------------------------------------------------------------- /app/admin/controller/DownloadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/DownloadController.php -------------------------------------------------------------------------------- /app/admin/controller/HookController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/HookController.php -------------------------------------------------------------------------------- /app/admin/controller/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/IndexController.php -------------------------------------------------------------------------------- /app/admin/controller/LinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/LinkController.php -------------------------------------------------------------------------------- /app/admin/controller/MailerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/MailerController.php -------------------------------------------------------------------------------- /app/admin/controller/MainController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/MainController.php -------------------------------------------------------------------------------- /app/admin/controller/MembersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/MembersController.php -------------------------------------------------------------------------------- /app/admin/controller/MenuController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/MenuController.php -------------------------------------------------------------------------------- /app/admin/controller/NavController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/NavController.php -------------------------------------------------------------------------------- /app/admin/controller/NavMenuController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/NavMenuController.php -------------------------------------------------------------------------------- /app/admin/controller/PluginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/PluginController.php -------------------------------------------------------------------------------- /app/admin/controller/PublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/PublicController.php -------------------------------------------------------------------------------- /app/admin/controller/RbacController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/RbacController.php -------------------------------------------------------------------------------- /app/admin/controller/RecycleBinController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/RecycleBinController.php -------------------------------------------------------------------------------- /app/admin/controller/ReportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/ReportController.php -------------------------------------------------------------------------------- /app/admin/controller/RouteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/RouteController.php -------------------------------------------------------------------------------- /app/admin/controller/SettingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/SettingController.php -------------------------------------------------------------------------------- /app/admin/controller/SlideController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/SlideController.php -------------------------------------------------------------------------------- /app/admin/controller/SlideItemController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/SlideItemController.php -------------------------------------------------------------------------------- /app/admin/controller/StorageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/StorageController.php -------------------------------------------------------------------------------- /app/admin/controller/SystemsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/SystemsController.php -------------------------------------------------------------------------------- /app/admin/controller/ThemeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/ThemeController.php -------------------------------------------------------------------------------- /app/admin/controller/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/controller/UserController.php -------------------------------------------------------------------------------- /app/admin/lang/en-us.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/lang/en-us.php -------------------------------------------------------------------------------- /app/admin/lang/en-us/admin_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/lang/en-us/admin_menu.php -------------------------------------------------------------------------------- /app/admin/lang/en-us/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/lang/en-us/common.php -------------------------------------------------------------------------------- /app/admin/lang/zh-cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/lang/zh-cn.php -------------------------------------------------------------------------------- /app/admin/lang/zh-cn/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/lang/zh-cn/admin.php -------------------------------------------------------------------------------- /app/admin/lang/zh-cn/admin_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/lang/zh-cn/admin_menu.php -------------------------------------------------------------------------------- /app/admin/lang/zh-cn/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/lang/zh-cn/common.php -------------------------------------------------------------------------------- /app/admin/model/AdminMenuModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/model/AdminMenuModel.php -------------------------------------------------------------------------------- /app/admin/model/HookModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/model/HookModel.php -------------------------------------------------------------------------------- /app/admin/model/HookPluginModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/model/HookPluginModel.php -------------------------------------------------------------------------------- /app/admin/model/LinkModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/model/LinkModel.php -------------------------------------------------------------------------------- /app/admin/model/NavMenuModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/model/NavMenuModel.php -------------------------------------------------------------------------------- /app/admin/model/NavModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/model/NavModel.php -------------------------------------------------------------------------------- /app/admin/model/OptionModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/model/OptionModel.php -------------------------------------------------------------------------------- /app/admin/model/PluginModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/model/PluginModel.php -------------------------------------------------------------------------------- /app/admin/model/RouteModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/model/RouteModel.php -------------------------------------------------------------------------------- /app/admin/model/SlideItemModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/model/SlideItemModel.php -------------------------------------------------------------------------------- /app/admin/model/SlideModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/model/SlideModel.php -------------------------------------------------------------------------------- /app/admin/model/ThemeModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/model/ThemeModel.php -------------------------------------------------------------------------------- /app/admin/service/ApiService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/service/ApiService.php -------------------------------------------------------------------------------- /app/admin/validate/AdminMenuValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/validate/AdminMenuValidate.php -------------------------------------------------------------------------------- /app/admin/validate/LinkValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/validate/LinkValidate.php -------------------------------------------------------------------------------- /app/admin/validate/RoleValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/validate/RoleValidate.php -------------------------------------------------------------------------------- /app/admin/validate/RouteValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/validate/RouteValidate.php -------------------------------------------------------------------------------- /app/admin/validate/SettingSiteValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/validate/SettingSiteValidate.php -------------------------------------------------------------------------------- /app/admin/validate/SlideValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/validate/SlideValidate.php -------------------------------------------------------------------------------- /app/admin/validate/StorageQiniuValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/validate/StorageQiniuValidate.php -------------------------------------------------------------------------------- /app/admin/validate/UserValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/admin/validate/UserValidate.php -------------------------------------------------------------------------------- /app/command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/command.php -------------------------------------------------------------------------------- /app/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/config.php -------------------------------------------------------------------------------- /app/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/database.php -------------------------------------------------------------------------------- /app/debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/debug.php -------------------------------------------------------------------------------- /app/portal/api/CategoryApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/api/CategoryApi.php -------------------------------------------------------------------------------- /app/portal/api/PageApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/api/PageApi.php -------------------------------------------------------------------------------- /app/portal/controller/AdminPageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/controller/AdminPageController.php -------------------------------------------------------------------------------- /app/portal/controller/AdminTagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/controller/AdminTagController.php -------------------------------------------------------------------------------- /app/portal/controller/ArticleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/controller/ArticleController.php -------------------------------------------------------------------------------- /app/portal/controller/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/controller/IndexController.php -------------------------------------------------------------------------------- /app/portal/controller/ListController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/controller/ListController.php -------------------------------------------------------------------------------- /app/portal/controller/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/controller/PageController.php -------------------------------------------------------------------------------- /app/portal/controller/PostedController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/controller/PostedController.php -------------------------------------------------------------------------------- /app/portal/controller/SearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/controller/SearchController.php -------------------------------------------------------------------------------- /app/portal/controller/TagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/controller/TagController.php -------------------------------------------------------------------------------- /app/portal/controller/TestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/controller/TestController.php -------------------------------------------------------------------------------- /app/portal/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/hooks.php -------------------------------------------------------------------------------- /app/portal/lang/en-us.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/lang/en-us.php -------------------------------------------------------------------------------- /app/portal/lang/en-us/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/lang/en-us/common.php -------------------------------------------------------------------------------- /app/portal/lang/zh-cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/lang/zh-cn.php -------------------------------------------------------------------------------- /app/portal/lang/zh-cn/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/lang/zh-cn/common.php -------------------------------------------------------------------------------- /app/portal/lang/zh-cn/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/lang/zh-cn/home.php -------------------------------------------------------------------------------- /app/portal/model/PortalCategoryModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/model/PortalCategoryModel.php -------------------------------------------------------------------------------- /app/portal/model/PortalPostModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/model/PortalPostModel.php -------------------------------------------------------------------------------- /app/portal/model/PortalTagModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/model/PortalTagModel.php -------------------------------------------------------------------------------- /app/portal/model/UserModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/model/UserModel.php -------------------------------------------------------------------------------- /app/portal/nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/nav.php -------------------------------------------------------------------------------- /app/portal/service/ApiService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/service/ApiService.php -------------------------------------------------------------------------------- /app/portal/service/PostService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/service/PostService.php -------------------------------------------------------------------------------- /app/portal/taglib/Portal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/taglib/Portal.php -------------------------------------------------------------------------------- /app/portal/url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/url.php -------------------------------------------------------------------------------- /app/portal/user_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/portal/user_action.php -------------------------------------------------------------------------------- /app/release.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/release.php -------------------------------------------------------------------------------- /app/route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/route.php -------------------------------------------------------------------------------- /app/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/tags.php -------------------------------------------------------------------------------- /app/user/controller/AdminAssetController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/AdminAssetController.php -------------------------------------------------------------------------------- /app/user/controller/AdminIndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/AdminIndexController.php -------------------------------------------------------------------------------- /app/user/controller/AdminOauthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/AdminOauthController.php -------------------------------------------------------------------------------- /app/user/controller/AssetController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/AssetController.php -------------------------------------------------------------------------------- /app/user/controller/CertificateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/CertificateController.php -------------------------------------------------------------------------------- /app/user/controller/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/CommentController.php -------------------------------------------------------------------------------- /app/user/controller/FavoriteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/FavoriteController.php -------------------------------------------------------------------------------- /app/user/controller/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/IndexController.php -------------------------------------------------------------------------------- /app/user/controller/InstallController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/InstallController.php -------------------------------------------------------------------------------- /app/user/controller/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/LoginController.php -------------------------------------------------------------------------------- /app/user/controller/PayController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/PayController.php -------------------------------------------------------------------------------- /app/user/controller/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/ProfileController.php -------------------------------------------------------------------------------- /app/user/controller/PublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/PublicController.php -------------------------------------------------------------------------------- /app/user/controller/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/RegisterController.php -------------------------------------------------------------------------------- /app/user/controller/TubeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/TubeController.php -------------------------------------------------------------------------------- /app/user/controller/UeditorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/controller/UeditorController.php -------------------------------------------------------------------------------- /app/user/lang/en-us.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/lang/en-us.php -------------------------------------------------------------------------------- /app/user/lang/en-us/admin_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/lang/en-us/admin_menu.php -------------------------------------------------------------------------------- /app/user/lang/zh-cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/lang/zh-cn.php -------------------------------------------------------------------------------- /app/user/lang/zh-cn/admin_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/lang/zh-cn/admin_menu.php -------------------------------------------------------------------------------- /app/user/model/AssetModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/model/AssetModel.php -------------------------------------------------------------------------------- /app/user/model/CommentModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/model/CommentModel.php -------------------------------------------------------------------------------- /app/user/model/UserFavoriteModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/model/UserFavoriteModel.php -------------------------------------------------------------------------------- /app/user/model/UserModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/model/UserModel.php -------------------------------------------------------------------------------- /app/user/model/UserPostedModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/model/UserPostedModel.php -------------------------------------------------------------------------------- /app/user/url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/url.php -------------------------------------------------------------------------------- /app/user/user_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/user_action.php -------------------------------------------------------------------------------- /app/user/validate/FavoriteValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/validate/FavoriteValidate.php -------------------------------------------------------------------------------- /app/user/validate/UserArticlesValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/app/user/validate/UserArticlesValidate.php -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/assets/js/app.js -------------------------------------------------------------------------------- /assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/assets/js/bootstrap.js -------------------------------------------------------------------------------- /assets/js/components/Example.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/assets/js/components/Example.vue -------------------------------------------------------------------------------- /assets/js/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/assets/js/helper.js -------------------------------------------------------------------------------- /assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/assets/sass/app.scss -------------------------------------------------------------------------------- /data/conf/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/data/conf/database.php -------------------------------------------------------------------------------- /data/conf/route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/data/conf/route.php -------------------------------------------------------------------------------- /data/install.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/lang/zh-cn/admin_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/data/lang/zh-cn/admin_menu.php -------------------------------------------------------------------------------- /isign-php.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/isign-php.sql -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/.well-known/pki-validation/fileauth.txt: -------------------------------------------------------------------------------- 1 | 3VPRvgtksZT0pof4PnNZJT8OE8gsUCMx -------------------------------------------------------------------------------- /public/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/about.html -------------------------------------------------------------------------------- /public/adminer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/adminer.php -------------------------------------------------------------------------------- /public/dist/app-info-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/dist/app-info-parser.js -------------------------------------------------------------------------------- /public/getudid.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/getudid.mobileconfig -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/index.php -------------------------------------------------------------------------------- /public/ios_describe/.gitignore: -------------------------------------------------------------------------------- 1 | *.mobileconfig -------------------------------------------------------------------------------- /public/ios_describe_aoi/.gitignore: -------------------------------------------------------------------------------- 1 | *.mobileconfig -------------------------------------------------------------------------------- /public/lib/CFPropertyList/CFPropertyList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/CFPropertyList/CFPropertyList.php -------------------------------------------------------------------------------- /public/lib/CFPropertyList/CFType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/CFPropertyList/CFType.php -------------------------------------------------------------------------------- /public/lib/CFPropertyList/CFTypeDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/CFPropertyList/CFTypeDetector.php -------------------------------------------------------------------------------- /public/lib/CFPropertyList/IOException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/CFPropertyList/IOException.php -------------------------------------------------------------------------------- /public/lib/CFPropertyList/PListException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/CFPropertyList/PListException.php -------------------------------------------------------------------------------- /public/lib/alipay/AopSdk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/alipay/AopSdk.php -------------------------------------------------------------------------------- /public/lib/alipay/aop/AopClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/alipay/aop/AopClient.php -------------------------------------------------------------------------------- /public/lib/alipay/aop/AopEncrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/alipay/aop/AopEncrypt.php -------------------------------------------------------------------------------- /public/lib/alipay/aop/EncryptParseItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/alipay/aop/EncryptParseItem.php -------------------------------------------------------------------------------- /public/lib/alipay/aop/EncryptResponseData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/alipay/aop/EncryptResponseData.php -------------------------------------------------------------------------------- /public/lib/alipay/aop/SignData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/alipay/aop/SignData.php -------------------------------------------------------------------------------- /public/lib/alipay/aop/test/TestImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/alipay/aop/test/TestImage.php -------------------------------------------------------------------------------- /public/lib/alipay/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/alipay/config.php -------------------------------------------------------------------------------- /public/lib/alipay/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/alipay/index.php -------------------------------------------------------------------------------- /public/lib/alipay/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/alipay/log.txt -------------------------------------------------------------------------------- /public/lib/alipay/lotusphp_runtime/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/alipay/lotusphp_runtime/Config.php -------------------------------------------------------------------------------- /public/lib/alipay/lotusphp_runtime/DB/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/lib/alipay/lotusphp_runtime/DB/Db.php -------------------------------------------------------------------------------- /public/lib/alipay/lotusphp_runtime/DB/QueryEngine/TableDataGateway/DbTableRelation.php: -------------------------------------------------------------------------------- 1 | '您好,插件!']; -------------------------------------------------------------------------------- /public/plugins/demo/model/PluginDemoModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/demo/model/PluginDemoModel.php -------------------------------------------------------------------------------- /public/plugins/demo/view/admin_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/demo/view/admin_index.html -------------------------------------------------------------------------------- /public/plugins/demo/view/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/demo/view/index.html -------------------------------------------------------------------------------- /public/plugins/demo/view/public/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/demo/view/public/head.html -------------------------------------------------------------------------------- /public/plugins/demo/view/public/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/demo/view/public/scripts.html -------------------------------------------------------------------------------- /public/plugins/demo/view/widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/demo/view/widget.html -------------------------------------------------------------------------------- /public/plugins/ipaphp/AuthKey_7ZHWJ7UDZQ.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/ipaphp/AuthKey_7ZHWJ7UDZQ.p8 -------------------------------------------------------------------------------- /public/plugins/ipaphp/AuthKey_D7RX7TAVYM.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/ipaphp/AuthKey_D7RX7TAVYM.p8 -------------------------------------------------------------------------------- /public/plugins/ipaphp/b.mobileprovision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/ipaphp/b.mobileprovision -------------------------------------------------------------------------------- /public/plugins/ipaphp/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/ipaphp/composer.json -------------------------------------------------------------------------------- /public/plugins/ipaphp/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/ipaphp/composer.lock -------------------------------------------------------------------------------- /public/plugins/ipaphp/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/ipaphp/test.php -------------------------------------------------------------------------------- /public/plugins/ipaphp/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/ipaphp/vendor/autoload.php -------------------------------------------------------------------------------- /public/plugins/ipaphp/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/ipaphp/vendor/composer/LICENSE -------------------------------------------------------------------------------- /public/plugins/mobile_code_demo/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/mobile_code_demo/config.php -------------------------------------------------------------------------------- /public/plugins/qiniu/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/CHANGELOG.md -------------------------------------------------------------------------------- /public/plugins/qiniu/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/CONTRIBUTING.md -------------------------------------------------------------------------------- /public/plugins/qiniu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/LICENSE -------------------------------------------------------------------------------- /public/plugins/qiniu/QiniuPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/QiniuPlugin.php -------------------------------------------------------------------------------- /public/plugins/qiniu/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/autoload.php -------------------------------------------------------------------------------- /public/plugins/qiniu/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/composer.json -------------------------------------------------------------------------------- /public/plugins/qiniu/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/config.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lib/Qiniu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lib/Qiniu.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/README.md -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/cdn_get_flux.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/cdn_get_flux.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/pfop_mkzip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/pfop_mkzip.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/pfop_vframe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/pfop_vframe.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/pfop_watermark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/pfop_watermark.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/php-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/php-logo.png -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/prefop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/prefop.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/qetag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/qetag.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/rs_batch_copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/rs_batch_copy.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/rs_batch_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/rs_batch_delete.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/rs_batch_move.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/rs_batch_move.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/rs_batch_stat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/rs_batch_stat.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/rs_buckets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/rs_buckets.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/rs_change_mime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/rs_change_mime.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/rs_change_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/rs_change_type.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/rs_copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/rs_copy.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/rs_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/rs_delete.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/rs_fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/rs_fetch.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/rs_move.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/rs_move.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/rs_prefetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/rs_prefetch.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/rs_stat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/rs_stat.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/rsf_list_bucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/rsf_list_bucket.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/rsf_list_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/rsf_list_files.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/saveas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/saveas.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/upload_and_pfop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/upload_and_pfop.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/upload_mgr_init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/upload_mgr_init.php -------------------------------------------------------------------------------- /public/plugins/qiniu/lizi/upload_tokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/lizi/upload_tokens.php -------------------------------------------------------------------------------- /public/plugins/qiniu/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/phpunit.xml.dist -------------------------------------------------------------------------------- /public/plugins/qiniu/src/Qiniu/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/src/Qiniu/Auth.php -------------------------------------------------------------------------------- /public/plugins/qiniu/src/Qiniu/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/src/Qiniu/Config.php -------------------------------------------------------------------------------- /public/plugins/qiniu/src/Qiniu/Etag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/src/Qiniu/Etag.php -------------------------------------------------------------------------------- /public/plugins/qiniu/src/Qiniu/Http/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/src/Qiniu/Http/Error.php -------------------------------------------------------------------------------- /public/plugins/qiniu/src/Qiniu/Zone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/src/Qiniu/Zone.php -------------------------------------------------------------------------------- /public/plugins/qiniu/src/Qiniu/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/src/Qiniu/functions.php -------------------------------------------------------------------------------- /public/plugins/qiniu/test-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/test-env.sh -------------------------------------------------------------------------------- /public/plugins/qiniu/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/qiniu/tests/bootstrap.php -------------------------------------------------------------------------------- /public/plugins/switch_theme_demo/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/switch_theme_demo/config.php -------------------------------------------------------------------------------- /public/plugins/system_info/view/widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/plugins/system_info/view/widget.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/router.php -------------------------------------------------------------------------------- /public/sign/ca-bundle.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/sign/ca-bundle.pem -------------------------------------------------------------------------------- /public/sign/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/sign/cert.pem -------------------------------------------------------------------------------- /public/sign/chain.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/sign/chain.pem -------------------------------------------------------------------------------- /public/sign/fullchain.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/sign/fullchain.pem -------------------------------------------------------------------------------- /public/sign/mbaike.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/sign/mbaike.crt -------------------------------------------------------------------------------- /public/sign/mbaikenopass.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/sign/mbaikenopass.key -------------------------------------------------------------------------------- /public/sign/privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/sign/privkey.pem -------------------------------------------------------------------------------- /public/spcer/22certificate.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/spcer/22certificate.pem -------------------------------------------------------------------------------- /public/spcer/22key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/spcer/22key.pem -------------------------------------------------------------------------------- /public/spcer/25certificate.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/spcer/25certificate.pem -------------------------------------------------------------------------------- /public/spcer/25key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/spcer/25key.pem -------------------------------------------------------------------------------- /public/spcer/26certificate.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/spcer/26certificate.pem -------------------------------------------------------------------------------- /public/spcer/26key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/spcer/26key.pem -------------------------------------------------------------------------------- /public/static/images/headicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/images/headicon.png -------------------------------------------------------------------------------- /public/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/images/logo.png -------------------------------------------------------------------------------- /public/static/install/css/install.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/install/css/install.css -------------------------------------------------------------------------------- /public/static/install/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/install/images/bg.png -------------------------------------------------------------------------------- /public/static/install/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/install/images/loading.gif -------------------------------------------------------------------------------- /public/static/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/admin.js -------------------------------------------------------------------------------- /public/static/js/ajaxForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/ajaxForm.js -------------------------------------------------------------------------------- /public/static/js/ajaxfileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/ajaxfileupload.js -------------------------------------------------------------------------------- /public/static/js/animate/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/animate/animate.css -------------------------------------------------------------------------------- /public/static/js/artDialog/artDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/artDialog/artDialog.js -------------------------------------------------------------------------------- /public/static/js/artDialog/iframeTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/artDialog/iframeTools.js -------------------------------------------------------------------------------- /public/static/js/artDialog/iframeTools.old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/artDialog/iframeTools.old.js -------------------------------------------------------------------------------- /public/static/js/artDialog/skins/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/artDialog/skins/blue.css -------------------------------------------------------------------------------- /public/static/js/artDialog/skins/blue/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/artDialog/skins/blue/bg.png -------------------------------------------------------------------------------- /public/static/js/artDialog/skins/blue/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/artDialog/skins/blue/bg2.png -------------------------------------------------------------------------------- /public/static/js/artDialog/skins/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/artDialog/skins/default.css -------------------------------------------------------------------------------- /public/static/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/base.js -------------------------------------------------------------------------------- /public/static/js/base64.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/base64.min.js -------------------------------------------------------------------------------- /public/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/static/js/colorpicker/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/colorpicker/images/blank.gif -------------------------------------------------------------------------------- /public/static/js/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/cookie.js -------------------------------------------------------------------------------- /public/static/js/datePicker/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/datePicker/bg.png -------------------------------------------------------------------------------- /public/static/js/datePicker/datePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/datePicker/datePicker.js -------------------------------------------------------------------------------- /public/static/js/datePicker/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/datePicker/style.css -------------------------------------------------------------------------------- /public/static/js/draggable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/draggable.js -------------------------------------------------------------------------------- /public/static/js/dragula/dragula.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/dragula/dragula.min.css -------------------------------------------------------------------------------- /public/static/js/dragula/dragula.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/dragula/dragula.min.js -------------------------------------------------------------------------------- /public/static/js/echarts/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/echarts/echarts.min.js -------------------------------------------------------------------------------- /public/static/js/frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/frontend.js -------------------------------------------------------------------------------- /public/static/js/imgready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/imgready.js -------------------------------------------------------------------------------- /public/static/js/jcrop/css/Jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/jcrop/css/Jcrop.gif -------------------------------------------------------------------------------- /public/static/js/jcrop/js/jcrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/jcrop/js/jcrop.js -------------------------------------------------------------------------------- /public/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/jquery.js -------------------------------------------------------------------------------- /public/static/js/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layer/layer.js -------------------------------------------------------------------------------- /public/static/js/layer/mobile/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layer/mobile/layer.js -------------------------------------------------------------------------------- /public/static/js/layer/mobile/need/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layer/mobile/need/layer.css -------------------------------------------------------------------------------- /public/static/js/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layer/skin/default/icon.png -------------------------------------------------------------------------------- /public/static/js/layer/skin/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layer/skin/default/layer.css -------------------------------------------------------------------------------- /public/static/js/layui/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/css/layui.css -------------------------------------------------------------------------------- /public/static/js/layui/css/layui.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/css/layui.mobile.css -------------------------------------------------------------------------------- /public/static/js/layui/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/css/modules/code.css -------------------------------------------------------------------------------- /public/static/js/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/font/iconfont.eot -------------------------------------------------------------------------------- /public/static/js/layui/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/font/iconfont.svg -------------------------------------------------------------------------------- /public/static/js/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /public/static/js/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/font/iconfont.woff -------------------------------------------------------------------------------- /public/static/js/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/0.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/1.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/10.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/11.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/12.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/13.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/14.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/15.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/16.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/17.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/18.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/19.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/2.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/20.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/21.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/22.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/23.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/24.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/25.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/26.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/27.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/28.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/29.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/3.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/30.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/31.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/32.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/33.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/34.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/35.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/36.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/37.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/38.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/39.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/4.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/40.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/41.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/42.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/43.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/44.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/45.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/46.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/47.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/48.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/49.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/5.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/50.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/51.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/52.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/53.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/54.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/55.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/56.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/57.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/58.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/59.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/6.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/60.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/61.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/62.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/63.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/64.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/65.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/66.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/67.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/68.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/69.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/7.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/70.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/71.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/8.gif -------------------------------------------------------------------------------- /public/static/js/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/images/face/9.gif -------------------------------------------------------------------------------- /public/static/js/layui/lay/modules/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/lay/modules/code.js -------------------------------------------------------------------------------- /public/static/js/layui/lay/modules/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/lay/modules/element.js -------------------------------------------------------------------------------- /public/static/js/layui/lay/modules/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/lay/modules/flow.js -------------------------------------------------------------------------------- /public/static/js/layui/lay/modules/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/lay/modules/form.js -------------------------------------------------------------------------------- /public/static/js/layui/lay/modules/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/lay/modules/jquery.js -------------------------------------------------------------------------------- /public/static/js/layui/lay/modules/laydate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/lay/modules/laydate.js -------------------------------------------------------------------------------- /public/static/js/layui/lay/modules/layedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/lay/modules/layedit.js -------------------------------------------------------------------------------- /public/static/js/layui/lay/modules/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/lay/modules/layer.js -------------------------------------------------------------------------------- /public/static/js/layui/lay/modules/laypage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/lay/modules/laypage.js -------------------------------------------------------------------------------- /public/static/js/layui/lay/modules/laytpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/lay/modules/laytpl.js -------------------------------------------------------------------------------- /public/static/js/layui/lay/modules/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/lay/modules/mobile.js -------------------------------------------------------------------------------- /public/static/js/layui/lay/modules/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/lay/modules/table.js -------------------------------------------------------------------------------- /public/static/js/layui/lay/modules/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/lay/modules/tree.js -------------------------------------------------------------------------------- /public/static/js/layui/lay/modules/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/lay/modules/upload.js -------------------------------------------------------------------------------- /public/static/js/layui/lay/modules/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/lay/modules/util.js -------------------------------------------------------------------------------- /public/static/js/layui/layui.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/layui.all.js -------------------------------------------------------------------------------- /public/static/js/layui/layui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/layui/layui.js -------------------------------------------------------------------------------- /public/static/js/lazyload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/lazyload.js -------------------------------------------------------------------------------- /public/static/js/masonry/masonry.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/masonry/masonry.pkgd.min.js -------------------------------------------------------------------------------- /public/static/js/noty/noty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/noty/noty.js -------------------------------------------------------------------------------- /public/static/js/noty3/noty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/noty3/noty.css -------------------------------------------------------------------------------- /public/static/js/noty3/noty.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/noty3/noty.min.js -------------------------------------------------------------------------------- /public/static/js/plupload/Moxie.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/plupload/Moxie.swf -------------------------------------------------------------------------------- /public/static/js/plupload/Moxie.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/plupload/Moxie.xap -------------------------------------------------------------------------------- /public/static/js/plupload/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/plupload/i18n/en.js -------------------------------------------------------------------------------- /public/static/js/plupload/i18n/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/plupload/i18n/zh_CN.js -------------------------------------------------------------------------------- /public/static/js/plupload/i18n/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/plupload/i18n/zh_TW.js -------------------------------------------------------------------------------- /public/static/js/tabs/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/tabs/tabs.js -------------------------------------------------------------------------------- /public/static/js/treeTable/treeTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/treeTable/treeTable.css -------------------------------------------------------------------------------- /public/static/js/treeTable/treeTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/treeTable/treeTable.js -------------------------------------------------------------------------------- /public/static/js/treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/treeview.js -------------------------------------------------------------------------------- /public/static/js/ueditor/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/ueditor/config.json -------------------------------------------------------------------------------- /public/static/js/ueditor/dialogs/help/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/ueditor/dialogs/help/help.js -------------------------------------------------------------------------------- /public/static/js/ueditor/dialogs/internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/ueditor/dialogs/internal.js -------------------------------------------------------------------------------- /public/static/js/ueditor/dialogs/map/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/ueditor/dialogs/map/map.html -------------------------------------------------------------------------------- /public/static/js/ueditor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/ueditor/index.html -------------------------------------------------------------------------------- /public/static/js/ueditor/lang/en/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/ueditor/lang/en/en.js -------------------------------------------------------------------------------- /public/static/js/ueditor/lang/zh-cn/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/ueditor/lang/zh-cn/zh-cn.js -------------------------------------------------------------------------------- /public/static/js/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /public/static/js/ueditor/ueditor.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/ueditor/ueditor.all.min.js -------------------------------------------------------------------------------- /public/static/js/ueditor/ueditor.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/ueditor/ueditor.config.js -------------------------------------------------------------------------------- /public/static/js/ueditor/ueditor.parse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/ueditor/ueditor.parse.min.js -------------------------------------------------------------------------------- /public/static/js/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/validate.js -------------------------------------------------------------------------------- /public/static/js/webuploader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/webuploader/README.md -------------------------------------------------------------------------------- /public/static/js/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/webuploader/Uploader.swf -------------------------------------------------------------------------------- /public/static/js/webuploader/webuploader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/webuploader/webuploader.css -------------------------------------------------------------------------------- /public/static/js/wind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/wind.js -------------------------------------------------------------------------------- /public/static/js/xd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/xd.js -------------------------------------------------------------------------------- /public/static/js/zipjs/deflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/deflate.js -------------------------------------------------------------------------------- /public/static/js/zipjs/inflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/inflate.js -------------------------------------------------------------------------------- /public/static/js/zipjs/mime-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/mime-types.js -------------------------------------------------------------------------------- /public/static/js/zipjs/pako/codecs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/pako/codecs.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/arraybuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/arraybuffer.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/base64.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/config.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/dataview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/dataview.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/lorem.txt -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/lorem.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/lorem.zip -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/lorem2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/lorem2.zip -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/lorem_store.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/lorem_store.zip -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test1.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test1.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test10.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test10.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test11.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test11.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test12.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test12.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test13.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test13.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test14.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test14.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test14.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test15.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test15.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test16.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test16.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test17.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test17.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test18.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test18.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test18.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test2.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test2.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test20.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test20.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test3.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test3.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test4.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test4.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test5.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test5.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test6.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test6.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test7.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test7.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test8.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test8.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test9.html -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/test9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/test9.js -------------------------------------------------------------------------------- /public/static/js/zipjs/tests/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/tests/util.js -------------------------------------------------------------------------------- /public/static/js/zipjs/z-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/z-worker.js -------------------------------------------------------------------------------- /public/static/js/zipjs/zip-ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/zip-ext.js -------------------------------------------------------------------------------- /public/static/js/zipjs/zip-fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/zip-fs.js -------------------------------------------------------------------------------- /public/static/js/zipjs/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/zip.js -------------------------------------------------------------------------------- /public/static/js/zipjs/zlib-asm/codecs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/static/js/zipjs/zlib-asm/codecs.js -------------------------------------------------------------------------------- /public/themes/97013266/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/manifest.json -------------------------------------------------------------------------------- /public/themes/97013266/portal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/about.html -------------------------------------------------------------------------------- /public/themes/97013266/portal/about1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/about1.html -------------------------------------------------------------------------------- /public/themes/97013266/portal/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/article.html -------------------------------------------------------------------------------- /public/themes/97013266/portal/article.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/article.json -------------------------------------------------------------------------------- /public/themes/97013266/portal/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/contact.html -------------------------------------------------------------------------------- /public/themes/97013266/portal/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/contact.json -------------------------------------------------------------------------------- /public/themes/97013266/portal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/index.html -------------------------------------------------------------------------------- /public/themes/97013266/portal/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/index.json -------------------------------------------------------------------------------- /public/themes/97013266/portal/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/list.html -------------------------------------------------------------------------------- /public/themes/97013266/portal/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/list.json -------------------------------------------------------------------------------- /public/themes/97013266/portal/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/page.html -------------------------------------------------------------------------------- /public/themes/97013266/portal/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/page.json -------------------------------------------------------------------------------- /public/themes/97013266/portal/posted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/posted.html -------------------------------------------------------------------------------- /public/themes/97013266/portal/protocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/protocol.html -------------------------------------------------------------------------------- /public/themes/97013266/portal/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/search.html -------------------------------------------------------------------------------- /public/themes/97013266/portal/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/search.json -------------------------------------------------------------------------------- /public/themes/97013266/portal/supposted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/supposted.html -------------------------------------------------------------------------------- /public/themes/97013266/portal/supposted1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/portal/supposted1.html -------------------------------------------------------------------------------- /public/themes/97013266/public/assets/js/Q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/assets/js/Q.js -------------------------------------------------------------------------------- /public/themes/97013266/public/assets/js/slippry.min.map: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/themes/97013266/public/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/banner.html -------------------------------------------------------------------------------- /public/themes/97013266/public/config.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/themes/97013266/public/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/config.json -------------------------------------------------------------------------------- /public/themes/97013266/public/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/footer.html -------------------------------------------------------------------------------- /public/themes/97013266/public/function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/function.html -------------------------------------------------------------------------------- /public/themes/97013266/public/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/head.html -------------------------------------------------------------------------------- /public/themes/97013266/public/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/nav.html -------------------------------------------------------------------------------- /public/themes/97013266/public/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/nav.json -------------------------------------------------------------------------------- /public/themes/97013266/public/nav_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/nav_new.html -------------------------------------------------------------------------------- /public/themes/97013266/public/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/scripts.html -------------------------------------------------------------------------------- /public/themes/97013266/public/static/fonts/fontawesome-webfont-4.6.3.svg: -------------------------------------------------------------------------------- 1 | 2 | 404找不到 -------------------------------------------------------------------------------- /public/themes/97013266/public/static/fonts/fontawesome-webfont-4.6.3.woff: -------------------------------------------------------------------------------- 1 | 2 | 404找不到 -------------------------------------------------------------------------------- /public/themes/97013266/public/static/fonts/montserrat/montserrat-bold-webfont.ttf: -------------------------------------------------------------------------------- 1 | 2 | 404找不到 -------------------------------------------------------------------------------- /public/themes/97013266/public/static/fonts/montserrat/montserrat-bold-webfont.woff: -------------------------------------------------------------------------------- 1 | 2 | 404找不到 -------------------------------------------------------------------------------- /public/themes/97013266/public/static/fonts/montserrat/montserrat-light-webfont.ttf: -------------------------------------------------------------------------------- 1 | 2 | 404找不到 -------------------------------------------------------------------------------- /public/themes/97013266/public/static/fonts/montserrat/montserrat-light-webfont.woff: -------------------------------------------------------------------------------- 1 | 2 | 404找不到 -------------------------------------------------------------------------------- /public/themes/97013266/public/static/fonts/montserrat/montserrat-light-webfont.woff2: -------------------------------------------------------------------------------- 1 | 2 | 404找不到 -------------------------------------------------------------------------------- /public/themes/97013266/public/static/fonts/open-sans/opensans-bold-webfont.ttf: -------------------------------------------------------------------------------- 1 | 2 | 404找不到 -------------------------------------------------------------------------------- /public/themes/97013266/public/static/fonts/open-sans/opensans-bold-webfont.woff: -------------------------------------------------------------------------------- 1 | 2 | 404找不到 -------------------------------------------------------------------------------- /public/themes/97013266/public/static/fonts/open-sans/opensans-regular-webfont.ttf: -------------------------------------------------------------------------------- 1 | 2 | 404找不到 -------------------------------------------------------------------------------- /public/themes/97013266/public/static/fonts/open-sans/opensans-regular-webfont.woff: -------------------------------------------------------------------------------- 1 | 2 | 404找不到 -------------------------------------------------------------------------------- /public/themes/97013266/public/static/fonts/themify.svg: -------------------------------------------------------------------------------- 1 | 2 | 404找不到 -------------------------------------------------------------------------------- /public/themes/97013266/public/static/js/1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/static/js/1.js -------------------------------------------------------------------------------- /public/themes/97013266/public/static/js/pc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/static/js/pc.js -------------------------------------------------------------------------------- /public/themes/97013266/public/tube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/tube.html -------------------------------------------------------------------------------- /public/themes/97013266/public/tube1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/tube1.html -------------------------------------------------------------------------------- /public/themes/97013266/public/uploads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/uploads.html -------------------------------------------------------------------------------- /public/themes/97013266/public/usernav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/public/usernav.html -------------------------------------------------------------------------------- /public/themes/97013266/user/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/user/index.html -------------------------------------------------------------------------------- /public/themes/97013266/user/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/user/login.html -------------------------------------------------------------------------------- /public/themes/97013266/user/profile/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/user/profile/edit.html -------------------------------------------------------------------------------- /public/themes/97013266/user/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/user/register.html -------------------------------------------------------------------------------- /public/themes/97013266/user/tube/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/user/tube/details.html -------------------------------------------------------------------------------- /public/themes/97013266/user/tube/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/user/tube/editor.html -------------------------------------------------------------------------------- /public/themes/97013266/user/tube/hebing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/user/tube/hebing.html -------------------------------------------------------------------------------- /public/themes/97013266/user/tube/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/user/tube/index.html -------------------------------------------------------------------------------- /public/themes/97013266/user/tube/index1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/97013266/user/tube/index1.html -------------------------------------------------------------------------------- /public/themes/admin_simpleboot3/admin/route/function.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/themes/simpleboot3/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/manifest.json -------------------------------------------------------------------------------- /public/themes/simpleboot3/portal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/portal/about.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/portal/about1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/portal/about1.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/portal/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/portal/article.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/portal/article.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/portal/article.json -------------------------------------------------------------------------------- /public/themes/simpleboot3/portal/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/portal/contact.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/portal/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/portal/contact.json -------------------------------------------------------------------------------- /public/themes/simpleboot3/portal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/portal/index.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/portal/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/portal/index.json -------------------------------------------------------------------------------- /public/themes/simpleboot3/portal/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/portal/list.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/portal/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/portal/list.json -------------------------------------------------------------------------------- /public/themes/simpleboot3/portal/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/portal/page.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/portal/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/portal/page.json -------------------------------------------------------------------------------- /public/themes/simpleboot3/portal/posted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/portal/posted.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/portal/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/portal/search.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/portal/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/portal/search.json -------------------------------------------------------------------------------- /public/themes/simpleboot3/public/assets/js/slippry.min.map: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/themes/simpleboot3/public/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/public/banner.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/public/config.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/themes/simpleboot3/public/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/public/config.json -------------------------------------------------------------------------------- /public/themes/simpleboot3/public/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/public/footer.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/public/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/public/head.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/public/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/public/nav.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/public/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/public/nav.json -------------------------------------------------------------------------------- /public/themes/simpleboot3/public/nav_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/public/nav_new.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/public/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/public/scripts.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/public/tube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/public/tube.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/public/tube1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/public/tube1.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/public/uploads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/public/uploads.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/public/usernav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/public/usernav.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/user/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/user/index.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/user/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/user/login.html -------------------------------------------------------------------------------- /public/themes/simpleboot3/user/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3/user/register.html -------------------------------------------------------------------------------- /public/themes/simpleboot3_new/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3_new/manifest.json -------------------------------------------------------------------------------- /public/themes/simpleboot3_new/public/assets/js/slippry.min.map: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/themes/simpleboot3_new/public/config.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/themes/simpleboot3_new/public/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3_new/public/nav.html -------------------------------------------------------------------------------- /public/themes/simpleboot3_new/public/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3_new/public/nav.json -------------------------------------------------------------------------------- /public/themes/simpleboot3_new/user/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3_new/user/index.html -------------------------------------------------------------------------------- /public/themes/simpleboot3_new/user/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/themes/simpleboot3_new/user/login.html -------------------------------------------------------------------------------- /public/thinkcmf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/thinkcmf.conf -------------------------------------------------------------------------------- /public/tools/AXMLPrinter2.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/tools/AXMLPrinter2.2.0.jar -------------------------------------------------------------------------------- /public/tools/AXMLPrinter2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/tools/AXMLPrinter2.jar -------------------------------------------------------------------------------- /public/tools/AXMLPrinter2.jar.bug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/public/tools/AXMLPrinter2.jar.bug -------------------------------------------------------------------------------- /public/upload/super_signature/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/upload/super_signature_ipa/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /simplewind/cmf/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/LICENSE.txt -------------------------------------------------------------------------------- /simplewind/cmf/behavior/AdminLangBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/behavior/AdminLangBehavior.php -------------------------------------------------------------------------------- /simplewind/cmf/behavior/HomeLangBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/behavior/HomeLangBehavior.php -------------------------------------------------------------------------------- /simplewind/cmf/behavior/InitHookBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/behavior/InitHookBehavior.php -------------------------------------------------------------------------------- /simplewind/cmf/behavior/LangBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/behavior/LangBehavior.php -------------------------------------------------------------------------------- /simplewind/cmf/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/common.php -------------------------------------------------------------------------------- /simplewind/cmf/controller/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/controller/BaseController.php -------------------------------------------------------------------------------- /simplewind/cmf/lang/en-us.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/lang/en-us.php -------------------------------------------------------------------------------- /simplewind/cmf/lang/zh-cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/lang/zh-cn.php -------------------------------------------------------------------------------- /simplewind/cmf/lib/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/lib/Auth.php -------------------------------------------------------------------------------- /simplewind/cmf/lib/Oauth2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/lib/Oauth2.php -------------------------------------------------------------------------------- /simplewind/cmf/lib/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/lib/Plugin.php -------------------------------------------------------------------------------- /simplewind/cmf/lib/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/lib/Storage.php -------------------------------------------------------------------------------- /simplewind/cmf/lib/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/lib/Upload.php -------------------------------------------------------------------------------- /simplewind/cmf/lib/storage/Local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/lib/storage/Local.php -------------------------------------------------------------------------------- /simplewind/cmf/lib/taglib/Cmf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/lib/taglib/Cmf.php -------------------------------------------------------------------------------- /simplewind/cmf/paginator/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/cmf/paginator/Bootstrap.php -------------------------------------------------------------------------------- /simplewind/extend/dir/Dir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/dir/Dir.php -------------------------------------------------------------------------------- /simplewind/extend/phpQuery/phpQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpQuery/phpQuery.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/CHANGELOG -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/INSTALL -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/LICENSE -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/README -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.4 2 | 2010100721 -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_1.dat -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_1.png -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_2.dat -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_2.png -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_3.dat -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_3.png -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_4.dat -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_4.png -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_5.dat -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_5.png -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_6.dat -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_6.png -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_7.dat -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_7.png -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_8.dat -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_8.png -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_9.dat -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/cache/frame_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/cache/frame_9.png -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/index.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/phpqrcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/phpqrcode.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/qrbitstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/qrbitstream.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/qrconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/qrconfig.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/qrconst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/qrconst.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/qrencode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/qrencode.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/qrimage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/qrimage.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/qrinput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/qrinput.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/qrlib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/qrlib.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/qrmask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/qrmask.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/qrrscode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/qrrscode.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/qrspec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/qrspec.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/qrsplit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/qrsplit.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/qrtools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/qrtools.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/tools/merge.bat: -------------------------------------------------------------------------------- 1 | php ./merge.php 2 | pause -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/tools/merge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/phpqrcode/tools/merge.php -------------------------------------------------------------------------------- /simplewind/extend/phpqrcode/tools/merge.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | php ./merge.php -------------------------------------------------------------------------------- /simplewind/extend/tree/Tree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/tree/Tree.php -------------------------------------------------------------------------------- /simplewind/extend/wxapp/aes/ErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/wxapp/aes/ErrorCode.php -------------------------------------------------------------------------------- /simplewind/extend/wxapp/aes/PKCS7Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/wxapp/aes/PKCS7Encoder.php -------------------------------------------------------------------------------- /simplewind/extend/wxapp/aes/Prpcrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/wxapp/aes/Prpcrypt.php -------------------------------------------------------------------------------- /simplewind/extend/wxapp/aes/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/extend/wxapp/aes/demo.php -------------------------------------------------------------------------------- /simplewind/thinkphp/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/CONTRIBUTING.md -------------------------------------------------------------------------------- /simplewind/thinkphp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/LICENSE.txt -------------------------------------------------------------------------------- /simplewind/thinkphp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/README.md -------------------------------------------------------------------------------- /simplewind/thinkphp/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/base.php -------------------------------------------------------------------------------- /simplewind/thinkphp/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/codecov.yml -------------------------------------------------------------------------------- /simplewind/thinkphp/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/composer.json -------------------------------------------------------------------------------- /simplewind/thinkphp/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/console.php -------------------------------------------------------------------------------- /simplewind/thinkphp/convention.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/convention.php -------------------------------------------------------------------------------- /simplewind/thinkphp/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/helper.php -------------------------------------------------------------------------------- /simplewind/thinkphp/lang/zh-cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/lang/zh-cn.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/App.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/Build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/Build.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/Cache.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/Config.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/Console.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/Cookie.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/Db.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/Debug.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/Env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/Env.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/Error.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/File.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/Hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/Hook.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/Lang.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/Log.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/Model.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/Route.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/Url.php -------------------------------------------------------------------------------- /simplewind/thinkphp/library/think/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/library/think/View.php -------------------------------------------------------------------------------- /simplewind/thinkphp/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/logo.png -------------------------------------------------------------------------------- /simplewind/thinkphp/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/phpunit.xml -------------------------------------------------------------------------------- /simplewind/thinkphp/start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/start.php -------------------------------------------------------------------------------- /simplewind/thinkphp/tpl/default_index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/tpl/default_index.tpl -------------------------------------------------------------------------------- /simplewind/thinkphp/tpl/dispatch_jump.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/tpl/dispatch_jump.tpl -------------------------------------------------------------------------------- /simplewind/thinkphp/tpl/page_trace.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/tpl/page_trace.tpl -------------------------------------------------------------------------------- /simplewind/thinkphp/tpl/think_exception.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/thinkphp/tpl/think_exception.tpl -------------------------------------------------------------------------------- /simplewind/vendor/aliyun/.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/aliyun/.coveralls.yml -------------------------------------------------------------------------------- /simplewind/vendor/aliyun/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/aliyun/.gitignore -------------------------------------------------------------------------------- /simplewind/vendor/aliyun/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/aliyun/.travis.yml -------------------------------------------------------------------------------- /simplewind/vendor/aliyun/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/aliyun/CHANGELOG.md -------------------------------------------------------------------------------- /simplewind/vendor/aliyun/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/aliyun/LICENSE.md -------------------------------------------------------------------------------- /simplewind/vendor/aliyun/README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/aliyun/README-CN.md -------------------------------------------------------------------------------- /simplewind/vendor/aliyun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/aliyun/README.md -------------------------------------------------------------------------------- /simplewind/vendor/aliyun/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/aliyun/autoload.php -------------------------------------------------------------------------------- /simplewind/vendor/aliyun/build-phar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/aliyun/build-phar.sh -------------------------------------------------------------------------------- /simplewind/vendor/aliyun/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/aliyun/composer.json -------------------------------------------------------------------------------- /simplewind/vendor/aliyun/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/aliyun/example.jpg -------------------------------------------------------------------------------- /simplewind/vendor/aliyun/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simplewind/vendor/dompdf/dompdf/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/dompdf/dompdf/phpcs.xml -------------------------------------------------------------------------------- /simplewind/vendor/endroid/qrcode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/endroid/qrcode/LICENSE -------------------------------------------------------------------------------- /simplewind/vendor/endroid/qrcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/endroid/qrcode/README.md -------------------------------------------------------------------------------- /simplewind/vendor/ezyang/htmlpurifier/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/ezyang/htmlpurifier/NEWS -------------------------------------------------------------------------------- /simplewind/vendor/ezyang/htmlpurifier/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/ezyang/htmlpurifier/TODO -------------------------------------------------------------------------------- /simplewind/vendor/ezyang/htmlpurifier/VERSION: -------------------------------------------------------------------------------- 1 | 4.9.3 -------------------------------------------------------------------------------- /simplewind/vendor/phenx/php-font-lib/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simplewind/vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 5.2.25 2 | -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/CHANGELOG -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/INSTALL -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/LICENSE -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/README -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.4 2 | 2010100721 -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/index.php -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/phpqrcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/phpqrcode.php -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/qrbitstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/qrbitstream.php -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/qrconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/qrconfig.php -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/qrconst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/qrconst.php -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/qrencode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/qrencode.php -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/qrimage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/qrimage.php -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/qrinput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/qrinput.php -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/qrlib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/qrlib.php -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/qrmask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/qrmask.php -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/qrrscode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/qrrscode.php -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/qrspec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/qrspec.php -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/qrsplit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/qrsplit.php -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/qrtools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/qrtools.php -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/tools/merge.bat: -------------------------------------------------------------------------------- 1 | php ./merge.php 2 | pause -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/tools/merge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/phpqrcode/tools/merge.php -------------------------------------------------------------------------------- /simplewind/vendor/phpqrcode/tools/merge.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | php ./merge.php -------------------------------------------------------------------------------- /simplewind/vendor/qiniu/php-sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/qiniu/php-sdk/LICENSE -------------------------------------------------------------------------------- /simplewind/vendor/qiniu/php-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/qiniu/php-sdk/README.md -------------------------------------------------------------------------------- /simplewind/vendor/qiniu/php-sdk/test-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanghengzhi/isign-php/HEAD/simplewind/vendor/qiniu/php-sdk/test-env.sh -------------------------------------------------------------------------------- /simplewind/vendor/sabberworm/php-css-parser/tests/files/-end-token.css: -------------------------------------------------------------------------------- 1 | /* Test comment 2 | -------------------------------------------------------------------------------- /simplewind/vendor/sabberworm/php-css-parser/tests/files/-tobedone.css: -------------------------------------------------------------------------------- 1 | .some[selectors-may='contain-a-{'] { 2 | 3 | } -------------------------------------------------------------------------------- /simplewind/vendor/sabberworm/php-css-parser/tests/files/webkit.css: -------------------------------------------------------------------------------- 1 | .test { background:-webkit-linear-gradient(top right, white, black)} 2 | -------------------------------------------------------------------------------- /simplewind/vendor/sabberworm/php-css-parser/tests/files/whitespace.css: -------------------------------------------------------------------------------- 1 | .test { 2 | background-image : url ( 4px ) ; 3 | } 4 | -------------------------------------------------------------------------------- /simplewind/vendor/topthink/think-image/tests/images/test.bmp: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------