gitextract_fpvand7g/ ├── .gitignore ├── .gitmodules ├── GlobalTerminalService/ │ ├── GTServer4.cs │ ├── GTServer5.cs │ ├── GTServerBase.cs │ ├── GlobalTerminalService.csproj │ ├── Program.cs │ ├── ProjectInstaller.Designer.cs │ ├── ProjectInstaller.cs │ ├── ProjectInstaller.resx │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Service1.Designer.cs │ ├── Service1.cs │ ├── Service1.resx │ ├── app.config │ └── cert.pfx ├── LICENSE.md ├── MakeBaseStatTables/ │ ├── MakeBaseStatTables.csproj │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── README.md ├── RenameImages/ │ ├── App.config │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ └── RenameImages.csproj ├── Roadmap.md ├── VeekunImport/ │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── VeekunImport.csproj │ ├── app.config │ ├── countries4.txt │ ├── countries5.txt │ ├── families.txt │ ├── families_map.txt │ ├── form_abilities3.txt │ ├── form_abilities4.txt │ ├── form_abilities5.txt │ ├── form_abilities6.txt │ ├── form_stats1.txt │ ├── form_stats2.txt │ ├── form_stats3.txt │ ├── form_stats4.txt │ ├── form_stats5.txt │ ├── form_stats6.txt │ ├── form_values.txt │ ├── items3.txt │ ├── items4.txt │ ├── items5.txt │ ├── items_balls.txt │ ├── packages.config │ ├── regions.txt │ ├── ribbon_positions3.txt │ ├── ribbon_positions4.txt │ ├── ribbon_positions5.txt │ └── ribbons.txt ├── bvCrawler4/ │ ├── App.config │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── bvCrawler4.csproj │ └── packages.config ├── bvCrawler5/ │ ├── App.config │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── bvCrawler5.csproj │ └── packages.config ├── bvRestorer4/ │ ├── App.config │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ └── bvRestorer4.csproj ├── bvRestorer5/ │ ├── App.config │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ └── bvRestorer5.csproj ├── gfx/ │ ├── 2014 design/ │ │ ├── fGTS colour blending.psd │ │ ├── heading-backdrop.psd │ │ ├── headinglogo.psd │ │ ├── logo-colour.psd │ │ └── logov3.psd │ └── 2023 design/ │ ├── Discord Icon Pride.afdesign │ ├── Discord Icon.afdesign │ ├── Logo.afdesign │ ├── Temp placeholder background.afdesign │ └── Touch Icon.afdesign ├── gts/ │ ├── Global.asax │ ├── Global.asax.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles/ │ │ ├── Local IIS.pubxml │ │ └── Public.pubxml │ ├── Web.Public.config │ ├── Web.config │ ├── admin/ │ │ ├── Sessions.aspx │ │ ├── Sessions.aspx.cs │ │ ├── Sessions.aspx.designer.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ └── Web.config │ ├── gts.csproj │ ├── masters/ │ │ ├── MasterPage.master │ │ ├── MasterPage.master.cs │ │ └── MasterPage.master.designer.cs │ ├── pgl.ashx │ ├── pgl.ashx.cs │ ├── pkvldtprod.ashx │ ├── pkvldtprod.ashx.cs │ ├── pokemondpds.ashx │ ├── pokemondpds.ashx.cs │ ├── pokemondpds_web.ashx │ ├── pokemondpds_web.ashx.cs │ ├── src/ │ │ ├── AppStateHelper.cs │ │ ├── BanHelper.cs │ │ ├── FakeOpponentGenerator.cs │ │ └── IpAddressHelper.cs │ ├── syachi2ds.ashx │ └── syachi2ds.ashx.cs ├── library/ │ ├── Data/ │ │ ├── DataMysql.cs │ │ ├── DataSqlite.cs │ │ ├── Database.cs │ │ ├── DatabaseExtender.cs │ │ ├── MySqlDatabaseExtender.cs │ │ └── SqlDatabaseExtender.cs │ ├── Library.csproj │ ├── Pokedex/ │ │ ├── Ability.cs │ │ ├── Evolution.cs │ │ ├── Family.cs │ │ ├── Form.cs │ │ ├── FormAbilities.cs │ │ ├── FormStats.cs │ │ ├── Item.cs │ │ ├── Location.cs │ │ ├── Move.cs │ │ ├── Pokedex.cs │ │ ├── PokedexRecordBase.cs │ │ ├── Region.cs │ │ ├── Ribbon.cs │ │ ├── Species.cs │ │ └── Type.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Structures/ │ │ ├── ByteStatValues.cs │ │ ├── ContestStatValues.cs │ │ ├── Enums.cs │ │ ├── Format.cs │ │ ├── IntStatValues.cs │ │ ├── IvStatValues.cs │ │ ├── MoveSlot.cs │ │ ├── Pokemon4.cs │ │ ├── Pokemon5.cs │ │ ├── PokemonBase.cs │ │ ├── PokemonParty4.cs │ │ ├── PokemonParty5.cs │ │ ├── PokemonPartyBase.cs │ │ ├── StatValues.cs │ │ ├── StatValuesBase.cs │ │ └── TrainerMemo.cs │ ├── Support/ │ │ ├── AliasTable.cs │ │ ├── AssertHelper.cs │ │ ├── BinarySerializableBase.cs │ │ ├── EncodedString4.cs │ │ ├── EncodedString5.cs │ │ ├── EncodedStringBase.cs │ │ ├── EnumerableExtender.cs │ │ ├── GameSyncUtils.cs │ │ ├── Indexer1d.cs │ │ ├── LazyKeyValuePair.cs │ │ ├── LocalizedString.cs │ │ ├── LogHelper.cs │ │ ├── StreamExtender.cs │ │ ├── StringHelper.cs │ │ ├── TrendyPhrase4.cs │ │ ├── TrendyPhrase5.cs │ │ ├── TrendyPhraseBase.cs │ │ └── ValidationSummary.cs │ ├── Wfc/ │ │ ├── BanStatus.cs │ │ ├── BattleSubwayPokemon5.cs │ │ ├── BattleSubwayProfile5.cs │ │ ├── BattleSubwayRecord5.cs │ │ ├── BattleTowerPokemon4.cs │ │ ├── BattleTowerPokemonBase.cs │ │ ├── BattleTowerProfile4.cs │ │ ├── BattleTowerProfileBase.cs │ │ ├── BattleTowerRecord4.cs │ │ ├── BattleTowerRecordBase.cs │ │ ├── BattleVideoHeader4.cs │ │ ├── BattleVideoHeader5.cs │ │ ├── BattleVideoRecord4.cs │ │ ├── BattleVideoRecord5.cs │ │ ├── BoxRecord4.cs │ │ ├── DressupRecord4.cs │ │ ├── GtsRecord4.cs │ │ ├── GtsRecord5.cs │ │ ├── GtsRecordBase.cs │ │ ├── MusicalRecord5.cs │ │ ├── PlazaQuestionnaire.cs │ │ ├── PlazaSchedule.cs │ │ ├── TrainerProfile4.cs │ │ ├── TrainerProfile5.cs │ │ ├── TrainerProfileBase.cs │ │ ├── TrainerProfilePlaza.cs │ │ ├── TrainerRankings.cs │ │ └── VipRecord.cs │ ├── app.config │ ├── database.sql │ ├── lib/ │ │ ├── SQLite.Designer.pdb │ │ ├── SQLite.Designer.xml │ │ ├── System.Data.SQLite.Linq.pdb │ │ ├── System.Data.SQLite.Linq.xml │ │ ├── System.Data.SQLite.dll.config │ │ ├── System.Data.SQLite.pdb │ │ └── System.Data.SQLite.xml │ └── packages.config ├── pkmn-classic-framework.sln ├── pokedex/ │ └── Shiny lock generations.txt ├── towerRestorer4/ │ ├── App.config │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ └── towerRestorer.csproj └── web/ ├── Default.aspx ├── Default.aspx.cs ├── Default.aspx.designer.cs ├── Global.asax ├── Global.asax.cs ├── Properties/ │ ├── AssemblyInfo.cs │ └── PublishProfiles/ │ └── Public.pubxml ├── RoomLeaders.aspx ├── RoomLeaders.aspx.cs ├── RoomLeaders.aspx.designer.cs ├── Web.Public.config ├── Web.config ├── admin/ │ ├── AddBoxes.aspx │ ├── AddBoxes.aspx.cs │ ├── AddBoxes.aspx.designer.cs │ ├── AddDressup.aspx │ ├── AddDressup.aspx.cs │ ├── AddDressup.aspx.designer.cs │ ├── AddMusical.aspx │ ├── AddMusical.aspx.cs │ ├── AddMusical.aspx.designer.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ └── Web.config ├── battlevideo/ │ ├── Default.aspx │ ├── Default.aspx.cs │ └── Default.aspx.designer.cs ├── controls/ │ ├── DnsAddress.ascx │ ├── DnsAddress.ascx.cs │ ├── DnsAddress.ascx.designer.cs │ ├── ForeignLookup.ascx │ ├── ForeignLookup.ascx.cs │ ├── ForeignLookup.ascx.designer.cs │ ├── LabelTextBox.ascx │ ├── LabelTextBox.ascx.cs │ ├── LabelTextBox.ascx.designer.cs │ ├── PokemonPicker.ascx │ ├── PokemonPicker.ascx.cs │ ├── PokemonPicker.ascx.designer.cs │ ├── PokemonSource.ashx │ └── PokemonSource.ashx.cs ├── css/ │ ├── form.css │ ├── login.css │ ├── main.css │ ├── pkmnstats.css │ └── types.css ├── gts/ │ ├── Default.aspx │ ├── Default.aspx.cs │ ├── Default.aspx.designer.cs │ ├── Pokemon.aspx │ ├── Pokemon.aspx.cs │ └── Pokemon.aspx.designer.cs ├── masters/ │ ├── LeftColumn.master │ ├── LeftColumn.master.cs │ ├── LeftColumn.master.designer.cs │ ├── MasterPage.master │ ├── MasterPage.master.cs │ ├── MasterPage.master.designer.cs │ ├── ThreeColumn.master │ ├── ThreeColumn.master.cs │ └── ThreeColumn.master.designer.cs ├── packages.config ├── scripts/ │ ├── form.js │ └── retina.js ├── src/ │ ├── AppStateHelper.cs │ ├── Common.cs │ ├── DependencyNode.cs │ ├── ForeignLookupSource.cs │ ├── HeaderColour.cs │ ├── OnceTemplate.cs │ ├── RequireCss.cs │ ├── RequireLinkBase.cs │ ├── RequireScript.cs │ ├── RetinaImage.cs │ ├── RetinaImageBase.cs │ ├── WebException.cs │ └── WebFormat.cs ├── test/ │ ├── BoxUp.aspx │ ├── BoxUp.aspx.cs │ ├── BoxUp.aspx.designer.cs │ ├── Decode.aspx │ ├── Decode.aspx.cs │ ├── Decode.aspx.designer.cs │ ├── Gsid.aspx │ ├── Gsid.aspx.cs │ ├── Gsid.aspx.designer.cs │ ├── NameDecode.aspx │ ├── NameDecode.aspx.cs │ ├── NameDecode.aspx.designer.cs │ ├── NameEncode.aspx │ ├── NameEncode.aspx.cs │ ├── NameEncode.aspx.designer.cs │ ├── VideoId.aspx │ ├── VideoId.aspx.cs │ ├── VideoId.aspx.designer.cs │ └── Web.config └── web.csproj