├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ └── standard_bug.yml ├── PULL_REQUEST_TEMPLATE │ └── standard_pr.md ├── crowdin.yml ├── phpcs │ └── SectionComments.php └── workflows │ ├── crowdin_wf.yml │ ├── crowdin_wf_next.yml │ ├── php-cs-fixer.yml │ ├── php.yml │ └── update-year.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── .scrutinizer.yml ├── DCO.txt ├── LICENSE ├── Languages ├── en_US │ ├── Admin.php │ ├── Agreement.php │ ├── Alerts.php │ ├── Calendar.php │ ├── Drafts.php │ ├── Editor.php │ ├── EmailTemplates.php │ ├── Errors.php │ ├── General.php │ ├── Help.php │ ├── Login.php │ ├── Maintenance.php │ ├── ManageBoards.php │ ├── ManageCalendar.php │ ├── ManageMail.php │ ├── ManageMaintenance.php │ ├── ManageMembers.php │ ├── ManagePaid.php │ ├── ManagePermissions.php │ ├── ManageScheduledTasks.php │ ├── ManageSettings.php │ ├── ManageSmileys.php │ ├── Manual.php │ ├── ModerationCenter.php │ ├── Modifications.php │ ├── Modlog.php │ ├── Packages.php │ ├── PersonalMessage.php │ ├── Post.php │ ├── Profile.php │ ├── Reports.php │ ├── Search.php │ ├── Stats.php │ ├── Themes.php │ ├── Timezones.php │ ├── Who.php │ ├── agreement.txt │ └── index.php └── index.php ├── Packages ├── .htaccess ├── backups │ ├── .htaccess │ └── index.php └── index.php ├── README.md ├── SECURITY.md ├── SSI.php ├── Smileys ├── alienine │ ├── afro.png │ ├── angel.png │ ├── angry.png │ ├── azn.png │ ├── blank.png │ ├── cheesy.png │ ├── cool.png │ ├── cry.png │ ├── embarrassed.png │ ├── evil.png │ ├── grin.png │ ├── huh.png │ ├── index.php │ ├── kiss.png │ ├── laugh.png │ ├── lipsrsealed.png │ ├── police.png │ ├── rolleyes.png │ ├── sad.png │ ├── shocked.png │ ├── smiley.png │ ├── tongue.png │ ├── undecided.png │ └── wink.png ├── fugue │ ├── afro.png │ ├── angel.png │ ├── angry.png │ ├── azn.png │ ├── blank.png │ ├── cheesy.png │ ├── cool.png │ ├── cry.png │ ├── embarrassed.png │ ├── evil.png │ ├── grin.png │ ├── huh.png │ ├── index.php │ ├── kiss.png │ ├── laugh.png │ ├── lipsrsealed.png │ ├── police.png │ ├── rolleyes.png │ ├── sad.png │ ├── shocked.png │ ├── smiley.png │ ├── tongue.png │ ├── undecided.png │ └── wink.png └── index.php ├── Sources ├── ActionInterface.php ├── ActionRouter.php ├── ActionSuffixRouter.php ├── ActionTrait.php ├── Actions │ ├── Activate.php │ ├── Admin │ │ ├── ACP.php │ │ ├── AntiSpam.php │ │ ├── Attachments.php │ │ ├── Bans.php │ │ ├── Boards.php │ │ ├── Calendar.php │ │ ├── EndSession.php │ │ ├── ErrorLog.php │ │ ├── Features.php │ │ ├── Find.php │ │ ├── Home.php │ │ ├── Languages.php │ │ ├── Logs.php │ │ ├── Mail.php │ │ ├── Maintenance.php │ │ ├── Membergroups.php │ │ ├── Members.php │ │ ├── Mods.php │ │ ├── News.php │ │ ├── PackageManager.php │ │ ├── Permissions.php │ │ ├── Posts.php │ │ ├── Registration.php │ │ ├── RepairBoards.php │ │ ├── Reports.php │ │ ├── Search.php │ │ ├── SearchEngines.php │ │ ├── Server.php │ │ ├── Smileys.php │ │ ├── Subscriptions.php │ │ ├── Tasks.php │ │ ├── Themes.php │ │ ├── Warnings.php │ │ └── index.php │ ├── Agreement.php │ ├── AgreementAccept.php │ ├── Announce.php │ ├── AttachmentApprove.php │ ├── AttachmentDownload.php │ ├── AttachmentUpload.php │ ├── AutoSuggest.php │ ├── BoardIndex.php │ ├── BuddyListToggle.php │ ├── Calendar.php │ ├── CoppaForm.php │ ├── Credits.php │ ├── Display.php │ ├── DisplayAdminFile.php │ ├── Feed.php │ ├── GenericAction.php │ ├── Groups.php │ ├── Help.php │ ├── HelpAdmin.php │ ├── JavaScriptModify.php │ ├── Like.php │ ├── Login.php │ ├── Login2.php │ ├── LoginTFA.php │ ├── Logout.php │ ├── MarkRead.php │ ├── Memberlist.php │ ├── MessageIndex.php │ ├── Moderation │ │ ├── EndSession.php │ │ ├── Groups.php │ │ ├── Home.php │ │ ├── Logs.php │ │ ├── Main.php │ │ ├── Posts.php │ │ ├── ReportedContent.php │ │ ├── ShowNotice.php │ │ ├── Warnings.php │ │ ├── WatchedUsers.php │ │ └── index.php │ ├── MsgDelete.php │ ├── Notify.php │ ├── NotifyAnnouncements.php │ ├── NotifyBoard.php │ ├── NotifyTopic.php │ ├── PersonalMessage.php │ ├── PollEdit.php │ ├── PollEdit2.php │ ├── PollLock.php │ ├── PollRemove.php │ ├── PollVote.php │ ├── Post.php │ ├── Post2.php │ ├── Profile │ │ ├── Account.php │ │ ├── Activate.php │ │ ├── AlertsPopup.php │ │ ├── BuddyIgnoreLists.php │ │ ├── Delete.php │ │ ├── Export.php │ │ ├── ExportAttachment.php │ │ ├── ExportDownload.php │ │ ├── ForumProfile.php │ │ ├── GroupMembership.php │ │ ├── IgnoreBoards.php │ │ ├── IssueWarning.php │ │ ├── Main.php │ │ ├── Notification.php │ │ ├── PaidSubs.php │ │ ├── Popup.php │ │ ├── ShowAlerts.php │ │ ├── ShowPermissions.php │ │ ├── ShowPosts.php │ │ ├── StatPanel.php │ │ ├── Summary.php │ │ ├── TFADisable.php │ │ ├── TFASetup.php │ │ ├── ThemeOptions.php │ │ ├── Tracking.php │ │ ├── ViewWarning.php │ │ └── index.php │ ├── QuickModeration.php │ ├── QuickModerationInTopic.php │ ├── QuoteFast.php │ ├── Recent.php │ ├── Register.php │ ├── Register2.php │ ├── Reminder.php │ ├── ReportToMod.php │ ├── RequestMembers.php │ ├── Search.php │ ├── Search2.php │ ├── SendActivation.php │ ├── ShowMsgHistory.php │ ├── SmStats.php │ ├── Stats.php │ ├── ThemeChooser.php │ ├── ThemeSetOption.php │ ├── TopicLock.php │ ├── TopicMerge.php │ ├── TopicMove.php │ ├── TopicMove2.php │ ├── TopicPrint.php │ ├── TopicRemove.php │ ├── TopicRestore.php │ ├── TopicSplit.php │ ├── TopicSticky.php │ ├── TrackIP.php │ ├── Unknown.php │ ├── Unread.php │ ├── UnreadReplies.php │ ├── VerificationCode.php │ ├── ViewQuery.php │ ├── Who.php │ ├── XmlHttp.php │ └── index.php ├── Alert.php ├── ArrayAccessHelper.php ├── Attachment.php ├── Autolinker.php ├── BBCode │ ├── Abbr.php │ ├── Acronym.php │ ├── Anchor.php │ ├── Attach.php │ ├── B.php │ ├── BBCode.php │ ├── BBCodeInterface.php │ ├── Bdo.php │ ├── Black.php │ ├── Blue.php │ ├── Br.php │ ├── Center.php │ ├── Code1.php │ ├── Code2.php │ ├── Color.php │ ├── Details.php │ ├── Email1.php │ ├── Email2.php │ ├── Flash.php │ ├── FloatDiv.php │ ├── Font.php │ ├── Ftp1.php │ ├── Ftp2.php │ ├── GenericBBCode.php │ ├── Glow.php │ ├── Green.php │ ├── H1.php │ ├── H2.php │ ├── H3.php │ ├── H4.php │ ├── H5.php │ ├── H6.php │ ├── Hr.php │ ├── Html.php │ ├── I.php │ ├── Img.php │ ├── Iurl1.php │ ├── Iurl2.php │ ├── Justify.php │ ├── Left.php │ ├── Li.php │ ├── List1.php │ ├── List2.php │ ├── List3.php │ ├── Ltr.php │ ├── Me.php │ ├── Member.php │ ├── Move.php │ ├── NoBBC.php │ ├── Nolink.php │ ├── Php.php │ ├── Pre.php │ ├── Quote1.php │ ├── Quote2.php │ ├── Quote3.php │ ├── Quote4.php │ ├── Red.php │ ├── Right.php │ ├── Rtl.php │ ├── S.php │ ├── Shadow.php │ ├── Size1.php │ ├── Size2.php │ ├── Spoiler1.php │ ├── Spoiler2.php │ ├── Sub.php │ ├── Sup.php │ ├── Table.php │ ├── Td.php │ ├── Time1.php │ ├── Time2.php │ ├── Tr.php │ ├── Tt.php │ ├── U.php │ ├── Url1.php │ ├── Url2.php │ ├── White.php │ ├── YouTube.php │ └── index.php ├── BackwardCompatibility.php ├── Board.php ├── BrowserDetector.php ├── Cache │ ├── APIs │ │ ├── Apcu.php │ │ ├── FileBased.php │ │ ├── MemcacheImplementation.php │ │ ├── MemcachedImplementation.php │ │ ├── Postgres.php │ │ ├── Sqlite.php │ │ ├── Zend.php │ │ └── index.php │ ├── CacheApi.php │ ├── CacheApiInterface.php │ └── index.php ├── Calendar │ ├── Birthday.php │ ├── Event.php │ ├── EventAdjustment.php │ ├── EventOccurrence.php │ ├── Holiday.php │ ├── RRule.php │ ├── RecurrenceIterator.php │ ├── VTimeZone.php │ ├── VTimeZones │ │ ├── Africa │ │ │ ├── Abidjan.php │ │ │ ├── Algiers.php │ │ │ ├── Bissau.php │ │ │ ├── Cairo.php │ │ │ ├── Casablanca.php │ │ │ ├── Ceuta.php │ │ │ ├── El_Aaiun.php │ │ │ ├── Johannesburg.php │ │ │ ├── Juba.php │ │ │ ├── Khartoum.php │ │ │ ├── Lagos.php │ │ │ ├── Maputo.php │ │ │ ├── Monrovia.php │ │ │ ├── Nairobi.php │ │ │ ├── Ndjamena.php │ │ │ ├── Sao_Tome.php │ │ │ ├── Tripoli.php │ │ │ ├── Tunis.php │ │ │ ├── Windhoek.php │ │ │ └── index.php │ │ ├── America │ │ │ ├── Adak.php │ │ │ ├── Anchorage.php │ │ │ ├── Araguaina.php │ │ │ ├── Argentina │ │ │ │ ├── Buenos_Aires.php │ │ │ │ ├── Catamarca.php │ │ │ │ ├── Cordoba.php │ │ │ │ ├── Jujuy.php │ │ │ │ ├── La_Rioja.php │ │ │ │ ├── Mendoza.php │ │ │ │ ├── Rio_Gallegos.php │ │ │ │ ├── Salta.php │ │ │ │ ├── San_Juan.php │ │ │ │ ├── San_Luis.php │ │ │ │ ├── Tucuman.php │ │ │ │ ├── Ushuaia.php │ │ │ │ └── index.php │ │ │ ├── Asuncion.php │ │ │ ├── Bahia.php │ │ │ ├── Bahia_Banderas.php │ │ │ ├── Barbados.php │ │ │ ├── Belem.php │ │ │ ├── Belize.php │ │ │ ├── Boa_Vista.php │ │ │ ├── Bogota.php │ │ │ ├── Boise.php │ │ │ ├── Cambridge_Bay.php │ │ │ ├── Campo_Grande.php │ │ │ ├── Cancun.php │ │ │ ├── Caracas.php │ │ │ ├── Cayenne.php │ │ │ ├── Chicago.php │ │ │ ├── Chihuahua.php │ │ │ ├── Ciudad_Juarez.php │ │ │ ├── Costa_Rica.php │ │ │ ├── Coyhaique.php │ │ │ ├── Cuiaba.php │ │ │ ├── Danmarkshavn.php │ │ │ ├── Dawson.php │ │ │ ├── Dawson_Creek.php │ │ │ ├── Denver.php │ │ │ ├── Detroit.php │ │ │ ├── Edmonton.php │ │ │ ├── Eirunepe.php │ │ │ ├── El_Salvador.php │ │ │ ├── Fort_Nelson.php │ │ │ ├── Fortaleza.php │ │ │ ├── Glace_Bay.php │ │ │ ├── Goose_Bay.php │ │ │ ├── Grand_Turk.php │ │ │ ├── Guatemala.php │ │ │ ├── Guayaquil.php │ │ │ ├── Guyana.php │ │ │ ├── Halifax.php │ │ │ ├── Havana.php │ │ │ ├── Hermosillo.php │ │ │ ├── Indiana │ │ │ │ ├── Indianapolis.php │ │ │ │ ├── Knox.php │ │ │ │ ├── Marengo.php │ │ │ │ ├── Petersburg.php │ │ │ │ ├── Tell_City.php │ │ │ │ ├── Vevay.php │ │ │ │ ├── Vincennes.php │ │ │ │ ├── Winamac.php │ │ │ │ └── index.php │ │ │ ├── Inuvik.php │ │ │ ├── Iqaluit.php │ │ │ ├── Jamaica.php │ │ │ ├── Juneau.php │ │ │ ├── Kentucky │ │ │ │ ├── Louisville.php │ │ │ │ ├── Monticello.php │ │ │ │ └── index.php │ │ │ ├── La_Paz.php │ │ │ ├── Lima.php │ │ │ ├── Los_Angeles.php │ │ │ ├── Maceio.php │ │ │ ├── Managua.php │ │ │ ├── Manaus.php │ │ │ ├── Martinique.php │ │ │ ├── Matamoros.php │ │ │ ├── Mazatlan.php │ │ │ ├── Menominee.php │ │ │ ├── Merida.php │ │ │ ├── Metlakatla.php │ │ │ ├── Mexico_City.php │ │ │ ├── Miquelon.php │ │ │ ├── Moncton.php │ │ │ ├── Monterrey.php │ │ │ ├── Montevideo.php │ │ │ ├── New_York.php │ │ │ ├── Nome.php │ │ │ ├── Noronha.php │ │ │ ├── North_Dakota │ │ │ │ ├── Beulah.php │ │ │ │ ├── Center.php │ │ │ │ ├── New_Salem.php │ │ │ │ └── index.php │ │ │ ├── Nuuk.php │ │ │ ├── Ojinaga.php │ │ │ ├── Panama.php │ │ │ ├── Paramaribo.php │ │ │ ├── Phoenix.php │ │ │ ├── Port_au_Prince.php │ │ │ ├── Porto_Velho.php │ │ │ ├── Puerto_Rico.php │ │ │ ├── Punta_Arenas.php │ │ │ ├── Rankin_Inlet.php │ │ │ ├── Recife.php │ │ │ ├── Regina.php │ │ │ ├── Resolute.php │ │ │ ├── Rio_Branco.php │ │ │ ├── Santarem.php │ │ │ ├── Santiago.php │ │ │ ├── Santo_Domingo.php │ │ │ ├── Sao_Paulo.php │ │ │ ├── Scoresbysund.php │ │ │ ├── Sitka.php │ │ │ ├── St_Johns.php │ │ │ ├── Swift_Current.php │ │ │ ├── Tegucigalpa.php │ │ │ ├── Thule.php │ │ │ ├── Tijuana.php │ │ │ ├── Toronto.php │ │ │ ├── Vancouver.php │ │ │ ├── Whitehorse.php │ │ │ ├── Winnipeg.php │ │ │ ├── Yakutat.php │ │ │ └── index.php │ │ ├── Antarctica │ │ │ ├── Casey.php │ │ │ ├── Davis.php │ │ │ ├── Macquarie.php │ │ │ ├── Mawson.php │ │ │ ├── Palmer.php │ │ │ ├── Rothera.php │ │ │ ├── Troll.php │ │ │ ├── Vostok.php │ │ │ └── index.php │ │ ├── Asia │ │ │ ├── Almaty.php │ │ │ ├── Amman.php │ │ │ ├── Anadyr.php │ │ │ ├── Aqtau.php │ │ │ ├── Aqtobe.php │ │ │ ├── Ashgabat.php │ │ │ ├── Atyrau.php │ │ │ ├── Baghdad.php │ │ │ ├── Baku.php │ │ │ ├── Bangkok.php │ │ │ ├── Barnaul.php │ │ │ ├── Beirut.php │ │ │ ├── Bishkek.php │ │ │ ├── Chita.php │ │ │ ├── Colombo.php │ │ │ ├── Damascus.php │ │ │ ├── Dhaka.php │ │ │ ├── Dili.php │ │ │ ├── Dubai.php │ │ │ ├── Dushanbe.php │ │ │ ├── Famagusta.php │ │ │ ├── Gaza.php │ │ │ ├── Hebron.php │ │ │ ├── Ho_Chi_Minh.php │ │ │ ├── Hong_Kong.php │ │ │ ├── Hovd.php │ │ │ ├── Irkutsk.php │ │ │ ├── Jakarta.php │ │ │ ├── Jayapura.php │ │ │ ├── Jerusalem.php │ │ │ ├── Kabul.php │ │ │ ├── Kamchatka.php │ │ │ ├── Karachi.php │ │ │ ├── Kathmandu.php │ │ │ ├── Khandyga.php │ │ │ ├── Kolkata.php │ │ │ ├── Krasnoyarsk.php │ │ │ ├── Kuching.php │ │ │ ├── Macau.php │ │ │ ├── Magadan.php │ │ │ ├── Makassar.php │ │ │ ├── Manila.php │ │ │ ├── Nicosia.php │ │ │ ├── Novokuznetsk.php │ │ │ ├── Novosibirsk.php │ │ │ ├── Omsk.php │ │ │ ├── Oral.php │ │ │ ├── Pontianak.php │ │ │ ├── Pyongyang.php │ │ │ ├── Qatar.php │ │ │ ├── Qostanay.php │ │ │ ├── Qyzylorda.php │ │ │ ├── Riyadh.php │ │ │ ├── Sakhalin.php │ │ │ ├── Samarkand.php │ │ │ ├── Seoul.php │ │ │ ├── Shanghai.php │ │ │ ├── Singapore.php │ │ │ ├── Srednekolymsk.php │ │ │ ├── Taipei.php │ │ │ ├── Tashkent.php │ │ │ ├── Tbilisi.php │ │ │ ├── Tehran.php │ │ │ ├── Thimphu.php │ │ │ ├── Tokyo.php │ │ │ ├── Tomsk.php │ │ │ ├── Ulaanbaatar.php │ │ │ ├── Urumqi.php │ │ │ ├── Ust_Nera.php │ │ │ ├── Vladivostok.php │ │ │ ├── Yakutsk.php │ │ │ ├── Yangon.php │ │ │ ├── Yekaterinburg.php │ │ │ ├── Yerevan.php │ │ │ └── index.php │ │ ├── Atlantic │ │ │ ├── Azores.php │ │ │ ├── Bermuda.php │ │ │ ├── Canary.php │ │ │ ├── Cape_Verde.php │ │ │ ├── Faroe.php │ │ │ ├── Madeira.php │ │ │ ├── South_Georgia.php │ │ │ ├── Stanley.php │ │ │ └── index.php │ │ ├── Australia │ │ │ ├── Adelaide.php │ │ │ ├── Brisbane.php │ │ │ ├── Broken_Hill.php │ │ │ ├── Darwin.php │ │ │ ├── Eucla.php │ │ │ ├── Hobart.php │ │ │ ├── Lindeman.php │ │ │ ├── Lord_Howe.php │ │ │ ├── Melbourne.php │ │ │ ├── Perth.php │ │ │ ├── Sydney.php │ │ │ └── index.php │ │ ├── Etc │ │ │ ├── GMT.php │ │ │ ├── GMT1.php │ │ │ ├── GMT10.php │ │ │ ├── GMT11.php │ │ │ ├── GMT12.php │ │ │ ├── GMT2.php │ │ │ ├── GMT3.php │ │ │ ├── GMT4.php │ │ │ ├── GMT5.php │ │ │ ├── GMT6.php │ │ │ ├── GMT7.php │ │ │ ├── GMT8.php │ │ │ ├── GMT9.php │ │ │ ├── GMT_1.php │ │ │ ├── GMT_10.php │ │ │ ├── GMT_11.php │ │ │ ├── GMT_12.php │ │ │ ├── GMT_13.php │ │ │ ├── GMT_14.php │ │ │ ├── GMT_2.php │ │ │ ├── GMT_3.php │ │ │ ├── GMT_4.php │ │ │ ├── GMT_5.php │ │ │ ├── GMT_6.php │ │ │ ├── GMT_7.php │ │ │ ├── GMT_8.php │ │ │ ├── GMT_9.php │ │ │ ├── UTC.php │ │ │ └── index.php │ │ ├── Europe │ │ │ ├── Andorra.php │ │ │ ├── Astrakhan.php │ │ │ ├── Athens.php │ │ │ ├── Belgrade.php │ │ │ ├── Berlin.php │ │ │ ├── Brussels.php │ │ │ ├── Bucharest.php │ │ │ ├── Budapest.php │ │ │ ├── Chisinau.php │ │ │ ├── Dublin.php │ │ │ ├── Gibraltar.php │ │ │ ├── Helsinki.php │ │ │ ├── Istanbul.php │ │ │ ├── Kaliningrad.php │ │ │ ├── Kirov.php │ │ │ ├── Kyiv.php │ │ │ ├── Lisbon.php │ │ │ ├── London.php │ │ │ ├── Madrid.php │ │ │ ├── Malta.php │ │ │ ├── Minsk.php │ │ │ ├── Moscow.php │ │ │ ├── Paris.php │ │ │ ├── Prague.php │ │ │ ├── Riga.php │ │ │ ├── Rome.php │ │ │ ├── Samara.php │ │ │ ├── Saratov.php │ │ │ ├── Simferopol.php │ │ │ ├── Sofia.php │ │ │ ├── Tallinn.php │ │ │ ├── Tirane.php │ │ │ ├── Ulyanovsk.php │ │ │ ├── Vienna.php │ │ │ ├── Vilnius.php │ │ │ ├── Volgograd.php │ │ │ ├── Warsaw.php │ │ │ ├── Zurich.php │ │ │ └── index.php │ │ ├── Indian │ │ │ ├── Chagos.php │ │ │ ├── Maldives.php │ │ │ ├── Mauritius.php │ │ │ └── index.php │ │ ├── Pacific │ │ │ ├── Apia.php │ │ │ ├── Auckland.php │ │ │ ├── Bougainville.php │ │ │ ├── Chatham.php │ │ │ ├── Easter.php │ │ │ ├── Efate.php │ │ │ ├── Fakaofo.php │ │ │ ├── Fiji.php │ │ │ ├── Galapagos.php │ │ │ ├── Gambier.php │ │ │ ├── Guadalcanal.php │ │ │ ├── Guam.php │ │ │ ├── Honolulu.php │ │ │ ├── Kanton.php │ │ │ ├── Kiritimati.php │ │ │ ├── Kosrae.php │ │ │ ├── Kwajalein.php │ │ │ ├── Marquesas.php │ │ │ ├── Nauru.php │ │ │ ├── Niue.php │ │ │ ├── Norfolk.php │ │ │ ├── Noumea.php │ │ │ ├── Pago_Pago.php │ │ │ ├── Palau.php │ │ │ ├── Pitcairn.php │ │ │ ├── Port_Moresby.php │ │ │ ├── Rarotonga.php │ │ │ ├── Tahiti.php │ │ │ ├── Tarawa.php │ │ │ ├── Tongatapu.php │ │ │ └── index.php │ │ └── index.php │ └── index.php ├── Category.php ├── Class-BrowserDetect.php ├── Class-CurlFetchWeb.php ├── Class-Graphics.php ├── Class-Package.php ├── Class-Punycode.php ├── Class-SearchAPI.php ├── Class-TOTP.php ├── Config.php ├── Cookie.php ├── Db │ ├── APIs │ │ ├── MySQL.php │ │ ├── PostgreSQL.php │ │ └── index.php │ ├── DatabaseApi.php │ ├── DatabaseApiInterface.php │ ├── Schema │ │ ├── Column.php │ │ ├── DbIndex.php │ │ ├── GeneratedColumn.php │ │ ├── Table.php │ │ ├── index.php │ │ ├── v2_1 │ │ │ ├── AdminInfoFiles.php │ │ │ ├── ApprovalQueue.php │ │ │ ├── Attachments.php │ │ │ ├── BackgroundTasks.php │ │ │ ├── BanGroups.php │ │ │ ├── BanItems.php │ │ │ ├── BoardPermissions.php │ │ │ ├── BoardPermissionsView.php │ │ │ ├── Boards.php │ │ │ ├── Calendar.php │ │ │ ├── CalendarHolidays.php │ │ │ ├── Categories.php │ │ │ ├── CustomFields.php │ │ │ ├── GroupModerators.php │ │ │ ├── LogActions.php │ │ │ ├── LogActivity.php │ │ │ ├── LogBanned.php │ │ │ ├── LogBoards.php │ │ │ ├── LogComments.php │ │ │ ├── LogDigest.php │ │ │ ├── LogErrors.php │ │ │ ├── LogFloodcontrol.php │ │ │ ├── LogGroupRequests.php │ │ │ ├── LogMarkRead.php │ │ │ ├── LogMemberNotices.php │ │ │ ├── LogNotify.php │ │ │ ├── LogOnline.php │ │ │ ├── LogPackages.php │ │ │ ├── LogPolls.php │ │ │ ├── LogReported.php │ │ │ ├── LogReportedComments.php │ │ │ ├── LogScheduledTasks.php │ │ │ ├── LogSearchMessages.php │ │ │ ├── LogSearchResults.php │ │ │ ├── LogSearchSubjects.php │ │ │ ├── LogSearchTopics.php │ │ │ ├── LogSpiderHits.php │ │ │ ├── LogSpiderStats.php │ │ │ ├── LogSubscribed.php │ │ │ ├── LogTopics.php │ │ │ ├── MailQueue.php │ │ │ ├── MemberLogins.php │ │ │ ├── Membergroups.php │ │ │ ├── Members.php │ │ │ ├── Mentions.php │ │ │ ├── MessageIcons.php │ │ │ ├── Messages.php │ │ │ ├── ModeratorGroups.php │ │ │ ├── Moderators.php │ │ │ ├── PackageServers.php │ │ │ ├── PermissionProfiles.php │ │ │ ├── Permissions.php │ │ │ ├── PersonalMessages.php │ │ │ ├── PmLabeledMessages.php │ │ │ ├── PmLabels.php │ │ │ ├── PmRecipients.php │ │ │ ├── PmRules.php │ │ │ ├── PollChoices.php │ │ │ ├── Polls.php │ │ │ ├── Qanda.php │ │ │ ├── ScheduledTasks.php │ │ │ ├── Sessions.php │ │ │ ├── Settings.php │ │ │ ├── SmileyFiles.php │ │ │ ├── Smileys.php │ │ │ ├── Spiders.php │ │ │ ├── Subscriptions.php │ │ │ ├── Themes.php │ │ │ ├── Topics.php │ │ │ ├── UserAlerts.php │ │ │ ├── UserAlertsPrefs.php │ │ │ ├── UserDrafts.php │ │ │ ├── UserLikes.php │ │ │ └── index.php │ │ └── v3_0 │ │ │ ├── AdminInfoFiles.php │ │ │ ├── ApprovalQueue.php │ │ │ ├── Attachments.php │ │ │ ├── BackgroundTasks.php │ │ │ ├── BanGroups.php │ │ │ ├── BanItems.php │ │ │ ├── BoardPermissions.php │ │ │ ├── BoardPermissionsView.php │ │ │ ├── Boards.php │ │ │ ├── Calendar.php │ │ │ ├── Categories.php │ │ │ ├── CustomFields.php │ │ │ ├── GroupModerators.php │ │ │ ├── LogActions.php │ │ │ ├── LogActivity.php │ │ │ ├── LogBanned.php │ │ │ ├── LogBoards.php │ │ │ ├── LogComments.php │ │ │ ├── LogDigest.php │ │ │ ├── LogErrors.php │ │ │ ├── LogFloodcontrol.php │ │ │ ├── LogGroupRequests.php │ │ │ ├── LogMarkRead.php │ │ │ ├── LogMemberNotices.php │ │ │ ├── LogNotify.php │ │ │ ├── LogOnline.php │ │ │ ├── LogPackages.php │ │ │ ├── LogPolls.php │ │ │ ├── LogReported.php │ │ │ ├── LogReportedComments.php │ │ │ ├── LogScheduledTasks.php │ │ │ ├── LogSearchMessages.php │ │ │ ├── LogSearchResults.php │ │ │ ├── LogSearchSubjects.php │ │ │ ├── LogSearchTopics.php │ │ │ ├── LogSpiderHits.php │ │ │ ├── LogSpiderStats.php │ │ │ ├── LogSubscribed.php │ │ │ ├── LogTopics.php │ │ │ ├── MailQueue.php │ │ │ ├── MemberLogins.php │ │ │ ├── Membergroups.php │ │ │ ├── Members.php │ │ │ ├── Mentions.php │ │ │ ├── MessageIcons.php │ │ │ ├── Messages.php │ │ │ ├── ModeratorGroups.php │ │ │ ├── Moderators.php │ │ │ ├── PackageServers.php │ │ │ ├── PermissionProfiles.php │ │ │ ├── Permissions.php │ │ │ ├── PersonalMessages.php │ │ │ ├── PmLabeledMessages.php │ │ │ ├── PmLabels.php │ │ │ ├── PmRecipients.php │ │ │ ├── PmRules.php │ │ │ ├── PollChoices.php │ │ │ ├── Polls.php │ │ │ ├── Qanda.php │ │ │ ├── ScheduledTasks.php │ │ │ ├── Sessions.php │ │ │ ├── Settings.php │ │ │ ├── SmileyFiles.php │ │ │ ├── Smileys.php │ │ │ ├── Spiders.php │ │ │ ├── Subscriptions.php │ │ │ ├── Themes.php │ │ │ ├── Topics.php │ │ │ ├── UserAlerts.php │ │ │ ├── UserAlertsPrefs.php │ │ │ ├── UserDrafts.php │ │ │ ├── UserLikes.php │ │ │ └── index.php │ └── index.php ├── Debug │ ├── DebugContextEntry.php │ ├── DebugUtils.php │ └── index.php ├── Diff │ ├── Diff.php │ ├── EditDiff.php │ ├── FullDiff.php │ └── index.php ├── Draft.php ├── DynamicPropertyHelper.php ├── Editor.php ├── ErrorHandler.php ├── Forum.php ├── Graphics │ ├── Gif │ │ ├── ColorTable.php │ │ ├── File.php │ │ ├── FileHeader.php │ │ ├── Image.php │ │ ├── ImageHeader.php │ │ ├── LzwCompression.php │ │ └── index.php │ ├── Image.php │ └── index.php ├── Group.php ├── IP.php ├── IntegrationHook.php ├── ItemList.php ├── Lang.php ├── Localization │ ├── AsciiTransliterator.php │ ├── MessageFormatter.php │ ├── data │ │ ├── AsciiTransliteration_0000.php │ │ ├── AsciiTransliteration_0001.php │ │ ├── AsciiTransliteration_0002.php │ │ ├── AsciiTransliteration_0003.php │ │ ├── AsciiTransliteration_0004.php │ │ ├── AsciiTransliteration_0005.php │ │ ├── AsciiTransliteration_0006.php │ │ ├── AsciiTransliteration_0007.php │ │ ├── AsciiTransliteration_0009.php │ │ ├── AsciiTransliteration_0010.php │ │ ├── AsciiTransliteration_0011.php │ │ ├── AsciiTransliteration_0012.php │ │ ├── AsciiTransliteration_0013.php │ │ ├── AsciiTransliteration_0014.php │ │ ├── AsciiTransliteration_0016.php │ │ ├── AsciiTransliteration_0017.php │ │ ├── AsciiTransliteration_0018.php │ │ ├── AsciiTransliteration_0019.php │ │ ├── AsciiTransliteration_0029.php │ │ ├── AsciiTransliteration_0030.php │ │ ├── AsciiTransliteration_0031.php │ │ ├── AsciiTransliteration_0032.php │ │ ├── AsciiTransliteration_0033.php │ │ ├── AsciiTransliteration_0034.php │ │ ├── AsciiTransliteration_0035.php │ │ ├── AsciiTransliteration_0036.php │ │ ├── AsciiTransliteration_0041.php │ │ ├── AsciiTransliteration_0042.php │ │ ├── AsciiTransliteration_0044.php │ │ ├── AsciiTransliteration_0045.php │ │ ├── AsciiTransliteration_0046.php │ │ ├── AsciiTransliteration_0047.php │ │ ├── AsciiTransliteration_0048.php │ │ ├── AsciiTransliteration_0049.php │ │ ├── AsciiTransliteration_0050.php │ │ ├── AsciiTransliteration_0051.php │ │ ├── AsciiTransliteration_0052.php │ │ ├── AsciiTransliteration_0053.php │ │ ├── AsciiTransliteration_0054.php │ │ ├── AsciiTransliteration_0055.php │ │ ├── AsciiTransliteration_0056.php │ │ ├── AsciiTransliteration_0057.php │ │ ├── AsciiTransliteration_0058.php │ │ ├── AsciiTransliteration_0059.php │ │ ├── AsciiTransliteration_0060.php │ │ ├── AsciiTransliteration_0061.php │ │ ├── AsciiTransliteration_0062.php │ │ ├── AsciiTransliteration_0063.php │ │ ├── AsciiTransliteration_0064.php │ │ ├── AsciiTransliteration_0065.php │ │ ├── AsciiTransliteration_0066.php │ │ ├── AsciiTransliteration_0067.php │ │ ├── AsciiTransliteration_0068.php │ │ ├── AsciiTransliteration_0069.php │ │ ├── AsciiTransliteration_0070.php │ │ ├── AsciiTransliteration_0071.php │ │ ├── AsciiTransliteration_0072.php │ │ ├── AsciiTransliteration_0073.php │ │ ├── AsciiTransliteration_0074.php │ │ ├── AsciiTransliteration_0075.php │ │ ├── AsciiTransliteration_0076.php │ │ ├── AsciiTransliteration_0077.php │ │ ├── AsciiTransliteration_0078.php │ │ ├── AsciiTransliteration_0079.php │ │ ├── AsciiTransliteration_0080.php │ │ ├── AsciiTransliteration_0081.php │ │ ├── AsciiTransliteration_0082.php │ │ ├── AsciiTransliteration_0083.php │ │ ├── AsciiTransliteration_0084.php │ │ ├── AsciiTransliteration_0085.php │ │ ├── AsciiTransliteration_0086.php │ │ ├── AsciiTransliteration_0087.php │ │ ├── AsciiTransliteration_0088.php │ │ ├── AsciiTransliteration_0089.php │ │ ├── AsciiTransliteration_0090.php │ │ ├── AsciiTransliteration_0091.php │ │ ├── AsciiTransliteration_0092.php │ │ ├── AsciiTransliteration_0093.php │ │ ├── AsciiTransliteration_0094.php │ │ ├── AsciiTransliteration_0095.php │ │ ├── AsciiTransliteration_0096.php │ │ ├── AsciiTransliteration_0097.php │ │ ├── AsciiTransliteration_0098.php │ │ ├── AsciiTransliteration_0099.php │ │ ├── AsciiTransliteration_0100.php │ │ ├── AsciiTransliteration_0101.php │ │ ├── AsciiTransliteration_0102.php │ │ ├── AsciiTransliteration_0103.php │ │ ├── AsciiTransliteration_0104.php │ │ ├── AsciiTransliteration_0105.php │ │ ├── AsciiTransliteration_0106.php │ │ ├── AsciiTransliteration_0107.php │ │ ├── AsciiTransliteration_0108.php │ │ ├── AsciiTransliteration_0109.php │ │ ├── AsciiTransliteration_0110.php │ │ ├── AsciiTransliteration_0111.php │ │ ├── AsciiTransliteration_0112.php │ │ ├── AsciiTransliteration_0113.php │ │ ├── AsciiTransliteration_0114.php │ │ ├── AsciiTransliteration_0115.php │ │ ├── AsciiTransliteration_0116.php │ │ ├── AsciiTransliteration_0117.php │ │ ├── AsciiTransliteration_0118.php │ │ ├── AsciiTransliteration_0119.php │ │ ├── AsciiTransliteration_0120.php │ │ ├── AsciiTransliteration_0121.php │ │ ├── AsciiTransliteration_0122.php │ │ ├── AsciiTransliteration_0123.php │ │ ├── AsciiTransliteration_0124.php │ │ ├── AsciiTransliteration_0125.php │ │ ├── AsciiTransliteration_0126.php │ │ ├── AsciiTransliteration_0127.php │ │ ├── AsciiTransliteration_0128.php │ │ ├── AsciiTransliteration_0129.php │ │ ├── AsciiTransliteration_0130.php │ │ ├── AsciiTransliteration_0131.php │ │ ├── AsciiTransliteration_0132.php │ │ ├── AsciiTransliteration_0133.php │ │ ├── AsciiTransliteration_0134.php │ │ ├── AsciiTransliteration_0135.php │ │ ├── AsciiTransliteration_0136.php │ │ ├── AsciiTransliteration_0137.php │ │ ├── AsciiTransliteration_0138.php │ │ ├── AsciiTransliteration_0139.php │ │ ├── AsciiTransliteration_0140.php │ │ ├── AsciiTransliteration_0141.php │ │ ├── AsciiTransliteration_0142.php │ │ ├── AsciiTransliteration_0143.php │ │ ├── AsciiTransliteration_0144.php │ │ ├── AsciiTransliteration_0145.php │ │ ├── AsciiTransliteration_0146.php │ │ ├── AsciiTransliteration_0147.php │ │ ├── AsciiTransliteration_0148.php │ │ ├── AsciiTransliteration_0149.php │ │ ├── AsciiTransliteration_0150.php │ │ ├── AsciiTransliteration_0151.php │ │ ├── AsciiTransliteration_0152.php │ │ ├── AsciiTransliteration_0153.php │ │ ├── AsciiTransliteration_0154.php │ │ ├── AsciiTransliteration_0155.php │ │ ├── AsciiTransliteration_0156.php │ │ ├── AsciiTransliteration_0157.php │ │ ├── AsciiTransliteration_0158.php │ │ ├── AsciiTransliteration_0159.php │ │ ├── AsciiTransliteration_0167.php │ │ ├── AsciiTransliteration_0172.php │ │ ├── AsciiTransliteration_0173.php │ │ ├── AsciiTransliteration_0174.php │ │ ├── AsciiTransliteration_0175.php │ │ ├── AsciiTransliteration_0176.php │ │ ├── AsciiTransliteration_0177.php │ │ ├── AsciiTransliteration_0178.php │ │ ├── AsciiTransliteration_0179.php │ │ ├── AsciiTransliteration_0180.php │ │ ├── AsciiTransliteration_0181.php │ │ ├── AsciiTransliteration_0182.php │ │ ├── AsciiTransliteration_0183.php │ │ ├── AsciiTransliteration_0184.php │ │ ├── AsciiTransliteration_0185.php │ │ ├── AsciiTransliteration_0186.php │ │ ├── AsciiTransliteration_0187.php │ │ ├── AsciiTransliteration_0188.php │ │ ├── AsciiTransliteration_0189.php │ │ ├── AsciiTransliteration_0190.php │ │ ├── AsciiTransliteration_0191.php │ │ ├── AsciiTransliteration_0192.php │ │ ├── AsciiTransliteration_0193.php │ │ ├── AsciiTransliteration_0194.php │ │ ├── AsciiTransliteration_0195.php │ │ ├── AsciiTransliteration_0196.php │ │ ├── AsciiTransliteration_0197.php │ │ ├── AsciiTransliteration_0198.php │ │ ├── AsciiTransliteration_0199.php │ │ ├── AsciiTransliteration_0200.php │ │ ├── AsciiTransliteration_0201.php │ │ ├── AsciiTransliteration_0202.php │ │ ├── AsciiTransliteration_0203.php │ │ ├── AsciiTransliteration_0204.php │ │ ├── AsciiTransliteration_0205.php │ │ ├── AsciiTransliteration_0206.php │ │ ├── AsciiTransliteration_0207.php │ │ ├── AsciiTransliteration_0208.php │ │ ├── AsciiTransliteration_0209.php │ │ ├── AsciiTransliteration_0210.php │ │ ├── AsciiTransliteration_0211.php │ │ ├── AsciiTransliteration_0212.php │ │ ├── AsciiTransliteration_0213.php │ │ ├── AsciiTransliteration_0214.php │ │ ├── AsciiTransliteration_0215.php │ │ ├── AsciiTransliteration_0249.php │ │ ├── AsciiTransliteration_0250.php │ │ ├── AsciiTransliteration_0251.php │ │ ├── AsciiTransliteration_0252.php │ │ ├── AsciiTransliteration_0253.php │ │ ├── AsciiTransliteration_0254.php │ │ ├── AsciiTransliteration_0255.php │ │ ├── AsciiTransliteration_0465.php │ │ ├── AsciiTransliteration_0494.php │ │ ├── AsciiTransliteration_0497.php │ │ ├── AsciiTransliteration_0498.php │ │ ├── AsciiTransliteration_0512.php │ │ ├── AsciiTransliteration_0513.php │ │ ├── AsciiTransliteration_0514.php │ │ ├── AsciiTransliteration_0515.php │ │ ├── AsciiTransliteration_0516.php │ │ ├── AsciiTransliteration_0517.php │ │ ├── AsciiTransliteration_0518.php │ │ ├── AsciiTransliteration_0519.php │ │ ├── AsciiTransliteration_0520.php │ │ ├── AsciiTransliteration_0521.php │ │ ├── AsciiTransliteration_0522.php │ │ ├── AsciiTransliteration_0523.php │ │ ├── AsciiTransliteration_0524.php │ │ ├── AsciiTransliteration_0525.php │ │ ├── AsciiTransliteration_0526.php │ │ ├── AsciiTransliteration_0527.php │ │ ├── AsciiTransliteration_0528.php │ │ ├── AsciiTransliteration_0529.php │ │ ├── AsciiTransliteration_0530.php │ │ ├── AsciiTransliteration_0531.php │ │ ├── AsciiTransliteration_0532.php │ │ ├── AsciiTransliteration_0533.php │ │ ├── AsciiTransliteration_0534.php │ │ ├── AsciiTransliteration_0535.php │ │ ├── AsciiTransliteration_0536.php │ │ ├── AsciiTransliteration_0537.php │ │ ├── AsciiTransliteration_0538.php │ │ ├── AsciiTransliteration_0539.php │ │ ├── AsciiTransliteration_0540.php │ │ ├── AsciiTransliteration_0541.php │ │ ├── AsciiTransliteration_0542.php │ │ ├── AsciiTransliteration_0543.php │ │ ├── AsciiTransliteration_0544.php │ │ ├── AsciiTransliteration_0545.php │ │ ├── AsciiTransliteration_0546.php │ │ ├── AsciiTransliteration_0547.php │ │ ├── AsciiTransliteration_0548.php │ │ ├── AsciiTransliteration_0549.php │ │ ├── AsciiTransliteration_0550.php │ │ ├── AsciiTransliteration_0551.php │ │ ├── AsciiTransliteration_0552.php │ │ ├── AsciiTransliteration_0553.php │ │ ├── AsciiTransliteration_0554.php │ │ ├── AsciiTransliteration_0555.php │ │ ├── AsciiTransliteration_0556.php │ │ ├── AsciiTransliteration_0557.php │ │ ├── AsciiTransliteration_0558.php │ │ ├── AsciiTransliteration_0559.php │ │ ├── AsciiTransliteration_0560.php │ │ ├── AsciiTransliteration_0561.php │ │ ├── AsciiTransliteration_0562.php │ │ ├── AsciiTransliteration_0563.php │ │ ├── AsciiTransliteration_0564.php │ │ ├── AsciiTransliteration_0565.php │ │ ├── AsciiTransliteration_0566.php │ │ ├── AsciiTransliteration_0567.php │ │ ├── AsciiTransliteration_0568.php │ │ ├── AsciiTransliteration_0569.php │ │ ├── AsciiTransliteration_0570.php │ │ ├── AsciiTransliteration_0571.php │ │ ├── AsciiTransliteration_0572.php │ │ ├── AsciiTransliteration_0573.php │ │ ├── AsciiTransliteration_0574.php │ │ ├── AsciiTransliteration_0575.php │ │ ├── AsciiTransliteration_0576.php │ │ ├── AsciiTransliteration_0577.php │ │ ├── AsciiTransliteration_0578.php │ │ ├── AsciiTransliteration_0579.php │ │ ├── AsciiTransliteration_0580.php │ │ ├── AsciiTransliteration_0581.php │ │ ├── AsciiTransliteration_0582.php │ │ ├── AsciiTransliteration_0583.php │ │ ├── AsciiTransliteration_0584.php │ │ ├── AsciiTransliteration_0585.php │ │ ├── AsciiTransliteration_0586.php │ │ ├── AsciiTransliteration_0587.php │ │ ├── AsciiTransliteration_0588.php │ │ ├── AsciiTransliteration_0589.php │ │ ├── AsciiTransliteration_0590.php │ │ ├── AsciiTransliteration_0591.php │ │ ├── AsciiTransliteration_0592.php │ │ ├── AsciiTransliteration_0593.php │ │ ├── AsciiTransliteration_0594.php │ │ ├── AsciiTransliteration_0595.php │ │ ├── AsciiTransliteration_0596.php │ │ ├── AsciiTransliteration_0597.php │ │ ├── AsciiTransliteration_0598.php │ │ ├── AsciiTransliteration_0599.php │ │ ├── AsciiTransliteration_0600.php │ │ ├── AsciiTransliteration_0601.php │ │ ├── AsciiTransliteration_0602.php │ │ ├── AsciiTransliteration_0603.php │ │ ├── AsciiTransliteration_0604.php │ │ ├── AsciiTransliteration_0605.php │ │ ├── AsciiTransliteration_0606.php │ │ ├── AsciiTransliteration_0607.php │ │ ├── AsciiTransliteration_0608.php │ │ ├── AsciiTransliteration_0609.php │ │ ├── AsciiTransliteration_0610.php │ │ ├── AsciiTransliteration_0611.php │ │ ├── AsciiTransliteration_0612.php │ │ ├── AsciiTransliteration_0613.php │ │ ├── AsciiTransliteration_0614.php │ │ ├── AsciiTransliteration_0615.php │ │ ├── AsciiTransliteration_0616.php │ │ ├── AsciiTransliteration_0617.php │ │ ├── AsciiTransliteration_0618.php │ │ ├── AsciiTransliteration_0619.php │ │ ├── AsciiTransliteration_0620.php │ │ ├── AsciiTransliteration_0621.php │ │ ├── AsciiTransliteration_0622.php │ │ ├── AsciiTransliteration_0623.php │ │ ├── AsciiTransliteration_0624.php │ │ ├── AsciiTransliteration_0625.php │ │ ├── AsciiTransliteration_0626.php │ │ ├── AsciiTransliteration_0627.php │ │ ├── AsciiTransliteration_0628.php │ │ ├── AsciiTransliteration_0629.php │ │ ├── AsciiTransliteration_0630.php │ │ ├── AsciiTransliteration_0631.php │ │ ├── AsciiTransliteration_0632.php │ │ ├── AsciiTransliteration_0633.php │ │ ├── AsciiTransliteration_0634.php │ │ ├── AsciiTransliteration_0635.php │ │ ├── AsciiTransliteration_0636.php │ │ ├── AsciiTransliteration_0637.php │ │ ├── AsciiTransliteration_0638.php │ │ ├── AsciiTransliteration_0639.php │ │ ├── AsciiTransliteration_0640.php │ │ ├── AsciiTransliteration_0641.php │ │ ├── AsciiTransliteration_0642.php │ │ ├── AsciiTransliteration_0643.php │ │ ├── AsciiTransliteration_0644.php │ │ ├── AsciiTransliteration_0645.php │ │ ├── AsciiTransliteration_0646.php │ │ ├── AsciiTransliteration_0647.php │ │ ├── AsciiTransliteration_0648.php │ │ ├── AsciiTransliteration_0649.php │ │ ├── AsciiTransliteration_0650.php │ │ ├── AsciiTransliteration_0651.php │ │ ├── AsciiTransliteration_0652.php │ │ ├── AsciiTransliteration_0653.php │ │ ├── AsciiTransliteration_0654.php │ │ ├── AsciiTransliteration_0655.php │ │ ├── AsciiTransliteration_0656.php │ │ ├── AsciiTransliteration_0657.php │ │ ├── AsciiTransliteration_0658.php │ │ ├── AsciiTransliteration_0659.php │ │ ├── AsciiTransliteration_0660.php │ │ ├── AsciiTransliteration_0661.php │ │ ├── AsciiTransliteration_0662.php │ │ ├── AsciiTransliteration_0663.php │ │ ├── AsciiTransliteration_0664.php │ │ ├── AsciiTransliteration_0665.php │ │ ├── AsciiTransliteration_0666.php │ │ ├── AsciiTransliteration_0667.php │ │ ├── AsciiTransliteration_0668.php │ │ ├── AsciiTransliteration_0669.php │ │ ├── AsciiTransliteration_0670.php │ │ ├── AsciiTransliteration_0671.php │ │ ├── AsciiTransliteration_0672.php │ │ ├── AsciiTransliteration_0673.php │ │ ├── AsciiTransliteration_0674.php │ │ ├── AsciiTransliteration_0675.php │ │ ├── AsciiTransliteration_0676.php │ │ ├── AsciiTransliteration_0677.php │ │ ├── AsciiTransliteration_0678.php │ │ ├── AsciiTransliteration_0679.php │ │ ├── AsciiTransliteration_0680.php │ │ ├── AsciiTransliteration_0681.php │ │ ├── AsciiTransliteration_0682.php │ │ ├── AsciiTransliteration_0683.php │ │ ├── AsciiTransliteration_0684.php │ │ ├── AsciiTransliteration_0685.php │ │ ├── AsciiTransliteration_0686.php │ │ ├── AsciiTransliteration_0687.php │ │ ├── AsciiTransliteration_0688.php │ │ ├── AsciiTransliteration_0689.php │ │ ├── AsciiTransliteration_0690.php │ │ ├── AsciiTransliteration_0691.php │ │ ├── AsciiTransliteration_0692.php │ │ ├── AsciiTransliteration_0693.php │ │ ├── AsciiTransliteration_0694.php │ │ ├── AsciiTransliteration_0695.php │ │ ├── AsciiTransliteration_0696.php │ │ ├── AsciiTransliteration_0697.php │ │ ├── AsciiTransliteration_0698.php │ │ ├── AsciiTransliteration_0699.php │ │ ├── AsciiTransliteration_0700.php │ │ ├── AsciiTransliteration_0701.php │ │ ├── AsciiTransliteration_0702.php │ │ ├── AsciiTransliteration_0703.php │ │ ├── AsciiTransliteration_0704.php │ │ ├── AsciiTransliteration_0705.php │ │ ├── AsciiTransliteration_0706.php │ │ ├── AsciiTransliteration_0707.php │ │ ├── AsciiTransliteration_0708.php │ │ ├── AsciiTransliteration_0709.php │ │ ├── AsciiTransliteration_0710.php │ │ ├── AsciiTransliteration_0711.php │ │ ├── AsciiTransliteration_0712.php │ │ ├── AsciiTransliteration_0713.php │ │ ├── AsciiTransliteration_0714.php │ │ ├── AsciiTransliteration_0715.php │ │ ├── AsciiTransliteration_0716.php │ │ ├── AsciiTransliteration_0717.php │ │ ├── AsciiTransliteration_0718.php │ │ ├── AsciiTransliteration_0720.php │ │ ├── AsciiTransliteration_0721.php │ │ ├── AsciiTransliteration_0722.php │ │ ├── AsciiTransliteration_0723.php │ │ ├── AsciiTransliteration_0725.php │ │ ├── AsciiTransliteration_0726.php │ │ ├── AsciiTransliteration_0727.php │ │ ├── AsciiTransliteration_0728.php │ │ ├── AsciiTransliteration_0729.php │ │ ├── AsciiTransliteration_0730.php │ │ ├── AsciiTransliteration_0731.php │ │ ├── AsciiTransliteration_0732.php │ │ ├── AsciiTransliteration_0733.php │ │ ├── AsciiTransliteration_0734.php │ │ ├── AsciiTransliteration_0736.php │ │ ├── AsciiTransliteration_0737.php │ │ ├── AsciiTransliteration_0738.php │ │ ├── AsciiTransliteration_0739.php │ │ ├── AsciiTransliteration_0740.php │ │ ├── AsciiTransliteration_0741.php │ │ ├── AsciiTransliteration_0742.php │ │ ├── AsciiTransliteration_0743.php │ │ ├── AsciiTransliteration_0744.php │ │ ├── AsciiTransliteration_0745.php │ │ ├── AsciiTransliteration_0746.php │ │ ├── AsciiTransliteration_0747.php │ │ ├── AsciiTransliteration_0748.php │ │ ├── AsciiTransliteration_0749.php │ │ ├── AsciiTransliteration_0750.php │ │ ├── AsciiTransliteration_0760.php │ │ ├── AsciiTransliteration_0761.php │ │ ├── AsciiTransliteration_0762.php │ │ ├── AsciiTransliteration_0768.php │ │ ├── AsciiTransliteration_0769.php │ │ ├── AsciiTransliteration_0770.php │ │ ├── AsciiTransliteration_0771.php │ │ ├── AsciiTransliteration_0772.php │ │ ├── AsciiTransliteration_0773.php │ │ ├── AsciiTransliteration_0774.php │ │ ├── AsciiTransliteration_0775.php │ │ ├── AsciiTransliteration_0776.php │ │ ├── AsciiTransliteration_0777.php │ │ ├── AsciiTransliteration_0778.php │ │ ├── AsciiTransliteration_0779.php │ │ ├── AsciiTransliteration_0780.php │ │ ├── AsciiTransliteration_0781.php │ │ ├── AsciiTransliteration_0782.php │ │ ├── AsciiTransliteration_0783.php │ │ ├── AsciiTransliteration_0784.php │ │ ├── AsciiTransliteration_0785.php │ │ ├── AsciiTransliteration_0786.php │ │ ├── AsciiTransliteration_0787.php │ │ ├── AsciiTransliteration_0788.php │ │ ├── AsciiTransliteration_0789.php │ │ ├── AsciiTransliteration_0790.php │ │ ├── AsciiTransliteration_0791.php │ │ ├── AsciiTransliteration_0792.php │ │ ├── AsciiTransliteration_0793.php │ │ ├── AsciiTransliteration_0794.php │ │ ├── AsciiTransliteration_0795.php │ │ ├── AsciiTransliteration_0796.php │ │ ├── AsciiTransliteration_0797.php │ │ ├── AsciiTransliteration_0798.php │ │ ├── AsciiTransliteration_0799.php │ │ ├── AsciiTransliteration_0800.php │ │ ├── AsciiTransliteration_0801.php │ │ ├── AsciiTransliteration_0802.php │ │ ├── AsciiTransliteration_0803.php │ │ └── index.php │ └── index.php ├── Logging.php ├── Mail.php ├── MailAgent │ ├── APIs │ │ ├── SMTP.php │ │ ├── SMTPTLS.php │ │ ├── SendMail.php │ │ └── index.php │ ├── MailAgent.php │ ├── MailAgentInterface.php │ └── index.php ├── Maintenance │ ├── Cleanup │ │ ├── CleanupBase.php │ │ ├── index.php │ │ ├── v2_1 │ │ │ ├── OldFiles.php │ │ │ └── index.php │ │ └── v3_0 │ │ │ ├── OldFiles.php │ │ │ ├── TasksDirCase.php │ │ │ └── index.php │ ├── GenericSubStep.php │ ├── Maintenance.php │ ├── Migration │ │ ├── MigrationBase.php │ │ ├── index.php │ │ ├── v2_1 │ │ │ ├── AdminInfoFiles.php │ │ │ ├── AgreementUpdate.php │ │ │ ├── AlertsObsolete.php │ │ │ ├── AlertsWatchedBoards.php │ │ │ ├── AlertsWatchedTopics.php │ │ │ ├── AttachmentDirectory.php │ │ │ ├── AttachmentSizes.php │ │ │ ├── AutoNotify.php │ │ │ ├── BoardDescriptions.php │ │ │ ├── BoardPermissionsView.php │ │ │ ├── CalendarEvents.php │ │ │ ├── CalendarUpdates.php │ │ │ ├── CategoryDescrptions.php │ │ │ ├── CollapsedCategories.php │ │ │ ├── CreateAlerts.php │ │ │ ├── CreateBackgroundTasks.php │ │ │ ├── CreateLogGroupRequests.php │ │ │ ├── CreateMemberLogins.php │ │ │ ├── CustomFieldsPart1.php │ │ │ ├── CustomFieldsPart2.php │ │ │ ├── CustomFieldsPart3.php │ │ │ ├── FixDates.php │ │ │ ├── IdxAdminInfo.php │ │ │ ├── IdxBoards.php │ │ │ ├── IdxLogActivity.php │ │ │ ├── IdxLogComments.php │ │ │ ├── IdxLogPackages.php │ │ │ ├── IdxMembers.php │ │ │ ├── IdxMessages.php │ │ │ ├── IdxScheduledTasks.php │ │ │ ├── IdxTopics.php │ │ │ ├── Ipv6BanItem.php │ │ │ ├── Ipv6Base.php │ │ │ ├── Ipv6LogAction.php │ │ │ ├── Ipv6LogBanned.php │ │ │ ├── Ipv6LogErrors.php │ │ │ ├── Ipv6LogFloodControl.php │ │ │ ├── Ipv6LogOnline.php │ │ │ ├── Ipv6LogReportedComments.php │ │ │ ├── Ipv6MemberLogins.php │ │ │ ├── Ipv6MembersIP.php │ │ │ ├── Ipv6MembersIP2.php │ │ │ ├── Ipv6Messages.php │ │ │ ├── LegacyAttachments.php │ │ │ ├── LegacyData.php │ │ │ ├── Likes.php │ │ │ ├── LogErrorsBacktrace.php │ │ │ ├── LogOnlineURL.php │ │ │ ├── LogReportedCommentsEmail.php │ │ │ ├── LogSpiderHitsURL.php │ │ │ ├── MailQueue.php │ │ │ ├── MemberGroupsTfaRequired.php │ │ │ ├── MembergroupIcon.php │ │ │ ├── MembersHideEmail.php │ │ │ ├── MembersLangUTF8.php │ │ │ ├── MembersOpenID.php │ │ │ ├── MembersTfaBackup.php │ │ │ ├── MembersTfaSecret.php │ │ │ ├── MembersTimezone.php │ │ │ ├── Mentions.php │ │ │ ├── MessagesModifiedReason.php │ │ │ ├── ModeratorGroups.php │ │ │ ├── MovedTopics.php │ │ │ ├── MysqlLegacyData.php │ │ │ ├── MysqlModFixes.php │ │ │ ├── OpenID.php │ │ │ ├── PackageManager.php │ │ │ ├── Permissions.php │ │ │ ├── PersonalMessageLabels.php │ │ │ ├── PersonalMessageNotification.php │ │ │ ├── PostgreSqlFindInSet.php │ │ │ ├── PostgreSqlIPv6Helper.php │ │ │ ├── PostgreSqlSchemaDiff.php │ │ │ ├── PostgreSqlSequences.php │ │ │ ├── PostgreSqlTime.php │ │ │ ├── PostgreSqlUnlogged.php │ │ │ ├── RemoveKarma.php │ │ │ ├── ScheduledTasks.php │ │ │ ├── SessionIDs.php │ │ │ ├── SettingsUpdate.php │ │ │ ├── Smileys.php │ │ │ ├── ThemeSettings.php │ │ │ ├── TopicUnwatch.php │ │ │ ├── UserDrafts.php │ │ │ ├── ValidationServers.php │ │ │ ├── VerificationQuestions.php │ │ │ └── index.php │ │ └── v3_0 │ │ │ ├── ConvertToInnoDb.php │ │ │ ├── EditHistory.php │ │ │ ├── ErrorLogSession.php │ │ │ ├── EventUids.php │ │ │ ├── HolidaysToEvents.php │ │ │ ├── LanguageDirectory.php │ │ │ ├── MailType.php │ │ │ ├── MessageVersion.php │ │ │ ├── PackageVersion.php │ │ │ ├── PermissionChanges.php │ │ │ ├── RecurringEvents.php │ │ │ ├── RemoveCookieTime.php │ │ │ ├── SearchResultsPrimaryKey.php │ │ │ ├── SpoofDetector.php │ │ │ └── index.php │ ├── Step.php │ ├── SubStepInterface.php │ ├── Tools │ │ ├── Install.php │ │ ├── ToolsBase.php │ │ ├── ToolsInterface.php │ │ ├── Upgrade.php │ │ └── index.php │ ├── Utf8ConverterStep.php │ └── index.php ├── Mentions.php ├── Menu.php ├── Msg.php ├── News.php ├── OutputTypeInterface.php ├── OutputTypes │ ├── Html.php │ ├── Json.php │ ├── Xml.php │ └── index.php ├── PackageManager │ ├── FtpConnection.php │ ├── PackageManager.php │ ├── PackageUtils.php │ ├── XmlArray.php │ └── index.php ├── PageIndex.php ├── Parser.php ├── Parsers │ ├── BBCodeParser.php │ ├── MarkdownParser.php │ ├── SmileyParser.php │ └── index.php ├── Permissions │ ├── GroupPermissionSet.php │ ├── Permission.php │ ├── PermissionProfile.php │ ├── UserPermissionSet.php │ └── index.php ├── PersonalMessage.php ├── PersonalMessage │ ├── Conversation.php │ ├── DraftPM.php │ ├── Folder.php │ ├── Label.php │ ├── PM.php │ ├── Popup.php │ ├── Received.php │ ├── Rule.php │ ├── Search.php │ ├── SearchResult.php │ └── index.php ├── Poll.php ├── PollChoice.php ├── Profile-Actions.php ├── Profile-Modify.php ├── Profile-View.php ├── Profile.php ├── ProxyServer.php ├── Punycode.php ├── QueryString.php ├── Routable.php ├── Sapi.php ├── ScheduledTasks.php ├── Search.php ├── Search │ ├── APIs │ │ ├── Custom.php │ │ ├── Fulltext.php │ │ ├── Parsed.php │ │ ├── Standard.php │ │ └── index.php │ ├── SearchApi.php │ ├── SearchApiInterface.php │ ├── SearchResult.php │ └── index.php ├── SearchAPI-Custom.php ├── SearchAPI-Fulltext.php ├── SearchAPI-Standard.php ├── Security.php ├── SecurityToken.php ├── ServerSideIncludes.php ├── Session.php ├── Slug.php ├── Subs-Admin.php ├── Subs-Auth.php ├── Subs-BoardIndex.php ├── Subs-Boards.php ├── Subs-Calendar.php ├── Subs-Categories.php ├── Subs-Charset.php ├── Subs-Compat.php ├── Subs-Editor.php ├── Subs-Graphics.php ├── Subs-List.php ├── Subs-Membergroups.php ├── Subs-Members.php ├── Subs-MembersOnline.php ├── Subs-MessageIndex.php ├── Subs-Package.php ├── Subs-ReportedContent.php ├── Subs-Sound.php ├── Subs-Timezones.php ├── Subscriptions │ ├── PayPal │ │ ├── Display.php │ │ ├── Payment.php │ │ └── index.php │ └── index.php ├── TOTP │ ├── Auth.php │ └── index.php ├── TaskRunner.php ├── Tasks │ ├── AnonymizeEditHistory.php │ ├── ApprovePost_Notify.php │ ├── ApproveReply_Notify.php │ ├── BackgroundTask.php │ ├── Birthday_Notify.php │ ├── Buddy_Notify.php │ ├── CreateAttachment_Notify.php │ ├── CreatePost_Notify.php │ ├── DailyMaintenance.php │ ├── EventNew_Notify.php │ ├── ExportProfileData.php │ ├── FetchCalendarSubscriptions.php │ ├── FetchSMFiles.php │ ├── GenericScheduledTask.php │ ├── GenericTask.php │ ├── GroupAct_Notify.php │ ├── GroupReq_Notify.php │ ├── Likes_Notify.php │ ├── MemberReportReply_Notify.php │ ├── MemberReport_Notify.php │ ├── MsgReportReply_Notify.php │ ├── MsgReport_Notify.php │ ├── PaidSubs.php │ ├── PruneLogTopics.php │ ├── Register_Notify.php │ ├── RemoveOldDrafts.php │ ├── RemoveTempAttachments.php │ ├── RemoveTopicRedirects.php │ ├── ScheduledTask.php │ ├── SendDigests.php │ ├── UpdateSpoofDetectorNames.php │ ├── UpdateTldRegex.php │ ├── UpdateUnicode.php │ ├── Utf8EntityDecode.php │ ├── WeeklyMaintenance.php │ └── index.php ├── Theme.php ├── Time.php ├── TimeInterval.php ├── TimeZone.php ├── Topic.php ├── Unicode │ ├── CaseFold.php │ ├── CaseLower.php │ ├── CaseTitle.php │ ├── CaseUpper.php │ ├── CombiningClasses.php │ ├── Composition.php │ ├── Confusables.php │ ├── Currencies.php │ ├── DecompositionCanonical.php │ ├── DecompositionCompatibility.php │ ├── DefaultIgnorables.php │ ├── Idna.php │ ├── Metadata.php │ ├── Plurals.php │ ├── QuickCheck.php │ ├── RegularExpressions.php │ ├── SpoofDetector.php │ ├── Utf8String.php │ └── index.php ├── Url.php ├── User.php ├── Utils.php ├── Uuid.php ├── Verifier.php ├── WebFetch │ ├── APIs │ │ ├── CurlFetcher.php │ │ ├── FtpFetcher.php │ │ ├── SocketFetcher.php │ │ └── index.php │ ├── WebFetchApi.php │ ├── WebFetchApiInterface.php │ └── index.php └── index.php ├── Themes ├── default │ ├── Admin.template.php │ ├── Agreement.template.php │ ├── BoardIndex.template.php │ ├── Calendar.template.php │ ├── Display.template.php │ ├── EditHistory.template.php │ ├── Errors.template.php │ ├── EventEditor.template.php │ ├── GenericControls.template.php │ ├── GenericList.template.php │ ├── GenericMenu.template.php │ ├── Help.template.php │ ├── InstallTemplate.php │ ├── Likes.template.php │ ├── Login.template.php │ ├── MaintenanceTemplate.php │ ├── ManageAttachments.template.php │ ├── ManageBans.template.php │ ├── ManageBoards.template.php │ ├── ManageCalendar.template.php │ ├── ManageLanguages.template.php │ ├── ManageMail.template.php │ ├── ManageMaintenance.template.php │ ├── ManageMembergroups.template.php │ ├── ManageMembers.template.php │ ├── ManageNews.template.php │ ├── ManagePaid.template.php │ ├── ManagePermissions.template.php │ ├── ManageScheduledTasks.template.php │ ├── ManageSearch.template.php │ ├── ManageSmileys.template.php │ ├── Memberlist.template.php │ ├── MessageIndex.template.php │ ├── ModerationCenter.template.php │ ├── MoveTopic.template.php │ ├── Notify.template.php │ ├── Packages.template.php │ ├── PersonalMessage.template.php │ ├── Poll.template.php │ ├── Post.template.php │ ├── Printpage.template.php │ ├── Profile.template.php │ ├── Recent.template.php │ ├── Register.template.php │ ├── Reminder.template.php │ ├── ReportToMod.template.php │ ├── ReportedContent.template.php │ ├── Reports.template.php │ ├── Search.template.php │ ├── Settings.template.php │ ├── SplitTopics.template.php │ ├── Stats.template.php │ ├── Themes.template.php │ ├── UpgradeTemplate.php │ ├── Who.template.php │ ├── Xml.template.php │ ├── css │ │ ├── admin.css │ │ ├── attachments.css │ │ ├── calendar.css │ │ ├── calendar.rtl.css │ │ ├── coloris.min.css │ │ ├── index.css │ │ ├── index.php │ │ ├── install.css │ │ ├── jquery.custom-scrollbar.css │ │ ├── jquery.sceditor.css │ │ ├── jquery.sceditor.default.css │ │ ├── maintenance.css │ │ ├── markdown.css │ │ ├── noscript.css │ │ ├── report.css │ │ ├── responsive.css │ │ ├── rtl.css │ │ └── slider.min.css │ ├── fonts │ │ ├── AnonymousPro - License.txt │ │ ├── AnonymousPro.gdf │ │ ├── AnonymousPro.ttf │ │ ├── AnonymousPro │ │ │ ├── C.png │ │ │ ├── D.png │ │ │ ├── E.png │ │ │ ├── F.png │ │ │ ├── G.png │ │ │ ├── H.png │ │ │ ├── I.png │ │ │ ├── J.png │ │ │ ├── K.png │ │ │ ├── L.png │ │ │ ├── M.png │ │ │ ├── N.png │ │ │ ├── O.png │ │ │ ├── P.png │ │ │ ├── Q.png │ │ │ ├── R.png │ │ │ ├── S.png │ │ │ ├── T.png │ │ │ ├── U.png │ │ │ ├── V.png │ │ │ ├── W.png │ │ │ ├── X.png │ │ │ ├── Y.png │ │ │ ├── Z.png │ │ │ ├── a.png │ │ │ ├── b.png │ │ │ └── index.php │ │ ├── AnonymousPro_end.gdf │ │ ├── ConsolaMono - License.txt │ │ ├── ConsolaMono.gdf │ │ ├── ConsolaMono.ttf │ │ ├── ConsolaMono │ │ │ ├── A.png │ │ │ ├── B.png │ │ │ ├── C.png │ │ │ ├── D.png │ │ │ ├── E.png │ │ │ ├── F.png │ │ │ ├── G.png │ │ │ ├── H.png │ │ │ ├── I.png │ │ │ ├── J.png │ │ │ ├── K.png │ │ │ ├── L.png │ │ │ ├── M.png │ │ │ ├── N.png │ │ │ ├── O.png │ │ │ ├── P.png │ │ │ ├── Q.png │ │ │ ├── R.png │ │ │ ├── S.png │ │ │ ├── T.png │ │ │ ├── U.png │ │ │ ├── V.png │ │ │ ├── W.png │ │ │ ├── X.png │ │ │ ├── Y.png │ │ │ ├── Z.png │ │ │ └── index.php │ │ ├── ConsolaMono_end.gdf │ │ ├── Pfennig - License.txt │ │ ├── Pfennig.gdf │ │ ├── Pfennig.ttf │ │ ├── Pfennig_end.gdf │ │ ├── index.php │ │ └── sound │ │ │ ├── a.english.wav │ │ │ ├── b.english.wav │ │ │ ├── c.english.wav │ │ │ ├── d.english.wav │ │ │ ├── e.english.wav │ │ │ ├── f.english.wav │ │ │ ├── g.english.wav │ │ │ ├── h.english.wav │ │ │ ├── i.english.wav │ │ │ ├── index.php │ │ │ ├── j.english.wav │ │ │ ├── k.english.wav │ │ │ ├── l.english.wav │ │ │ ├── m.english.wav │ │ │ ├── n.english.wav │ │ │ ├── o.english.wav │ │ │ ├── p.english.wav │ │ │ ├── q.english.wav │ │ │ ├── r.english.wav │ │ │ ├── s.english.wav │ │ │ ├── t.english.wav │ │ │ ├── u.english.wav │ │ │ ├── v.english.wav │ │ │ ├── w.english.wav │ │ │ ├── x.english.wav │ │ │ ├── y.english.wav │ │ │ └── z.english.wav │ ├── images │ │ ├── bbc │ │ │ ├── bbc_bg.png │ │ │ ├── bbc_hoverbg.png │ │ │ ├── details.png │ │ │ ├── heading.png │ │ │ ├── hidden.png │ │ │ ├── index.php │ │ │ └── tt.png │ │ ├── blank.png │ │ ├── boardicons.png │ │ ├── buddy_useroff.png │ │ ├── buddy_useron.png │ │ ├── cake.png │ │ ├── construction.png │ │ ├── generic_attach.png │ │ ├── helptopics.png │ │ ├── helptopics_hd.png │ │ ├── icons │ │ │ ├── admin_sprite.png │ │ │ ├── bell.png │ │ │ ├── bell_hd.png │ │ │ ├── clip.png │ │ │ ├── config_hd.png │ │ │ ├── delete.png │ │ │ ├── editor_sprite.png │ │ │ ├── feed.svg │ │ │ ├── index.php │ │ │ ├── main_icons_sprite.png │ │ │ ├── main_icons_sprite_hd.png │ │ │ ├── members.png │ │ │ ├── menu.svg │ │ │ ├── modify_inline.png │ │ │ ├── profile_hd.png │ │ │ ├── profile_sm.png │ │ │ ├── stats_info.png │ │ │ └── toggle.png │ │ ├── icq.png │ │ ├── index.php │ │ ├── ip.png │ │ ├── loading_sm.gif │ │ ├── membericons │ │ │ ├── blank.png │ │ │ ├── icon.png │ │ │ ├── iconadmin.png │ │ │ ├── icongmod.png │ │ │ ├── iconmod.png │ │ │ └── index.php │ │ ├── new_redirect.png │ │ ├── post │ │ │ ├── angry.png │ │ │ ├── cheesy.png │ │ │ ├── clip.png │ │ │ ├── exclamation.png │ │ │ ├── grin.png │ │ │ ├── index.php │ │ │ ├── lamp.png │ │ │ ├── moved.png │ │ │ ├── poll.png │ │ │ ├── question.png │ │ │ ├── recycled.png │ │ │ ├── sad.png │ │ │ ├── smiley.png │ │ │ ├── thumbdown.png │ │ │ ├── thumbup.png │ │ │ ├── wink.png │ │ │ └── xx.png │ │ ├── selected.png │ │ ├── selected_open.png │ │ ├── skype.png │ │ ├── smflogo.svg │ │ ├── stats_pie.png │ │ ├── stats_pie_rtl.png │ │ ├── thumbnail.png │ │ └── topic │ │ │ ├── index.php │ │ │ ├── normal_post.png │ │ │ ├── normal_post_locked.png │ │ │ ├── normal_post_locked_sticky.png │ │ │ └── normal_post_sticky.png │ ├── index.php │ ├── index.template.php │ ├── languages │ │ ├── en_US │ │ │ ├── ThemeStrings.php │ │ │ └── index.php │ │ └── index.php │ └── scripts │ │ ├── PersonalMessage.js │ │ ├── admin.js │ │ ├── alertSettings.js │ │ ├── alerts.js │ │ ├── calendar.js │ │ ├── captcha.js │ │ ├── coloris.min.js │ │ ├── drafts.js │ │ ├── dropzone.min.js │ │ ├── event.js │ │ ├── icondropdown.js │ │ ├── index.php │ │ ├── jquery-3.6.3.min.js │ │ ├── jquery.atwho.min.js │ │ ├── jquery.caret.min.js │ │ ├── jquery.custom-scrollbar.js │ │ ├── jquery.sceditor.bbcode.min.js │ │ ├── mentions.js │ │ ├── profile.js │ │ ├── qrcode.js │ │ ├── quotedText.js │ │ ├── register.js │ │ ├── reports.js │ │ ├── sceditor.plugins.autolinker.js │ │ ├── sceditor.plugins.smf.js │ │ ├── script.js │ │ ├── slippry.min.js │ │ ├── smf_fileUpload.js │ │ ├── smf_jquery_plugins.js │ │ ├── spellcheck.js │ │ ├── stats.js │ │ ├── suggest.js │ │ ├── theme.js │ │ └── topic.js └── index.php ├── attachments ├── .htaccess └── index.php ├── avatars ├── Oxygen │ ├── Earl.png │ ├── beagle.png │ ├── bug.png │ ├── cards.png │ ├── cookie.png │ ├── dice.png │ ├── flish.png │ ├── game.png │ ├── golf.png │ ├── hardware.png │ ├── index.php │ ├── invisible-user.png │ ├── lense.png │ ├── love.png │ ├── megaphone.png │ ├── pi.png │ ├── scope.png │ ├── smiley.png │ ├── tea.png │ └── wine.png ├── blank.png ├── default.png └── index.php ├── cache ├── .htaccess ├── images │ └── index.php └── index.php ├── composer.json ├── composer.lock ├── cron.php ├── custom_avatar ├── blank.png └── index.php ├── favicon.ico ├── index.php ├── other ├── Settings.php ├── Settings_bak.php ├── db_last_error.php ├── icons │ ├── admin │ │ ├── administration.png │ │ ├── alerts.png │ │ ├── attachment.png │ │ ├── ban.png │ │ ├── big │ │ │ ├── attachment.png │ │ │ ├── ban.png │ │ │ ├── boards.png │ │ │ ├── calendar.png │ │ │ ├── current_theme.png │ │ │ ├── default.png │ │ │ ├── engines.png │ │ │ ├── exit.png │ │ │ ├── features.png │ │ │ ├── languages.png │ │ │ ├── logs.png │ │ │ ├── mail.png │ │ │ ├── maintain.png │ │ │ ├── membergroups.png │ │ │ ├── members.png │ │ │ ├── modifications.png │ │ │ ├── news.png │ │ │ ├── packages.png │ │ │ ├── paid.png │ │ │ ├── permissions.png │ │ │ ├── posts.png │ │ │ ├── regcenter.png │ │ │ ├── reports.png │ │ │ ├── scheduled.png │ │ │ ├── search.png │ │ │ ├── security.png │ │ │ ├── server.png │ │ │ ├── smiley.png │ │ │ ├── support.png │ │ │ ├── themes.png │ │ │ └── warning.png │ │ ├── boards.png │ │ ├── calendar.png │ │ ├── change_menu.png │ │ ├── change_menu2.png │ │ ├── corefeatures.png │ │ ├── current_theme.png │ │ ├── drafts.png │ │ ├── engines.png │ │ ├── exit.png │ │ ├── features.png │ │ ├── frenemy.png │ │ ├── ignore.png │ │ ├── languages.png │ │ ├── logs.png │ │ ├── mail.png │ │ ├── maintain.png │ │ ├── membergroups.png │ │ ├── members.png │ │ ├── members_delete.png │ │ ├── members_request.png │ │ ├── members_watched.png │ │ ├── modifications.png │ │ ├── news.png │ │ ├── openid.png │ │ ├── package_ops.png │ │ ├── packages.png │ │ ├── paid.png │ │ ├── permissions.png │ │ ├── personal_message.png │ │ ├── post_moderation_allow.png │ │ ├── post_moderation_attach.png │ │ ├── post_moderation_deny.png │ │ ├── post_moderation_moderate.png │ │ ├── posts.png │ │ ├── regcenter.png │ │ ├── reports.png │ │ ├── scheduled.png │ │ ├── search.png │ │ ├── security.png │ │ ├── server.png │ │ ├── smiley.png │ │ ├── stats.png │ │ ├── subsection.png │ │ ├── subsection_rtl.png │ │ ├── support.png │ │ ├── themes.png │ │ └── warning.png │ └── topic │ │ ├── hot_poll.png │ │ ├── hot_poll_locked.png │ │ ├── hot_poll_locked_sticky.png │ │ ├── hot_poll_sticky.png │ │ ├── hot_post.png │ │ ├── hot_post_locked.png │ │ ├── hot_post_locked_sticky.png │ │ ├── hot_post_sticky.png │ │ ├── my_hot_poll.png │ │ ├── my_hot_poll_locked.png │ │ ├── my_hot_poll_locked_sticky.png │ │ ├── my_hot_poll_sticky.png │ │ ├── my_hot_post.png │ │ ├── my_hot_post_locked.png │ │ ├── my_hot_post_locked_sticky.png │ │ ├── my_hot_post_sticky.png │ │ ├── my_normal_poll.png │ │ ├── my_normal_poll_locked.png │ │ ├── my_normal_poll_locked_sticky.png │ │ ├── my_normal_poll_sticky.png │ │ ├── my_normal_post.png │ │ ├── my_normal_post_locked.png │ │ ├── my_normal_post_locked_sticky.png │ │ ├── my_normal_post_sticky.png │ │ ├── my_veryhot_poll.png │ │ ├── my_veryhot_poll_locked.png │ │ ├── my_veryhot_poll_locked_sticky.png │ │ ├── my_veryhot_poll_sticky.png │ │ ├── my_veryhot_post.png │ │ ├── my_veryhot_post_locked.png │ │ ├── my_veryhot_post_locked_sticky.png │ │ ├── my_veryhot_post_sticky.png │ │ ├── normal_poll.png │ │ ├── normal_poll_locked.png │ │ ├── normal_poll_locked_sticky.png │ │ ├── normal_poll_sticky.png │ │ ├── normal_post.png │ │ ├── normal_post_locked.png │ │ ├── normal_post_locked_sticky.png │ │ ├── normal_post_sticky.png │ │ ├── veryhot_poll.png │ │ ├── veryhot_poll_locked.png │ │ ├── veryhot_poll_locked_sticky.png │ │ ├── veryhot_poll_sticky.png │ │ ├── veryhot_post.png │ │ ├── veryhot_post_locked.png │ │ ├── veryhot_post_locked_sticky.png │ │ └── veryhot_post_sticky.png ├── install.php ├── readme.html ├── requirements.md ├── update_asciitransliterator_data.php ├── update_timezones.php ├── update_unicode_data.php ├── update_version_numbers.php ├── upgrade.php ├── upgrade_1-0.sql ├── upgrade_1-1.sql ├── upgrade_2-0_MySQL.sql └── upgrade_2-0_PostgreSQL.sql ├── proxy.php ├── ssi_examples.php ├── ssi_examples.shtml └── subscriptions.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/standard_bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/.github/ISSUE_TEMPLATE/standard_bug.yml -------------------------------------------------------------------------------- /.github/crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/.github/crowdin.yml -------------------------------------------------------------------------------- /.github/phpcs/SectionComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/.github/phpcs/SectionComments.php -------------------------------------------------------------------------------- /.github/workflows/crowdin_wf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/.github/workflows/crowdin_wf.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin_wf_next.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/.github/workflows/crowdin_wf_next.yml -------------------------------------------------------------------------------- /.github/workflows/php-cs-fixer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/.github/workflows/php-cs-fixer.yml -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.github/workflows/update-year.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/.github/workflows/update-year.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /DCO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/DCO.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/LICENSE -------------------------------------------------------------------------------- /Languages/en_US/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/Admin.php -------------------------------------------------------------------------------- /Languages/en_US/Agreement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/Agreement.php -------------------------------------------------------------------------------- /Languages/en_US/Alerts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/Alerts.php -------------------------------------------------------------------------------- /Languages/en_US/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/Calendar.php -------------------------------------------------------------------------------- /Languages/en_US/Drafts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/Drafts.php -------------------------------------------------------------------------------- /Languages/en_US/Editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/Editor.php -------------------------------------------------------------------------------- /Languages/en_US/EmailTemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/EmailTemplates.php -------------------------------------------------------------------------------- /Languages/en_US/Errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/Errors.php -------------------------------------------------------------------------------- /Languages/en_US/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/General.php -------------------------------------------------------------------------------- /Languages/en_US/Help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/Help.php -------------------------------------------------------------------------------- /Languages/en_US/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/Login.php -------------------------------------------------------------------------------- /Languages/en_US/Maintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/Maintenance.php -------------------------------------------------------------------------------- /Languages/en_US/ManageBoards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/ManageBoards.php -------------------------------------------------------------------------------- /Languages/en_US/ManageCalendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/ManageCalendar.php -------------------------------------------------------------------------------- /Languages/en_US/ManageMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/ManageMail.php -------------------------------------------------------------------------------- /Languages/en_US/ManageMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/ManageMaintenance.php -------------------------------------------------------------------------------- /Languages/en_US/ManageMembers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/ManageMembers.php -------------------------------------------------------------------------------- /Languages/en_US/ManagePaid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/ManagePaid.php -------------------------------------------------------------------------------- /Languages/en_US/ManagePermissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/ManagePermissions.php -------------------------------------------------------------------------------- /Languages/en_US/ManageSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/ManageSettings.php -------------------------------------------------------------------------------- /Languages/en_US/ManageSmileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/ManageSmileys.php -------------------------------------------------------------------------------- /Languages/en_US/Manual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/Manual.php -------------------------------------------------------------------------------- /Languages/en_US/ModerationCenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMachines/SMF/HEAD/Languages/en_US/ModerationCenter.php -------------------------------------------------------------------------------- /Languages/en_US/Modifications.php: -------------------------------------------------------------------------------- 1 |