diff --git a/forge-game/src/main/java/forge/game/GameFormat.java b/forge-game/src/main/java/forge/game/GameFormat.java index b1749dfe8c1..6c6a0b03ad0 100644 --- a/forge-game/src/main/java/forge/game/GameFormat.java +++ b/forge-game/src/main/java/forge/game/GameFormat.java @@ -48,7 +48,7 @@ public class GameFormat implements Comparable { public enum FormatType { SANCTIONED, CASUAL, - HISTORIC, + ARCHIVE, DIGITAL, CUSTOM } @@ -290,7 +290,7 @@ public class GameFormat implements Comparable { if (other.formatSubType != formatSubType){ return formatSubType.compareTo(other.formatSubType); } - if (formatType.equals(FormatType.HISTORIC)){ + if (formatType.equals(FormatType.ARCHIVE)){ int compareDates = this.effectiveDate.compareTo(other.effectiveDate); if (compareDates != 0) return compareDates; @@ -306,7 +306,7 @@ public class GameFormat implements Comparable { public static class Reader extends StorageReaderRecursiveFolderWithUserFolder { List naturallyOrdered = new ArrayList<>(); - boolean includeHistoric; + boolean includeArchive; private List coreFormats = new ArrayList<>(); { coreFormats.add("Standard.txt"); @@ -321,14 +321,14 @@ public class GameFormat implements Comparable { coreFormats.add("Oathbreaker.txt"); } - public Reader(File forgeFormats, File customFormats, boolean includeHistoric) { + public Reader(File forgeFormats, File customFormats, boolean includeArchive) { super(forgeFormats, customFormats, GameFormat.FN_GET_NAME); - this.includeHistoric=includeHistoric; + this.includeArchive=includeArchive; } @Override protected GameFormat read(File file) { - if (!includeHistoric && !coreFormats.contains(file.getName())) { + if (!includeArchive && !coreFormats.contains(file.getName())) { return null; } final Map> contents = FileSection.parseSections(FileUtil.readFile(file)); @@ -450,7 +450,7 @@ public class GameFormat implements Comparable { public Iterable getFilterList() { List coreList = new ArrayList<>(); for (GameFormat format: naturallyOrdered) { - if (!format.getFormatType().equals(FormatType.HISTORIC) + if (!format.getFormatType().equals(FormatType.ARCHIVE) &&!format.getFormatType().equals(FormatType.DIGITAL)){ coreList.add(format); } @@ -458,10 +458,10 @@ public class GameFormat implements Comparable { return coreList; } - public Iterable getHistoricList() { + public Iterable getArchiveList() { List coreList = new ArrayList<>(); for (GameFormat format: naturallyOrdered) { - if (format.getFormatType().equals(FormatType.HISTORIC)){ + if (format.getFormatType().equals(FormatType.ARCHIVE)){ coreList.add(format); } } @@ -470,7 +470,7 @@ public class GameFormat implements Comparable { public Iterable getBlockList() { List blockFormats = new ArrayList<>(); - for (GameFormat format : this.getHistoricList()){ + for (GameFormat format : this.getArchiveList()){ if (format.getFormatSubType() != GameFormat.FormatSubType.BLOCK) continue; if (!format.getName().endsWith("Block")) @@ -481,10 +481,10 @@ public class GameFormat implements Comparable { return blockFormats; } - public Map> getHistoricMap() { + public Map> getArchiveMap() { Map> coreList = new HashMap<>(); for (GameFormat format: naturallyOrdered){ - if (format.getFormatType().equals(FormatType.HISTORIC)){ + if (format.getFormatType().equals(FormatType.ARCHIVE)){ String alpha = format.getName().substring(0,1); if (!coreList.containsKey(alpha)) { coreList.put(alpha,new ArrayList<>()); @@ -557,9 +557,9 @@ public class GameFormat implements Comparable { //exclude Commander format as other deck checks are not performed here continue; } - if (gf.getFormatType().equals(FormatType.HISTORIC) && coveredTypes.contains(gf.getFormatSubType()) + if (gf.getFormatType().equals(FormatType.ARCHIVE) && coveredTypes.contains(gf.getFormatSubType()) && !exhaustive){ - //exclude duplicate formats - only keep first of e.g. Standard historical + //exclude duplicate formats - only keep first of e.g. Standard archived continue; } if (gf.isPoolLegal(allCards)) { @@ -590,7 +590,7 @@ public class GameFormat implements Comparable { if (gf2.formatSubType != gf1.formatSubType){ return gf1.formatSubType.compareTo(gf2.formatSubType); } - if (gf1.formatType.equals(FormatType.HISTORIC)){ + if (gf1.formatType.equals(FormatType.ARCHIVE)){ if (gf1.effectiveDate!=gf2.effectiveDate) {//for matching dates or default dates default to name sorting return gf1.effectiveDate.compareTo(gf2.effectiveDate); } diff --git a/forge-gui-desktop/src/main/java/forge/itemmanager/CardManager.java b/forge-gui-desktop/src/main/java/forge/itemmanager/CardManager.java index b381c6eda0a..86b96750530 100644 --- a/forge-gui-desktop/src/main/java/forge/itemmanager/CardManager.java +++ b/forge-gui-desktop/src/main/java/forge/itemmanager/CardManager.java @@ -216,7 +216,7 @@ public class CardManager extends ItemManager { } menu.add(world); - if (FModel.getPreferences().getPrefBoolean(ForgePreferences.FPref.LOAD_HISTORIC_FORMATS)) { + if (FModel.getPreferences().getPrefBoolean(ForgePreferences.FPref.LOAD_ARCHIVE_FORMATS)) { JMenu blocks = GuiUtils.createMenu(localizer.getMessage("lblBlock")); final Iterable blockFormats = FModel.getFormats().getBlockList(); for (final GameFormat f : blockFormats) { diff --git a/forge-gui-desktop/src/main/java/forge/itemmanager/DeckManager.java b/forge-gui-desktop/src/main/java/forge/itemmanager/DeckManager.java index eeb80e19a3e..6edc7a238aa 100644 --- a/forge-gui-desktop/src/main/java/forge/itemmanager/DeckManager.java +++ b/forge-gui-desktop/src/main/java/forge/itemmanager/DeckManager.java @@ -279,7 +279,7 @@ public final class DeckManager extends ItemManager implements IHasGam } menu.add(world); - if (FModel.getPreferences().getPrefBoolean(ForgePreferences.FPref.LOAD_HISTORIC_FORMATS)) { + if (FModel.getPreferences().getPrefBoolean(ForgePreferences.FPref.LOAD_ARCHIVE_FORMATS)) { JMenu blocks = GuiUtils.createMenu(localizer.getMessage("lblBlock")); final Iterable blockFormats = FModel.getFormats().getBlockList(); for (final GameFormat f : blockFormats) { diff --git a/forge-gui-desktop/src/main/java/forge/screens/home/quest/DialogChooseFormats.java b/forge-gui-desktop/src/main/java/forge/screens/home/quest/DialogChooseFormats.java index 68f3454effe..1e61796d36c 100644 --- a/forge-gui-desktop/src/main/java/forge/screens/home/quest/DialogChooseFormats.java +++ b/forge-gui-desktop/src/main/java/forge/screens/home/quest/DialogChooseFormats.java @@ -42,7 +42,7 @@ public class DialogChooseFormats { List sanctioned = new ArrayList<>(); List casual = new ArrayList<>(); - List historic = new ArrayList<>(); + List archive = new ArrayList<>(); for (GameFormat format : FModel.getFormats().getOrderedList()){ FCheckBox box = new FCheckBox(format.getName()); @@ -51,8 +51,8 @@ public class DialogChooseFormats { case SANCTIONED: sanctioned.add(box); break; - case HISTORIC: - historic.add(box); + case ARCHIVE: + archive.add(box); break; case CUSTOM: case CASUAL: @@ -74,7 +74,7 @@ public class DialogChooseFormats { String constraints = "aligny top"; panel.add(makeCheckBoxList(sanctioned, localizer.getMessage("lblSanctioned"), true), constraints); panel.add(makeCheckBoxList(casual, localizer.getMessage("lblOther"), false), constraints); - panel.add(makeCheckBoxList(historic, localizer.getMessage("lblHistoric"), false), constraints); + panel.add(makeCheckBoxList(archive, localizer.getMessage("lblArchive"), false), constraints); final JPanel overlay = FOverlay.SINGLETON_INSTANCE.getPanel(); overlay.setLayout(new MigLayout("insets 0, gap 0, wrap, ax center, ay center")); diff --git a/forge-gui-desktop/src/main/java/forge/screens/home/settings/CSubmenuPreferences.java b/forge-gui-desktop/src/main/java/forge/screens/home/settings/CSubmenuPreferences.java index e476eb3668e..4f90a2fe0bc 100644 --- a/forge-gui-desktop/src/main/java/forge/screens/home/settings/CSubmenuPreferences.java +++ b/forge-gui-desktop/src/main/java/forge/screens/home/settings/CSubmenuPreferences.java @@ -167,7 +167,7 @@ public enum CSubmenuPreferences implements ICDoc { lstControls.add(Pair.of(view.getCbFilterLandsByColorId(), FPref.UI_FILTER_LANDS_BY_COLOR_IDENTITY)); lstControls.add(Pair.of(view.getCbLoadCardsLazily(), FPref.LOAD_CARD_SCRIPTS_LAZILY)); - lstControls.add(Pair.of(view.getCbLoadHistoricFormats(), FPref.LOAD_HISTORIC_FORMATS)); + lstControls.add(Pair.of(view.getCbLoadArchiveFormats(), FPref.LOAD_ARCHIVE_FORMATS)); lstControls.add(Pair.of(view.getCbSmartCardArtSelectionOpt(), FPref.UI_SMART_CARD_ART)); lstControls.add(Pair.of(view.getCbShowDraftRanking(), FPref.UI_OVERLAY_DRAFT_RANKING)); diff --git a/forge-gui-desktop/src/main/java/forge/screens/home/settings/VSubmenuPreferences.java b/forge-gui-desktop/src/main/java/forge/screens/home/settings/VSubmenuPreferences.java index 3e163d79219..c6f2e929103 100644 --- a/forge-gui-desktop/src/main/java/forge/screens/home/settings/VSubmenuPreferences.java +++ b/forge-gui-desktop/src/main/java/forge/screens/home/settings/VSubmenuPreferences.java @@ -72,7 +72,7 @@ public enum VSubmenuPreferences implements IVSubmenu { private final JCheckBox cbManaLostPrompt = new OptionsCheckBox(localizer.getMessage("cbManaLostPrompt")); private final JCheckBox cbDevMode = new OptionsCheckBox(localizer.getMessage("cbDevMode")); private final JCheckBox cbLoadCardsLazily = new OptionsCheckBox(localizer.getMessage("cbLoadCardsLazily")); - private final JCheckBox cbLoadHistoricFormats = new OptionsCheckBox(localizer.getMessage("cbLoadHistoricFormats")); + private final JCheckBox cbLoadArchiveFormats = new OptionsCheckBox(localizer.getMessage("cbLoadArchiveFormats")); private final JCheckBox cbWorkshopSyntax = new OptionsCheckBox(localizer.getMessage("cbWorkshopSyntax")); private final JCheckBox cbEnforceDeckLegality = new OptionsCheckBox(localizer.getMessage("cbEnforceDeckLegality")); private final JCheckBox cbSideboardForAI = new OptionsCheckBox(localizer.getMessage("cbSideboardForAI")); @@ -322,8 +322,8 @@ public enum VSubmenuPreferences implements IVSubmenu { pnlPrefs.add(cbLoadCardsLazily, titleConstraints); pnlPrefs.add(new NoteLabel(localizer.getMessage("nlLoadCardsLazily")), descriptionConstraints); - pnlPrefs.add(cbLoadHistoricFormats, titleConstraints); - pnlPrefs.add(new NoteLabel(localizer.getMessage("nlLoadHistoricFormats")), descriptionConstraints); + pnlPrefs.add(cbLoadArchiveFormats, titleConstraints); + pnlPrefs.add(new NoteLabel(localizer.getMessage("nlLoadArchiveFormats")), descriptionConstraints); pnlPrefs.add(cbEnableUnknownCards, titleConstraints); pnlPrefs.add(new NoteLabel(localizer.getMessage("nlEnableUnknownCards")), descriptionConstraints); @@ -741,8 +741,8 @@ public enum VSubmenuPreferences implements IVSubmenu { } /** @return {@link javax.swing.JCheckBox} */ - public JCheckBox getCbLoadHistoricFormats() { - return cbLoadHistoricFormats; + public JCheckBox getCbLoadArchiveFormats() { + return cbLoadArchiveFormats; } public JCheckBox getCbWorkshopSyntax() { diff --git a/forge-gui-mobile/src/forge/itemmanager/filters/HistoricFormatSelect.java b/forge-gui-mobile/src/forge/itemmanager/filters/ArchiveFormatSelect.java similarity index 92% rename from forge-gui-mobile/src/forge/itemmanager/filters/HistoricFormatSelect.java rename to forge-gui-mobile/src/forge/itemmanager/filters/ArchiveFormatSelect.java index 7ce22f40a11..0d30797779b 100644 --- a/forge-gui-mobile/src/forge/itemmanager/filters/HistoricFormatSelect.java +++ b/forge-gui-mobile/src/forge/itemmanager/filters/ArchiveFormatSelect.java @@ -22,22 +22,22 @@ import forge.util.Utils; /** * Created by maustin on 16/04/2018. */ -public class HistoricFormatSelect extends FScreen { +public class ArchiveFormatSelect extends FScreen { private GameFormat selectedFormat; private final FGroupList lstFormats = add(new FGroupList<>()); - private final Set historicSubTypes = new HashSet<>(Arrays.asList(GameFormat.FormatSubType.BLOCK, + private final Set archiveSubTypes = new HashSet<>(Arrays.asList(GameFormat.FormatSubType.BLOCK, GameFormat.FormatSubType.STANDARD,GameFormat.FormatSubType.EXTENDED,GameFormat.FormatSubType.MODERN, GameFormat.FormatSubType.LEGACY, GameFormat.FormatSubType.VINTAGE)); private Runnable onCloseCallBack; - public HistoricFormatSelect() { + public ArchiveFormatSelect() { super(Forge.getLocalizer().getMessage("lblChooseFormat")); for (GameFormat.FormatType group:GameFormat.FormatType.values()){ - if (group == GameFormat.FormatType.HISTORIC){ + if (group == GameFormat.FormatType.ARCHIVE){ for (GameFormat.FormatSubType subgroup:GameFormat.FormatSubType.values()){ - if (historicSubTypes.contains(subgroup)){ + if (archiveSubTypes.contains(subgroup)){ lstFormats.addGroup(group.name() + "-" + subgroup.name()); } } @@ -53,7 +53,7 @@ public class HistoricFormatSelect extends FScreen { case CASUAL: lstFormats.addItem(format, 1); break; - case HISTORIC: + case ARCHIVE: switch (format.getFormatSubType()){ case BLOCK: lstFormats.addItem(format, 2); diff --git a/forge-gui-mobile/src/forge/itemmanager/filters/FormatFilter.java b/forge-gui-mobile/src/forge/itemmanager/filters/FormatFilter.java index 438882dd98f..564a6120584 100644 --- a/forge-gui-mobile/src/forge/itemmanager/filters/FormatFilter.java +++ b/forge-gui-mobile/src/forge/itemmanager/filters/FormatFilter.java @@ -66,16 +66,16 @@ public abstract class FormatFilter extends ItemFilter setsToAdd = historicFormatSelect.getSelectedFormat().getAllowedSetCodes(); + btnSelectFormat.setText(archiveFormatSelect.getSelectedFormat().getName()); + List setsToAdd = archiveFormatSelect.getSelectedFormat().getAllowedSetCodes(); for (String setName:setsToAdd){ if(!unselectableSets.contains(setName)){ customFormatCodes.add(setName); @@ -315,20 +315,20 @@ public class NewQuestScreen extends FScreen { } } }); - Forge.openScreen(historicFormatSelect); + Forge.openScreen(archiveFormatSelect); } }); btnPrizeSelectFormat.setCommand(new FEventHandler() { @Override public void handleEvent(FEvent e) { - HistoricFormatSelect historicFormatSelect = new HistoricFormatSelect(); - historicFormatSelect.setOnCloseCallBack(new Runnable() { + ArchiveFormatSelect archiveFormatSelect = new ArchiveFormatSelect(); + archiveFormatSelect.setOnCloseCallBack(new Runnable() { @Override public void run() { customPrizeFormatCodes.clear(); - btnPrizeSelectFormat.setText(historicFormatSelect.getSelectedFormat().getName()); - List setsToAdd = historicFormatSelect.getSelectedFormat().getAllowedSetCodes(); + btnPrizeSelectFormat.setText(archiveFormatSelect.getSelectedFormat().getName()); + List setsToAdd = archiveFormatSelect.getSelectedFormat().getAllowedSetCodes(); for (String setName:setsToAdd){ if(!unselectableSets.contains(setName)){ customPrizeFormatCodes.add(setName); @@ -336,7 +336,7 @@ public class NewQuestScreen extends FScreen { } } }); - Forge.openScreen(historicFormatSelect); + Forge.openScreen(archiveFormatSelect); } }); diff --git a/forge-gui-mobile/src/forge/screens/settings/SettingsPage.java b/forge-gui-mobile/src/forge/screens/settings/SettingsPage.java index 6ebff9bf349..02bac950ecd 100644 --- a/forge-gui-mobile/src/forge/screens/settings/SettingsPage.java +++ b/forge-gui-mobile/src/forge/screens/settings/SettingsPage.java @@ -362,9 +362,9 @@ public class SettingsPage extends TabPage { Forge.getLocalizer().getMessage("cbLoadCardsLazily"), Forge.getLocalizer().getMessage("nlLoadCardsLazily")), 3); - lstSettings.addItem(new BooleanSetting(FPref.LOAD_HISTORIC_FORMATS, - Forge.getLocalizer().getMessage("cbLoadHistoricFormats"), - Forge.getLocalizer().getMessage("nlLoadHistoricFormats")), + lstSettings.addItem(new BooleanSetting(FPref.LOAD_ARCHIVE_FORMATS, + Forge.getLocalizer().getMessage("cbLoadArchiveFormats"), + Forge.getLocalizer().getMessage("nlLoadArchiveFormats")), 3); lstSettings.addItem(new BooleanSetting(FPref.UI_LOAD_UNKNOWN_CARDS, Forge.getLocalizer().getMessage("lblEnableUnknownCards"), diff --git a/forge-gui/res/formats/Historic/.gitkeep b/forge-gui/res/formats/Archive/.gitkeep similarity index 100% rename from forge-gui/res/formats/Historic/.gitkeep rename to forge-gui/res/formats/Archive/.gitkeep diff --git a/forge-gui/res/formats/Historic/DCI/Alchemy/2021-12-09.txt b/forge-gui/res/formats/Archive/Alchemy/2021-12-09.txt similarity index 89% rename from forge-gui/res/formats/Historic/DCI/Alchemy/2021-12-09.txt rename to forge-gui/res/formats/Archive/Alchemy/2021-12-09.txt index 4e1f99ee6d9..adae6129bad 100644 --- a/forge-gui/res/formats/Historic/DCI/Alchemy/2021-12-09.txt +++ b/forge-gui/res/formats/Archive/Alchemy/2021-12-09.txt @@ -1,6 +1,6 @@ [format] Name:Alchemy (2021-12-09) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-12-09 Sets:ANA, ANB, ZNR, KHM, STX, AFR, MID, VOW, YMID diff --git a/forge-gui/res/formats/Historic/DCI/Alchemy/2022-02-10.txt b/forge-gui/res/formats/Archive/Alchemy/2022-02-10.txt similarity index 89% rename from forge-gui/res/formats/Historic/DCI/Alchemy/2022-02-10.txt rename to forge-gui/res/formats/Archive/Alchemy/2022-02-10.txt index 32923f1d6e7..4997978d9c3 100644 --- a/forge-gui/res/formats/Historic/DCI/Alchemy/2022-02-10.txt +++ b/forge-gui/res/formats/Archive/Alchemy/2022-02-10.txt @@ -1,6 +1,6 @@ [format] Name:Alchemy (NEO) -Type:Historic +Type:Archive Subtype:Arena Effective:2022-02-10 Sets:ANA, ANB, ZNR, KHM, STX, AFR, MID, VOW, YMID, NEO diff --git a/forge-gui/res/formats/Historic/DCI/Alchemy/2022-03-17.txt b/forge-gui/res/formats/Archive/Alchemy/2022-03-17.txt similarity index 89% rename from forge-gui/res/formats/Historic/DCI/Alchemy/2022-03-17.txt rename to forge-gui/res/formats/Archive/Alchemy/2022-03-17.txt index 7eae9b0d74a..44cd656164a 100644 --- a/forge-gui/res/formats/Historic/DCI/Alchemy/2022-03-17.txt +++ b/forge-gui/res/formats/Archive/Alchemy/2022-03-17.txt @@ -1,6 +1,6 @@ [format] Name:Alchemy (YNEO) -Type:Historic +Type:Archive Subtype:Arena Effective:2022-03-17 Sets:ANA, ANB, ZNR, KHM, STX, AFR, MID, VOW, YMID, NEO, YNEO diff --git a/forge-gui/res/formats/Historic/DCI/Alchemy/2022-04-28.txt b/forge-gui/res/formats/Archive/Alchemy/2022-04-28.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Alchemy/2022-04-28.txt rename to forge-gui/res/formats/Archive/Alchemy/2022-04-28.txt index 901e822dd91..e4b8a4a2e44 100644 --- a/forge-gui/res/formats/Historic/DCI/Alchemy/2022-04-28.txt +++ b/forge-gui/res/formats/Archive/Alchemy/2022-04-28.txt @@ -1,6 +1,6 @@ [format] Name:Alchemy (SNC) -Type:Historic +Type:Archive Subtype:Arena Effective:2022-04-28 Sets:ANA, ANB, ZNR, KHM, STX, AFR, MID, VOW, YMID, NEO, YNEO, SNC diff --git a/forge-gui/res/formats/Historic/DCI/Alchemy/2022-06-02.txt b/forge-gui/res/formats/Archive/Alchemy/2022-06-02.txt similarity index 100% rename from forge-gui/res/formats/Historic/DCI/Alchemy/2022-06-02.txt rename to forge-gui/res/formats/Archive/Alchemy/2022-06-02.txt diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2017-09-07.txt b/forge-gui/res/formats/Archive/Arena Standard/2017-09-07.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2017-09-07.txt rename to forge-gui/res/formats/Archive/Arena Standard/2017-09-07.txt index 699f8a2ce88..e5e7c60cc43 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2017-09-07.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2017-09-07.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (2017-09-07) -Type:Historic +Type:Archive Subtype:Arena Effective:2017-09-07 Sets:XLN diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2018-01-18.txt b/forge-gui/res/formats/Archive/Arena Standard/2018-01-18.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2018-01-18.txt rename to forge-gui/res/formats/Archive/Arena Standard/2018-01-18.txt index a74bf0f1262..41646a03bd6 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2018-01-18.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2018-01-18.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (RIX) -Type:Historic +Type:Archive Subtype:Arena Effective:2018-01-18 Sets:XLN, RIX diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2018-03-22.txt b/forge-gui/res/formats/Archive/Arena Standard/2018-03-22.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2018-03-22.txt rename to forge-gui/res/formats/Archive/Arena Standard/2018-03-22.txt index cfcfcdfb971..a182c6a453d 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2018-03-22.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2018-03-22.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (AKH/HOU) -Type:Historic +Type:Archive Subtype:Arena Effective:2018-03-22 Sets:XLN, RIX, AKH, HOU diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2018-04-26.txt b/forge-gui/res/formats/Archive/Arena Standard/2018-04-26.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2018-04-26.txt rename to forge-gui/res/formats/Archive/Arena Standard/2018-04-26.txt index c160b2282b7..ac06f25ec2c 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2018-04-26.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2018-04-26.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (DOM) -Type:Historic +Type:Archive Subtype:Arena Effective:2018-04-26 Sets:XLN, RIX, AKH, HOU, DOM diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2018-06-07.txt b/forge-gui/res/formats/Archive/Arena Standard/2018-06-07.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2018-06-07.txt rename to forge-gui/res/formats/Archive/Arena Standard/2018-06-07.txt index 33dedadd133..fb1b09a1d2a 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2018-06-07.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2018-06-07.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (KLD/AER) -Type:Historic +Type:Archive Subtype:Arena Effective:2018-06-07 Sets:XLN, RIX, AKH, HOU, DOM, KLD, AER, W17 diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2018-07-12.txt b/forge-gui/res/formats/Archive/Arena Standard/2018-07-12.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2018-07-12.txt rename to forge-gui/res/formats/Archive/Arena Standard/2018-07-12.txt index ea479574bb0..8fe6958013c 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2018-07-12.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2018-07-12.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (M19) -Type:Historic +Type:Archive Subtype:Arena Effective:2018-07-12 Sets:XLN, RIX, AKH, HOU, DOM, KLD, AER, W17, M19, ANA, PANA diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2018-09-27.txt b/forge-gui/res/formats/Archive/Arena Standard/2018-09-27.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2018-09-27.txt rename to forge-gui/res/formats/Archive/Arena Standard/2018-09-27.txt index 3c3cc212159..819dc16bbb2 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2018-09-27.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2018-09-27.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (GRN) -Type:Historic +Type:Archive Subtype:Arena Effective:2018-09-27 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2018-11-15.txt b/forge-gui/res/formats/Archive/Arena Standard/2018-11-15.txt similarity index 91% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2018-11-15.txt rename to forge-gui/res/formats/Archive/Arena Standard/2018-11-15.txt index 73459a7a989..f0d911facb0 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2018-11-15.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2018-11-15.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (G18) -Type:Historic +Type:Archive Subtype:Arena Effective:2018-11-15 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18 diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2019-01-17.txt b/forge-gui/res/formats/Archive/Arena Standard/2019-01-17.txt similarity index 91% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2019-01-17.txt rename to forge-gui/res/formats/Archive/Arena Standard/2019-01-17.txt index 0ba25bf3c87..455764bfb24 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2019-01-17.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2019-01-17.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (RNA) -Type:Historic +Type:Archive Subtype:Arena Effective:2019-01-17 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2019-02-14.txt b/forge-gui/res/formats/Archive/Arena Standard/2019-02-14.txt similarity index 92% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2019-02-14.txt rename to forge-gui/res/formats/Archive/Arena Standard/2019-02-14.txt index cbae7276e0b..6470cd52165 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2019-02-14.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2019-02-14.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (2019-02-14) -Type:Historic +Type:Archive Subtype:Arena Effective:2019-02-14 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2019-04-25.txt b/forge-gui/res/formats/Archive/Arena Standard/2019-04-25.txt similarity index 92% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2019-04-25.txt rename to forge-gui/res/formats/Archive/Arena Standard/2019-04-25.txt index 7038b84bc45..ec249a99bb2 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2019-04-25.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2019-04-25.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (WAR) -Type:Historic +Type:Archive Subtype:Arena Effective:2019-04-25 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2019-07-02.txt b/forge-gui/res/formats/Archive/Arena Standard/2019-07-02.txt similarity index 92% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2019-07-02.txt rename to forge-gui/res/formats/Archive/Arena Standard/2019-07-02.txt index 8650000cb26..ac07c0e028c 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2019-07-02.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2019-07-02.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (M20) -Type:Historic +Type:Archive Subtype:Arena Effective:2019-07-02 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20 diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2019-09-26.txt b/forge-gui/res/formats/Archive/Arena Standard/2019-09-26.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2019-09-26.txt rename to forge-gui/res/formats/Archive/Arena Standard/2019-09-26.txt index ede8c516143..a4cd2d9ab13 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2019-09-26.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2019-09-26.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (ELD) -Type:Historic +Type:Archive Subtype:Arena Effective:2019-09-26 Sets:ANA, PANA, GRN, RNA, WAR, M20, ELD diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2019-10-24.txt b/forge-gui/res/formats/Archive/Arena Standard/2019-10-24.txt similarity index 91% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2019-10-24.txt rename to forge-gui/res/formats/Archive/Arena Standard/2019-10-24.txt index 96c08710618..b2b6fed0267 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2019-10-24.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2019-10-24.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (2019-10-24) -Type:Historic +Type:Archive Subtype:Arena Effective:2019-10-24 Sets:ANA, PANA, GRN, RNA, WAR, M20, ELD diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2019-11-18.txt b/forge-gui/res/formats/Archive/Arena Standard/2019-11-18.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2019-11-18.txt rename to forge-gui/res/formats/Archive/Arena Standard/2019-11-18.txt index 56380edd053..1658128ce4a 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2019-11-18.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2019-11-18.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (2019-11-18) -Type:Historic +Type:Archive Subtype:Arena Effective:2019-11-18 Sets:ANA, PANA, GRN, RNA, WAR, M20, ELD diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-01-16.txt b/forge-gui/res/formats/Archive/Arena Standard/2020-01-16.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2020-01-16.txt rename to forge-gui/res/formats/Archive/Arena Standard/2020-01-16.txt index 1593132b7fc..7c58403ac64 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-01-16.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2020-01-16.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (THB) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-01-16 Sets:ANA, PANA, GRN, RNA, WAR, M20, ELD, THB diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-04-16.txt b/forge-gui/res/formats/Archive/Arena Standard/2020-04-16.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2020-04-16.txt rename to forge-gui/res/formats/Archive/Arena Standard/2020-04-16.txt index 4d75dbd6ba3..eb416bc9d03 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-04-16.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2020-04-16.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (IKO) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-04-16 Sets:ANA, PANA, GRN, RNA, WAR, M20, ELD, THB, IKO diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-06-04.txt b/forge-gui/res/formats/Archive/Arena Standard/2020-06-04.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2020-06-04.txt rename to forge-gui/res/formats/Archive/Arena Standard/2020-06-04.txt index cdcd66c3674..17c7be45582 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-06-04.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2020-06-04.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (2020-06-04) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-06-04 Sets:ANA, PANA, GRN, RNA, WAR, M20, ELD, THB, IKO diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-06-25.txt b/forge-gui/res/formats/Archive/Arena Standard/2020-06-25.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2020-06-25.txt rename to forge-gui/res/formats/Archive/Arena Standard/2020-06-25.txt index 5f86703dbf6..0ae58ee9a6a 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-06-25.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2020-06-25.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (M21) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-06-25 Sets:ANA, PANA, GRN, RNA, WAR, M20, ELD, THB, IKO, M21 diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-08-03.txt b/forge-gui/res/formats/Archive/Arena Standard/2020-08-03.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2020-08-03.txt rename to forge-gui/res/formats/Archive/Arena Standard/2020-08-03.txt index abdef5d1b93..3207e1566ed 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-08-03.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2020-08-03.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (2020-08-03) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-08-03 Sets:ANA, PANA, GRN, RNA, WAR, M20, ELD, THB, IKO, M21 diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-08-12.txt b/forge-gui/res/formats/Archive/Arena Standard/2020-08-12.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2020-08-12.txt rename to forge-gui/res/formats/Archive/Arena Standard/2020-08-12.txt index 101765aa385..80fe06232e3 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-08-12.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2020-08-12.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (ANB) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-08-12 Sets:ANA, PANA, GRN, RNA, WAR, M20, ELD, THB, IKO, M21, ANB diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-09-17.txt b/forge-gui/res/formats/Archive/Arena Standard/2020-09-17.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2020-09-17.txt rename to forge-gui/res/formats/Archive/Arena Standard/2020-09-17.txt index c9214338014..4ac0ac0fc8c 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-09-17.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2020-09-17.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (ZNR) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-09-17 Sets:ANA, PANA, ELD, THB, IKO, M21, ANB, ZNR diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-09-28.txt b/forge-gui/res/formats/Archive/Arena Standard/2020-09-28.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2020-09-28.txt rename to forge-gui/res/formats/Archive/Arena Standard/2020-09-28.txt index f9c807cf089..a69d8b28086 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-09-28.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2020-09-28.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (2020-09-28) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-09-28 Sets:ANA, PANA, ELD, THB, IKO, M21, ANB, ZNR diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-10-12.txt b/forge-gui/res/formats/Archive/Arena Standard/2020-10-12.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2020-10-12.txt rename to forge-gui/res/formats/Archive/Arena Standard/2020-10-12.txt index c39406a9a84..4317233df69 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2020-10-12.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2020-10-12.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (2020-10-12) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-10-12 Sets:ANA, PANA, ELD, THB, IKO, M21, ANB, ZNR diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2021-01-28.txt b/forge-gui/res/formats/Archive/Arena Standard/2021-01-28.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2021-01-28.txt rename to forge-gui/res/formats/Archive/Arena Standard/2021-01-28.txt index 289c9574517..d589e4305dc 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2021-01-28.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2021-01-28.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (KHM) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-01-28 Sets:ANA, PANA, ELD, THB, IKO, M21, ANB, ZNR, KHM diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2021-04-15.txt b/forge-gui/res/formats/Archive/Arena Standard/2021-04-15.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2021-04-15.txt rename to forge-gui/res/formats/Archive/Arena Standard/2021-04-15.txt index 43f5c934b11..6b0629d794a 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2021-04-15.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2021-04-15.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (STX) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-04-15 Sets:ANA, PANA, ELD, THB, IKO, M21, ANB, ZNR, KHM, STX diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2021-07-08.txt b/forge-gui/res/formats/Archive/Arena Standard/2021-07-08.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2021-07-08.txt rename to forge-gui/res/formats/Archive/Arena Standard/2021-07-08.txt index 0edc7eec9d6..d74273acd6b 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2021-07-08.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2021-07-08.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (AFR) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-07-08 Sets:ANA, PANA, ELD, THB, IKO, M21, ANB, ZNR, KHM, STX, AFR diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2021-09-16.txt b/forge-gui/res/formats/Archive/Arena Standard/2021-09-16.txt similarity index 91% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2021-09-16.txt rename to forge-gui/res/formats/Archive/Arena Standard/2021-09-16.txt index 54d2adf4799..998a3863b53 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2021-09-16.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2021-09-16.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (MID) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-09-16 Sets:ANA, PANA, ANB, ZNR, KHM, STX, AFR, MID diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2021-11-17.txt b/forge-gui/res/formats/Archive/Arena Standard/2021-11-17.txt similarity index 91% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2021-11-17.txt rename to forge-gui/res/formats/Archive/Arena Standard/2021-11-17.txt index aec906ed406..bbab0eaf3c5 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2021-11-17.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2021-11-17.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (VOW) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-11-17 Sets:ANA, PANA, ANB, ZNR, KHM, STX, AFR, MID, VOW diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2022-01-27.txt b/forge-gui/res/formats/Archive/Arena Standard/2022-01-27.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2022-01-27.txt rename to forge-gui/res/formats/Archive/Arena Standard/2022-01-27.txt index 98954c64502..bc6c9747365 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2022-01-27.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2022-01-27.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (2022-01-27) -Type:Historic +Type:Archive Subtype:Arena Effective:2022-01-27 Sets:ANA, PANA, ANB, ZNR, KHM, STX, AFR, MID, VOW diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2022-02-10.txt b/forge-gui/res/formats/Archive/Arena Standard/2022-02-10.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2022-02-10.txt rename to forge-gui/res/formats/Archive/Arena Standard/2022-02-10.txt index d6e5e4f9a9c..ea30a56ebba 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2022-02-10.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2022-02-10.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (NEO) -Type:Historic +Type:Archive Subtype:Arena Effective:2022-02-10 Sets:ANA, PANA, ANB, ZNR, KHM, STX, AFR, MID, VOW, NEO diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2022-03-17.txt b/forge-gui/res/formats/Archive/Arena Standard/2022-03-17.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2022-03-17.txt rename to forge-gui/res/formats/Archive/Arena Standard/2022-03-17.txt index a70c480e17d..e19e8236863 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2022-03-17.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2022-03-17.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (2022-03-17) -Type:Historic +Type:Archive Subtype:Arena Effective:2022-03-17 Sets:ZNR, KHM, STX, AFR, MID, VOW, NEO diff --git a/forge-gui/res/formats/Historic/DCI/Arena Standard/2022-04-28.txt b/forge-gui/res/formats/Archive/Arena Standard/2022-04-28.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Arena Standard/2022-04-28.txt rename to forge-gui/res/formats/Archive/Arena Standard/2022-04-28.txt index c2e2c728ab3..057c1ef2238 100644 --- a/forge-gui/res/formats/Historic/DCI/Arena Standard/2022-04-28.txt +++ b/forge-gui/res/formats/Archive/Arena Standard/2022-04-28.txt @@ -1,6 +1,6 @@ [format] Name:Arena Standard (SNC) -Type:Historic +Type:Archive Subtype:Arena Effective:2022-04-28 Sets:ZNR, KHM, STX, AFR, MID, VOW, NEO, SNC diff --git a/forge-gui/res/formats/Historic/DCI/Block/Amonkhet/2017-04-28.txt b/forge-gui/res/formats/Archive/Block/Amonkhet/2017-04-28.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Amonkhet/2017-04-28.txt rename to forge-gui/res/formats/Archive/Block/Amonkhet/2017-04-28.txt index 19dccfc40c9..b92fc37c90c 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Amonkhet/2017-04-28.txt +++ b/forge-gui/res/formats/Archive/Block/Amonkhet/2017-04-28.txt @@ -1,6 +1,6 @@ [format] Name:Block: Amonkhet (AKH) -Type:Historic +Type:Archive Subtype:Block Effective:2017-04-28 Sets:AKH diff --git a/forge-gui/res/formats/Historic/DCI/Block/Amonkhet/2017-07-14.txt b/forge-gui/res/formats/Archive/Block/Amonkhet/2017-07-14.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Amonkhet/2017-07-14.txt rename to forge-gui/res/formats/Archive/Block/Amonkhet/2017-07-14.txt index e758a8f8767..95023b45ac9 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Amonkhet/2017-07-14.txt +++ b/forge-gui/res/formats/Archive/Block/Amonkhet/2017-07-14.txt @@ -1,6 +1,6 @@ [format] Name:Block: Amonkhet (HOU) -Type:Historic +Type:Archive Subtype:Block Effective:2017-07-14 Sets:AKH, HOU diff --git a/forge-gui/res/formats/Historic/DCI/Block/Battle for Zendikar/2015-10-02.txt b/forge-gui/res/formats/Archive/Block/Battle for Zendikar/2015-10-02.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Battle for Zendikar/2015-10-02.txt rename to forge-gui/res/formats/Archive/Block/Battle for Zendikar/2015-10-02.txt index 35790eb0f59..2edae77fac6 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Battle for Zendikar/2015-10-02.txt +++ b/forge-gui/res/formats/Archive/Block/Battle for Zendikar/2015-10-02.txt @@ -1,6 +1,6 @@ [format] Name:Block: Battle for Zendikar (BFZ) -Type:Historic +Type:Archive Subtype:Block Effective:2015-10-02 Sets:BFZ diff --git a/forge-gui/res/formats/Historic/DCI/Block/Battle for Zendikar/2016-01-22.txt b/forge-gui/res/formats/Archive/Block/Battle for Zendikar/2016-01-22.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Block/Battle for Zendikar/2016-01-22.txt rename to forge-gui/res/formats/Archive/Block/Battle for Zendikar/2016-01-22.txt index f6274f10cd1..797a8f219c9 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Battle for Zendikar/2016-01-22.txt +++ b/forge-gui/res/formats/Archive/Block/Battle for Zendikar/2016-01-22.txt @@ -1,6 +1,6 @@ [format] Name:Block: Battle for Zendikar (OGW) -Type:Historic +Type:Archive Subtype:Block Effective:2016-01-22 Sets:BFZ, OGW diff --git a/forge-gui/res/formats/Historic/DCI/Block/Ice Age/1996-10-01.txt b/forge-gui/res/formats/Archive/Block/Ice Age/1996-10-01.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Block/Ice Age/1996-10-01.txt rename to forge-gui/res/formats/Archive/Block/Ice Age/1996-10-01.txt index 22ee3feaebc..b48890b1727 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Ice Age/1996-10-01.txt +++ b/forge-gui/res/formats/Archive/Block/Ice Age/1996-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Ice Age (ALL) -Type:Historic +Type:Archive Subtype:Block Effective:1996-10-01 Sets:ICE, ALL diff --git a/forge-gui/res/formats/Historic/DCI/Block/Ice Age/1997-05-01.txt b/forge-gui/res/formats/Archive/Block/Ice Age/1997-05-01.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Block/Ice Age/1997-05-01.txt rename to forge-gui/res/formats/Archive/Block/Ice Age/1997-05-01.txt index 79010648f6c..064dd4d5382 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Ice Age/1997-05-01.txt +++ b/forge-gui/res/formats/Archive/Block/Ice Age/1997-05-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Ice Age (ICE) -Type:Historic +Type:Archive Subtype:Block Effective:1997-05-01 Sets:ICE diff --git a/forge-gui/res/formats/Historic/DCI/Block/Ice Age/1997-07-01.txt b/forge-gui/res/formats/Archive/Block/Ice Age/1997-07-01.txt similarity index 91% rename from forge-gui/res/formats/Historic/DCI/Block/Ice Age/1997-07-01.txt rename to forge-gui/res/formats/Archive/Block/Ice Age/1997-07-01.txt index 0c919f71bf5..007e911345c 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Ice Age/1997-07-01.txt +++ b/forge-gui/res/formats/Archive/Block/Ice Age/1997-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Ice Age (HML) -Type:Historic +Type:Archive Subtype:Block Effective:1997-07-01 Sets:ICE, HML, ALL diff --git a/forge-gui/res/formats/Historic/DCI/Block/Ice Age/2006-08-20.txt b/forge-gui/res/formats/Archive/Block/Ice Age/2006-08-20.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Block/Ice Age/2006-08-20.txt rename to forge-gui/res/formats/Archive/Block/Ice Age/2006-08-20.txt index 6ca447718d2..512935eb736 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Ice Age/2006-08-20.txt +++ b/forge-gui/res/formats/Archive/Block/Ice Age/2006-08-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Ice Age (CSP) -Type:Historic +Type:Archive Subtype:Block Effective:2006-08-20 Sets:ICE, ALL, CSP diff --git a/forge-gui/res/formats/Historic/DCI/Block/Innistrad/2011-09-30.txt b/forge-gui/res/formats/Archive/Block/Innistrad/2011-09-30.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Innistrad/2011-09-30.txt rename to forge-gui/res/formats/Archive/Block/Innistrad/2011-09-30.txt index deea83cedc1..49879e3634e 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Innistrad/2011-09-30.txt +++ b/forge-gui/res/formats/Archive/Block/Innistrad/2011-09-30.txt @@ -1,6 +1,6 @@ [format] Name:Block: Innistrad (ISD) -Type:Historic +Type:Archive Subtype:Block Effective:2011-09-30 Sets:ISD diff --git a/forge-gui/res/formats/Historic/DCI/Block/Innistrad/2012-02-03.txt b/forge-gui/res/formats/Archive/Block/Innistrad/2012-02-03.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Innistrad/2012-02-03.txt rename to forge-gui/res/formats/Archive/Block/Innistrad/2012-02-03.txt index d05df6003ad..b218a6acd86 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Innistrad/2012-02-03.txt +++ b/forge-gui/res/formats/Archive/Block/Innistrad/2012-02-03.txt @@ -1,6 +1,6 @@ [format] Name:Block: Innistrad (DKA) -Type:Historic +Type:Archive Subtype:Block Effective:2012-02-03 Sets:ISD, DKA diff --git a/forge-gui/res/formats/Historic/DCI/Block/Innistrad/2012-04-02.txt b/forge-gui/res/formats/Archive/Block/Innistrad/2012-04-02.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Block/Innistrad/2012-04-02.txt rename to forge-gui/res/formats/Archive/Block/Innistrad/2012-04-02.txt index 032d8bcc487..4270e1d1607 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Innistrad/2012-04-02.txt +++ b/forge-gui/res/formats/Archive/Block/Innistrad/2012-04-02.txt @@ -1,6 +1,6 @@ [format] Name:Block: Innistrad (2012-04-02) -Type:Historic +Type:Archive Subtype:Block Effective:2012-04-02 Sets:ISD, DKA diff --git a/forge-gui/res/formats/Historic/DCI/Block/Innistrad/2012-05-04.txt b/forge-gui/res/formats/Archive/Block/Innistrad/2012-05-04.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Block/Innistrad/2012-05-04.txt rename to forge-gui/res/formats/Archive/Block/Innistrad/2012-05-04.txt index 681644290ff..167fb5b2db9 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Innistrad/2012-05-04.txt +++ b/forge-gui/res/formats/Archive/Block/Innistrad/2012-05-04.txt @@ -1,6 +1,6 @@ [format] Name:Block: Innistrad (AVR) -Type:Historic +Type:Archive Subtype:Block Effective:2012-05-04 Sets:ISD, DKA, AVR diff --git a/forge-gui/res/formats/Historic/DCI/Block/Invasion/2000-11-01.txt b/forge-gui/res/formats/Archive/Block/Invasion/2000-11-01.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Invasion/2000-11-01.txt rename to forge-gui/res/formats/Archive/Block/Invasion/2000-11-01.txt index 9a0a6c72663..f49a5b419d7 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Invasion/2000-11-01.txt +++ b/forge-gui/res/formats/Archive/Block/Invasion/2000-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Invasion (INV) -Type:Historic +Type:Archive Subtype:Block Effective:2000-11-01 Sets:INV diff --git a/forge-gui/res/formats/Historic/DCI/Block/Invasion/2001-03-01.txt b/forge-gui/res/formats/Archive/Block/Invasion/2001-03-01.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Invasion/2001-03-01.txt rename to forge-gui/res/formats/Archive/Block/Invasion/2001-03-01.txt index dd037f41e2a..33b5b63175c 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Invasion/2001-03-01.txt +++ b/forge-gui/res/formats/Archive/Block/Invasion/2001-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Invasion (PLS) -Type:Historic +Type:Archive Subtype:Block Effective:2001-03-01 Sets:INV, PLS diff --git a/forge-gui/res/formats/Historic/DCI/Block/Invasion/2001-07-01.txt b/forge-gui/res/formats/Archive/Block/Invasion/2001-07-01.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Invasion/2001-07-01.txt rename to forge-gui/res/formats/Archive/Block/Invasion/2001-07-01.txt index 0d4e736c911..8ef00262b8f 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Invasion/2001-07-01.txt +++ b/forge-gui/res/formats/Archive/Block/Invasion/2001-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Invasion (APC) -Type:Historic +Type:Archive Subtype:Block Effective:2001-07-01 Sets:INV, PLS, APC diff --git a/forge-gui/res/formats/Historic/DCI/Block/Ixalan/2017-09-29.txt b/forge-gui/res/formats/Archive/Block/Ixalan/2017-09-29.txt similarity index 84% rename from forge-gui/res/formats/Historic/DCI/Block/Ixalan/2017-09-29.txt rename to forge-gui/res/formats/Archive/Block/Ixalan/2017-09-29.txt index e8f941deb92..66ccbb6cd98 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Ixalan/2017-09-29.txt +++ b/forge-gui/res/formats/Archive/Block/Ixalan/2017-09-29.txt @@ -1,6 +1,6 @@ [format] Name:Block: Ixalan (XLN) -Type:Historic +Type:Archive Subtype:Block Effective:2017-09-29 Sets:XLN diff --git a/forge-gui/res/formats/Historic/DCI/Block/Ixalan/2018-01-19.txt b/forge-gui/res/formats/Archive/Block/Ixalan/2018-01-19.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Ixalan/2018-01-19.txt rename to forge-gui/res/formats/Archive/Block/Ixalan/2018-01-19.txt index a6cc3d9682d..6f0ef9e6514 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Ixalan/2018-01-19.txt +++ b/forge-gui/res/formats/Archive/Block/Ixalan/2018-01-19.txt @@ -1,6 +1,6 @@ [format] Name:Block: Ixalan (RIX) -Type:Historic +Type:Archive Subtype:Block Effective:2018-01-19 Sets:XLN, RIX diff --git a/forge-gui/res/formats/Historic/DCI/Block/Kaladesh/2016-09-30.txt b/forge-gui/res/formats/Archive/Block/Kaladesh/2016-09-30.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Kaladesh/2016-09-30.txt rename to forge-gui/res/formats/Archive/Block/Kaladesh/2016-09-30.txt index 47ddf3b4338..449956c4b02 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Kaladesh/2016-09-30.txt +++ b/forge-gui/res/formats/Archive/Block/Kaladesh/2016-09-30.txt @@ -1,6 +1,6 @@ [format] Name:Block: Kaladesh (KLD) -Type:Historic +Type:Archive Subtype:Block Effective:2016-09-30 Sets:KLD diff --git a/forge-gui/res/formats/Historic/DCI/Block/Kaladesh/2017-01-20.txt b/forge-gui/res/formats/Archive/Block/Kaladesh/2017-01-20.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Kaladesh/2017-01-20.txt rename to forge-gui/res/formats/Archive/Block/Kaladesh/2017-01-20.txt index b617561a7c5..6d3392b3362 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Kaladesh/2017-01-20.txt +++ b/forge-gui/res/formats/Archive/Block/Kaladesh/2017-01-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Kaladesh (AER) -Type:Historic +Type:Archive Subtype:Block Effective:2017-01-20 Sets:KLD, AER diff --git a/forge-gui/res/formats/Historic/DCI/Block/Kamigawa/2004-10-20.txt b/forge-gui/res/formats/Archive/Block/Kamigawa/2004-10-20.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Kamigawa/2004-10-20.txt rename to forge-gui/res/formats/Archive/Block/Kamigawa/2004-10-20.txt index 09ca83ecfa8..71ab58b2d9c 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Kamigawa/2004-10-20.txt +++ b/forge-gui/res/formats/Archive/Block/Kamigawa/2004-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Kamigawa (CHK) -Type:Historic +Type:Archive Subtype:Block Effective:2004-10-20 Sets:CHK diff --git a/forge-gui/res/formats/Historic/DCI/Block/Kamigawa/2005-02-20.txt b/forge-gui/res/formats/Archive/Block/Kamigawa/2005-02-20.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Kamigawa/2005-02-20.txt rename to forge-gui/res/formats/Archive/Block/Kamigawa/2005-02-20.txt index 2c15e5e61d1..04a5bde634c 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Kamigawa/2005-02-20.txt +++ b/forge-gui/res/formats/Archive/Block/Kamigawa/2005-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Kamigawa (BOK) -Type:Historic +Type:Archive Subtype:Block Effective:2005-02-20 Sets:CHK, BOK diff --git a/forge-gui/res/formats/Historic/DCI/Block/Kamigawa/2005-06-20.txt b/forge-gui/res/formats/Archive/Block/Kamigawa/2005-06-20.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Kamigawa/2005-06-20.txt rename to forge-gui/res/formats/Archive/Block/Kamigawa/2005-06-20.txt index 3d0aa92e760..4f6cab097d6 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Kamigawa/2005-06-20.txt +++ b/forge-gui/res/formats/Archive/Block/Kamigawa/2005-06-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Kamigawa (SOK) -Type:Historic +Type:Archive Subtype:Block Effective:2005-06-20 Sets:CHK, BOK, SOK diff --git a/forge-gui/res/formats/Historic/DCI/Block/Khans of Tarkir/2014-09-26.txt b/forge-gui/res/formats/Archive/Block/Khans of Tarkir/2014-09-26.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Khans of Tarkir/2014-09-26.txt rename to forge-gui/res/formats/Archive/Block/Khans of Tarkir/2014-09-26.txt index ded36acea1f..1f8b2d42561 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Khans of Tarkir/2014-09-26.txt +++ b/forge-gui/res/formats/Archive/Block/Khans of Tarkir/2014-09-26.txt @@ -1,6 +1,6 @@ [format] Name:Block: Khans of Tarkir (KTK) -Type:Historic +Type:Archive Subtype:Block Effective:2014-09-26 Sets:KTK diff --git a/forge-gui/res/formats/Historic/DCI/Block/Khans of Tarkir/2015-01-23.txt b/forge-gui/res/formats/Archive/Block/Khans of Tarkir/2015-01-23.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Khans of Tarkir/2015-01-23.txt rename to forge-gui/res/formats/Archive/Block/Khans of Tarkir/2015-01-23.txt index 42160df06e2..cb22d4a6954 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Khans of Tarkir/2015-01-23.txt +++ b/forge-gui/res/formats/Archive/Block/Khans of Tarkir/2015-01-23.txt @@ -1,6 +1,6 @@ [format] Name:Block: Khans of Tarkir (FRF) -Type:Historic +Type:Archive Subtype:Block Effective:2015-01-23 Sets:KTK, FRF diff --git a/forge-gui/res/formats/Historic/DCI/Block/Khans of Tarkir/2015-03-27.txt b/forge-gui/res/formats/Archive/Block/Khans of Tarkir/2015-03-27.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Block/Khans of Tarkir/2015-03-27.txt rename to forge-gui/res/formats/Archive/Block/Khans of Tarkir/2015-03-27.txt index 90c0f3bbfbc..eb25dd9d848 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Khans of Tarkir/2015-03-27.txt +++ b/forge-gui/res/formats/Archive/Block/Khans of Tarkir/2015-03-27.txt @@ -1,6 +1,6 @@ [format] Name:Block: Khans of Tarkir (DTK) -Type:Historic +Type:Archive Subtype:Block Effective:2015-03-27 Sets:KTK, FRF, DTK diff --git a/forge-gui/res/formats/Historic/DCI/Block/Lorwyn-Shadowmoor/2007-10-20.txt b/forge-gui/res/formats/Archive/Block/Lorwyn-Shadowmoor/2007-10-20.txt similarity index 84% rename from forge-gui/res/formats/Historic/DCI/Block/Lorwyn-Shadowmoor/2007-10-20.txt rename to forge-gui/res/formats/Archive/Block/Lorwyn-Shadowmoor/2007-10-20.txt index 5625f9dbcf8..d95bdc85395 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Lorwyn-Shadowmoor/2007-10-20.txt +++ b/forge-gui/res/formats/Archive/Block/Lorwyn-Shadowmoor/2007-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Lorwyn (LRW) -Type:Historic +Type:Archive Subtype:Block Effective:2007-10-20 Sets:LRW diff --git a/forge-gui/res/formats/Historic/DCI/Block/Lorwyn-Shadowmoor/2008-02-01.txt b/forge-gui/res/formats/Archive/Block/Lorwyn-Shadowmoor/2008-02-01.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Lorwyn-Shadowmoor/2008-02-01.txt rename to forge-gui/res/formats/Archive/Block/Lorwyn-Shadowmoor/2008-02-01.txt index f0348ff0487..40dbf6b7023 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Lorwyn-Shadowmoor/2008-02-01.txt +++ b/forge-gui/res/formats/Archive/Block/Lorwyn-Shadowmoor/2008-02-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Lorwyn (MOR) -Type:Historic +Type:Archive Subtype:Block Effective:2008-02-01 Sets:LRW, MOR diff --git a/forge-gui/res/formats/Historic/DCI/Block/Lorwyn-Shadowmoor/2008-05-02.txt b/forge-gui/res/formats/Archive/Block/Lorwyn-Shadowmoor/2008-05-02.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Block/Lorwyn-Shadowmoor/2008-05-02.txt rename to forge-gui/res/formats/Archive/Block/Lorwyn-Shadowmoor/2008-05-02.txt index 19d24f4d796..47d5b03ef02 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Lorwyn-Shadowmoor/2008-05-02.txt +++ b/forge-gui/res/formats/Archive/Block/Lorwyn-Shadowmoor/2008-05-02.txt @@ -1,6 +1,6 @@ [format] Name:Block: Lorwyn;Shadowmoor (SHM) -Type:Historic +Type:Archive Subtype:Block Effective:2008-05-02 Sets:LRW, MOR, SHM diff --git a/forge-gui/res/formats/Historic/DCI/Block/Lorwyn-Shadowmoor/2008-07-25.txt b/forge-gui/res/formats/Archive/Block/Lorwyn-Shadowmoor/2008-07-25.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Block/Lorwyn-Shadowmoor/2008-07-25.txt rename to forge-gui/res/formats/Archive/Block/Lorwyn-Shadowmoor/2008-07-25.txt index 6e75b8479a4..b9a96e510b2 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Lorwyn-Shadowmoor/2008-07-25.txt +++ b/forge-gui/res/formats/Archive/Block/Lorwyn-Shadowmoor/2008-07-25.txt @@ -1,6 +1,6 @@ [format] Name:Block: Lorwyn;Shadowmoor (EVE) -Type:Historic +Type:Archive Subtype:Block Effective:2008-07-25 Sets:LRW, MOR, SHM, EVE diff --git a/forge-gui/res/formats/Historic/DCI/Block/Masques/1999-11-01.txt b/forge-gui/res/formats/Archive/Block/Masques/1999-11-01.txt similarity index 84% rename from forge-gui/res/formats/Historic/DCI/Block/Masques/1999-11-01.txt rename to forge-gui/res/formats/Archive/Block/Masques/1999-11-01.txt index 55a5a3a3f86..75af0db654a 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Masques/1999-11-01.txt +++ b/forge-gui/res/formats/Archive/Block/Masques/1999-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Masques (MMQ) -Type:Historic +Type:Archive Subtype:Block Effective:1999-11-01 Sets:MMQ diff --git a/forge-gui/res/formats/Historic/DCI/Block/Masques/2000-03-01.txt b/forge-gui/res/formats/Archive/Block/Masques/2000-03-01.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Masques/2000-03-01.txt rename to forge-gui/res/formats/Archive/Block/Masques/2000-03-01.txt index 1d68016aebf..591f7a0d8ea 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Masques/2000-03-01.txt +++ b/forge-gui/res/formats/Archive/Block/Masques/2000-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Masques (NMS) -Type:Historic +Type:Archive Subtype:Block Effective:2000-03-01 Sets:MMQ, NMS diff --git a/forge-gui/res/formats/Historic/DCI/Block/Masques/2000-07-01.txt b/forge-gui/res/formats/Archive/Block/Masques/2000-07-01.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Block/Masques/2000-07-01.txt rename to forge-gui/res/formats/Archive/Block/Masques/2000-07-01.txt index 03f4e3561aa..7766e412999 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Masques/2000-07-01.txt +++ b/forge-gui/res/formats/Archive/Block/Masques/2000-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Masques (PCY) -Type:Historic +Type:Archive Subtype:Block Effective:2000-07-01 Sets:MMQ, NMS, PCY diff --git a/forge-gui/res/formats/Historic/DCI/Block/Mirage-Visions-Weatherlight/1997-07-01.txt b/forge-gui/res/formats/Archive/Block/Mirage-Visions-Weatherlight/1997-07-01.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Block/Mirage-Visions-Weatherlight/1997-07-01.txt rename to forge-gui/res/formats/Archive/Block/Mirage-Visions-Weatherlight/1997-07-01.txt index 3efbdbbc3a1..cef5984d2c0 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Mirage-Visions-Weatherlight/1997-07-01.txt +++ b/forge-gui/res/formats/Archive/Block/Mirage-Visions-Weatherlight/1997-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Mirage;Visions;Weatherlight (WTH) -Type:Historic +Type:Archive Subtype:Block Effective:1997-07-01 Sets:MIR, VIS, WTH diff --git a/forge-gui/res/formats/Historic/DCI/Block/Mirrodin/2003-10-20.txt b/forge-gui/res/formats/Archive/Block/Mirrodin/2003-10-20.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Mirrodin/2003-10-20.txt rename to forge-gui/res/formats/Archive/Block/Mirrodin/2003-10-20.txt index 7128399d5a2..b5fa9f05aff 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Mirrodin/2003-10-20.txt +++ b/forge-gui/res/formats/Archive/Block/Mirrodin/2003-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Mirrodin (MRD) -Type:Historic +Type:Archive Subtype:Block Effective:2003-10-20 Sets:MRD diff --git a/forge-gui/res/formats/Historic/DCI/Block/Mirrodin/2004-02-20.txt b/forge-gui/res/formats/Archive/Block/Mirrodin/2004-02-20.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Mirrodin/2004-02-20.txt rename to forge-gui/res/formats/Archive/Block/Mirrodin/2004-02-20.txt index ffe42c4da12..8d13f63ef46 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Mirrodin/2004-02-20.txt +++ b/forge-gui/res/formats/Archive/Block/Mirrodin/2004-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Mirrodin (DST) -Type:Historic +Type:Archive Subtype:Block Effective:2004-02-20 Sets:MRD, DST diff --git a/forge-gui/res/formats/Historic/DCI/Block/Mirrodin/2004-06-20.txt b/forge-gui/res/formats/Archive/Block/Mirrodin/2004-06-20.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Block/Mirrodin/2004-06-20.txt rename to forge-gui/res/formats/Archive/Block/Mirrodin/2004-06-20.txt index 6dcf83b9d72..32caa576c8b 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Mirrodin/2004-06-20.txt +++ b/forge-gui/res/formats/Archive/Block/Mirrodin/2004-06-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Mirrodin (5DN) -Type:Historic +Type:Archive Subtype:Block Effective:2004-06-20 Sets:MRD, DST, 5DN diff --git a/forge-gui/res/formats/Historic/DCI/Block/Mirrodin/2006-02-20.txt b/forge-gui/res/formats/Archive/Block/Mirrodin/2006-02-20.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Block/Mirrodin/2006-02-20.txt rename to forge-gui/res/formats/Archive/Block/Mirrodin/2006-02-20.txt index 5ff8dfe1deb..e81131e46c8 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Mirrodin/2006-02-20.txt +++ b/forge-gui/res/formats/Archive/Block/Mirrodin/2006-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Mirrodin (2006-03-20) -Type:Historic +Type:Archive Subtype:Block Effective:2006-03-20 Sets:MRD, DST, 5DN diff --git a/forge-gui/res/formats/Historic/DCI/Block/Odyssey/2001-11-01.txt b/forge-gui/res/formats/Archive/Block/Odyssey/2001-11-01.txt similarity index 84% rename from forge-gui/res/formats/Historic/DCI/Block/Odyssey/2001-11-01.txt rename to forge-gui/res/formats/Archive/Block/Odyssey/2001-11-01.txt index cd8bb8633d0..60d98cfef23 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Odyssey/2001-11-01.txt +++ b/forge-gui/res/formats/Archive/Block/Odyssey/2001-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Odyssey (ODY) -Type:Historic +Type:Archive Subtype:Block Effective:2001-11-01 Sets:ODY diff --git a/forge-gui/res/formats/Historic/DCI/Block/Odyssey/2002-03-01.txt b/forge-gui/res/formats/Archive/Block/Odyssey/2002-03-01.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Odyssey/2002-03-01.txt rename to forge-gui/res/formats/Archive/Block/Odyssey/2002-03-01.txt index 8f8a40be78e..9c109704820 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Odyssey/2002-03-01.txt +++ b/forge-gui/res/formats/Archive/Block/Odyssey/2002-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Odyssey (TOR) -Type:Historic +Type:Archive Subtype:Block Effective:2002-03-01 Sets:ODY, TOR diff --git a/forge-gui/res/formats/Historic/DCI/Block/Odyssey/2002-07-01.txt b/forge-gui/res/formats/Archive/Block/Odyssey/2002-07-01.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Odyssey/2002-07-01.txt rename to forge-gui/res/formats/Archive/Block/Odyssey/2002-07-01.txt index add1fb364ab..021150382c4 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Odyssey/2002-07-01.txt +++ b/forge-gui/res/formats/Archive/Block/Odyssey/2002-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Odyssey (JUD) -Type:Historic +Type:Archive Subtype:Block Effective:2002-07-01 Sets:ODY, TOR, JUD diff --git a/forge-gui/res/formats/Historic/DCI/Block/Onslaught/2002-11-01.txt b/forge-gui/res/formats/Archive/Block/Onslaught/2002-11-01.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Onslaught/2002-11-01.txt rename to forge-gui/res/formats/Archive/Block/Onslaught/2002-11-01.txt index 733c5c42356..7f49ff35dfe 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Onslaught/2002-11-01.txt +++ b/forge-gui/res/formats/Archive/Block/Onslaught/2002-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Onslaught (ONS) -Type:Historic +Type:Archive Subtype:Block Effective:2002-11-01 Sets:ONS diff --git a/forge-gui/res/formats/Historic/DCI/Block/Onslaught/2003-03-01.txt b/forge-gui/res/formats/Archive/Block/Onslaught/2003-03-01.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Onslaught/2003-03-01.txt rename to forge-gui/res/formats/Archive/Block/Onslaught/2003-03-01.txt index 47b46bdf39a..123070b445b 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Onslaught/2003-03-01.txt +++ b/forge-gui/res/formats/Archive/Block/Onslaught/2003-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Onslaught (LGN) -Type:Historic +Type:Archive Subtype:Block Effective:2003-03-01 Sets:ONS, LGN diff --git a/forge-gui/res/formats/Historic/DCI/Block/Onslaught/2003-07-01.txt b/forge-gui/res/formats/Archive/Block/Onslaught/2003-07-01.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Onslaught/2003-07-01.txt rename to forge-gui/res/formats/Archive/Block/Onslaught/2003-07-01.txt index 847ece6069b..b31ca636580 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Onslaught/2003-07-01.txt +++ b/forge-gui/res/formats/Archive/Block/Onslaught/2003-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Onslaught (SCG) -Type:Historic +Type:Archive Subtype:Block Effective:2003-07-01 Sets:ONS, LGN, SCG diff --git a/forge-gui/res/formats/Historic/DCI/Block/Rath Cycle/1997-11-01.txt b/forge-gui/res/formats/Archive/Block/Rath Cycle/1997-11-01.txt similarity index 84% rename from forge-gui/res/formats/Historic/DCI/Block/Rath Cycle/1997-11-01.txt rename to forge-gui/res/formats/Archive/Block/Rath Cycle/1997-11-01.txt index ab0ea4c09a8..f28a9a56609 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Rath Cycle/1997-11-01.txt +++ b/forge-gui/res/formats/Archive/Block/Rath Cycle/1997-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Tempest (TMP) -Type:Historic +Type:Archive Subtype:Block Effective:1997-11-01 Sets:TMP diff --git a/forge-gui/res/formats/Historic/DCI/Block/Rath Cycle/1998-04-01.txt b/forge-gui/res/formats/Archive/Block/Rath Cycle/1998-04-01.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Block/Rath Cycle/1998-04-01.txt rename to forge-gui/res/formats/Archive/Block/Rath Cycle/1998-04-01.txt index f6927df88d1..534dc3d695f 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Rath Cycle/1998-04-01.txt +++ b/forge-gui/res/formats/Archive/Block/Rath Cycle/1998-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Tempest;Stronghold (TMP) -Type:Historic +Type:Archive Subtype:Block Effective:1998-04-01 Sets:TMP, STH diff --git a/forge-gui/res/formats/Historic/DCI/Block/Rath Cycle/1998-07-01.txt b/forge-gui/res/formats/Archive/Block/Rath Cycle/1998-07-01.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Block/Rath Cycle/1998-07-01.txt rename to forge-gui/res/formats/Archive/Block/Rath Cycle/1998-07-01.txt index 8ebb724af15..af1a6cd4f08 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Rath Cycle/1998-07-01.txt +++ b/forge-gui/res/formats/Archive/Block/Rath Cycle/1998-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Tempest;Stronghold;Exodus (EXO) -Type:Historic +Type:Archive Subtype:Block Effective:1998-07-01 Sets:TMP, STH, EXO diff --git a/forge-gui/res/formats/Historic/DCI/Block/Ravnica/2005-10-20.txt b/forge-gui/res/formats/Archive/Block/Ravnica/2005-10-20.txt similarity index 84% rename from forge-gui/res/formats/Historic/DCI/Block/Ravnica/2005-10-20.txt rename to forge-gui/res/formats/Archive/Block/Ravnica/2005-10-20.txt index 1ef02b54e1f..fdaa4ae60e3 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Ravnica/2005-10-20.txt +++ b/forge-gui/res/formats/Archive/Block/Ravnica/2005-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Ravnica (RAV) -Type:Historic +Type:Archive Subtype:Block Effective:2005-10-20 Sets:RAV diff --git a/forge-gui/res/formats/Historic/DCI/Block/Ravnica/2006-02-20.txt b/forge-gui/res/formats/Archive/Block/Ravnica/2006-02-20.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Ravnica/2006-02-20.txt rename to forge-gui/res/formats/Archive/Block/Ravnica/2006-02-20.txt index 47455ba27c9..6be64dabd66 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Ravnica/2006-02-20.txt +++ b/forge-gui/res/formats/Archive/Block/Ravnica/2006-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Ravnica (GPT) -Type:Historic +Type:Archive Subtype:Block Effective:2006-02-20 Sets:RAV, GPT diff --git a/forge-gui/res/formats/Historic/DCI/Block/Ravnica/2006-05-20.txt b/forge-gui/res/formats/Archive/Block/Ravnica/2006-05-20.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Ravnica/2006-05-20.txt rename to forge-gui/res/formats/Archive/Block/Ravnica/2006-05-20.txt index b5c661eebdc..7a85223418d 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Ravnica/2006-05-20.txt +++ b/forge-gui/res/formats/Archive/Block/Ravnica/2006-05-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Ravnica (DIS) -Type:Historic +Type:Archive Subtype:Block Effective:2006-05-20 Sets:RAV, GPT, DIS diff --git a/forge-gui/res/formats/Historic/DCI/Block/Return to Ravnica/2012-10-05.txt b/forge-gui/res/formats/Archive/Block/Return to Ravnica/2012-10-05.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Return to Ravnica/2012-10-05.txt rename to forge-gui/res/formats/Archive/Block/Return to Ravnica/2012-10-05.txt index d68b19679a0..f590fd4abf8 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Return to Ravnica/2012-10-05.txt +++ b/forge-gui/res/formats/Archive/Block/Return to Ravnica/2012-10-05.txt @@ -1,6 +1,6 @@ [format] Name:Block: Return to Ravnica (RTR) -Type:Historic +Type:Archive Subtype:Block Effective:2012-10-05 Sets:RTR diff --git a/forge-gui/res/formats/Historic/DCI/Block/Return to Ravnica/2013-02-01.txt b/forge-gui/res/formats/Archive/Block/Return to Ravnica/2013-02-01.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Block/Return to Ravnica/2013-02-01.txt rename to forge-gui/res/formats/Archive/Block/Return to Ravnica/2013-02-01.txt index cde1286d255..0007243518f 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Return to Ravnica/2013-02-01.txt +++ b/forge-gui/res/formats/Archive/Block/Return to Ravnica/2013-02-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Return to Ravnica (GTC) -Type:Historic +Type:Archive Subtype:Block Effective:2013-02-01 Sets:RTR, GTC diff --git a/forge-gui/res/formats/Historic/DCI/Block/Return to Ravnica/2013-05-03.txt b/forge-gui/res/formats/Archive/Block/Return to Ravnica/2013-05-03.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Block/Return to Ravnica/2013-05-03.txt rename to forge-gui/res/formats/Archive/Block/Return to Ravnica/2013-05-03.txt index a6dc141a336..ed15d5f3c7c 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Return to Ravnica/2013-05-03.txt +++ b/forge-gui/res/formats/Archive/Block/Return to Ravnica/2013-05-03.txt @@ -1,6 +1,6 @@ [format] Name:Block: Return to Ravnica (DGM) -Type:Historic +Type:Archive Subtype:Block Effective:2013-05-03 Sets:RTR, GTC, DGM diff --git a/forge-gui/res/formats/Historic/DCI/Block/Scars of Mirrodin/2010-10-01.txt b/forge-gui/res/formats/Archive/Block/Scars of Mirrodin/2010-10-01.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Scars of Mirrodin/2010-10-01.txt rename to forge-gui/res/formats/Archive/Block/Scars of Mirrodin/2010-10-01.txt index 230a3461c70..3570bee99be 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Scars of Mirrodin/2010-10-01.txt +++ b/forge-gui/res/formats/Archive/Block/Scars of Mirrodin/2010-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Scars of Mirrodin (SOM) -Type:Historic +Type:Archive Subtype:Block Effective:2010-10-01 Sets:SOM diff --git a/forge-gui/res/formats/Historic/DCI/Block/Scars of Mirrodin/2011-02-04.txt b/forge-gui/res/formats/Archive/Block/Scars of Mirrodin/2011-02-04.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Block/Scars of Mirrodin/2011-02-04.txt rename to forge-gui/res/formats/Archive/Block/Scars of Mirrodin/2011-02-04.txt index 406ea8a3cde..dbe5fef732c 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Scars of Mirrodin/2011-02-04.txt +++ b/forge-gui/res/formats/Archive/Block/Scars of Mirrodin/2011-02-04.txt @@ -1,6 +1,6 @@ [format] Name:Block: Scars of Mirrodin (MBS) -Type:Historic +Type:Archive Subtype:Block Effective:2011-02-04 Sets:SOM, MBS diff --git a/forge-gui/res/formats/Historic/DCI/Block/Scars of Mirrodin/2011-05-13.txt b/forge-gui/res/formats/Archive/Block/Scars of Mirrodin/2011-05-13.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Block/Scars of Mirrodin/2011-05-13.txt rename to forge-gui/res/formats/Archive/Block/Scars of Mirrodin/2011-05-13.txt index 1675321df2a..4b1d424136f 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Scars of Mirrodin/2011-05-13.txt +++ b/forge-gui/res/formats/Archive/Block/Scars of Mirrodin/2011-05-13.txt @@ -1,6 +1,6 @@ [format] Name:Block: Scars of Mirrodin (NPH) -Type:Historic +Type:Archive Subtype:Block Effective:2011-05-13 Sets:SOM, MBS, NPH diff --git a/forge-gui/res/formats/Historic/DCI/Block/Shadows over Innistrad/2016-04-08.txt b/forge-gui/res/formats/Archive/Block/Shadows over Innistrad/2016-04-08.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Block/Shadows over Innistrad/2016-04-08.txt rename to forge-gui/res/formats/Archive/Block/Shadows over Innistrad/2016-04-08.txt index 3fab38289bb..e40760cc602 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Shadows over Innistrad/2016-04-08.txt +++ b/forge-gui/res/formats/Archive/Block/Shadows over Innistrad/2016-04-08.txt @@ -1,6 +1,6 @@ [format] Name:Block: Shadows over Innistrad (SOI) -Type:Historic +Type:Archive Subtype:Block Effective:2016-04-08 Sets:SOI diff --git a/forge-gui/res/formats/Historic/DCI/Block/Shadows over Innistrad/2016-07-22.txt b/forge-gui/res/formats/Archive/Block/Shadows over Innistrad/2016-07-22.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Block/Shadows over Innistrad/2016-07-22.txt rename to forge-gui/res/formats/Archive/Block/Shadows over Innistrad/2016-07-22.txt index 6c608cc8a42..32e5451959c 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Shadows over Innistrad/2016-07-22.txt +++ b/forge-gui/res/formats/Archive/Block/Shadows over Innistrad/2016-07-22.txt @@ -1,6 +1,6 @@ [format] Name:Block: Shadows over Innistrad (EMN) -Type:Historic +Type:Archive Subtype:Block Effective:2016-07-22 Sets:SOI, EMN diff --git a/forge-gui/res/formats/Historic/DCI/Block/Shards of Alara/2008-10-03.txt b/forge-gui/res/formats/Archive/Block/Shards of Alara/2008-10-03.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Shards of Alara/2008-10-03.txt rename to forge-gui/res/formats/Archive/Block/Shards of Alara/2008-10-03.txt index a0005726ef2..6b8d52cfd91 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Shards of Alara/2008-10-03.txt +++ b/forge-gui/res/formats/Archive/Block/Shards of Alara/2008-10-03.txt @@ -1,6 +1,6 @@ [format] Name:Block: Shards of Alara (ALA) -Type:Historic +Type:Archive Subtype:Block Effective:2008-10-03 Sets:ALA diff --git a/forge-gui/res/formats/Historic/DCI/Block/Shards of Alara/2009-02-06.txt b/forge-gui/res/formats/Archive/Block/Shards of Alara/2009-02-06.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Shards of Alara/2009-02-06.txt rename to forge-gui/res/formats/Archive/Block/Shards of Alara/2009-02-06.txt index a2cbbc000f9..44fae88e0c7 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Shards of Alara/2009-02-06.txt +++ b/forge-gui/res/formats/Archive/Block/Shards of Alara/2009-02-06.txt @@ -1,6 +1,6 @@ [format] Name:Block: Shards of Alara (CFX) -Type:Historic +Type:Archive Subtype:Block Effective:2009-02-06 Sets:ALA, CFX diff --git a/forge-gui/res/formats/Historic/DCI/Block/Shards of Alara/2009-04-30.txt b/forge-gui/res/formats/Archive/Block/Shards of Alara/2009-04-30.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Block/Shards of Alara/2009-04-30.txt rename to forge-gui/res/formats/Archive/Block/Shards of Alara/2009-04-30.txt index 96c480d6101..967d7b4dcde 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Shards of Alara/2009-04-30.txt +++ b/forge-gui/res/formats/Archive/Block/Shards of Alara/2009-04-30.txt @@ -1,6 +1,6 @@ [format] Name:Block: Shards of Alara (ARB) -Type:Historic +Type:Archive Subtype:Block Effective:2009-04-30 Sets:ALA, CFX, ARB diff --git a/forge-gui/res/formats/Historic/DCI/Block/Theros/2013-09-27.txt b/forge-gui/res/formats/Archive/Block/Theros/2013-09-27.txt similarity index 84% rename from forge-gui/res/formats/Historic/DCI/Block/Theros/2013-09-27.txt rename to forge-gui/res/formats/Archive/Block/Theros/2013-09-27.txt index 1ae81518186..60b28c90d63 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Theros/2013-09-27.txt +++ b/forge-gui/res/formats/Archive/Block/Theros/2013-09-27.txt @@ -1,6 +1,6 @@ [format] Name:Block: Theros (THS) -Type:Historic +Type:Archive Subtype:Block Effective:2013-09-23 Sets:THS diff --git a/forge-gui/res/formats/Historic/DCI/Block/Theros/2014-02-07.txt b/forge-gui/res/formats/Archive/Block/Theros/2014-02-07.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Theros/2014-02-07.txt rename to forge-gui/res/formats/Archive/Block/Theros/2014-02-07.txt index 04a146c169a..10f3ee87f68 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Theros/2014-02-07.txt +++ b/forge-gui/res/formats/Archive/Block/Theros/2014-02-07.txt @@ -1,6 +1,6 @@ [format] Name:Block: Theros (BNG) -Type:Historic +Type:Archive Subtype:Block Effective:2014-02-07 Sets:THS, BNG diff --git a/forge-gui/res/formats/Historic/DCI/Block/Theros/2014-05-02.txt b/forge-gui/res/formats/Archive/Block/Theros/2014-05-02.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Theros/2014-05-02.txt rename to forge-gui/res/formats/Archive/Block/Theros/2014-05-02.txt index 6378e056f8e..7ddb1172785 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Theros/2014-05-02.txt +++ b/forge-gui/res/formats/Archive/Block/Theros/2014-05-02.txt @@ -1,6 +1,6 @@ [format] Name:Block: Theros (JOU) -Type:Historic +Type:Archive Subtype:Block Effective:2014-05-02 Sets:THS, BNG, JOU diff --git a/forge-gui/res/formats/Historic/DCI/Block/Time Spiral/2006-10-20.txt b/forge-gui/res/formats/Archive/Block/Time Spiral/2006-10-20.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Time Spiral/2006-10-20.txt rename to forge-gui/res/formats/Archive/Block/Time Spiral/2006-10-20.txt index 3126e2af19c..67613a235cb 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Time Spiral/2006-10-20.txt +++ b/forge-gui/res/formats/Archive/Block/Time Spiral/2006-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Time Spiral (TSP) -Type:Historic +Type:Archive Subtype:Block Effective:2006-10-20 Sets:TSP, TSB diff --git a/forge-gui/res/formats/Historic/DCI/Block/Time Spiral/2007-02-20.txt b/forge-gui/res/formats/Archive/Block/Time Spiral/2007-02-20.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Time Spiral/2007-02-20.txt rename to forge-gui/res/formats/Archive/Block/Time Spiral/2007-02-20.txt index 400b2811634..4db40d4ef53 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Time Spiral/2007-02-20.txt +++ b/forge-gui/res/formats/Archive/Block/Time Spiral/2007-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Time Spiral (PLC) -Type:Historic +Type:Archive Subtype:Block Effective:2007-02-20 Sets:TSP, TSB, PLC diff --git a/forge-gui/res/formats/Historic/DCI/Block/Time Spiral/2007-05-20.txt b/forge-gui/res/formats/Archive/Block/Time Spiral/2007-05-20.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Block/Time Spiral/2007-05-20.txt rename to forge-gui/res/formats/Archive/Block/Time Spiral/2007-05-20.txt index 75662c7fa81..c7a99bdea9f 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Time Spiral/2007-05-20.txt +++ b/forge-gui/res/formats/Archive/Block/Time Spiral/2007-05-20.txt @@ -1,6 +1,6 @@ [format] Name:Block: Time Spiral (FUT) -Type:Historic +Type:Archive Subtype:Block Effective:2007-05-20 Sets:TSP, TSB, PLC, FUT diff --git a/forge-gui/res/formats/Historic/DCI/Block/Urza/1999-01-01.txt b/forge-gui/res/formats/Archive/Block/Urza/1999-01-01.txt similarity index 84% rename from forge-gui/res/formats/Historic/DCI/Block/Urza/1999-01-01.txt rename to forge-gui/res/formats/Archive/Block/Urza/1999-01-01.txt index 9e0677d235d..51aa83e9bbd 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Urza/1999-01-01.txt +++ b/forge-gui/res/formats/Archive/Block/Urza/1999-01-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Urza (USG) -Type:Historic +Type:Archive Subtype:Block Effective:1999-01-01 Sets:USG diff --git a/forge-gui/res/formats/Historic/DCI/Block/Urza/1999-03-01.txt b/forge-gui/res/formats/Archive/Block/Urza/1999-03-01.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Urza/1999-03-01.txt rename to forge-gui/res/formats/Archive/Block/Urza/1999-03-01.txt index 3515ad25199..0f691138c4a 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Urza/1999-03-01.txt +++ b/forge-gui/res/formats/Archive/Block/Urza/1999-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Urza (ULG) -Type:Historic +Type:Archive Subtype:Block Effective:1999-03-01 Sets:USG, ULG diff --git a/forge-gui/res/formats/Historic/DCI/Block/Urza/1999-04-01.txt b/forge-gui/res/formats/Archive/Block/Urza/1999-04-01.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Block/Urza/1999-04-01.txt rename to forge-gui/res/formats/Archive/Block/Urza/1999-04-01.txt index 347f31e3d1b..9d6a4cbe541 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Urza/1999-04-01.txt +++ b/forge-gui/res/formats/Archive/Block/Urza/1999-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Urza (1999-04-01) -Type:Historic +Type:Archive Subtype:Block Effective:1999-04-01 Sets:USG, ULG diff --git a/forge-gui/res/formats/Historic/DCI/Block/Urza/1999-07-01.txt b/forge-gui/res/formats/Archive/Block/Urza/1999-07-01.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Block/Urza/1999-07-01.txt rename to forge-gui/res/formats/Archive/Block/Urza/1999-07-01.txt index e90418b7685..d8a2dc8cc1b 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Urza/1999-07-01.txt +++ b/forge-gui/res/formats/Archive/Block/Urza/1999-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Block: Urza (UDS) -Type:Historic +Type:Archive Subtype:Block Effective:1999-07-01 Sets:USG, ULG, UDS diff --git a/forge-gui/res/formats/Historic/DCI/Block/Zendikar/2009-10-02.txt b/forge-gui/res/formats/Archive/Block/Zendikar/2009-10-02.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Zendikar/2009-10-02.txt rename to forge-gui/res/formats/Archive/Block/Zendikar/2009-10-02.txt index c434a5292bc..9ec0327c544 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Zendikar/2009-10-02.txt +++ b/forge-gui/res/formats/Archive/Block/Zendikar/2009-10-02.txt @@ -1,6 +1,6 @@ [format] Name:Block: Zendikar (ZEN) -Type:Historic +Type:Archive Subtype:Block Effective:2009-10-02 Sets:ZEN diff --git a/forge-gui/res/formats/Historic/DCI/Block/Zendikar/2010-02-05.txt b/forge-gui/res/formats/Archive/Block/Zendikar/2010-02-05.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Block/Zendikar/2010-02-05.txt rename to forge-gui/res/formats/Archive/Block/Zendikar/2010-02-05.txt index c12313b83d0..912b52761d8 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Zendikar/2010-02-05.txt +++ b/forge-gui/res/formats/Archive/Block/Zendikar/2010-02-05.txt @@ -1,6 +1,6 @@ [format] Name:Block: Zendikar (WWK) -Type:Historic +Type:Archive Subtype:Block Effective:2010-02-05 Sets:ZEN, WWK diff --git a/forge-gui/res/formats/Historic/DCI/Block/Zendikar/2010-04-23.txt b/forge-gui/res/formats/Archive/Block/Zendikar/2010-04-23.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Block/Zendikar/2010-04-23.txt rename to forge-gui/res/formats/Archive/Block/Zendikar/2010-04-23.txt index 461b35989cf..fca30ad8db7 100644 --- a/forge-gui/res/formats/Historic/DCI/Block/Zendikar/2010-04-23.txt +++ b/forge-gui/res/formats/Archive/Block/Zendikar/2010-04-23.txt @@ -1,6 +1,6 @@ [format] Name:Block: Zendikar (ROE) -Type:Historic +Type:Archive Subtype:Block Effective:2010-04-23 Sets:ZEN, WWK, ROE diff --git a/forge-gui/res/formats/Historic/DCI/Explorer/2022-04-21.txt b/forge-gui/res/formats/Archive/Explorer/2022-04-21.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Explorer/2022-04-21.txt rename to forge-gui/res/formats/Archive/Explorer/2022-04-21.txt index 3bd98385dd5..8e529852c5c 100644 --- a/forge-gui/res/formats/Historic/DCI/Explorer/2022-04-21.txt +++ b/forge-gui/res/formats/Archive/Explorer/2022-04-21.txt @@ -1,6 +1,6 @@ [format] Name:Explorer (2022-04-21) -Type:Historic +Type:Archive Subtype:Arena Effective:2022-04-21 Sets:XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21, ZNR, KHM, STX, AFR, MID, VOW, NEO diff --git a/forge-gui/res/formats/Historic/DCI/Explorer/2022-04-28.txt b/forge-gui/res/formats/Archive/Explorer/2022-04-28.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Explorer/2022-04-28.txt rename to forge-gui/res/formats/Archive/Explorer/2022-04-28.txt index 733c38c7d7b..f5bf7f76993 100644 --- a/forge-gui/res/formats/Historic/DCI/Explorer/2022-04-28.txt +++ b/forge-gui/res/formats/Archive/Explorer/2022-04-28.txt @@ -1,6 +1,6 @@ [format] Name:Explorer (SNC) -Type:Historic +Type:Archive Subtype:Arena Effective:2022-04-28 Sets:XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21, ZNR, KHM, STX, AFR, MID, VOW, NEO, SNC diff --git a/forge-gui/res/formats/Historic/DCI/Extended/1997-07-01.txt b/forge-gui/res/formats/Archive/Extended/1997-07-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/1997-07-01.txt rename to forge-gui/res/formats/Archive/Extended/1997-07-01.txt index a282d3da38f..45895e902c1 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/1997-07-01.txt +++ b/forge-gui/res/formats/Archive/Extended/1997-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (1997-07-01) -Type:Historic +Type:Archive Subtype:Extended Effective:1997-07-01 Sets:3ED, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH diff --git a/forge-gui/res/formats/Historic/DCI/Extended/1997-10-01.txt b/forge-gui/res/formats/Archive/Extended/1997-10-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/1997-10-01.txt rename to forge-gui/res/formats/Archive/Extended/1997-10-01.txt index b27653cbbee..d469b66b0c0 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/1997-10-01.txt +++ b/forge-gui/res/formats/Archive/Extended/1997-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (1997-10-01) -Type:Historic +Type:Archive Subtype:Extended Effective:1997-10-01 Sets:3ED, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH diff --git a/forge-gui/res/formats/Historic/DCI/Extended/1997-11-01.txt b/forge-gui/res/formats/Archive/Extended/1997-11-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/1997-11-01.txt rename to forge-gui/res/formats/Archive/Extended/1997-11-01.txt index e56f6677711..19ab52577e4 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/1997-11-01.txt +++ b/forge-gui/res/formats/Archive/Extended/1997-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (TMP) -Type:Historic +Type:Archive Subtype:Extended Effective:1997-11-01 Sets:3ED, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP diff --git a/forge-gui/res/formats/Historic/DCI/Extended/1998-04-01.txt b/forge-gui/res/formats/Archive/Extended/1998-04-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/1998-04-01.txt rename to forge-gui/res/formats/Archive/Extended/1998-04-01.txt index 42f812a7e21..d024f51ebc2 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/1998-04-01.txt +++ b/forge-gui/res/formats/Archive/Extended/1998-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (STH) -Type:Historic +Type:Archive Subtype:Extended Effective:1998-04-01 Sets:3ED, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH diff --git a/forge-gui/res/formats/Historic/DCI/Extended/1998-07-01.txt b/forge-gui/res/formats/Archive/Extended/1998-07-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/1998-07-01.txt rename to forge-gui/res/formats/Archive/Extended/1998-07-01.txt index eb95bf1ef37..80519ea6dd5 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/1998-07-01.txt +++ b/forge-gui/res/formats/Archive/Extended/1998-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (EXO) -Type:Historic +Type:Archive Subtype:Extended Effective:1998-07-01 Sets:3ED, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO diff --git a/forge-gui/res/formats/Historic/DCI/Extended/1998-11-01.txt b/forge-gui/res/formats/Archive/Extended/1998-11-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/1998-11-01.txt rename to forge-gui/res/formats/Archive/Extended/1998-11-01.txt index b09cb04c731..19e062f5e84 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/1998-11-01.txt +++ b/forge-gui/res/formats/Archive/Extended/1998-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (USG) -Type:Historic +Type:Archive Subtype:Extended Effective:1998-11-01 Sets:3ED, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG diff --git a/forge-gui/res/formats/Historic/DCI/Extended/1999-01-01.txt b/forge-gui/res/formats/Archive/Extended/1999-01-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/1999-01-01.txt rename to forge-gui/res/formats/Archive/Extended/1999-01-01.txt index 7764e980d65..0532b3d3e20 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/1999-01-01.txt +++ b/forge-gui/res/formats/Archive/Extended/1999-01-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (1999-01-01) -Type:Historic +Type:Archive Subtype:Extended Effective:1999-01-01 Sets:3ED, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG diff --git a/forge-gui/res/formats/Historic/DCI/Extended/1999-03-01.txt b/forge-gui/res/formats/Archive/Extended/1999-03-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/1999-03-01.txt rename to forge-gui/res/formats/Archive/Extended/1999-03-01.txt index 7b8d4c2b83c..10846086de8 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/1999-03-01.txt +++ b/forge-gui/res/formats/Archive/Extended/1999-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (ULG) -Type:Historic +Type:Archive Subtype:Extended Effective:1999-04-01 Sets:3ED, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG diff --git a/forge-gui/res/formats/Historic/DCI/Extended/1999-04-01.txt b/forge-gui/res/formats/Archive/Extended/1999-04-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/1999-04-01.txt rename to forge-gui/res/formats/Archive/Extended/1999-04-01.txt index 07e23efc4d9..035c66384a6 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/1999-04-01.txt +++ b/forge-gui/res/formats/Archive/Extended/1999-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (1999-04-01) -Type:Historic +Type:Archive Subtype:Extended Effective:1999-04-01 Sets:3ED, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG diff --git a/forge-gui/res/formats/Historic/DCI/Extended/1999-06-01.txt b/forge-gui/res/formats/Archive/Extended/1999-06-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/1999-06-01.txt rename to forge-gui/res/formats/Archive/Extended/1999-06-01.txt index b28f729a845..38419ed4ef3 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/1999-06-01.txt +++ b/forge-gui/res/formats/Archive/Extended/1999-06-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (6ED) -Type:Historic +Type:Archive Subtype:Extended Effective:1999-06-01 Sets:3ED, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED diff --git a/forge-gui/res/formats/Historic/DCI/Extended/1999-07-01.txt b/forge-gui/res/formats/Archive/Extended/1999-07-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/1999-07-01.txt rename to forge-gui/res/formats/Archive/Extended/1999-07-01.txt index a3f41a13684..39858031487 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/1999-07-01.txt +++ b/forge-gui/res/formats/Archive/Extended/1999-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (UDS) -Type:Historic +Type:Archive Subtype:Extended Effective:1999-07-01 Sets:3ED, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS diff --git a/forge-gui/res/formats/Historic/DCI/Extended/1999-09-01.txt b/forge-gui/res/formats/Archive/Extended/1999-09-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/1999-09-01.txt rename to forge-gui/res/formats/Archive/Extended/1999-09-01.txt index d3d05967f9a..938cf514354 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/1999-09-01.txt +++ b/forge-gui/res/formats/Archive/Extended/1999-09-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (1999-09-01) -Type:Historic +Type:Archive Subtype:Extended Effective:1999-09-01 Sets:3ED, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS diff --git a/forge-gui/res/formats/Historic/DCI/Extended/1999-10-01.txt b/forge-gui/res/formats/Archive/Extended/1999-10-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/1999-10-01.txt rename to forge-gui/res/formats/Archive/Extended/1999-10-01.txt index b45d3ed39d5..54cfe891b2a 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/1999-10-01.txt +++ b/forge-gui/res/formats/Archive/Extended/1999-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (1999-10-01) -Type:Historic +Type:Archive Subtype:Extended Effective:1999-10-01 Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS diff --git a/forge-gui/res/formats/Historic/DCI/Extended/1999-11-01.txt b/forge-gui/res/formats/Archive/Extended/1999-11-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/1999-11-01.txt rename to forge-gui/res/formats/Archive/Extended/1999-11-01.txt index 8b122bcb149..485f5ba953f 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/1999-11-01.txt +++ b/forge-gui/res/formats/Archive/Extended/1999-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (MMQ) -Type:Historic +Type:Archive Subtype:Extended Effective:1999-11-01 Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2000-03-01.txt b/forge-gui/res/formats/Archive/Extended/2000-03-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2000-03-01.txt rename to forge-gui/res/formats/Archive/Extended/2000-03-01.txt index da6ffa54bde..c8e6974f19e 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2000-03-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2000-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (NMS) -Type:Historic +Type:Archive Subtype:Extended Effective:2000-03-01 Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2000-04-01.txt b/forge-gui/res/formats/Archive/Extended/2000-04-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2000-04-01.txt rename to forge-gui/res/formats/Archive/Extended/2000-04-01.txt index dbf3254783f..10593c45349 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2000-04-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2000-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (2000-04-01) -Type:Historic +Type:Archive Subtype:Extended Effective:2000-04-01 Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2000-07-01.txt b/forge-gui/res/formats/Archive/Extended/2000-07-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2000-07-01.txt rename to forge-gui/res/formats/Archive/Extended/2000-07-01.txt index 5a1ef02428b..2c52611a834 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2000-07-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2000-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (PCY) -Type:Historic +Type:Archive Subtype:Extended Effective:2000-07-01 Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2000-11-01.txt b/forge-gui/res/formats/Archive/Extended/2000-11-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2000-11-01.txt rename to forge-gui/res/formats/Archive/Extended/2000-11-01.txt index 069667f3a38..d1f5a57de05 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2000-11-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2000-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (INV) -Type:Historic +Type:Archive Subtype:Extended Effective:2000-11-01 Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2001-03-01.txt b/forge-gui/res/formats/Archive/Extended/2001-03-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2001-03-01.txt rename to forge-gui/res/formats/Archive/Extended/2001-03-01.txt index 3bbd2163ecf..7314b797bee 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2001-03-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2001-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (PLS) -Type:Historic +Type:Archive Subtype:Extended Effective:2001-03-01 Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2001-04-01.txt b/forge-gui/res/formats/Archive/Extended/2001-04-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2001-04-01.txt rename to forge-gui/res/formats/Archive/Extended/2001-04-01.txt index 3ac9b4e9b99..02229f05657 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2001-04-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2001-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (2001-04-01) -Type:Historic +Type:Archive Subtype:Extended Effective:2001-04-01 Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2001-05-01.txt b/forge-gui/res/formats/Archive/Extended/2001-05-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2001-05-01.txt rename to forge-gui/res/formats/Archive/Extended/2001-05-01.txt index 57dcebc91ff..b7453e41210 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2001-05-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2001-05-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (7ED) -Type:Historic +Type:Archive Subtype:Extended Effective:2001-05-01 Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2001-07-01.txt b/forge-gui/res/formats/Archive/Extended/2001-07-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2001-07-01.txt rename to forge-gui/res/formats/Archive/Extended/2001-07-01.txt index c6c6f492310..45f0c051af6 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2001-07-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2001-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (APC) -Type:Historic +Type:Archive Subtype:Extended Effective:2001-07-01 Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2001-11-01.txt b/forge-gui/res/formats/Archive/Extended/2001-11-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2001-11-01.txt rename to forge-gui/res/formats/Archive/Extended/2001-11-01.txt index 19d926ce52a..8e2d2e45857 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2001-11-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2001-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (ODY) -Type:Historic +Type:Archive Subtype:Extended Effective:2001-11-01 Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2002-03-01.txt b/forge-gui/res/formats/Archive/Extended/2002-03-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2002-03-01.txt rename to forge-gui/res/formats/Archive/Extended/2002-03-01.txt index 148558eb751..2cdb6099b82 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2002-03-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2002-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (TOR) -Type:Historic +Type:Archive Subtype:Extended Effective:2002-03-01 Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2002-07-01.txt b/forge-gui/res/formats/Archive/Extended/2002-07-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2002-07-01.txt rename to forge-gui/res/formats/Archive/Extended/2002-07-01.txt index e9f458538f3..1fc7b6a0dc2 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2002-07-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2002-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (JUD) -Type:Historic +Type:Archive Subtype:Extended Effective:2002-07-01 Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2002-11-01.txt b/forge-gui/res/formats/Archive/Extended/2002-11-01.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Extended/2002-11-01.txt rename to forge-gui/res/formats/Archive/Extended/2002-11-01.txt index 45fa65d053d..973aaa8d111 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2002-11-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2002-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (ONS) -Type:Historic +Type:Archive Subtype:Extended Effective:2002-11-01 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2003-03-01.txt b/forge-gui/res/formats/Archive/Extended/2003-03-01.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Extended/2003-03-01.txt rename to forge-gui/res/formats/Archive/Extended/2003-03-01.txt index 84f0a7a9132..57d03d9d909 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2003-03-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2003-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (LGN) -Type:Historic +Type:Archive Subtype:Extended Effective:2003-03-01 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2003-07-01.txt b/forge-gui/res/formats/Archive/Extended/2003-07-01.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Extended/2003-07-01.txt rename to forge-gui/res/formats/Archive/Extended/2003-07-01.txt index c84e2910757..b08bb75cbb5 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2003-07-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2003-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (SCG) -Type:Historic +Type:Archive Subtype:Extended Effective:2003-07-01 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2003-09-01.txt b/forge-gui/res/formats/Archive/Extended/2003-09-01.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Extended/2003-09-01.txt rename to forge-gui/res/formats/Archive/Extended/2003-09-01.txt index c9450f65f7a..a9baf9ec3d5 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2003-09-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2003-09-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (8ED) -Type:Historic +Type:Archive Subtype:Extended Effective:2003-09-01 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2003-10-01.txt b/forge-gui/res/formats/Archive/Extended/2003-10-01.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Extended/2003-10-01.txt rename to forge-gui/res/formats/Archive/Extended/2003-10-01.txt index 00fc9b34a7a..f98318217f0 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2003-10-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2003-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (2003-10-01) -Type:Historic +Type:Archive Subtype:Extended Effective:2003-10-01 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2003-10-20.txt b/forge-gui/res/formats/Archive/Extended/2003-10-20.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Extended/2003-10-20.txt rename to forge-gui/res/formats/Archive/Extended/2003-10-20.txt index b89daef2937..40755c78852 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2003-10-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2003-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (MRD) -Type:Historic +Type:Archive Subtype:Extended Effective:2003-10-20 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2004-01-01.txt b/forge-gui/res/formats/Archive/Extended/2004-01-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2004-01-01.txt rename to forge-gui/res/formats/Archive/Extended/2004-01-01.txt index 9aac8edb14e..f39c7b57641 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2004-01-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2004-01-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (2004-01-01) -Type:Historic +Type:Archive Subtype:Extended Effective:2004-01-01 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2004-02-20.txt b/forge-gui/res/formats/Archive/Extended/2004-02-20.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2004-02-20.txt rename to forge-gui/res/formats/Archive/Extended/2004-02-20.txt index d5b05a1236b..8f955aa9b4b 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2004-02-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2004-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (DST) -Type:Historic +Type:Archive Subtype:Extended Effective:2004-02-20 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2004-06-20.txt b/forge-gui/res/formats/Archive/Extended/2004-06-20.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2004-06-20.txt rename to forge-gui/res/formats/Archive/Extended/2004-06-20.txt index b90a7295d32..f748a443c7a 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2004-06-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2004-06-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (5DN) -Type:Historic +Type:Archive Subtype:Extended Effective:2004-06-20 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2004-09-20.txt b/forge-gui/res/formats/Archive/Extended/2004-09-20.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2004-09-20.txt rename to forge-gui/res/formats/Archive/Extended/2004-09-20.txt index 58d9c5fddc9..a80880aaa4c 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2004-09-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2004-09-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (2004-09-20) -Type:Historic +Type:Archive Subtype:Extended Effective:2004-09-20 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2004-10-20.txt b/forge-gui/res/formats/Archive/Extended/2004-10-20.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2004-10-20.txt rename to forge-gui/res/formats/Archive/Extended/2004-10-20.txt index 13add59290d..921e2156e63 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2004-10-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2004-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (CHK) -Type:Historic +Type:Archive Subtype:Extended Effective:2004-10-20 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2005-02-20.txt b/forge-gui/res/formats/Archive/Extended/2005-02-20.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2005-02-20.txt rename to forge-gui/res/formats/Archive/Extended/2005-02-20.txt index 1b4aad64b93..d3ac4d7531d 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2005-02-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2005-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (BOK) -Type:Historic +Type:Archive Subtype:Extended Effective:2005-02-20 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2005-06-20.txt b/forge-gui/res/formats/Archive/Extended/2005-06-20.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2005-06-20.txt rename to forge-gui/res/formats/Archive/Extended/2005-06-20.txt index 441996524b3..e5dc42c981d 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2005-06-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2005-06-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (SOK) -Type:Historic +Type:Archive Subtype:Extended Effective:2005-06-20 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2005-08-20.txt b/forge-gui/res/formats/Archive/Extended/2005-08-20.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2005-08-20.txt rename to forge-gui/res/formats/Archive/Extended/2005-08-20.txt index 344d244d339..e75705d12a9 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2005-08-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2005-08-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (9ED) -Type:Historic +Type:Archive Subtype:Extended Effective:2005-08-20 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2005-09-20.txt b/forge-gui/res/formats/Archive/Extended/2005-09-20.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Extended/2005-09-20.txt rename to forge-gui/res/formats/Archive/Extended/2005-09-20.txt index 5e434f22b07..58254fadd3f 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2005-09-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2005-09-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (2005-09-20) -Type:Historic +Type:Archive Subtype:Extended Effective:2005-09-20 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2005-10-20.txt b/forge-gui/res/formats/Archive/Extended/2005-10-20.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Extended/2005-10-20.txt rename to forge-gui/res/formats/Archive/Extended/2005-10-20.txt index 062abc91750..6eef11f8b89 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2005-10-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2005-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (RAV) -Type:Historic +Type:Archive Subtype:Extended Effective:2005-10-20 Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2006-02-20.txt b/forge-gui/res/formats/Archive/Extended/2006-02-20.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Extended/2006-02-20.txt rename to forge-gui/res/formats/Archive/Extended/2006-02-20.txt index d2477234c58..a6095d2f62f 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2006-02-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2006-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (GPT) -Type:Historic +Type:Archive Subtype:Extended Effective:2006-02-20 Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2006-05-20.txt b/forge-gui/res/formats/Archive/Extended/2006-05-20.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Extended/2006-05-20.txt rename to forge-gui/res/formats/Archive/Extended/2006-05-20.txt index 096f0dc0ed4..5fd2a615f70 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2006-05-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2006-05-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (DIS) -Type:Historic +Type:Archive Subtype:Extended Effective:2006-05-20 Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2006-08-20.txt b/forge-gui/res/formats/Archive/Extended/2006-08-20.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Extended/2006-08-20.txt rename to forge-gui/res/formats/Archive/Extended/2006-08-20.txt index 9640f01f9e4..c2612751e62 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2006-08-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2006-08-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (CSP) -Type:Historic +Type:Archive Subtype:Extended Effective:2006-08-20 Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2006-10-20.txt b/forge-gui/res/formats/Archive/Extended/2006-10-20.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Extended/2006-10-20.txt rename to forge-gui/res/formats/Archive/Extended/2006-10-20.txt index e0682f846f6..f6f4db9a4be 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2006-10-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2006-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (TSP) -Type:Historic +Type:Archive Subtype:Extended Effective:2006-10-20 Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2007-02-20.txt b/forge-gui/res/formats/Archive/Extended/2007-02-20.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Extended/2007-02-20.txt rename to forge-gui/res/formats/Archive/Extended/2007-02-20.txt index c5ea32fed05..45c344bd78d 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2007-02-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2007-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (PLC) -Type:Historic +Type:Archive Subtype:Extended Effective:2007-02-20 Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2007-05-20.txt b/forge-gui/res/formats/Archive/Extended/2007-05-20.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Extended/2007-05-20.txt rename to forge-gui/res/formats/Archive/Extended/2007-05-20.txt index fe1f159c7ba..27787c551ae 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2007-05-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2007-05-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (FUT) -Type:Historic +Type:Archive Subtype:Extended Effective:2007-05-20 Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2007-07-20.txt b/forge-gui/res/formats/Archive/Extended/2007-07-20.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Extended/2007-07-20.txt rename to forge-gui/res/formats/Archive/Extended/2007-07-20.txt index 1b8f150d7b7..2a2ebc617a0 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2007-07-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2007-07-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (10E) -Type:Historic +Type:Archive Subtype:Extended Effective:2007-07-20 Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2007-10-20.txt b/forge-gui/res/formats/Archive/Extended/2007-10-20.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Extended/2007-10-20.txt rename to forge-gui/res/formats/Archive/Extended/2007-10-20.txt index 6c197b8e281..6885193b062 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2007-10-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2007-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (LRW) -Type:Historic +Type:Archive Subtype:Extended Effective:2007-10-20 Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2008-02-01.txt b/forge-gui/res/formats/Archive/Extended/2008-02-01.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Extended/2008-02-01.txt rename to forge-gui/res/formats/Archive/Extended/2008-02-01.txt index 2ddf84bc247..95f7ed8788d 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2008-02-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2008-02-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (MOR) -Type:Historic +Type:Archive Subtype:Extended Effective:2008-02-01 Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2008-05-02.txt b/forge-gui/res/formats/Archive/Extended/2008-05-02.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Extended/2008-05-02.txt rename to forge-gui/res/formats/Archive/Extended/2008-05-02.txt index 26dfcb713b8..f88e4444a17 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2008-05-02.txt +++ b/forge-gui/res/formats/Archive/Extended/2008-05-02.txt @@ -1,6 +1,6 @@ [format] Name:Extended (SHM) -Type:Historic +Type:Archive Subtype:Extended Effective:2008-05-02 Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2008-07-25.txt b/forge-gui/res/formats/Archive/Extended/2008-07-25.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Extended/2008-07-25.txt rename to forge-gui/res/formats/Archive/Extended/2008-07-25.txt index 4f1671376d4..ac86989cd93 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2008-07-25.txt +++ b/forge-gui/res/formats/Archive/Extended/2008-07-25.txt @@ -1,6 +1,6 @@ [format] Name:Extended (EVE) -Type:Historic +Type:Archive Subtype:Extended Effective:2008-07-25 Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2008-09-20.txt b/forge-gui/res/formats/Archive/Extended/2008-09-20.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Extended/2008-09-20.txt rename to forge-gui/res/formats/Archive/Extended/2008-09-20.txt index 34f3bc1d493..4f4faf505eb 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2008-09-20.txt +++ b/forge-gui/res/formats/Archive/Extended/2008-09-20.txt @@ -1,6 +1,6 @@ [format] Name:Extended (2008-09-20) -Type:Historic +Type:Archive Subtype:Extended Effective:2008-09-20 Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2008-10-03.txt b/forge-gui/res/formats/Archive/Extended/2008-10-03.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Extended/2008-10-03.txt rename to forge-gui/res/formats/Archive/Extended/2008-10-03.txt index 393b29188a4..e7813a2f15f 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2008-10-03.txt +++ b/forge-gui/res/formats/Archive/Extended/2008-10-03.txt @@ -1,6 +1,6 @@ [format] Name:Extended (ALA) -Type:Historic +Type:Archive Subtype:Extended Effective:2008-10-03 Sets:ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2009-02-06.txt b/forge-gui/res/formats/Archive/Extended/2009-02-06.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Extended/2009-02-06.txt rename to forge-gui/res/formats/Archive/Extended/2009-02-06.txt index e5bea006d24..62da189ae3c 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2009-02-06.txt +++ b/forge-gui/res/formats/Archive/Extended/2009-02-06.txt @@ -1,6 +1,6 @@ [format] Name:Extended (CFX) -Type:Historic +Type:Archive Subtype:Extended Effective:2009-02-06 Sets:ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2009-04-30.txt b/forge-gui/res/formats/Archive/Extended/2009-04-30.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Extended/2009-04-30.txt rename to forge-gui/res/formats/Archive/Extended/2009-04-30.txt index 36d54918919..93f241ea668 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2009-04-30.txt +++ b/forge-gui/res/formats/Archive/Extended/2009-04-30.txt @@ -1,6 +1,6 @@ [format] Name:Extended (ARB) -Type:Historic +Type:Archive Subtype:Extended Effective:2009-04-30 Sets:ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2009-07-17.txt b/forge-gui/res/formats/Archive/Extended/2009-07-17.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Extended/2009-07-17.txt rename to forge-gui/res/formats/Archive/Extended/2009-07-17.txt index 58b0c7e853b..ecca4a424ae 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2009-07-17.txt +++ b/forge-gui/res/formats/Archive/Extended/2009-07-17.txt @@ -1,6 +1,6 @@ [format] Name:Extended (M10) -Type:Historic +Type:Archive Subtype:Extended Effective:2009-07-17 Sets:ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10 diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2009-10-02.txt b/forge-gui/res/formats/Archive/Extended/2009-10-02.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Extended/2009-10-02.txt rename to forge-gui/res/formats/Archive/Extended/2009-10-02.txt index d1385e995fb..69a6ab83952 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2009-10-02.txt +++ b/forge-gui/res/formats/Archive/Extended/2009-10-02.txt @@ -1,6 +1,6 @@ [format] Name:Extended (ZEN) -Type:Historic +Type:Archive Subtype:Extended Effective:2009-10-02 Sets:MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2010-02-05.txt b/forge-gui/res/formats/Archive/Extended/2010-02-05.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Extended/2010-02-05.txt rename to forge-gui/res/formats/Archive/Extended/2010-02-05.txt index 140f039ba06..8506984842e 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2010-02-05.txt +++ b/forge-gui/res/formats/Archive/Extended/2010-02-05.txt @@ -1,6 +1,6 @@ [format] Name:Extended (WWK) -Type:Historic +Type:Archive Subtype:Extended Effective:2010-02-05 Sets:MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2010-04-23.txt b/forge-gui/res/formats/Archive/Extended/2010-04-23.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Extended/2010-04-23.txt rename to forge-gui/res/formats/Archive/Extended/2010-04-23.txt index 58141c47ce3..ed922a846b5 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2010-04-23.txt +++ b/forge-gui/res/formats/Archive/Extended/2010-04-23.txt @@ -1,6 +1,6 @@ [format] Name:Extended (ROE) -Type:Historic +Type:Archive Subtype:Extended Effective:2010-04-23 Sets:MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2010-07-01.txt b/forge-gui/res/formats/Archive/Extended/2010-07-01.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Extended/2010-07-01.txt rename to forge-gui/res/formats/Archive/Extended/2010-07-01.txt index 67ffc0770a8..e43166fdfac 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2010-07-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2010-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (2010-07-01) -Type:Historic +Type:Archive Subtype:Extended Effective:2010-07-01 Sets:TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2010-07-16.txt b/forge-gui/res/formats/Archive/Extended/2010-07-16.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Extended/2010-07-16.txt rename to forge-gui/res/formats/Archive/Extended/2010-07-16.txt index 907a6358209..5de28873182 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2010-07-16.txt +++ b/forge-gui/res/formats/Archive/Extended/2010-07-16.txt @@ -1,6 +1,6 @@ [format] Name:Extended (M11) -Type:Historic +Type:Archive Subtype:Extended Effective:2010-07-16 Sets:TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11 diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2010-10-01.txt b/forge-gui/res/formats/Archive/Extended/2010-10-01.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Extended/2010-10-01.txt rename to forge-gui/res/formats/Archive/Extended/2010-10-01.txt index 34c352b8e4e..2ad181061bf 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2010-10-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2010-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (SOM) -Type:Historic +Type:Archive Subtype:Extended Effective:2010-10-01 Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2011-02-04.txt b/forge-gui/res/formats/Archive/Extended/2011-02-04.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Extended/2011-02-04.txt rename to forge-gui/res/formats/Archive/Extended/2011-02-04.txt index 7dedfeacb01..e919752f092 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2011-02-04.txt +++ b/forge-gui/res/formats/Archive/Extended/2011-02-04.txt @@ -1,6 +1,6 @@ [format] Name:Extended (MBS) -Type:Historic +Type:Archive Subtype:Extended Effective:2011-02-04 Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2011-05-13.txt b/forge-gui/res/formats/Archive/Extended/2011-05-13.txt similarity index 91% rename from forge-gui/res/formats/Historic/DCI/Extended/2011-05-13.txt rename to forge-gui/res/formats/Archive/Extended/2011-05-13.txt index 07c874a40ba..df6f33818b5 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2011-05-13.txt +++ b/forge-gui/res/formats/Archive/Extended/2011-05-13.txt @@ -1,6 +1,6 @@ [format] Name:Extended (NPH) -Type:Historic +Type:Archive Subtype:Extended Effective:2011-05-13 Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2011-07-15.txt b/forge-gui/res/formats/Archive/Extended/2011-07-15.txt similarity index 91% rename from forge-gui/res/formats/Historic/DCI/Extended/2011-07-15.txt rename to forge-gui/res/formats/Archive/Extended/2011-07-15.txt index 4cd4f9fcf3a..4c692a521d5 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2011-07-15.txt +++ b/forge-gui/res/formats/Archive/Extended/2011-07-15.txt @@ -1,6 +1,6 @@ [format] Name:Extended (M12) -Type:Historic +Type:Archive Subtype:Extended Effective:2011-07-15 Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12 diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2011-09-30.txt b/forge-gui/res/formats/Archive/Extended/2011-09-30.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Extended/2011-09-30.txt rename to forge-gui/res/formats/Archive/Extended/2011-09-30.txt index 63a66dcee6a..8df69be5fa7 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2011-09-30.txt +++ b/forge-gui/res/formats/Archive/Extended/2011-09-30.txt @@ -1,6 +1,6 @@ [format] Name:Extended (ISD) -Type:Historic +Type:Archive Subtype:Extended Effective:2011-09-30 Sets:ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2011-10-01.txt b/forge-gui/res/formats/Archive/Extended/2011-10-01.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Extended/2011-10-01.txt rename to forge-gui/res/formats/Archive/Extended/2011-10-01.txt index b48f6616c4f..1b5ea203b19 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2011-10-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2011-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (2011-10-01) -Type:Historic +Type:Archive Subtype:Extended Effective:2011-10-01 Sets:ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2012-02-03.txt b/forge-gui/res/formats/Archive/Extended/2012-02-03.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Extended/2012-02-03.txt rename to forge-gui/res/formats/Archive/Extended/2012-02-03.txt index eb88027b534..e65a8395a01 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2012-02-03.txt +++ b/forge-gui/res/formats/Archive/Extended/2012-02-03.txt @@ -1,6 +1,6 @@ [format] Name:Extended (DKA) -Type:Historic +Type:Archive Subtype:Extended Effective:2012-02-03 Sets:ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2012-05-04.txt b/forge-gui/res/formats/Archive/Extended/2012-05-04.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Extended/2012-05-04.txt rename to forge-gui/res/formats/Archive/Extended/2012-05-04.txt index 290b8a011ab..a6210d99583 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2012-05-04.txt +++ b/forge-gui/res/formats/Archive/Extended/2012-05-04.txt @@ -1,6 +1,6 @@ [format] Name:Extended (AVR) -Type:Historic +Type:Archive Subtype:Extended Effective:2012-05-04 Sets:ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2012-07-13.txt b/forge-gui/res/formats/Archive/Extended/2012-07-13.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Extended/2012-07-13.txt rename to forge-gui/res/formats/Archive/Extended/2012-07-13.txt index 5f675a19fee..72ea93e871e 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2012-07-13.txt +++ b/forge-gui/res/formats/Archive/Extended/2012-07-13.txt @@ -1,6 +1,6 @@ [format] Name:Extended (M13) -Type:Historic +Type:Archive Subtype:Extended Effective:2012-07-13 Sets:ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13 diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2012-10-05.txt b/forge-gui/res/formats/Archive/Extended/2012-10-05.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Extended/2012-10-05.txt rename to forge-gui/res/formats/Archive/Extended/2012-10-05.txt index 8ed7ee67b4b..30c2992396a 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2012-10-05.txt +++ b/forge-gui/res/formats/Archive/Extended/2012-10-05.txt @@ -1,6 +1,6 @@ [format] Name:Extended (RTR) -Type:Historic +Type:Archive Subtype:Extended Effective:2012-10-05 Sets:ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2013-02-01.txt b/forge-gui/res/formats/Archive/Extended/2013-02-01.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Extended/2013-02-01.txt rename to forge-gui/res/formats/Archive/Extended/2013-02-01.txt index 9969f63bbe3..17021cb192d 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2013-02-01.txt +++ b/forge-gui/res/formats/Archive/Extended/2013-02-01.txt @@ -1,6 +1,6 @@ [format] Name:Extended (GTC) -Type:Historic +Type:Archive Subtype:Extended Effective:2013-02-01 Sets:ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2013-05-03.txt b/forge-gui/res/formats/Archive/Extended/2013-05-03.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Extended/2013-05-03.txt rename to forge-gui/res/formats/Archive/Extended/2013-05-03.txt index 0d475c940c4..cec1aacf0ca 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2013-05-03.txt +++ b/forge-gui/res/formats/Archive/Extended/2013-05-03.txt @@ -1,6 +1,6 @@ [format] Name:Extended (DGM) -Type:Historic +Type:Archive Subtype:Extended Effective:2013-05-03 Sets:ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2013-07-19.txt b/forge-gui/res/formats/Archive/Extended/2013-07-19.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Extended/2013-07-19.txt rename to forge-gui/res/formats/Archive/Extended/2013-07-19.txt index cde4ba838d2..2f28c6c7c65 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2013-07-19.txt +++ b/forge-gui/res/formats/Archive/Extended/2013-07-19.txt @@ -1,6 +1,6 @@ [format] Name:Extended (M14) -Type:Historic +Type:Archive Subtype:Extended Effective:2013-07-19 Sets:ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, M14 diff --git a/forge-gui/res/formats/Historic/DCI/Extended/2013-09-27.txt b/forge-gui/res/formats/Archive/Extended/2013-09-27.txt similarity index 92% rename from forge-gui/res/formats/Historic/DCI/Extended/2013-09-27.txt rename to forge-gui/res/formats/Archive/Extended/2013-09-27.txt index 0350f3a68c1..77032c0ea6d 100644 --- a/forge-gui/res/formats/Historic/DCI/Extended/2013-09-27.txt +++ b/forge-gui/res/formats/Archive/Extended/2013-09-27.txt @@ -1,6 +1,6 @@ [format] Name:Extended (THS) -Type:Historic +Type:Archive Subtype:Extended Effective:2013-09-27 Retired:2013-10-08 diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2019-11-21.txt b/forge-gui/res/formats/Archive/Historic/2019-11-21.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Historic/2019-11-21.txt rename to forge-gui/res/formats/Archive/Historic/2019-11-21.txt index ee3bdad5d23..541e3c82bd6 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2019-11-21.txt +++ b/forge-gui/res/formats/Archive/Historic/2019-11-21.txt @@ -1,6 +1,6 @@ [format] Name:Historic (2019-11-21) -Type:Historic +Type:Archive Subtype:Arena Effective:2019-11-21 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1 diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2020-01-16.txt b/forge-gui/res/formats/Archive/Historic/2020-01-16.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Historic/2020-01-16.txt rename to forge-gui/res/formats/Archive/Historic/2020-01-16.txt index c65465f0aa6..2f31d69b484 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2020-01-16.txt +++ b/forge-gui/res/formats/Archive/Historic/2020-01-16.txt @@ -1,6 +1,6 @@ [format] Name:Historic (THB) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-01-16 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2020-03-09.txt b/forge-gui/res/formats/Archive/Historic/2020-03-09.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Historic/2020-03-09.txt rename to forge-gui/res/formats/Archive/Historic/2020-03-09.txt index 8c7daa6f9a7..d7cee71a46d 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2020-03-09.txt +++ b/forge-gui/res/formats/Archive/Historic/2020-03-09.txt @@ -1,6 +1,6 @@ [format] Name:Historic (2020-03-09) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-03-09 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2020-03-12.txt b/forge-gui/res/formats/Archive/Historic/2020-03-12.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Historic/2020-03-12.txt rename to forge-gui/res/formats/Archive/Historic/2020-03-12.txt index 3017b34f954..2d761326051 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2020-03-12.txt +++ b/forge-gui/res/formats/Archive/Historic/2020-03-12.txt @@ -1,6 +1,6 @@ [format] Name:Historic (HA2) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-03-12 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2 diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2020-04-16.txt b/forge-gui/res/formats/Archive/Historic/2020-04-16.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Historic/2020-04-16.txt rename to forge-gui/res/formats/Archive/Historic/2020-04-16.txt index 0bcbcc007f4..75d9474d852 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2020-04-16.txt +++ b/forge-gui/res/formats/Archive/Historic/2020-04-16.txt @@ -1,6 +1,6 @@ [format] Name:Historic (IKO) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-04-16 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2020-05-21.txt b/forge-gui/res/formats/Archive/Historic/2020-05-21.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Historic/2020-05-21.txt rename to forge-gui/res/formats/Archive/Historic/2020-05-21.txt index fc7bcb3c475..e2a0a13af2a 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2020-05-21.txt +++ b/forge-gui/res/formats/Archive/Historic/2020-05-21.txt @@ -1,6 +1,6 @@ [format] Name:Historic (HA3) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-05-21 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3 diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2020-06-25.txt b/forge-gui/res/formats/Archive/Historic/2020-06-25.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Historic/2020-06-25.txt rename to forge-gui/res/formats/Archive/Historic/2020-06-25.txt index e164c731568..9795a1a1c4a 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2020-06-25.txt +++ b/forge-gui/res/formats/Archive/Historic/2020-06-25.txt @@ -1,6 +1,6 @@ [format] Name:Historic (M21) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-06-25 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21 diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2020-07-13.txt b/forge-gui/res/formats/Archive/Historic/2020-07-13.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Historic/2020-07-13.txt rename to forge-gui/res/formats/Archive/Historic/2020-07-13.txt index 890938b423a..1361c8d16d9 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2020-07-13.txt +++ b/forge-gui/res/formats/Archive/Historic/2020-07-13.txt @@ -1,6 +1,6 @@ [format] Name:Historic (2020-07-13) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-07-13 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21 diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2020-07-17.txt b/forge-gui/res/formats/Archive/Historic/2020-07-17.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Historic/2020-07-17.txt rename to forge-gui/res/formats/Archive/Historic/2020-07-17.txt index a61b456c52b..aedd614f3be 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2020-07-17.txt +++ b/forge-gui/res/formats/Archive/Historic/2020-07-17.txt @@ -1,6 +1,6 @@ [format] Name:Historic (JMP) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-07-17 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2020-08-13.txt b/forge-gui/res/formats/Archive/Historic/2020-08-13.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Historic/2020-08-13.txt rename to forge-gui/res/formats/Archive/Historic/2020-08-13.txt index 98c76d9430a..f9188900797 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2020-08-13.txt +++ b/forge-gui/res/formats/Archive/Historic/2020-08-13.txt @@ -1,6 +1,6 @@ [format] Name:Historic (AKR) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-08-13 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2020-08-24.txt b/forge-gui/res/formats/Archive/Historic/2020-08-24.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Historic/2020-08-24.txt rename to forge-gui/res/formats/Archive/Historic/2020-08-24.txt index b343c265496..52cbaaca6c6 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2020-08-24.txt +++ b/forge-gui/res/formats/Archive/Historic/2020-08-24.txt @@ -1,6 +1,6 @@ [format] Name:Historic (2020-08-24) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-08-24 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2020-09-17.txt b/forge-gui/res/formats/Archive/Historic/2020-09-17.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Historic/2020-09-17.txt rename to forge-gui/res/formats/Archive/Historic/2020-09-17.txt index 7ebb4412b31..f4c219912f6 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2020-09-17.txt +++ b/forge-gui/res/formats/Archive/Historic/2020-09-17.txt @@ -1,6 +1,6 @@ [format] Name:Historic (ZNR) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-09-17 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2020-10-12.txt b/forge-gui/res/formats/Archive/Historic/2020-10-12.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Historic/2020-10-12.txt rename to forge-gui/res/formats/Archive/Historic/2020-10-12.txt index 54a0a29a266..132f4c822d5 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2020-10-12.txt +++ b/forge-gui/res/formats/Archive/Historic/2020-10-12.txt @@ -1,6 +1,6 @@ [format] Name:Historic (2020-10-12) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-10-12 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2020-11-12.txt b/forge-gui/res/formats/Archive/Historic/2020-11-12.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Historic/2020-11-12.txt rename to forge-gui/res/formats/Archive/Historic/2020-11-12.txt index f51593fa172..88c1933a9bc 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2020-11-12.txt +++ b/forge-gui/res/formats/Archive/Historic/2020-11-12.txt @@ -1,6 +1,6 @@ [format] Name:Historic (KLR) -Type:Historic +Type:Archive Subtype:Arena Effective:2020-11-12 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2021-01-28.txt b/forge-gui/res/formats/Archive/Historic/2021-01-28.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Historic/2021-01-28.txt rename to forge-gui/res/formats/Archive/Historic/2021-01-28.txt index 40b4f62adbc..2ad10d4fd3f 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2021-01-28.txt +++ b/forge-gui/res/formats/Archive/Historic/2021-01-28.txt @@ -1,6 +1,6 @@ [format] Name:Historic (KHM) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-01-28 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2021-02-15.txt b/forge-gui/res/formats/Archive/Historic/2021-02-15.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2021-02-15.txt rename to forge-gui/res/formats/Archive/Historic/2021-02-15.txt index 0844b20a86b..72fc1819065 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2021-02-15.txt +++ b/forge-gui/res/formats/Archive/Historic/2021-02-15.txt @@ -1,6 +1,6 @@ [format] Name:Historic (2021-02-15) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-02-15 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2021-03-11.txt b/forge-gui/res/formats/Archive/Historic/2021-03-11.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2021-03-11.txt rename to forge-gui/res/formats/Archive/Historic/2021-03-11.txt index 7df6d0892d2..e122232f266 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2021-03-11.txt +++ b/forge-gui/res/formats/Archive/Historic/2021-03-11.txt @@ -1,6 +1,6 @@ [format] Name:Historic (HA4) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-03-11 Sets:XLN, RIX, DOM, M19, ANA, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4 diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2021-04-15.txt b/forge-gui/res/formats/Archive/Historic/2021-04-15.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2021-04-15.txt rename to forge-gui/res/formats/Archive/Historic/2021-04-15.txt index 4011931e6f8..7b164b2591c 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2021-04-15.txt +++ b/forge-gui/res/formats/Archive/Historic/2021-04-15.txt @@ -1,6 +1,6 @@ [format] Name:Historic (STX) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-04-15 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4, STX, STA diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2021-05-19.txt b/forge-gui/res/formats/Archive/Historic/2021-05-19.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2021-05-19.txt rename to forge-gui/res/formats/Archive/Historic/2021-05-19.txt index ee3d42171b3..75bff3efcc2 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2021-05-19.txt +++ b/forge-gui/res/formats/Archive/Historic/2021-05-19.txt @@ -1,6 +1,6 @@ [format] Name:Historic (2021-05-19) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-05-19 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4, STX, STA diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2021-05-27.txt b/forge-gui/res/formats/Archive/Historic/2021-05-27.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2021-05-27.txt rename to forge-gui/res/formats/Archive/Historic/2021-05-27.txt index 4c47d62fcaf..0b5841e4bc4 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2021-05-27.txt +++ b/forge-gui/res/formats/Archive/Historic/2021-05-27.txt @@ -1,6 +1,6 @@ [format] Name:Historic (HA5) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-05-27 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4, STX, STA, HA5 diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2021-06-09.txt b/forge-gui/res/formats/Archive/Historic/2021-06-09.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2021-06-09.txt rename to forge-gui/res/formats/Archive/Historic/2021-06-09.txt index 5ebc79540af..7395c80fb45 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2021-06-09.txt +++ b/forge-gui/res/formats/Archive/Historic/2021-06-09.txt @@ -1,6 +1,6 @@ [format] Name:Historic (2021-06-09) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-06-09 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4, STX, STA, HA5 diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2021-07-08.txt b/forge-gui/res/formats/Archive/Historic/2021-07-08.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2021-07-08.txt rename to forge-gui/res/formats/Archive/Historic/2021-07-08.txt index 235a37fe5d2..d18c8e3ba7e 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2021-07-08.txt +++ b/forge-gui/res/formats/Archive/Historic/2021-07-08.txt @@ -1,6 +1,6 @@ [format] Name:Historic (AFR) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-07-08 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4, STX, STA, HA5, AFR diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2021-08-26.txt b/forge-gui/res/formats/Archive/Historic/2021-08-26.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2021-08-26.txt rename to forge-gui/res/formats/Archive/Historic/2021-08-26.txt index a77eaa86d99..7276ea310aa 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2021-08-26.txt +++ b/forge-gui/res/formats/Archive/Historic/2021-08-26.txt @@ -1,6 +1,6 @@ [format] Name:Historic (J21) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-08-26 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4, STX, STA, HA5, AFR, J21 diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2021-09-16.txt b/forge-gui/res/formats/Archive/Historic/2021-09-16.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2021-09-16.txt rename to forge-gui/res/formats/Archive/Historic/2021-09-16.txt index e092b0fc012..24a174b6fc5 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2021-09-16.txt +++ b/forge-gui/res/formats/Archive/Historic/2021-09-16.txt @@ -1,6 +1,6 @@ [format] Name:Historic (MID) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-09-16 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4, STX, STA, HA5, AFR, J21, MID diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2021-10-13.txt b/forge-gui/res/formats/Archive/Historic/2021-10-13.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2021-10-13.txt rename to forge-gui/res/formats/Archive/Historic/2021-10-13.txt index 3017b1e897c..b035380b660 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2021-10-13.txt +++ b/forge-gui/res/formats/Archive/Historic/2021-10-13.txt @@ -1,6 +1,6 @@ [format] Name:Historic (2021-10-13) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-10-13 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4, STX, STA, HA5, AFR, J21, MID diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2021-11-17.txt b/forge-gui/res/formats/Archive/Historic/2021-11-17.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2021-11-17.txt rename to forge-gui/res/formats/Archive/Historic/2021-11-17.txt index 69608baaad4..8b765e98f59 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2021-11-17.txt +++ b/forge-gui/res/formats/Archive/Historic/2021-11-17.txt @@ -1,6 +1,6 @@ [format] Name:Historic (VOW) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-11-17 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4, STX, STA, HA5, AFR, J21, MID, VOW diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2021-12-09.txt b/forge-gui/res/formats/Archive/Historic/2021-12-09.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2021-12-09.txt rename to forge-gui/res/formats/Archive/Historic/2021-12-09.txt index 0535672968c..736297e7eef 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2021-12-09.txt +++ b/forge-gui/res/formats/Archive/Historic/2021-12-09.txt @@ -1,6 +1,6 @@ [format] Name:Historic (YMID) -Type:Historic +Type:Archive Subtype:Arena Effective:2021-12-09 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4, STX, STA, HA5, AFR, J21, MID, VOW, YMID diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2022-01-25.txt b/forge-gui/res/formats/Archive/Historic/2022-01-25.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2022-01-25.txt rename to forge-gui/res/formats/Archive/Historic/2022-01-25.txt index ae0204b3b29..c350f89b5ca 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2022-01-25.txt +++ b/forge-gui/res/formats/Archive/Historic/2022-01-25.txt @@ -1,6 +1,6 @@ [format] Name:Historic (2022-01-25) -Type:Historic +Type:Archive Subtype:Arena Effective:2022-01-25 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4, STX, STA, HA5, AFR, J21, MID, VOW, YMID diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2022-02-10.txt b/forge-gui/res/formats/Archive/Historic/2022-02-10.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2022-02-10.txt rename to forge-gui/res/formats/Archive/Historic/2022-02-10.txt index eed85228b7d..3f8e6c05eae 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2022-02-10.txt +++ b/forge-gui/res/formats/Archive/Historic/2022-02-10.txt @@ -1,6 +1,6 @@ [format] Name:Historic (NEO) -Type:Historic +Type:Archive Subtype:Arena Effective:2022-02-10 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4, STX, STA, HA5, AFR, J21, MID, VOW, YMID, NEO diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2022-02-24.txt b/forge-gui/res/formats/Archive/Historic/2022-02-24.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2022-02-24.txt rename to forge-gui/res/formats/Archive/Historic/2022-02-24.txt index 460b6bbb89a..e2ea1feb550 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2022-02-24.txt +++ b/forge-gui/res/formats/Archive/Historic/2022-02-24.txt @@ -1,6 +1,6 @@ [format] Name:Historic (2022-02-24) -Type:Historic +Type:Archive Subtype:Arena Effective:2022-02-24 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4, STX, STA, HA5, AFR, J21, MID, VOW, YMID, NEO diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2022-03-17.txt b/forge-gui/res/formats/Archive/Historic/2022-03-17.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2022-03-17.txt rename to forge-gui/res/formats/Archive/Historic/2022-03-17.txt index 8f3b15a36b6..f49ef6a6120 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2022-03-17.txt +++ b/forge-gui/res/formats/Archive/Historic/2022-03-17.txt @@ -1,6 +1,6 @@ [format] Name:Historic (YNEO) -Type:Historic +Type:Archive Subtype:Arena Effective:2022-03-17 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4, STX, STA, HA5, AFR, J21, MID, VOW, YMID, NEO, YNEO diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2022-04-28.txt b/forge-gui/res/formats/Archive/Historic/2022-04-28.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Historic/2022-04-28.txt rename to forge-gui/res/formats/Archive/Historic/2022-04-28.txt index ce43dd1b9ea..58f31e3750e 100644 --- a/forge-gui/res/formats/Historic/DCI/Historic/2022-04-28.txt +++ b/forge-gui/res/formats/Archive/Historic/2022-04-28.txt @@ -1,6 +1,6 @@ [format] Name:Historic (SNC) -Type:Historic +Type:Archive Subtype:Arena Effective:2022-04-28 Sets:XLN, RIX, DOM, M19, ANA, PANA, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AJMP, AKR, ANB, ZNR, KLR, KHM, HA4, STX, STA, HA5, AFR, J21, MID, VOW, YMID, NEO, YNEO, SNC diff --git a/forge-gui/res/formats/Historic/DCI/Historic/2022-06-02.txt b/forge-gui/res/formats/Archive/Historic/2022-06-02.txt similarity index 100% rename from forge-gui/res/formats/Historic/DCI/Historic/2022-06-02.txt rename to forge-gui/res/formats/Archive/Historic/2022-06-02.txt diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1996-05-01.txt b/forge-gui/res/formats/Archive/Legacy/1996-05-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1996-05-01.txt rename to forge-gui/res/formats/Archive/Legacy/1996-05-01.txt index 8261c12b71a..eed55c80069 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1996-05-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1996-05-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (1996-05-01) -Type:Historic +Type:Archive Subtype:Legacy Effective:1996-05-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1996-07-01.txt b/forge-gui/res/formats/Archive/Legacy/1996-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1996-07-01.txt rename to forge-gui/res/formats/Archive/Legacy/1996-07-01.txt index a4ed9fc0fa8..3f95d9224f5 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1996-07-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1996-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (1996-07-01) -Type:Historic +Type:Archive Subtype:Legacy Effective:1996-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1996-07-10.txt b/forge-gui/res/formats/Archive/Legacy/1996-07-10.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1996-07-10.txt rename to forge-gui/res/formats/Archive/Legacy/1996-07-10.txt index bb5a34bc799..b805561f580 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1996-07-10.txt +++ b/forge-gui/res/formats/Archive/Legacy/1996-07-10.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (ALL) -Type:Historic +Type:Archive Subtype:Legacy Effective:1996-07-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1996-10-01.txt b/forge-gui/res/formats/Archive/Legacy/1996-10-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1996-10-01.txt rename to forge-gui/res/formats/Archive/Legacy/1996-10-01.txt index 4c433ebef7c..b7ecca93a57 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1996-10-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1996-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (1996-10-01) -Type:Historic +Type:Archive Subtype:Legacy Effective:1996-10-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1996-11-07.txt b/forge-gui/res/formats/Archive/Legacy/1996-11-07.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1996-11-07.txt rename to forge-gui/res/formats/Archive/Legacy/1996-11-07.txt index fbf66362069..03a47878bf3 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1996-11-07.txt +++ b/forge-gui/res/formats/Archive/Legacy/1996-11-07.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (MIR) -Type:Historic +Type:Archive Subtype:Legacy Effective:1996-11-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1997-01-01.txt b/forge-gui/res/formats/Archive/Legacy/1997-01-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1997-01-01.txt rename to forge-gui/res/formats/Archive/Legacy/1997-01-01.txt index b25865db67c..6831fb5390d 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1997-01-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1997-01-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (1997-01-01) -Type:Historic +Type:Archive Subtype:Legacy Effective:1997-01-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1997-03-05.txt b/forge-gui/res/formats/Archive/Legacy/1997-03-05.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1997-03-05.txt rename to forge-gui/res/formats/Archive/Legacy/1997-03-05.txt index f584f8ed9c5..312161302c6 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1997-03-05.txt +++ b/forge-gui/res/formats/Archive/Legacy/1997-03-05.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (VIS) -Type:Historic +Type:Archive Subtype:Legacy Effective:1997-03-05 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1997-04-23.txt b/forge-gui/res/formats/Archive/Legacy/1997-04-23.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1997-04-23.txt rename to forge-gui/res/formats/Archive/Legacy/1997-04-23.txt index e97aaa1319d..22e89651812 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1997-04-23.txt +++ b/forge-gui/res/formats/Archive/Legacy/1997-04-23.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (5ED) -Type:Historic +Type:Archive Subtype:Legacy Effective:1997-04-23 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1997-07-01.txt b/forge-gui/res/formats/Archive/Legacy/1997-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1997-07-01.txt rename to forge-gui/res/formats/Archive/Legacy/1997-07-01.txt index 8b8b2b1d6a6..97186fc614e 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1997-07-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1997-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (WTH) -Type:Historic +Type:Archive Subtype:Legacy Effective:1997-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1997-11-01.txt b/forge-gui/res/formats/Archive/Legacy/1997-11-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1997-11-01.txt rename to forge-gui/res/formats/Archive/Legacy/1997-11-01.txt index 424a9d45cda..07bef3554aa 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1997-11-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1997-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (TMP) -Type:Historic +Type:Archive Subtype:Legacy Effective:1997-11-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1998-04-01.txt b/forge-gui/res/formats/Archive/Legacy/1998-04-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1998-04-01.txt rename to forge-gui/res/formats/Archive/Legacy/1998-04-01.txt index 61c5ae4db13..57293cb836e 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1998-04-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1998-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (STH) -Type:Historic +Type:Archive Subtype:Legacy Effective:1998-04-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1998-07-01.txt b/forge-gui/res/formats/Archive/Legacy/1998-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1998-07-01.txt rename to forge-gui/res/formats/Archive/Legacy/1998-07-01.txt index e2d01705c4d..1899a19b328 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1998-07-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1998-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (EXO) -Type:Historic +Type:Archive Subtype:Legacy Effective:1998-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1998-11-01.txt b/forge-gui/res/formats/Archive/Legacy/1998-11-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1998-11-01.txt rename to forge-gui/res/formats/Archive/Legacy/1998-11-01.txt index 8bc7420a879..e52959a95e8 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1998-11-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1998-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (USG) -Type:Historic +Type:Archive Subtype:Legacy Effective:1998-11-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1999-01-01.txt b/forge-gui/res/formats/Archive/Legacy/1999-01-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1999-01-01.txt rename to forge-gui/res/formats/Archive/Legacy/1999-01-01.txt index 49ff716ac73..2b08c5c23c1 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1999-01-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1999-01-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (1999-01-01) -Type:Historic +Type:Archive Subtype:Legacy Effective:1999-01-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1999-03-01.txt b/forge-gui/res/formats/Archive/Legacy/1999-03-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1999-03-01.txt rename to forge-gui/res/formats/Archive/Legacy/1999-03-01.txt index fc7b2b8a856..bc35b915486 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1999-03-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1999-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (ULG) -Type:Historic +Type:Archive Subtype:Legacy Effective:1999-03-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1999-04-01.txt b/forge-gui/res/formats/Archive/Legacy/1999-04-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1999-04-01.txt rename to forge-gui/res/formats/Archive/Legacy/1999-04-01.txt index 63a2fa5914c..079bf2d03a3 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1999-04-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1999-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (1999-04-01) -Type:Historic +Type:Archive Subtype:Legacy Effective:1999-04-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1999-06-01.txt b/forge-gui/res/formats/Archive/Legacy/1999-06-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1999-06-01.txt rename to forge-gui/res/formats/Archive/Legacy/1999-06-01.txt index afdc6856f47..e9afc596b64 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1999-06-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1999-06-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (6ED) -Type:Historic +Type:Archive Subtype:Legacy Effective:1999-06-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1999-07-01.txt b/forge-gui/res/formats/Archive/Legacy/1999-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1999-07-01.txt rename to forge-gui/res/formats/Archive/Legacy/1999-07-01.txt index 27ba9441b21..e032e7be05f 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1999-07-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1999-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (UDS) -Type:Historic +Type:Archive Subtype:Legacy Effective:1999-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1999-10-01.txt b/forge-gui/res/formats/Archive/Legacy/1999-10-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1999-10-01.txt rename to forge-gui/res/formats/Archive/Legacy/1999-10-01.txt index 7c5ef58fa41..3f0a3a72cd1 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1999-10-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1999-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (1999-10-01) -Type:Historic +Type:Archive Subtype:Legacy Effective:1999-10-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1999-11-01.txt b/forge-gui/res/formats/Archive/Legacy/1999-11-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1999-11-01.txt rename to forge-gui/res/formats/Archive/Legacy/1999-11-01.txt index b950333e1b2..76166903f3b 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1999-11-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/1999-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (MMQ) -Type:Historic +Type:Archive Subtype:Legacy Effective:1999-11-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/1999-11-12.txt b/forge-gui/res/formats/Archive/Legacy/1999-11-12.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/1999-11-12.txt rename to forge-gui/res/formats/Archive/Legacy/1999-11-12.txt index b15d9f8f726..9854ecde516 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/1999-11-12.txt +++ b/forge-gui/res/formats/Archive/Legacy/1999-11-12.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (BRB) -Type:Historic +Type:Archive Subtype:Legacy Effective:1999-11-12 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2000-03-01.txt b/forge-gui/res/formats/Archive/Legacy/2000-03-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2000-03-01.txt rename to forge-gui/res/formats/Archive/Legacy/2000-03-01.txt index babffc758de..7402fd4110e 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2000-03-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2000-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (NMS) -Type:Historic +Type:Archive Subtype:Legacy Effective:2000-03-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2000-07-01.txt b/forge-gui/res/formats/Archive/Legacy/2000-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2000-07-01.txt rename to forge-gui/res/formats/Archive/Legacy/2000-07-01.txt index 69d26aa3dc6..a56baee5e82 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2000-07-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2000-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (PCY) -Type:Historic +Type:Archive Subtype:Legacy Effective:2000-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2000-10-01.txt b/forge-gui/res/formats/Archive/Legacy/2000-10-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2000-10-01.txt rename to forge-gui/res/formats/Archive/Legacy/2000-10-01.txt index 7677020191a..92c9a40e65c 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2000-10-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2000-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (BTD) -Type:Historic +Type:Archive Subtype:Legacy Effective:2000-10-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2000-11-01.txt b/forge-gui/res/formats/Archive/Legacy/2000-11-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2000-11-01.txt rename to forge-gui/res/formats/Archive/Legacy/2000-11-01.txt index ab96416f745..d2da79ada2c 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2000-11-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2000-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (INV) -Type:Historic +Type:Archive Subtype:Legacy Effective:2000-11-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2001-03-01.txt b/forge-gui/res/formats/Archive/Legacy/2001-03-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2001-03-01.txt rename to forge-gui/res/formats/Archive/Legacy/2001-03-01.txt index e54ec2c22a3..8d4b9ddd7dc 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2001-03-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2001-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (PLS) -Type:Historic +Type:Archive Subtype:Legacy Effective:2001-03-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2001-05-01.txt b/forge-gui/res/formats/Archive/Legacy/2001-05-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2001-05-01.txt rename to forge-gui/res/formats/Archive/Legacy/2001-05-01.txt index 332f97f7541..5ad9cf070d2 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2001-05-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2001-05-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (7ED) -Type:Historic +Type:Archive Subtype:Legacy Effective:2001-05-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2001-07-01.txt b/forge-gui/res/formats/Archive/Legacy/2001-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2001-07-01.txt rename to forge-gui/res/formats/Archive/Legacy/2001-07-01.txt index 1c3ac23013b..8f310fe867d 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2001-07-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2001-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (APC) -Type:Historic +Type:Archive Subtype:Legacy Effective:2001-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2001-11-01.txt b/forge-gui/res/formats/Archive/Legacy/2001-11-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2001-11-01.txt rename to forge-gui/res/formats/Archive/Legacy/2001-11-01.txt index 7adaf220810..51986f01814 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2001-11-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2001-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (ODY) -Type:Historic +Type:Archive Subtype:Legacy Effective:2001-11-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2001-12-01.txt b/forge-gui/res/formats/Archive/Legacy/2001-12-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2001-12-01.txt rename to forge-gui/res/formats/Archive/Legacy/2001-12-01.txt index a192c8f45a5..201cc6e9e34 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2001-12-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2001-12-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (DKM) -Type:Historic +Type:Archive Subtype:Legacy Effective:2001-12-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2002-01-01.txt b/forge-gui/res/formats/Archive/Legacy/2002-01-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2002-01-01.txt rename to forge-gui/res/formats/Archive/Legacy/2002-01-01.txt index 5404211df80..92425e81923 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2002-01-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2002-01-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (2002-01-01) -Type:Historic +Type:Archive Subtype:Legacy Effective:2002-01-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2002-03-01.txt b/forge-gui/res/formats/Archive/Legacy/2002-03-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2002-03-01.txt rename to forge-gui/res/formats/Archive/Legacy/2002-03-01.txt index 5f74f2a810f..0111859bdfd 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2002-03-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2002-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (TOR) -Type:Historic +Type:Archive Subtype:Legacy Effective:2002-03-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2002-07-01.txt b/forge-gui/res/formats/Archive/Legacy/2002-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2002-07-01.txt rename to forge-gui/res/formats/Archive/Legacy/2002-07-01.txt index a57d5b2b7c2..8aae80a1ca2 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2002-07-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2002-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (JUD) -Type:Historic +Type:Archive Subtype:Legacy Effective:2002-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2002-11-01.txt b/forge-gui/res/formats/Archive/Legacy/2002-11-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2002-11-01.txt rename to forge-gui/res/formats/Archive/Legacy/2002-11-01.txt index 8d307cdcf3f..938affe74f4 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2002-11-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2002-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (ONS) -Type:Historic +Type:Archive Subtype:Legacy Effective:2002-11-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2003-03-01.txt b/forge-gui/res/formats/Archive/Legacy/2003-03-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2003-03-01.txt rename to forge-gui/res/formats/Archive/Legacy/2003-03-01.txt index 16f5c0ec149..2f7c5dbfec9 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2003-03-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2003-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (LGN) -Type:Historic +Type:Archive Subtype:Legacy Effective:2003-03-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2003-04-01.txt b/forge-gui/res/formats/Archive/Legacy/2003-04-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2003-04-01.txt rename to forge-gui/res/formats/Archive/Legacy/2003-04-01.txt index 8e402c1035c..6755f9e731a 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2003-04-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2003-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (2003-04-01) -Type:Historic +Type:Archive Subtype:Legacy Effective:2003-04-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2003-07-01.txt b/forge-gui/res/formats/Archive/Legacy/2003-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2003-07-01.txt rename to forge-gui/res/formats/Archive/Legacy/2003-07-01.txt index c1d6f23a83d..6deb5ca0fa8 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2003-07-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2003-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (SCG) -Type:Historic +Type:Archive Subtype:Legacy Effective:2003-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2003-09-01.txt b/forge-gui/res/formats/Archive/Legacy/2003-09-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2003-09-01.txt rename to forge-gui/res/formats/Archive/Legacy/2003-09-01.txt index 85dc1fd50cc..4adbffb31c1 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2003-09-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2003-09-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (8ED) -Type:Historic +Type:Archive Subtype:Legacy Effective:2003-09-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2003-10-20.txt b/forge-gui/res/formats/Archive/Legacy/2003-10-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2003-10-20.txt rename to forge-gui/res/formats/Archive/Legacy/2003-10-20.txt index b89412388dd..0365de4a591 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2003-10-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2003-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (MRD) -Type:Historic +Type:Archive Subtype:Legacy Effective:2003-10-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2004-01-01.txt b/forge-gui/res/formats/Archive/Legacy/2004-01-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2004-01-01.txt rename to forge-gui/res/formats/Archive/Legacy/2004-01-01.txt index d529a4a920e..308ae9a48ac 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2004-01-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2004-01-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (2004-01-01) -Type:Historic +Type:Archive Subtype:Legacy Effective:2004-01-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2004-02-20.txt b/forge-gui/res/formats/Archive/Legacy/2004-02-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2004-02-20.txt rename to forge-gui/res/formats/Archive/Legacy/2004-02-20.txt index ea89d85ef21..068f6dc50a8 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2004-02-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2004-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (DST) -Type:Historic +Type:Archive Subtype:Legacy Effective:2004-02-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2004-06-20.txt b/forge-gui/res/formats/Archive/Legacy/2004-06-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2004-06-20.txt rename to forge-gui/res/formats/Archive/Legacy/2004-06-20.txt index a4a80371189..424f5d430c3 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2004-06-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2004-06-20.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (5DN) -Type:Historic +Type:Archive Subtype:Legacy Effective:2004-06-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2004-09-20.txt b/forge-gui/res/formats/Archive/Legacy/2004-09-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2004-09-20.txt rename to forge-gui/res/formats/Archive/Legacy/2004-09-20.txt index ee25fa73023..3624a8817f8 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2004-09-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2004-09-20.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (2004-09-20) -Type:Historic +Type:Archive Subtype:Legacy Effective:2004-09-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2004-10-20.txt b/forge-gui/res/formats/Archive/Legacy/2004-10-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2004-10-20.txt rename to forge-gui/res/formats/Archive/Legacy/2004-10-20.txt index 3d7cc4bfab3..63fe0df3bef 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2004-10-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2004-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Type 1.5 (CHK) -Type:Historic +Type:Archive Subtype:Legacy Effective:2004-10-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2005-02-20.txt b/forge-gui/res/formats/Archive/Legacy/2005-02-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2005-02-20.txt rename to forge-gui/res/formats/Archive/Legacy/2005-02-20.txt index 62f94c367ce..3f283cb2be3 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2005-02-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2005-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (BOK) -Type:Historic +Type:Archive Subtype:Legacy Effective:2005-02-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2005-06-20.txt b/forge-gui/res/formats/Archive/Legacy/2005-06-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2005-06-20.txt rename to forge-gui/res/formats/Archive/Legacy/2005-06-20.txt index c8d13626c98..c3ccbff51ae 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2005-06-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2005-06-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (SOK) -Type:Historic +Type:Archive Subtype:Legacy Effective:2005-06-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2005-08-20.txt b/forge-gui/res/formats/Archive/Legacy/2005-08-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2005-08-20.txt rename to forge-gui/res/formats/Archive/Legacy/2005-08-20.txt index 343ead73470..64f7e8036a4 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2005-08-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2005-08-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (9ED) -Type:Historic +Type:Archive Subtype:Legacy Effective:2005-08-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2005-09-20.txt b/forge-gui/res/formats/Archive/Legacy/2005-09-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2005-09-20.txt rename to forge-gui/res/formats/Archive/Legacy/2005-09-20.txt index 41210f48ae2..2d64d8c9a46 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2005-09-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2005-09-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2005-09-20) -Type:Historic +Type:Archive Subtype:Legacy Effective:2005-09-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2005-10-20.txt b/forge-gui/res/formats/Archive/Legacy/2005-10-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2005-10-20.txt rename to forge-gui/res/formats/Archive/Legacy/2005-10-20.txt index cce9fb7f3ad..2b53b968bbc 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2005-10-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2005-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (RAV) -Type:Historic +Type:Archive Subtype:Legacy Effective:2005-10-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2006-02-20.txt b/forge-gui/res/formats/Archive/Legacy/2006-02-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2006-02-20.txt rename to forge-gui/res/formats/Archive/Legacy/2006-02-20.txt index cd2c47ebb48..3bb01e630e6 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2006-02-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2006-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (GPT) -Type:Historic +Type:Archive Subtype:Legacy Effective:2006-02-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2006-05-20.txt b/forge-gui/res/formats/Archive/Legacy/2006-05-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2006-05-20.txt rename to forge-gui/res/formats/Archive/Legacy/2006-05-20.txt index 8c9cd7ed342..3589b9dc86c 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2006-05-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2006-05-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DIS) -Type:Historic +Type:Archive Subtype:Legacy Effective:2006-05-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2006-08-20.txt b/forge-gui/res/formats/Archive/Legacy/2006-08-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2006-08-20.txt rename to forge-gui/res/formats/Archive/Legacy/2006-08-20.txt index 247c9773bfd..6df28370d9d 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2006-08-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2006-08-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (CSP) -Type:Historic +Type:Archive Subtype:Legacy Effective:2006-08-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2006-10-20.txt b/forge-gui/res/formats/Archive/Legacy/2006-10-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2006-10-20.txt rename to forge-gui/res/formats/Archive/Legacy/2006-10-20.txt index 5b71f735ce7..83997141dd8 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2006-10-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2006-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (TSP) -Type:Historic +Type:Archive Subtype:Legacy Effective:2006-10-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2007-02-20.txt b/forge-gui/res/formats/Archive/Legacy/2007-02-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2007-02-20.txt rename to forge-gui/res/formats/Archive/Legacy/2007-02-20.txt index d2a13d8518a..93908b9149c 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2007-02-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2007-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (PLC) -Type:Historic +Type:Archive Subtype:Legacy Effective:2007-02-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2007-05-20.txt b/forge-gui/res/formats/Archive/Legacy/2007-05-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2007-05-20.txt rename to forge-gui/res/formats/Archive/Legacy/2007-05-20.txt index 8204fd3f3c0..827c0ac49c1 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2007-05-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2007-05-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (FUT) -Type:Historic +Type:Archive Subtype:Legacy Effective:2007-05-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2007-06-20.txt b/forge-gui/res/formats/Archive/Legacy/2007-06-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2007-06-20.txt rename to forge-gui/res/formats/Archive/Legacy/2007-06-20.txt index 042c8ed90c9..84d1366630a 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2007-06-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2007-06-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2007-06-20) -Type:Historic +Type:Archive Subtype:Legacy Effective:2007-06-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2007-07-20.txt b/forge-gui/res/formats/Archive/Legacy/2007-07-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2007-07-20.txt rename to forge-gui/res/formats/Archive/Legacy/2007-07-20.txt index 4e3877b4373..8f35e28c0c6 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2007-07-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2007-07-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (10E) -Type:Historic +Type:Archive Subtype:Legacy Effective:2007-07-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2007-09-10.txt b/forge-gui/res/formats/Archive/Legacy/2007-09-10.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2007-09-10.txt rename to forge-gui/res/formats/Archive/Legacy/2007-09-10.txt index c774283d587..3ed94feab1a 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2007-09-10.txt +++ b/forge-gui/res/formats/Archive/Legacy/2007-09-10.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (MED) -Type:Historic +Type:Archive Subtype:Legacy Effective:2007-09-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2007-09-20.txt b/forge-gui/res/formats/Archive/Legacy/2007-09-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2007-09-20.txt rename to forge-gui/res/formats/Archive/Legacy/2007-09-20.txt index 744beb062ee..13c8de33189 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2007-09-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2007-09-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2007-09-20) -Type:Historic +Type:Archive Subtype:Legacy Effective:2007-09-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2007-10-20.txt b/forge-gui/res/formats/Archive/Legacy/2007-10-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2007-10-20.txt rename to forge-gui/res/formats/Archive/Legacy/2007-10-20.txt index 14184db7db4..e6054a51d75 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2007-10-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2007-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (LRW) -Type:Historic +Type:Archive Subtype:Legacy Effective:2007-10-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2007-11-16.txt b/forge-gui/res/formats/Archive/Legacy/2007-11-16.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2007-11-16.txt rename to forge-gui/res/formats/Archive/Legacy/2007-11-16.txt index 8b5078fcb3b..c602728aeaf 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2007-11-16.txt +++ b/forge-gui/res/formats/Archive/Legacy/2007-11-16.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DD1) -Type:Historic +Type:Archive Subtype:Legacy Effective:2007-11-16 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2008-02-01.txt b/forge-gui/res/formats/Archive/Legacy/2008-02-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2008-02-01.txt rename to forge-gui/res/formats/Archive/Legacy/2008-02-01.txt index 943d54ca610..d42f05b3e2c 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2008-02-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2008-02-01.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (MOR) -Type:Historic +Type:Archive Subtype:Legacy Effective:2008-02-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2008-05-02.txt b/forge-gui/res/formats/Archive/Legacy/2008-05-02.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2008-05-02.txt rename to forge-gui/res/formats/Archive/Legacy/2008-05-02.txt index 9b29d4e42ab..a1ff40da0ff 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2008-05-02.txt +++ b/forge-gui/res/formats/Archive/Legacy/2008-05-02.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (SHM) -Type:Historic +Type:Archive Subtype:Legacy Effective:2008-05-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2008-07-25.txt b/forge-gui/res/formats/Archive/Legacy/2008-07-25.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2008-07-25.txt rename to forge-gui/res/formats/Archive/Legacy/2008-07-25.txt index 1fb4141a3f2..64874b274f6 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2008-07-25.txt +++ b/forge-gui/res/formats/Archive/Legacy/2008-07-25.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (EVE) -Type:Historic +Type:Archive Subtype:Legacy Effective:2008-07-25 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2008-08-29.txt b/forge-gui/res/formats/Archive/Legacy/2008-08-29.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2008-08-29.txt rename to forge-gui/res/formats/Archive/Legacy/2008-08-29.txt index 4a1801af657..a7cf67532ce 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2008-08-29.txt +++ b/forge-gui/res/formats/Archive/Legacy/2008-08-29.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DRB) -Type:Historic +Type:Archive Subtype:Legacy Effective:2008-08-29 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2008-09-20.txt b/forge-gui/res/formats/Archive/Legacy/2008-09-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2008-09-20.txt rename to forge-gui/res/formats/Archive/Legacy/2008-09-20.txt index 92108e0d16c..800d12164c3 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2008-09-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2008-09-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2008-09-20) -Type:Historic +Type:Archive Subtype:Legacy Effective:2008-09-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2008-09-22.txt b/forge-gui/res/formats/Archive/Legacy/2008-09-22.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2008-09-22.txt rename to forge-gui/res/formats/Archive/Legacy/2008-09-22.txt index 2202a92eaae..12c1d8c4369 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2008-09-22.txt +++ b/forge-gui/res/formats/Archive/Legacy/2008-09-22.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (ME2) -Type:Historic +Type:Archive Subtype:Legacy Effective:2008-09-22 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2008-10-03.txt b/forge-gui/res/formats/Archive/Legacy/2008-10-03.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2008-10-03.txt rename to forge-gui/res/formats/Archive/Legacy/2008-10-03.txt index 14f175dcc76..797a232d22b 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2008-10-03.txt +++ b/forge-gui/res/formats/Archive/Legacy/2008-10-03.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (ALA) -Type:Historic +Type:Archive Subtype:Legacy Effective:2008-10-03 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2008-11-07.txt b/forge-gui/res/formats/Archive/Legacy/2008-11-07.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2008-11-07.txt rename to forge-gui/res/formats/Archive/Legacy/2008-11-07.txt index 866140aa62e..f697c96615b 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2008-11-07.txt +++ b/forge-gui/res/formats/Archive/Legacy/2008-11-07.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DD2) -Type:Historic +Type:Archive Subtype:Legacy Effective:2008-11-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2009-02-06.txt b/forge-gui/res/formats/Archive/Legacy/2009-02-06.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2009-02-06.txt rename to forge-gui/res/formats/Archive/Legacy/2009-02-06.txt index 82b0bfaae7a..2ba0d9febd5 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2009-02-06.txt +++ b/forge-gui/res/formats/Archive/Legacy/2009-02-06.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (CFX) -Type:Historic +Type:Archive Subtype:Legacy Effective:2009-02-06 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2009-04-10.txt b/forge-gui/res/formats/Archive/Legacy/2009-04-10.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2009-04-10.txt rename to forge-gui/res/formats/Archive/Legacy/2009-04-10.txt index c7d52138cb8..0d09b396cef 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2009-04-10.txt +++ b/forge-gui/res/formats/Archive/Legacy/2009-04-10.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDC) -Type:Historic +Type:Archive Subtype:Legacy Effective:2009-04-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2009-04-30.txt b/forge-gui/res/formats/Archive/Legacy/2009-04-30.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2009-04-30.txt rename to forge-gui/res/formats/Archive/Legacy/2009-04-30.txt index ffe80c94090..23af7343124 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2009-04-30.txt +++ b/forge-gui/res/formats/Archive/Legacy/2009-04-30.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (ARB) -Type:Historic +Type:Archive Subtype:Legacy Effective:2009-04-30 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2009-07-17.txt b/forge-gui/res/formats/Archive/Legacy/2009-07-17.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2009-07-17.txt rename to forge-gui/res/formats/Archive/Legacy/2009-07-17.txt index 38c5476b4a8..ec36e5397f4 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2009-07-17.txt +++ b/forge-gui/res/formats/Archive/Legacy/2009-07-17.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (M10) -Type:Historic +Type:Archive Subtype:Legacy Effective:2009-07-17 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2009-08-26.txt b/forge-gui/res/formats/Archive/Legacy/2009-08-26.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2009-08-26.txt rename to forge-gui/res/formats/Archive/Legacy/2009-08-26.txt index a11f1a84abe..da89a99e128 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2009-08-26.txt +++ b/forge-gui/res/formats/Archive/Legacy/2009-08-26.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (TD0) -Type:Historic +Type:Archive Subtype:Legacy Effective:2009-08-26 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2009-08-28.txt b/forge-gui/res/formats/Archive/Legacy/2009-08-28.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2009-08-28.txt rename to forge-gui/res/formats/Archive/Legacy/2009-08-28.txt index a667205f82c..ce43cd188b8 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2009-08-28.txt +++ b/forge-gui/res/formats/Archive/Legacy/2009-08-28.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (V09) -Type:Historic +Type:Archive Subtype:Legacy Effective:2009-08-28 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2009-09-07.txt b/forge-gui/res/formats/Archive/Legacy/2009-09-07.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2009-09-07.txt rename to forge-gui/res/formats/Archive/Legacy/2009-09-07.txt index bd958a8f69a..71c1a4a1486 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2009-09-07.txt +++ b/forge-gui/res/formats/Archive/Legacy/2009-09-07.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (ME3) -Type:Historic +Type:Archive Subtype:Legacy Effective:2009-09-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2009-10-01.txt b/forge-gui/res/formats/Archive/Legacy/2009-10-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2009-10-01.txt rename to forge-gui/res/formats/Archive/Legacy/2009-10-01.txt index bfecc26c730..b2c7237a318 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2009-10-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2009-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2009-10-01) -Type:Historic +Type:Archive Subtype:Legacy Effective:2009-10-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2009-10-02.txt b/forge-gui/res/formats/Archive/Legacy/2009-10-02.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2009-10-02.txt rename to forge-gui/res/formats/Archive/Legacy/2009-10-02.txt index 9af3dae249c..f6450b7bcaf 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2009-10-02.txt +++ b/forge-gui/res/formats/Archive/Legacy/2009-10-02.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (ZEN) -Type:Historic +Type:Archive Subtype:Legacy Effective:2009-10-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2009-10-30.txt b/forge-gui/res/formats/Archive/Legacy/2009-10-30.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2009-10-30.txt rename to forge-gui/res/formats/Archive/Legacy/2009-10-30.txt index b8bf22d4e58..8d52ffdefad 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2009-10-30.txt +++ b/forge-gui/res/formats/Archive/Legacy/2009-10-30.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDD) -Type:Historic +Type:Archive Subtype:Legacy Effective:2009-10-30 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2009-11-20.txt b/forge-gui/res/formats/Archive/Legacy/2009-11-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2009-11-20.txt rename to forge-gui/res/formats/Archive/Legacy/2009-11-20.txt index 28465a4a790..7186225b22e 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2009-11-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2009-11-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (H09) -Type:Historic +Type:Archive Subtype:Legacy Effective:2009-11-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2010-02-05.txt b/forge-gui/res/formats/Archive/Legacy/2010-02-05.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2010-02-05.txt rename to forge-gui/res/formats/Archive/Legacy/2010-02-05.txt index 91af59755d2..ba19bf2b435 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2010-02-05.txt +++ b/forge-gui/res/formats/Archive/Legacy/2010-02-05.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (WWK) -Type:Historic +Type:Archive Subtype:Legacy Effective:2010-02-05 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2010-03-19.txt b/forge-gui/res/formats/Archive/Legacy/2010-03-19.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2010-03-19.txt rename to forge-gui/res/formats/Archive/Legacy/2010-03-19.txt index 57c592002e9..6e2089f487d 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2010-03-19.txt +++ b/forge-gui/res/formats/Archive/Legacy/2010-03-19.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDE) -Type:Historic +Type:Archive Subtype:Legacy Effective:2010-03-19 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2010-04-23.txt b/forge-gui/res/formats/Archive/Legacy/2010-04-23.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2010-04-23.txt rename to forge-gui/res/formats/Archive/Legacy/2010-04-23.txt index ea79f19de46..52514ac20ae 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2010-04-23.txt +++ b/forge-gui/res/formats/Archive/Legacy/2010-04-23.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (ROE) -Type:Historic +Type:Archive Subtype:Legacy Effective:2010-04-23 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2010-06-04.txt b/forge-gui/res/formats/Archive/Legacy/2010-06-04.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2010-06-04.txt rename to forge-gui/res/formats/Archive/Legacy/2010-06-04.txt index a0c45cf8d57..7023a7349a8 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2010-06-04.txt +++ b/forge-gui/res/formats/Archive/Legacy/2010-06-04.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DPA) -Type:Historic +Type:Archive Subtype:Legacy Effective:2010-06-04 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2010-07-01.txt b/forge-gui/res/formats/Archive/Legacy/2010-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2010-07-01.txt rename to forge-gui/res/formats/Archive/Legacy/2010-07-01.txt index bd7a7e98898..a53aeaa21bf 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2010-07-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2010-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2010-07-01) -Type:Historic +Type:Archive Subtype:Legacy Effective:2010-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2010-07-16.txt b/forge-gui/res/formats/Archive/Legacy/2010-07-16.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2010-07-16.txt rename to forge-gui/res/formats/Archive/Legacy/2010-07-16.txt index 9547f05ea0f..e6163679762 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2010-07-16.txt +++ b/forge-gui/res/formats/Archive/Legacy/2010-07-16.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (M11) -Type:Historic +Type:Archive Subtype:Legacy Effective:2010-07-16 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2010-08-27.txt b/forge-gui/res/formats/Archive/Legacy/2010-08-27.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2010-08-27.txt rename to forge-gui/res/formats/Archive/Legacy/2010-08-27.txt index 0457a94592d..84b72ccea19 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2010-08-27.txt +++ b/forge-gui/res/formats/Archive/Legacy/2010-08-27.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (V10) -Type:Historic +Type:Archive Subtype:Legacy Effective:2010-08-27 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2010-09-03.txt b/forge-gui/res/formats/Archive/Legacy/2010-09-03.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Legacy/2010-09-03.txt rename to forge-gui/res/formats/Archive/Legacy/2010-09-03.txt index 1333701dda9..d7803d30486 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2010-09-03.txt +++ b/forge-gui/res/formats/Archive/Legacy/2010-09-03.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDF) -Type:Historic +Type:Archive Subtype:Legacy Effective:2010-09-03 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2010-10-01.txt b/forge-gui/res/formats/Archive/Legacy/2010-10-01.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2010-10-01.txt rename to forge-gui/res/formats/Archive/Legacy/2010-10-01.txt index 08727592134..fc925fd237b 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2010-10-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2010-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (SOM) -Type:Historic +Type:Archive Subtype:Legacy Effective:2010-10-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2010-11-08.txt b/forge-gui/res/formats/Archive/Legacy/2010-11-08.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2010-11-08.txt rename to forge-gui/res/formats/Archive/Legacy/2010-11-08.txt index da3842f8f9e..9857181105e 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2010-11-08.txt +++ b/forge-gui/res/formats/Archive/Legacy/2010-11-08.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (TD1) -Type:Historic +Type:Archive Subtype:Legacy Effective:2010-11-08 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2010-11-19.txt b/forge-gui/res/formats/Archive/Legacy/2010-11-19.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2010-11-19.txt rename to forge-gui/res/formats/Archive/Legacy/2010-11-19.txt index 006e65679d6..cb605e68578 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2010-11-19.txt +++ b/forge-gui/res/formats/Archive/Legacy/2010-11-19.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (PD2) -Type:Historic +Type:Archive Subtype:Legacy Effective:2010-11-19 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2011-01-01.txt b/forge-gui/res/formats/Archive/Legacy/2011-01-01.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2011-01-01.txt rename to forge-gui/res/formats/Archive/Legacy/2011-01-01.txt index 33d55b5b32b..2bc4478e34b 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2011-01-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2011-01-01.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2011-01-01) -Type:Historic +Type:Archive Subtype:Legacy Effective:2011-01-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2011-01-10.txt b/forge-gui/res/formats/Archive/Legacy/2011-01-10.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2011-01-10.txt rename to forge-gui/res/formats/Archive/Legacy/2011-01-10.txt index 254ab39e1aa..23332717ffb 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2011-01-10.txt +++ b/forge-gui/res/formats/Archive/Legacy/2011-01-10.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (ME4) -Type:Historic +Type:Archive Subtype:Legacy Effective:2011-01-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2011-02-04.txt b/forge-gui/res/formats/Archive/Legacy/2011-02-04.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2011-02-04.txt rename to forge-gui/res/formats/Archive/Legacy/2011-02-04.txt index c1651c6941e..4a571b4a268 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2011-02-04.txt +++ b/forge-gui/res/formats/Archive/Legacy/2011-02-04.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (MBS) -Type:Historic +Type:Archive Subtype:Legacy Effective:2011-02-04 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2011-04-01.txt b/forge-gui/res/formats/Archive/Legacy/2011-04-01.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2011-04-01.txt rename to forge-gui/res/formats/Archive/Legacy/2011-04-01.txt index 7e028c9115a..1e54f6b78b9 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2011-04-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2011-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDG) -Type:Historic +Type:Archive Subtype:Legacy Effective:2011-04-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2011-05-13.txt b/forge-gui/res/formats/Archive/Legacy/2011-05-13.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2011-05-13.txt rename to forge-gui/res/formats/Archive/Legacy/2011-05-13.txt index 15b95406024..1b0b31bc33b 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2011-05-13.txt +++ b/forge-gui/res/formats/Archive/Legacy/2011-05-13.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (NPH) -Type:Historic +Type:Archive Subtype:Legacy Effective:2011-05-13 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2011-05-14.txt b/forge-gui/res/formats/Archive/Legacy/2011-05-14.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2011-05-14.txt rename to forge-gui/res/formats/Archive/Legacy/2011-05-14.txt index 4c91af77958..18b38c98888 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2011-05-14.txt +++ b/forge-gui/res/formats/Archive/Legacy/2011-05-14.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (TD2) -Type:Historic +Type:Archive Subtype:Legacy Effective:2011-05-14 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2011-06-17.txt b/forge-gui/res/formats/Archive/Legacy/2011-06-17.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2011-06-17.txt rename to forge-gui/res/formats/Archive/Legacy/2011-06-17.txt index 547a2876012..ec56e888dee 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2011-06-17.txt +++ b/forge-gui/res/formats/Archive/Legacy/2011-06-17.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (COM) -Type:Historic +Type:Archive Subtype:Legacy Effective:2011-06-17 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2011-07-15.txt b/forge-gui/res/formats/Archive/Legacy/2011-07-15.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2011-07-15.txt rename to forge-gui/res/formats/Archive/Legacy/2011-07-15.txt index 49616bba429..465e2167dcf 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2011-07-15.txt +++ b/forge-gui/res/formats/Archive/Legacy/2011-07-15.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (M12) -Type:Historic +Type:Archive Subtype:Legacy Effective:2011-07-15 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2011-08-26.txt b/forge-gui/res/formats/Archive/Legacy/2011-08-26.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2011-08-26.txt rename to forge-gui/res/formats/Archive/Legacy/2011-08-26.txt index 9d82b06d3eb..46a3db99322 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2011-08-26.txt +++ b/forge-gui/res/formats/Archive/Legacy/2011-08-26.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (V11) -Type:Historic +Type:Archive Subtype:Legacy Effective:2011-08-26 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2011-09-02.txt b/forge-gui/res/formats/Archive/Legacy/2011-09-02.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2011-09-02.txt rename to forge-gui/res/formats/Archive/Legacy/2011-09-02.txt index a3b7f64ecd0..e4c2685bdc4 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2011-09-02.txt +++ b/forge-gui/res/formats/Archive/Legacy/2011-09-02.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDH) -Type:Historic +Type:Archive Subtype:Legacy Effective:2011-09-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2011-09-30.txt b/forge-gui/res/formats/Archive/Legacy/2011-09-30.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2011-09-30.txt rename to forge-gui/res/formats/Archive/Legacy/2011-09-30.txt index 50d7ea86bc7..b3309f1b8fe 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2011-09-30.txt +++ b/forge-gui/res/formats/Archive/Legacy/2011-09-30.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (ISD) -Type:Historic +Type:Archive Subtype:Legacy Effective:2011-09-30 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2011-10-01.txt b/forge-gui/res/formats/Archive/Legacy/2011-10-01.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2011-10-01.txt rename to forge-gui/res/formats/Archive/Legacy/2011-10-01.txt index a82943c00ae..8a4da48ab19 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2011-10-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2011-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2011-10-01) -Type:Historic +Type:Archive Subtype:Legacy Effective:2011-10-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2011-11-18.txt b/forge-gui/res/formats/Archive/Legacy/2011-11-18.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2011-11-18.txt rename to forge-gui/res/formats/Archive/Legacy/2011-11-18.txt index 18e1723daf4..c31dd038730 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2011-11-18.txt +++ b/forge-gui/res/formats/Archive/Legacy/2011-11-18.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (PD3) -Type:Historic +Type:Archive Subtype:Legacy Effective:2011-11-18 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2012-02-03.txt b/forge-gui/res/formats/Archive/Legacy/2012-02-03.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2012-02-03.txt rename to forge-gui/res/formats/Archive/Legacy/2012-02-03.txt index 4764577e40b..f397798032d 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2012-02-03.txt +++ b/forge-gui/res/formats/Archive/Legacy/2012-02-03.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DKA) -Type:Historic +Type:Archive Subtype:Legacy Effective:2012-02-03 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2012-03-30.txt b/forge-gui/res/formats/Archive/Legacy/2012-03-30.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2012-03-30.txt rename to forge-gui/res/formats/Archive/Legacy/2012-03-30.txt index 75efabd0e0b..5f44ef53693 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2012-03-30.txt +++ b/forge-gui/res/formats/Archive/Legacy/2012-03-30.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDI) -Type:Historic +Type:Archive Subtype:Legacy Effective:2012-03-30 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2012-05-04.txt b/forge-gui/res/formats/Archive/Legacy/2012-05-04.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2012-05-04.txt rename to forge-gui/res/formats/Archive/Legacy/2012-05-04.txt index f3404eab842..1ee2f7dde7e 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2012-05-04.txt +++ b/forge-gui/res/formats/Archive/Legacy/2012-05-04.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (AVR) -Type:Historic +Type:Archive Subtype:Legacy Effective:2012-05-04 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2012-06-29.txt b/forge-gui/res/formats/Archive/Legacy/2012-06-29.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2012-06-29.txt rename to forge-gui/res/formats/Archive/Legacy/2012-06-29.txt index 9ad11942ee2..07cd1b14289 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2012-06-29.txt +++ b/forge-gui/res/formats/Archive/Legacy/2012-06-29.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2012-06-29) -Type:Historic +Type:Archive Subtype:Legacy Effective:2012-06-29 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2012-07-13.txt b/forge-gui/res/formats/Archive/Legacy/2012-07-13.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2012-07-13.txt rename to forge-gui/res/formats/Archive/Legacy/2012-07-13.txt index 35cd965df2d..63e8296cb01 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2012-07-13.txt +++ b/forge-gui/res/formats/Archive/Legacy/2012-07-13.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (M13) -Type:Historic +Type:Archive Subtype:Legacy Effective:2012-07-13 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2012-08-31.txt b/forge-gui/res/formats/Archive/Legacy/2012-08-31.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2012-08-31.txt rename to forge-gui/res/formats/Archive/Legacy/2012-08-31.txt index f6dbe11686a..b6d4dcad020 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2012-08-31.txt +++ b/forge-gui/res/formats/Archive/Legacy/2012-08-31.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (V12) -Type:Historic +Type:Archive Subtype:Legacy Effective:2012-08-31 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2012-09-07.txt b/forge-gui/res/formats/Archive/Legacy/2012-09-07.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2012-09-07.txt rename to forge-gui/res/formats/Archive/Legacy/2012-09-07.txt index 4e58046c8c8..27f7ec3affd 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2012-09-07.txt +++ b/forge-gui/res/formats/Archive/Legacy/2012-09-07.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDJ) -Type:Historic +Type:Archive Subtype:Legacy Effective:2012-09-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2012-10-05.txt b/forge-gui/res/formats/Archive/Legacy/2012-10-05.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2012-10-05.txt rename to forge-gui/res/formats/Archive/Legacy/2012-10-05.txt index bf9857a5a08..a0bcc4cd2ef 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2012-10-05.txt +++ b/forge-gui/res/formats/Archive/Legacy/2012-10-05.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (RTR) -Type:Historic +Type:Archive Subtype:Legacy Effective:2012-10-05 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2012-11-02.txt b/forge-gui/res/formats/Archive/Legacy/2012-11-02.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2012-11-02.txt rename to forge-gui/res/formats/Archive/Legacy/2012-11-02.txt index 5f8793cbd93..9f416968f4d 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2012-11-02.txt +++ b/forge-gui/res/formats/Archive/Legacy/2012-11-02.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (CM1) -Type:Historic +Type:Archive Subtype:Legacy Effective:2012-11-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2013-02-01.txt b/forge-gui/res/formats/Archive/Legacy/2013-02-01.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2013-02-01.txt rename to forge-gui/res/formats/Archive/Legacy/2013-02-01.txt index b1a5fb487dc..ccd2da504d8 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2013-02-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2013-02-01.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (GTC) -Type:Historic +Type:Archive Subtype:Legacy Effective:2013-02-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2013-03-15.txt b/forge-gui/res/formats/Archive/Legacy/2013-03-15.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2013-03-15.txt rename to forge-gui/res/formats/Archive/Legacy/2013-03-15.txt index 7882fa82b39..c17bf765e65 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2013-03-15.txt +++ b/forge-gui/res/formats/Archive/Legacy/2013-03-15.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDK) -Type:Historic +Type:Archive Subtype:Legacy Effective:2013-03-15 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2013-05-03.txt b/forge-gui/res/formats/Archive/Legacy/2013-05-03.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2013-05-03.txt rename to forge-gui/res/formats/Archive/Legacy/2013-05-03.txt index 69168498d49..857d5c9f6b2 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2013-05-03.txt +++ b/forge-gui/res/formats/Archive/Legacy/2013-05-03.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DGM) -Type:Historic +Type:Archive Subtype:Legacy Effective:2013-05-03 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2013-06-07.txt b/forge-gui/res/formats/Archive/Legacy/2013-06-07.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2013-06-07.txt rename to forge-gui/res/formats/Archive/Legacy/2013-06-07.txt index a8c5d378b45..db204cc4b4f 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2013-06-07.txt +++ b/forge-gui/res/formats/Archive/Legacy/2013-06-07.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (MMA) -Type:Historic +Type:Archive Subtype:Legacy Effective:2013-06-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2013-07-19.txt b/forge-gui/res/formats/Archive/Legacy/2013-07-19.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2013-07-19.txt rename to forge-gui/res/formats/Archive/Legacy/2013-07-19.txt index ef0972445f3..1158004c21f 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2013-07-19.txt +++ b/forge-gui/res/formats/Archive/Legacy/2013-07-19.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (M14) -Type:Historic +Type:Archive Subtype:Legacy Effective:2013-07-19 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2013-08-23.txt b/forge-gui/res/formats/Archive/Legacy/2013-08-23.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2013-08-23.txt rename to forge-gui/res/formats/Archive/Legacy/2013-08-23.txt index 1198e46ea84..80fe356c463 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2013-08-23.txt +++ b/forge-gui/res/formats/Archive/Legacy/2013-08-23.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (V13) -Type:Historic +Type:Archive Subtype:Legacy Effective:2013-08-23 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2013-09-06.txt b/forge-gui/res/formats/Archive/Legacy/2013-09-06.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2013-09-06.txt rename to forge-gui/res/formats/Archive/Legacy/2013-09-06.txt index 6fc53c58fa2..fd1e8f2bdfc 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2013-09-06.txt +++ b/forge-gui/res/formats/Archive/Legacy/2013-09-06.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDL) -Type:Historic +Type:Archive Subtype:Legacy Effective:2013-09-06 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2013-09-27.txt b/forge-gui/res/formats/Archive/Legacy/2013-09-27.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2013-09-27.txt rename to forge-gui/res/formats/Archive/Legacy/2013-09-27.txt index 22a27a09b00..ee3a6bf4684 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2013-09-27.txt +++ b/forge-gui/res/formats/Archive/Legacy/2013-09-27.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (THS) -Type:Historic +Type:Archive Subtype:Legacy Effective:2013-09-27 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2013-11-01.txt b/forge-gui/res/formats/Archive/Legacy/2013-11-01.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2013-11-01.txt rename to forge-gui/res/formats/Archive/Legacy/2013-11-01.txt index edbd542d697..dd649ed007b 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2013-11-01.txt +++ b/forge-gui/res/formats/Archive/Legacy/2013-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (C13) -Type:Historic +Type:Archive Subtype:Legacy Effective:2013-11-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2014-02-07.txt b/forge-gui/res/formats/Archive/Legacy/2014-02-07.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2014-02-07.txt rename to forge-gui/res/formats/Archive/Legacy/2014-02-07.txt index 52964c23f3f..d45278363d0 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2014-02-07.txt +++ b/forge-gui/res/formats/Archive/Legacy/2014-02-07.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (BNG) -Type:Historic +Type:Archive Subtype:Legacy Effective:2014-02-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2014-03-14.txt b/forge-gui/res/formats/Archive/Legacy/2014-03-14.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2014-03-14.txt rename to forge-gui/res/formats/Archive/Legacy/2014-03-14.txt index 14e6de64425..b8e538cc9cf 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2014-03-14.txt +++ b/forge-gui/res/formats/Archive/Legacy/2014-03-14.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDM) -Type:Historic +Type:Archive Subtype:Legacy Effective:2014-03-14 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2014-05-02.txt b/forge-gui/res/formats/Archive/Legacy/2014-05-02.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2014-05-02.txt rename to forge-gui/res/formats/Archive/Legacy/2014-05-02.txt index 3eec0c0ac71..5584bae1eb3 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2014-05-02.txt +++ b/forge-gui/res/formats/Archive/Legacy/2014-05-02.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (JOU) -Type:Historic +Type:Archive Subtype:Legacy Effective:2014-05-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2014-05-30.txt b/forge-gui/res/formats/Archive/Legacy/2014-05-30.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2014-05-30.txt rename to forge-gui/res/formats/Archive/Legacy/2014-05-30.txt index a12fbbfa36d..a12e9f64682 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2014-05-30.txt +++ b/forge-gui/res/formats/Archive/Legacy/2014-05-30.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (MD1) -Type:Historic +Type:Archive Subtype:Legacy Effective:2014-05-30 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2014-06-06.txt b/forge-gui/res/formats/Archive/Legacy/2014-06-06.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2014-06-06.txt rename to forge-gui/res/formats/Archive/Legacy/2014-06-06.txt index 33b7ca21961..d75018f9af7 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2014-06-06.txt +++ b/forge-gui/res/formats/Archive/Legacy/2014-06-06.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (CNS) -Type:Historic +Type:Archive Subtype:Legacy Effective:2014-06-06 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2014-06-16.txt b/forge-gui/res/formats/Archive/Legacy/2014-06-16.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2014-06-16.txt rename to forge-gui/res/formats/Archive/Legacy/2014-06-16.txt index 2eda157cfb4..93f5283cc63 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2014-06-16.txt +++ b/forge-gui/res/formats/Archive/Legacy/2014-06-16.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (VMA) -Type:Historic +Type:Archive Subtype:Legacy Effective:2014-06-16 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2014-07-18.txt b/forge-gui/res/formats/Archive/Legacy/2014-07-18.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2014-07-18.txt rename to forge-gui/res/formats/Archive/Legacy/2014-07-18.txt index debc89a533c..e52aaec06f9 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2014-07-18.txt +++ b/forge-gui/res/formats/Archive/Legacy/2014-07-18.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (M15) -Type:Historic +Type:Archive Subtype:Legacy Effective:2014-07-18 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2014-08-22.txt b/forge-gui/res/formats/Archive/Legacy/2014-08-22.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2014-08-22.txt rename to forge-gui/res/formats/Archive/Legacy/2014-08-22.txt index 7b9efe6a2bf..c0bc1ccb657 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2014-08-22.txt +++ b/forge-gui/res/formats/Archive/Legacy/2014-08-22.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (V14) -Type:Historic +Type:Archive Subtype:Legacy Effective:2014-08-22 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2014-09-05.txt b/forge-gui/res/formats/Archive/Legacy/2014-09-05.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2014-09-05.txt rename to forge-gui/res/formats/Archive/Legacy/2014-09-05.txt index 96d29a209aa..e01b277ab49 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2014-09-05.txt +++ b/forge-gui/res/formats/Archive/Legacy/2014-09-05.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDN) -Type:Historic +Type:Archive Subtype:Legacy Effective:2014-09-05 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2014-09-26.txt b/forge-gui/res/formats/Archive/Legacy/2014-09-26.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2014-09-26.txt rename to forge-gui/res/formats/Archive/Legacy/2014-09-26.txt index c36344ba175..21f4c8b80dd 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2014-09-26.txt +++ b/forge-gui/res/formats/Archive/Legacy/2014-09-26.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (KTK) -Type:Historic +Type:Archive Subtype:Legacy Effective:2014-09-26 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2014-11-07.txt b/forge-gui/res/formats/Archive/Legacy/2014-11-07.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2014-11-07.txt rename to forge-gui/res/formats/Archive/Legacy/2014-11-07.txt index e40ca62b051..84acc913f27 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2014-11-07.txt +++ b/forge-gui/res/formats/Archive/Legacy/2014-11-07.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (C14) -Type:Historic +Type:Archive Subtype:Legacy Effective:2014-11-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2014-12-05.txt b/forge-gui/res/formats/Archive/Legacy/2014-12-05.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2014-12-05.txt rename to forge-gui/res/formats/Archive/Legacy/2014-12-05.txt index a5898e21600..71aee33663d 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2014-12-05.txt +++ b/forge-gui/res/formats/Archive/Legacy/2014-12-05.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DD3) -Type:Historic +Type:Archive Subtype:Legacy Effective:2014-12-05 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2015-01-23.txt b/forge-gui/res/formats/Archive/Legacy/2015-01-23.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2015-01-23.txt rename to forge-gui/res/formats/Archive/Legacy/2015-01-23.txt index b19efd476c0..fbe9470aab6 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2015-01-23.txt +++ b/forge-gui/res/formats/Archive/Legacy/2015-01-23.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (FRF) -Type:Historic +Type:Archive Subtype:Legacy Effective:2015-01-23 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2015-02-27.txt b/forge-gui/res/formats/Archive/Legacy/2015-02-27.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2015-02-27.txt rename to forge-gui/res/formats/Archive/Legacy/2015-02-27.txt index be60112cdaa..19bb6950795 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2015-02-27.txt +++ b/forge-gui/res/formats/Archive/Legacy/2015-02-27.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDO) -Type:Historic +Type:Archive Subtype:Legacy Effective:2015-02-27 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2015-03-27.txt b/forge-gui/res/formats/Archive/Legacy/2015-03-27.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2015-03-27.txt rename to forge-gui/res/formats/Archive/Legacy/2015-03-27.txt index 159aee1c2b4..3ffd35d2b74 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2015-03-27.txt +++ b/forge-gui/res/formats/Archive/Legacy/2015-03-27.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DTK) -Type:Historic +Type:Archive Subtype:Legacy Effective:2015-03-27 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2015-05-06.txt b/forge-gui/res/formats/Archive/Legacy/2015-05-06.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2015-05-06.txt rename to forge-gui/res/formats/Archive/Legacy/2015-05-06.txt index aa55a7d25ad..7c2ca36dd90 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2015-05-06.txt +++ b/forge-gui/res/formats/Archive/Legacy/2015-05-06.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (TPR) -Type:Historic +Type:Archive Subtype:Legacy Effective:2015-05-06 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2015-05-22.txt b/forge-gui/res/formats/Archive/Legacy/2015-05-22.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2015-05-22.txt rename to forge-gui/res/formats/Archive/Legacy/2015-05-22.txt index 15e27def298..e247a698d40 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2015-05-22.txt +++ b/forge-gui/res/formats/Archive/Legacy/2015-05-22.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (MM2) -Type:Historic +Type:Archive Subtype:Legacy Effective:2015-05-22 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2015-07-17.txt b/forge-gui/res/formats/Archive/Legacy/2015-07-17.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2015-07-17.txt rename to forge-gui/res/formats/Archive/Legacy/2015-07-17.txt index 037966ef494..66bfb6e56b5 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2015-07-17.txt +++ b/forge-gui/res/formats/Archive/Legacy/2015-07-17.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (ORI) -Type:Historic +Type:Archive Subtype:Legacy Effective:2015-07-17 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2015-08-21.txt b/forge-gui/res/formats/Archive/Legacy/2015-08-21.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2015-08-21.txt rename to forge-gui/res/formats/Archive/Legacy/2015-08-21.txt index ce7a875c58f..02ccc448d9d 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2015-08-21.txt +++ b/forge-gui/res/formats/Archive/Legacy/2015-08-21.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (V15) -Type:Historic +Type:Archive Subtype:Legacy Effective:2015-08-21 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2015-08-28.txt b/forge-gui/res/formats/Archive/Legacy/2015-08-28.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2015-08-28.txt rename to forge-gui/res/formats/Archive/Legacy/2015-08-28.txt index 28fb9ed35f7..47ca21fc163 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2015-08-28.txt +++ b/forge-gui/res/formats/Archive/Legacy/2015-08-28.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDP) -Type:Historic +Type:Archive Subtype:Legacy Effective:2015-08-28 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2015-10-02.txt b/forge-gui/res/formats/Archive/Legacy/2015-10-02.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2015-10-02.txt rename to forge-gui/res/formats/Archive/Legacy/2015-10-02.txt index 98084bff531..8971a0d3a93 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2015-10-02.txt +++ b/forge-gui/res/formats/Archive/Legacy/2015-10-02.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (BFZ) -Type:Historic +Type:Archive Subtype:Legacy Effective:2015-10-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2015-11-13.txt b/forge-gui/res/formats/Archive/Legacy/2015-11-13.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2015-11-13.txt rename to forge-gui/res/formats/Archive/Legacy/2015-11-13.txt index d262017e3c1..b4cb7f0f73f 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2015-11-13.txt +++ b/forge-gui/res/formats/Archive/Legacy/2015-11-13.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (C15) -Type:Historic +Type:Archive Subtype:Legacy Effective:2015-11-13 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2015-11-18.txt b/forge-gui/res/formats/Archive/Legacy/2015-11-18.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2015-11-18.txt rename to forge-gui/res/formats/Archive/Legacy/2015-11-18.txt index ce01037da1f..da9c451d313 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2015-11-18.txt +++ b/forge-gui/res/formats/Archive/Legacy/2015-11-18.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (PZ1) -Type:Historic +Type:Archive Subtype:Legacy Effective:2015-11-18 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2016-01-22.txt b/forge-gui/res/formats/Archive/Legacy/2016-01-22.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2016-01-22.txt rename to forge-gui/res/formats/Archive/Legacy/2016-01-22.txt index df3356def61..b29e3937885 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2016-01-22.txt +++ b/forge-gui/res/formats/Archive/Legacy/2016-01-22.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (OGW) -Type:Historic +Type:Archive Subtype:Legacy Effective:2016-01-22 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2016-02-26.txt b/forge-gui/res/formats/Archive/Legacy/2016-02-26.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2016-02-26.txt rename to forge-gui/res/formats/Archive/Legacy/2016-02-26.txt index 8b7c1fa6c10..7bfb177a2f0 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2016-02-26.txt +++ b/forge-gui/res/formats/Archive/Legacy/2016-02-26.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDQ) -Type:Historic +Type:Archive Subtype:Legacy Effective:2016-02-26 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2016-04-08.txt b/forge-gui/res/formats/Archive/Legacy/2016-04-08.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2016-04-08.txt rename to forge-gui/res/formats/Archive/Legacy/2016-04-08.txt index da059f5042f..c56c318ce21 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2016-04-08.txt +++ b/forge-gui/res/formats/Archive/Legacy/2016-04-08.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (SOI) -Type:Historic +Type:Archive Subtype:Legacy Effective:2016-04-08 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2016-06-10.txt b/forge-gui/res/formats/Archive/Legacy/2016-06-10.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2016-06-10.txt rename to forge-gui/res/formats/Archive/Legacy/2016-06-10.txt index 40e374b31b3..6b0af13ab9f 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2016-06-10.txt +++ b/forge-gui/res/formats/Archive/Legacy/2016-06-10.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (EMA) -Type:Historic +Type:Archive Subtype:Legacy Effective:2016-06-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2016-07-22.txt b/forge-gui/res/formats/Archive/Legacy/2016-07-22.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2016-07-22.txt rename to forge-gui/res/formats/Archive/Legacy/2016-07-22.txt index 8a815338de8..a7f88626c37 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2016-07-22.txt +++ b/forge-gui/res/formats/Archive/Legacy/2016-07-22.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (EMN) -Type:Historic +Type:Archive Subtype:Legacy Effective:2016-07-22 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2016-08-19.txt b/forge-gui/res/formats/Archive/Legacy/2016-08-19.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2016-08-19.txt rename to forge-gui/res/formats/Archive/Legacy/2016-08-19.txt index b265f26b06b..0abe963e04c 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2016-08-19.txt +++ b/forge-gui/res/formats/Archive/Legacy/2016-08-19.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (V16) -Type:Historic +Type:Archive Subtype:Legacy Effective:2016-08-19 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2016-08-26.txt b/forge-gui/res/formats/Archive/Legacy/2016-08-26.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2016-08-26.txt rename to forge-gui/res/formats/Archive/Legacy/2016-08-26.txt index 073f2cc1b55..eb7953ccb51 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2016-08-26.txt +++ b/forge-gui/res/formats/Archive/Legacy/2016-08-26.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (CN2) -Type:Historic +Type:Archive Subtype:Legacy Effective:2016-08-26 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2016-09-02.txt b/forge-gui/res/formats/Archive/Legacy/2016-09-02.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2016-09-02.txt rename to forge-gui/res/formats/Archive/Legacy/2016-09-02.txt index 154381f934e..3076a01d727 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2016-09-02.txt +++ b/forge-gui/res/formats/Archive/Legacy/2016-09-02.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDR) -Type:Historic +Type:Archive Subtype:Legacy Effective:2016-09-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2016-09-30.txt b/forge-gui/res/formats/Archive/Legacy/2016-09-30.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2016-09-30.txt rename to forge-gui/res/formats/Archive/Legacy/2016-09-30.txt index 1f02f464824..f44985aa061 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2016-09-30.txt +++ b/forge-gui/res/formats/Archive/Legacy/2016-09-30.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (KLD) -Type:Historic +Type:Archive Subtype:Legacy Effective:2016-09-30 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2016-11-11.txt b/forge-gui/res/formats/Archive/Legacy/2016-11-11.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2016-11-11.txt rename to forge-gui/res/formats/Archive/Legacy/2016-11-11.txt index e65b1bc478f..91eeb3a4c92 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2016-11-11.txt +++ b/forge-gui/res/formats/Archive/Legacy/2016-11-11.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (C16) -Type:Historic +Type:Archive Subtype:Legacy Effective:2016-11-11 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2016-11-16.txt b/forge-gui/res/formats/Archive/Legacy/2016-11-16.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2016-11-16.txt rename to forge-gui/res/formats/Archive/Legacy/2016-11-16.txt index 9e41899a7c4..f4ab796634e 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2016-11-16.txt +++ b/forge-gui/res/formats/Archive/Legacy/2016-11-16.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (PZ2) -Type:Historic +Type:Archive Subtype:Legacy Effective:2016-11-16 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2017-01-20.txt b/forge-gui/res/formats/Archive/Legacy/2017-01-20.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2017-01-20.txt rename to forge-gui/res/formats/Archive/Legacy/2017-01-20.txt index 76feed3c0e6..e0d9f5ee0f2 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2017-01-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2017-01-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (AER) -Type:Historic +Type:Archive Subtype:Legacy Effective:2017-01-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2017-03-17.txt b/forge-gui/res/formats/Archive/Legacy/2017-03-17.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2017-03-17.txt rename to forge-gui/res/formats/Archive/Legacy/2017-03-17.txt index 68dc3733f9a..e348dd7a538 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2017-03-17.txt +++ b/forge-gui/res/formats/Archive/Legacy/2017-03-17.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (MM3) -Type:Historic +Type:Archive Subtype:Legacy Effective:2017-03-17 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2017-03-31.txt b/forge-gui/res/formats/Archive/Legacy/2017-03-31.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2017-03-31.txt rename to forge-gui/res/formats/Archive/Legacy/2017-03-31.txt index e40f8b39907..bb37101dfa0 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2017-03-31.txt +++ b/forge-gui/res/formats/Archive/Legacy/2017-03-31.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDS) -Type:Historic +Type:Archive Subtype:Legacy Effective:2017-03-31 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2017-04-24.txt b/forge-gui/res/formats/Archive/Legacy/2017-04-24.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2017-04-24.txt rename to forge-gui/res/formats/Archive/Legacy/2017-04-24.txt index 0df2392ce78..51aa7af5930 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2017-04-24.txt +++ b/forge-gui/res/formats/Archive/Legacy/2017-04-24.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2017-04-24) -Type:Historic +Type:Archive Subtype:Legacy Effective:2017-04-24 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2017-04-28.txt b/forge-gui/res/formats/Archive/Legacy/2017-04-28.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2017-04-28.txt rename to forge-gui/res/formats/Archive/Legacy/2017-04-28.txt index a35be538894..f8716113c02 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2017-04-28.txt +++ b/forge-gui/res/formats/Archive/Legacy/2017-04-28.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (AKH) -Type:Historic +Type:Archive Subtype:Legacy Effective:2017-04-28 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2017-06-09.txt b/forge-gui/res/formats/Archive/Legacy/2017-06-09.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2017-06-09.txt rename to forge-gui/res/formats/Archive/Legacy/2017-06-09.txt index db61b48c6e9..477f87eaa60 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2017-06-09.txt +++ b/forge-gui/res/formats/Archive/Legacy/2017-06-09.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (CMA) -Type:Historic +Type:Archive Subtype:Legacy Effective:2017-06-09 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2017-07-14.txt b/forge-gui/res/formats/Archive/Legacy/2017-07-14.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2017-07-14.txt rename to forge-gui/res/formats/Archive/Legacy/2017-07-14.txt index aba4884e70e..c89134bb2e6 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2017-07-14.txt +++ b/forge-gui/res/formats/Archive/Legacy/2017-07-14.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (HOU) -Type:Historic +Type:Archive Subtype:Legacy Effective:2017-07-14 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2017-08-25.txt b/forge-gui/res/formats/Archive/Legacy/2017-08-25.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2017-08-25.txt rename to forge-gui/res/formats/Archive/Legacy/2017-08-25.txt index 2084b16f947..99072f75d51 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2017-08-25.txt +++ b/forge-gui/res/formats/Archive/Legacy/2017-08-25.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (C17) -Type:Historic +Type:Archive Subtype:Legacy Effective:2017-08-25 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2017-09-29.txt b/forge-gui/res/formats/Archive/Legacy/2017-09-29.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2017-09-29.txt rename to forge-gui/res/formats/Archive/Legacy/2017-09-29.txt index b778a3d68fe..2e41d905cc5 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2017-09-29.txt +++ b/forge-gui/res/formats/Archive/Legacy/2017-09-29.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (XLN) -Type:Historic +Type:Archive Subtype:Legacy Effective:2017-09-29 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2017-11-10.txt b/forge-gui/res/formats/Archive/Legacy/2017-11-10.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2017-11-10.txt rename to forge-gui/res/formats/Archive/Legacy/2017-11-10.txt index 1e2e8c2b6ac..f2fba1680b1 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2017-11-10.txt +++ b/forge-gui/res/formats/Archive/Legacy/2017-11-10.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDT) -Type:Historic +Type:Archive Subtype:Legacy Effective:2017-11-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2017-11-17.txt b/forge-gui/res/formats/Archive/Legacy/2017-11-17.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2017-11-17.txt rename to forge-gui/res/formats/Archive/Legacy/2017-11-17.txt index 07e688237f8..6260aa47605 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2017-11-17.txt +++ b/forge-gui/res/formats/Archive/Legacy/2017-11-17.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (IMA) -Type:Historic +Type:Archive Subtype:Legacy Effective:2017-11-17 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2017-11-24.txt b/forge-gui/res/formats/Archive/Legacy/2017-11-24.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2017-11-24.txt rename to forge-gui/res/formats/Archive/Legacy/2017-11-24.txt index 7b3fa2be158..e4ddfaadd41 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2017-11-24.txt +++ b/forge-gui/res/formats/Archive/Legacy/2017-11-24.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (V17) -Type:Historic +Type:Archive Subtype:Legacy Effective:2017-11-24 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2018-01-19.txt b/forge-gui/res/formats/Archive/Legacy/2018-01-19.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2018-01-19.txt rename to forge-gui/res/formats/Archive/Legacy/2018-01-19.txt index d9bf4b27d33..c0843cc044b 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2018-01-19.txt +++ b/forge-gui/res/formats/Archive/Legacy/2018-01-19.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (RIX) -Type:Historic +Type:Archive Subtype:Legacy Effective:2018-01-19 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2018-03-16.txt b/forge-gui/res/formats/Archive/Legacy/2018-03-16.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2018-03-16.txt rename to forge-gui/res/formats/Archive/Legacy/2018-03-16.txt index 54162afba02..d66f335bd61 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2018-03-16.txt +++ b/forge-gui/res/formats/Archive/Legacy/2018-03-16.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (A25) -Type:Historic +Type:Archive Subtype:Legacy Effective:2018-03-16 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2018-04-06.txt b/forge-gui/res/formats/Archive/Legacy/2018-04-06.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2018-04-06.txt rename to forge-gui/res/formats/Archive/Legacy/2018-04-06.txt index b40354fa5b6..1e768f8218d 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2018-04-06.txt +++ b/forge-gui/res/formats/Archive/Legacy/2018-04-06.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DDU) -Type:Historic +Type:Archive Subtype:Legacy Effective:2018-04-06 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2018-04-27.txt b/forge-gui/res/formats/Archive/Legacy/2018-04-27.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2018-04-27.txt rename to forge-gui/res/formats/Archive/Legacy/2018-04-27.txt index 7c386470650..5b497e9fc2b 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2018-04-27.txt +++ b/forge-gui/res/formats/Archive/Legacy/2018-04-27.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DOM) -Type:Historic +Type:Archive Subtype:Legacy Effective:2018-04-27 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2018-06-08.txt b/forge-gui/res/formats/Archive/Legacy/2018-06-08.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2018-06-08.txt rename to forge-gui/res/formats/Archive/Legacy/2018-06-08.txt index d38b6388ceb..80797466471 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2018-06-08.txt +++ b/forge-gui/res/formats/Archive/Legacy/2018-06-08.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (CM2) -Type:Historic +Type:Archive Subtype:Legacy Effective:2018-06-08 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2018-06-15.txt b/forge-gui/res/formats/Archive/Legacy/2018-06-15.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2018-06-15.txt rename to forge-gui/res/formats/Archive/Legacy/2018-06-15.txt index 8ad8d3532f2..09d056c9e27 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2018-06-15.txt +++ b/forge-gui/res/formats/Archive/Legacy/2018-06-15.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (SS1) -Type:Historic +Type:Archive Subtype:Legacy Effective:2018-06-15 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2018-06-22.txt b/forge-gui/res/formats/Archive/Legacy/2018-06-22.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2018-06-22.txt rename to forge-gui/res/formats/Archive/Legacy/2018-06-22.txt index 645aecf94ec..91133d0d544 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2018-06-22.txt +++ b/forge-gui/res/formats/Archive/Legacy/2018-06-22.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (GS1) -Type:Historic +Type:Archive Subtype:Legacy Effective:2018-06-22 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2018-07-06.txt b/forge-gui/res/formats/Archive/Legacy/2018-07-06.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2018-07-06.txt rename to forge-gui/res/formats/Archive/Legacy/2018-07-06.txt index 0074bdb6d20..d9055a26b8e 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2018-07-06.txt +++ b/forge-gui/res/formats/Archive/Legacy/2018-07-06.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2018-07-06) -Type:Historic +Type:Archive Subtype:Legacy Effective:2018-07-06 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2018-07-13.txt b/forge-gui/res/formats/Archive/Legacy/2018-07-13.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2018-07-13.txt rename to forge-gui/res/formats/Archive/Legacy/2018-07-13.txt index 1b3ec6dd86e..4d15e9c8bf3 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2018-07-13.txt +++ b/forge-gui/res/formats/Archive/Legacy/2018-07-13.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (M19) -Type:Historic +Type:Archive Subtype:Legacy Effective:2018-07-13 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2018-08-09.txt b/forge-gui/res/formats/Archive/Legacy/2018-08-09.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2018-08-09.txt rename to forge-gui/res/formats/Archive/Legacy/2018-08-09.txt index dd42ecef6a8..a6c93c57ca4 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2018-08-09.txt +++ b/forge-gui/res/formats/Archive/Legacy/2018-08-09.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (C18) -Type:Historic +Type:Archive Subtype:Legacy Effective:2018-08-09 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2018-10-05.txt b/forge-gui/res/formats/Archive/Legacy/2018-10-05.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2018-10-05.txt rename to forge-gui/res/formats/Archive/Legacy/2018-10-05.txt index 210faa7f378..02f58a5ab7b 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2018-10-05.txt +++ b/forge-gui/res/formats/Archive/Legacy/2018-10-05.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (GRN) -Type:Historic +Type:Archive Subtype:Legacy Effective:2018-10-05 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2018-11-02.txt b/forge-gui/res/formats/Archive/Legacy/2018-11-02.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2018-11-02.txt rename to forge-gui/res/formats/Archive/Legacy/2018-11-02.txt index 7a72b43748a..6fe3c5abd7c 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2018-11-02.txt +++ b/forge-gui/res/formats/Archive/Legacy/2018-11-02.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (GK1) -Type:Historic +Type:Archive Subtype:Legacy Effective:2018-11-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2018-11-16.txt b/forge-gui/res/formats/Archive/Legacy/2018-11-16.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2018-11-16.txt rename to forge-gui/res/formats/Archive/Legacy/2018-11-16.txt index bd71fba1b8d..d9c23581b52 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2018-11-16.txt +++ b/forge-gui/res/formats/Archive/Legacy/2018-11-16.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (G18) -Type:Historic +Type:Archive Subtype:Legacy Effective:2018-11-16 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2018-12-07.txt b/forge-gui/res/formats/Archive/Legacy/2018-12-07.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2018-12-07.txt rename to forge-gui/res/formats/Archive/Legacy/2018-12-07.txt index b79faf4ae6a..743c8ecd69d 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2018-12-07.txt +++ b/forge-gui/res/formats/Archive/Legacy/2018-12-07.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (UMA) -Type:Historic +Type:Archive Subtype:Legacy Effective:2018-12-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2019-01-25.txt b/forge-gui/res/formats/Archive/Legacy/2019-01-25.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2019-01-25.txt rename to forge-gui/res/formats/Archive/Legacy/2019-01-25.txt index 4ea75e6f04e..a64e10aa457 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2019-01-25.txt +++ b/forge-gui/res/formats/Archive/Legacy/2019-01-25.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (RNA) -Type:Historic +Type:Archive Subtype:Legacy Effective:2019-01-25 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2019-02-15.txt b/forge-gui/res/formats/Archive/Legacy/2019-02-15.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2019-02-15.txt rename to forge-gui/res/formats/Archive/Legacy/2019-02-15.txt index 11415960ef8..08c749e7044 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2019-02-15.txt +++ b/forge-gui/res/formats/Archive/Legacy/2019-02-15.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (GK2) -Type:Historic +Type:Archive Subtype:Legacy Effective:2019-02-15 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2019-05-03.txt b/forge-gui/res/formats/Archive/Legacy/2019-05-03.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2019-05-03.txt rename to forge-gui/res/formats/Archive/Legacy/2019-05-03.txt index 334f43f6fe0..4437ab947dd 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2019-05-03.txt +++ b/forge-gui/res/formats/Archive/Legacy/2019-05-03.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (WAR) -Type:Historic +Type:Archive Subtype:Legacy Effective:2019-05-03 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2019-06-14.txt b/forge-gui/res/formats/Archive/Legacy/2019-06-14.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2019-06-14.txt rename to forge-gui/res/formats/Archive/Legacy/2019-06-14.txt index 8e0c7f8d071..5dbd43bd3bd 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2019-06-14.txt +++ b/forge-gui/res/formats/Archive/Legacy/2019-06-14.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (MH1) -Type:Historic +Type:Archive Subtype:Legacy Effective:2019-06-14 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2019-06-28.txt b/forge-gui/res/formats/Archive/Legacy/2019-06-28.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2019-06-28.txt rename to forge-gui/res/formats/Archive/Legacy/2019-06-28.txt index 6812f042141..ecc89f70110 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2019-06-28.txt +++ b/forge-gui/res/formats/Archive/Legacy/2019-06-28.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (SS2) -Type:Historic +Type:Archive Subtype:Legacy Effective:2019-06-28 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2019-07-12.txt b/forge-gui/res/formats/Archive/Legacy/2019-07-12.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2019-07-12.txt rename to forge-gui/res/formats/Archive/Legacy/2019-07-12.txt index 2c27d5f2ac1..b67da30306d 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2019-07-12.txt +++ b/forge-gui/res/formats/Archive/Legacy/2019-07-12.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (M20) -Type:Historic +Type:Archive Subtype:Legacy Effective:2019-07-12 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2019-08-23.txt b/forge-gui/res/formats/Archive/Legacy/2019-08-23.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2019-08-23.txt rename to forge-gui/res/formats/Archive/Legacy/2019-08-23.txt index 27fa3fc3c08..c64bb3b22bc 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2019-08-23.txt +++ b/forge-gui/res/formats/Archive/Legacy/2019-08-23.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (C19) -Type:Historic +Type:Archive Subtype:Legacy Effective:2019-08-23 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2019-10-04.txt b/forge-gui/res/formats/Archive/Legacy/2019-10-04.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2019-10-04.txt rename to forge-gui/res/formats/Archive/Legacy/2019-10-04.txt index 90e2bf61748..a66beb49db7 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2019-10-04.txt +++ b/forge-gui/res/formats/Archive/Legacy/2019-10-04.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (ELD) -Type:Historic +Type:Archive Subtype:Legacy Effective:2019-10-04 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2019-11-07.txt b/forge-gui/res/formats/Archive/Legacy/2019-11-07.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2019-11-07.txt rename to forge-gui/res/formats/Archive/Legacy/2019-11-07.txt index 80dd94f29f1..52aaf74c7ac 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2019-11-07.txt +++ b/forge-gui/res/formats/Archive/Legacy/2019-11-07.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (MB1) -Type:Historic +Type:Archive Subtype:Legacy Effective:2019-11-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2019-11-15.txt b/forge-gui/res/formats/Archive/Legacy/2019-11-15.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2019-11-15.txt rename to forge-gui/res/formats/Archive/Legacy/2019-11-15.txt index ee14e5eaf65..03eff931861 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2019-11-15.txt +++ b/forge-gui/res/formats/Archive/Legacy/2019-11-15.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (GN2) -Type:Historic +Type:Archive Subtype:Legacy Effective:2019-11-15 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2019-11-22.txt b/forge-gui/res/formats/Archive/Legacy/2019-11-22.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2019-11-22.txt rename to forge-gui/res/formats/Archive/Legacy/2019-11-22.txt index 1871ea30638..077027b293b 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2019-11-22.txt +++ b/forge-gui/res/formats/Archive/Legacy/2019-11-22.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2019-11-22) -Type:Historic +Type:Archive Subtype:Legacy Effective:2019-11-22 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2020-01-24.txt b/forge-gui/res/formats/Archive/Legacy/2020-01-24.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2020-01-24.txt rename to forge-gui/res/formats/Archive/Legacy/2020-01-24.txt index 8ec3ce52c5d..149ffb372e0 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2020-01-24.txt +++ b/forge-gui/res/formats/Archive/Legacy/2020-01-24.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (THB) -Type:Historic +Type:Archive Subtype:Legacy Effective:2020-01-24 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2020-03-10.txt b/forge-gui/res/formats/Archive/Legacy/2020-03-10.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2020-03-10.txt rename to forge-gui/res/formats/Archive/Legacy/2020-03-10.txt index a53bea8085f..dcd197237fa 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2020-03-10.txt +++ b/forge-gui/res/formats/Archive/Legacy/2020-03-10.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2020-03-10) -Type:Historic +Type:Archive Subtype:Legacy Effective:2020-03-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2020-04-24.txt b/forge-gui/res/formats/Archive/Legacy/2020-04-24.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2020-04-24.txt rename to forge-gui/res/formats/Archive/Legacy/2020-04-24.txt index b404f751fa3..4845eb16136 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2020-04-24.txt +++ b/forge-gui/res/formats/Archive/Legacy/2020-04-24.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (IKO) -Type:Historic +Type:Archive Subtype:Legacy Effective:2020-04-24 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2020-05-18.txt b/forge-gui/res/formats/Archive/Legacy/2020-05-18.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2020-05-18.txt rename to forge-gui/res/formats/Archive/Legacy/2020-05-18.txt index 7b3de647310..e9ba054e6af 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2020-05-18.txt +++ b/forge-gui/res/formats/Archive/Legacy/2020-05-18.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2020-05-18) -Type:Historic +Type:Archive Subtype:Legacy Effective:2020-05-18 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2020-06-10.txt b/forge-gui/res/formats/Archive/Legacy/2020-06-10.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2020-06-10.txt rename to forge-gui/res/formats/Archive/Legacy/2020-06-10.txt index 2bd836c7852..996760371e3 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2020-06-10.txt +++ b/forge-gui/res/formats/Archive/Legacy/2020-06-10.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2020-06-10) -Type:Historic +Type:Archive Subtype:Legacy Effective:2020-06-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2020-06-26.txt b/forge-gui/res/formats/Archive/Legacy/2020-06-26.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2020-06-26.txt rename to forge-gui/res/formats/Archive/Legacy/2020-06-26.txt index 167c9382034..ccadfa70933 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2020-06-26.txt +++ b/forge-gui/res/formats/Archive/Legacy/2020-06-26.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (SS3) -Type:Historic +Type:Archive Subtype:Legacy Effective:2020-06-26 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2020-07-03.txt b/forge-gui/res/formats/Archive/Legacy/2020-07-03.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2020-07-03.txt rename to forge-gui/res/formats/Archive/Legacy/2020-07-03.txt index ee5af0afb97..81c73fad05e 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2020-07-03.txt +++ b/forge-gui/res/formats/Archive/Legacy/2020-07-03.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (M21) -Type:Historic +Type:Archive Subtype:Legacy Effective:2020-07-03 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2020-07-17.txt b/forge-gui/res/formats/Archive/Legacy/2020-07-17.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2020-07-17.txt rename to forge-gui/res/formats/Archive/Legacy/2020-07-17.txt index 94ceb5e0c93..1dd1a3b950f 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2020-07-17.txt +++ b/forge-gui/res/formats/Archive/Legacy/2020-07-17.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (JMP) -Type:Historic +Type:Archive Subtype:Legacy Effective:2020-07-17 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2020-08-07.txt b/forge-gui/res/formats/Archive/Legacy/2020-08-07.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2020-08-07.txt rename to forge-gui/res/formats/Archive/Legacy/2020-08-07.txt index 0162e301883..9ca8716898f 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2020-08-07.txt +++ b/forge-gui/res/formats/Archive/Legacy/2020-08-07.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2XM) -Type:Historic +Type:Archive Subtype:Legacy Effective:2020-08-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2020-09-25.txt b/forge-gui/res/formats/Archive/Legacy/2020-09-25.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2020-09-25.txt rename to forge-gui/res/formats/Archive/Legacy/2020-09-25.txt index 027fd632e84..2c698b10620 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2020-09-25.txt +++ b/forge-gui/res/formats/Archive/Legacy/2020-09-25.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (ZNR) -Type:Historic +Type:Archive Subtype:Legacy Effective:2020-09-25 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2020-10-04.txt b/forge-gui/res/formats/Archive/Legacy/2020-10-04.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2020-10-04.txt rename to forge-gui/res/formats/Archive/Legacy/2020-10-04.txt index a07f1d01da8..e6764d88850 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2020-10-04.txt +++ b/forge-gui/res/formats/Archive/Legacy/2020-10-04.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2020-10-04) -Type:Historic +Type:Archive Subtype:Legacy Effective:2020-10-04 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2020-11-20.txt b/forge-gui/res/formats/Archive/Legacy/2020-11-20.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2020-11-20.txt rename to forge-gui/res/formats/Archive/Legacy/2020-11-20.txt index 5a618d7cb5c..3df00e34f9f 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2020-11-20.txt +++ b/forge-gui/res/formats/Archive/Legacy/2020-11-20.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (CMR) -Type:Historic +Type:Archive Subtype:Legacy Effective:2020-11-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2020-12-04.txt b/forge-gui/res/formats/Archive/Legacy/2020-12-04.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2020-12-04.txt rename to forge-gui/res/formats/Archive/Legacy/2020-12-04.txt index df6db192f2f..aaa6ff3bcda 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2020-12-04.txt +++ b/forge-gui/res/formats/Archive/Legacy/2020-12-04.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (CC1) -Type:Historic +Type:Archive Subtype:Legacy Effective:2020-12-04 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2021-02-05.txt b/forge-gui/res/formats/Archive/Legacy/2021-02-05.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2021-02-05.txt rename to forge-gui/res/formats/Archive/Legacy/2021-02-05.txt index 2cfc52412c4..ec0ad1fe85c 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2021-02-05.txt +++ b/forge-gui/res/formats/Archive/Legacy/2021-02-05.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (KHM) -Type:Historic +Type:Archive Subtype:Legacy Effective:2021-02-05 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2021-02-15.txt b/forge-gui/res/formats/Archive/Legacy/2021-02-15.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2021-02-15.txt rename to forge-gui/res/formats/Archive/Legacy/2021-02-15.txt index 076029dfd8d..928b35d5113 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2021-02-15.txt +++ b/forge-gui/res/formats/Archive/Legacy/2021-02-15.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2021-02-15) -Type:Historic +Type:Archive Subtype:Legacy Effective:2021-02-15 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2021-03-19.txt b/forge-gui/res/formats/Archive/Legacy/2021-03-19.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2021-03-19.txt rename to forge-gui/res/formats/Archive/Legacy/2021-03-19.txt index 63bfe180d52..cdf8815842f 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2021-03-19.txt +++ b/forge-gui/res/formats/Archive/Legacy/2021-03-19.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (TSR) -Type:Historic +Type:Archive Subtype:Legacy Effective:2021-03-19 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2021-04-23.txt b/forge-gui/res/formats/Archive/Legacy/2021-04-23.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2021-04-23.txt rename to forge-gui/res/formats/Archive/Legacy/2021-04-23.txt index 8e789cb158c..35db47a91a3 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2021-04-23.txt +++ b/forge-gui/res/formats/Archive/Legacy/2021-04-23.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (STX) -Type:Historic +Type:Archive Subtype:Legacy Effective:2021-04-23 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2021-06-18.txt b/forge-gui/res/formats/Archive/Legacy/2021-06-18.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2021-06-18.txt rename to forge-gui/res/formats/Archive/Legacy/2021-06-18.txt index 8e970c6c8de..dd5d61584b7 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2021-06-18.txt +++ b/forge-gui/res/formats/Archive/Legacy/2021-06-18.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (MH2) -Type:Historic +Type:Archive Subtype:Legacy Effective:2021-06-18 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2021-07-23.txt b/forge-gui/res/formats/Archive/Legacy/2021-07-23.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2021-07-23.txt rename to forge-gui/res/formats/Archive/Legacy/2021-07-23.txt index 67be5c3bda3..d7d6a96cb7c 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2021-07-23.txt +++ b/forge-gui/res/formats/Archive/Legacy/2021-07-23.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (AFR) -Type:Historic +Type:Archive Subtype:Legacy Effective:2021-07-23 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2021-09-24.txt b/forge-gui/res/formats/Archive/Legacy/2021-09-24.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2021-09-24.txt rename to forge-gui/res/formats/Archive/Legacy/2021-09-24.txt index cb836c1bfbd..ff98a4c172b 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2021-09-24.txt +++ b/forge-gui/res/formats/Archive/Legacy/2021-09-24.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (MID) -Type:Historic +Type:Archive Subtype:Legacy Effective:2021-09-24 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC, MID, MIC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2021-10-18.txt b/forge-gui/res/formats/Archive/Legacy/2021-10-18.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2021-10-18.txt rename to forge-gui/res/formats/Archive/Legacy/2021-10-18.txt index cc7c8e0dd07..2b13d269000 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2021-10-18.txt +++ b/forge-gui/res/formats/Archive/Legacy/2021-10-18.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2021-10-18) -Type:Historic +Type:Archive Subtype:Legacy Effective:2021-10-18 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC, MID, MIC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2021-11-19.txt b/forge-gui/res/formats/Archive/Legacy/2021-11-19.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2021-11-19.txt rename to forge-gui/res/formats/Archive/Legacy/2021-11-19.txt index 093658f89c7..717764455c7 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2021-11-19.txt +++ b/forge-gui/res/formats/Archive/Legacy/2021-11-19.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (VOW) -Type:Historic +Type:Archive Subtype:Legacy Effective:2021-11-19 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC, MID, MIC, VOW, VOC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2022-01-25.txt b/forge-gui/res/formats/Archive/Legacy/2022-01-25.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2022-01-25.txt rename to forge-gui/res/formats/Archive/Legacy/2022-01-25.txt index 241bb4c5730..70368b5bec7 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2022-01-25.txt +++ b/forge-gui/res/formats/Archive/Legacy/2022-01-25.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2022-01-25) -Type:Historic +Type:Archive Subtype:Legacy Effective:2022-01-25 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC, MID, MIC, VOW, VOC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2022-01-28.txt b/forge-gui/res/formats/Archive/Legacy/2022-01-28.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2022-01-28.txt rename to forge-gui/res/formats/Archive/Legacy/2022-01-28.txt index da24dcc459d..44c3618ea5e 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2022-01-28.txt +++ b/forge-gui/res/formats/Archive/Legacy/2022-01-28.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (DBL) -Type:Historic +Type:Archive Subtype:Legacy Effective:2022-01-28 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC, MID, MIC, VOW, VOC, DBL, CC2 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2022-02-17.txt b/forge-gui/res/formats/Archive/Legacy/2022-02-17.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2022-02-17.txt rename to forge-gui/res/formats/Archive/Legacy/2022-02-17.txt index fb7fcd4c237..594f141b97d 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2022-02-17.txt +++ b/forge-gui/res/formats/Archive/Legacy/2022-02-17.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (2022-02-17) -Type:Historic +Type:Archive Subtype:Legacy Effective:2022-02-17 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC, MID, MIC, VOW, VOC, DBL, CC2 diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2022-02-18.txt b/forge-gui/res/formats/Archive/Legacy/2022-02-18.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2022-02-18.txt rename to forge-gui/res/formats/Archive/Legacy/2022-02-18.txt index 3a77acee1ba..c7ff6892360 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2022-02-18.txt +++ b/forge-gui/res/formats/Archive/Legacy/2022-02-18.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (NEO) -Type:Historic +Type:Archive Subtype:Legacy Effective:2022-02-18 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC, MID, MIC, VOW, VOC, DBL, CC2, NEO, NEC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2022-04-29.txt b/forge-gui/res/formats/Archive/Legacy/2022-04-29.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Legacy/2022-04-29.txt rename to forge-gui/res/formats/Archive/Legacy/2022-04-29.txt index d11d14c3bad..97b22ab4db1 100644 --- a/forge-gui/res/formats/Historic/DCI/Legacy/2022-04-29.txt +++ b/forge-gui/res/formats/Archive/Legacy/2022-04-29.txt @@ -1,6 +1,6 @@ [format] Name:Legacy (SNC) -Type:Historic +Type:Archive Subtype:Legacy Effective:2022-04-29 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC, MID, MIC, VOW, VOC, DBL, CC2, NEO, NEC, SNC, NCC diff --git a/forge-gui/res/formats/Historic/DCI/Legacy/2022-06-10.txt b/forge-gui/res/formats/Archive/Legacy/2022-06-10.txt similarity index 100% rename from forge-gui/res/formats/Historic/DCI/Legacy/2022-06-10.txt rename to forge-gui/res/formats/Archive/Legacy/2022-06-10.txt diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2011-05-19.txt b/forge-gui/res/formats/Archive/Modern/2011-05-19.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Modern/2011-05-19.txt rename to forge-gui/res/formats/Archive/Modern/2011-05-19.txt index 43b5d0a0615..f52d8805f40 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2011-05-19.txt +++ b/forge-gui/res/formats/Archive/Modern/2011-05-19.txt @@ -1,6 +1,6 @@ [format] Name:Modern (2011-05-19) -Type:Historic +Type:Archive Subtype:Modern Effective:2011-05-19 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2011-07-15.txt b/forge-gui/res/formats/Archive/Modern/2011-07-15.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Modern/2011-07-15.txt rename to forge-gui/res/formats/Archive/Modern/2011-07-15.txt index 5fa7de06a10..1c2bcc6a50e 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2011-07-15.txt +++ b/forge-gui/res/formats/Archive/Modern/2011-07-15.txt @@ -1,6 +1,6 @@ [format] Name:Modern (M12) -Type:Historic +Type:Archive Subtype:Modern Effective:2011-07-15 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2011-08-12.txt b/forge-gui/res/formats/Archive/Modern/2011-08-12.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Modern/2011-08-12.txt rename to forge-gui/res/formats/Archive/Modern/2011-08-12.txt index 749ad8519a3..6865473dba5 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2011-08-12.txt +++ b/forge-gui/res/formats/Archive/Modern/2011-08-12.txt @@ -1,6 +1,6 @@ [format] Name:Modern (2011-08-12) -Type:Historic +Type:Archive Subtype:Modern Effective:2011-08-12 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2011-09-30.txt b/forge-gui/res/formats/Archive/Modern/2011-09-30.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Modern/2011-09-30.txt rename to forge-gui/res/formats/Archive/Modern/2011-09-30.txt index d58c31c502c..83b9673f3a3 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2011-09-30.txt +++ b/forge-gui/res/formats/Archive/Modern/2011-09-30.txt @@ -1,6 +1,6 @@ [format] Name:Modern (ISD) -Type:Historic +Type:Archive Subtype:Modern Effective:2011-09-30 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2011-10-01.txt b/forge-gui/res/formats/Archive/Modern/2011-10-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2011-10-01.txt rename to forge-gui/res/formats/Archive/Modern/2011-10-01.txt index cd6f2d88237..366d0274498 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2011-10-01.txt +++ b/forge-gui/res/formats/Archive/Modern/2011-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Modern (2011-10-01) -Type:Historic +Type:Archive Subtype:Modern Effective:2011-10-01 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2012-01-01.txt b/forge-gui/res/formats/Archive/Modern/2012-01-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2012-01-01.txt rename to forge-gui/res/formats/Archive/Modern/2012-01-01.txt index e636c8fc8d6..84d88bb5d65 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2012-01-01.txt +++ b/forge-gui/res/formats/Archive/Modern/2012-01-01.txt @@ -1,6 +1,6 @@ [format] Name:Modern (2012-01-01) -Type:Historic +Type:Archive Subtype:Modern Effective:2012-01-01 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2012-02-03.txt b/forge-gui/res/formats/Archive/Modern/2012-02-03.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2012-02-03.txt rename to forge-gui/res/formats/Archive/Modern/2012-02-03.txt index e8f2e180c98..e65667ba750 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2012-02-03.txt +++ b/forge-gui/res/formats/Archive/Modern/2012-02-03.txt @@ -1,6 +1,6 @@ [format] Name:Modern (DKA) -Type:Historic +Type:Archive Subtype:Modern Effective:2012-02-03 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2012-05-04.txt b/forge-gui/res/formats/Archive/Modern/2012-05-04.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2012-05-04.txt rename to forge-gui/res/formats/Archive/Modern/2012-05-04.txt index 94931243f6e..fd4db347319 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2012-05-04.txt +++ b/forge-gui/res/formats/Archive/Modern/2012-05-04.txt @@ -1,6 +1,6 @@ [format] Name:Modern (AVR) -Type:Historic +Type:Archive Subtype:Modern Effective:2012-05-04 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2012-07-13.txt b/forge-gui/res/formats/Archive/Modern/2012-07-13.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2012-07-13.txt rename to forge-gui/res/formats/Archive/Modern/2012-07-13.txt index 30b89419b1d..cc56349f8b1 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2012-07-13.txt +++ b/forge-gui/res/formats/Archive/Modern/2012-07-13.txt @@ -1,6 +1,6 @@ [format] Name:Modern (M13) -Type:Historic +Type:Archive Subtype:Modern Effective:2012-07-13 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2012-10-01.txt b/forge-gui/res/formats/Archive/Modern/2012-10-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2012-10-01.txt rename to forge-gui/res/formats/Archive/Modern/2012-10-01.txt index e044b62054a..ca6ba0879e6 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2012-10-01.txt +++ b/forge-gui/res/formats/Archive/Modern/2012-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Modern (2012-10-01) -Type:Historic +Type:Archive Subtype:Modern Effective:2012-10-01 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2012-10-05.txt b/forge-gui/res/formats/Archive/Modern/2012-10-05.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2012-10-05.txt rename to forge-gui/res/formats/Archive/Modern/2012-10-05.txt index 5f22f5a1c9d..70f98aca81f 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2012-10-05.txt +++ b/forge-gui/res/formats/Archive/Modern/2012-10-05.txt @@ -1,6 +1,6 @@ [format] Name:Modern (RTR) -Type:Historic +Type:Archive Subtype:Modern Effective:2012-10-05 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2013-02-01.txt b/forge-gui/res/formats/Archive/Modern/2013-02-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2013-02-01.txt rename to forge-gui/res/formats/Archive/Modern/2013-02-01.txt index 75d7129e1d2..2282894381b 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2013-02-01.txt +++ b/forge-gui/res/formats/Archive/Modern/2013-02-01.txt @@ -1,6 +1,6 @@ [format] Name:Modern (GTC) -Type:Historic +Type:Archive Subtype:Modern Effective:2013-02-01 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2013-05-03.txt b/forge-gui/res/formats/Archive/Modern/2013-05-03.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2013-05-03.txt rename to forge-gui/res/formats/Archive/Modern/2013-05-03.txt index 9d3da5a6f62..fb537fa464e 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2013-05-03.txt +++ b/forge-gui/res/formats/Archive/Modern/2013-05-03.txt @@ -1,6 +1,6 @@ [format] Name:Modern (DGM) -Type:Historic +Type:Archive Subtype:Modern Effective:2013-05-03 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2013-06-07.txt b/forge-gui/res/formats/Archive/Modern/2013-06-07.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2013-06-07.txt rename to forge-gui/res/formats/Archive/Modern/2013-06-07.txt index f8e9ae66c28..7a9f5dd6274 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2013-06-07.txt +++ b/forge-gui/res/formats/Archive/Modern/2013-06-07.txt @@ -1,6 +1,6 @@ [format] Name:Modern (MMA) -Type:Historic +Type:Archive Subtype:Modern Effective:2013-06-07 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2013-07-19.txt b/forge-gui/res/formats/Archive/Modern/2013-07-19.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2013-07-19.txt rename to forge-gui/res/formats/Archive/Modern/2013-07-19.txt index 6d2b7c59877..d48ba43916a 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2013-07-19.txt +++ b/forge-gui/res/formats/Archive/Modern/2013-07-19.txt @@ -1,6 +1,6 @@ [format] Name:Modern (M14) -Type:Historic +Type:Archive Subtype:Modern Effective:2013-07-19 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2013-09-27.txt b/forge-gui/res/formats/Archive/Modern/2013-09-27.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2013-09-27.txt rename to forge-gui/res/formats/Archive/Modern/2013-09-27.txt index cdb117dc0e5..5da70cac3f7 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2013-09-27.txt +++ b/forge-gui/res/formats/Archive/Modern/2013-09-27.txt @@ -1,6 +1,6 @@ [format] Name:Modern (THS) -Type:Historic +Type:Archive Subtype:Modern Effective:2013-09-27 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2014-02-07.txt b/forge-gui/res/formats/Archive/Modern/2014-02-07.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2014-02-07.txt rename to forge-gui/res/formats/Archive/Modern/2014-02-07.txt index 5d6a638045b..0a7bfb0b2b2 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2014-02-07.txt +++ b/forge-gui/res/formats/Archive/Modern/2014-02-07.txt @@ -1,6 +1,6 @@ [format] Name:Modern (BNG) -Type:Historic +Type:Archive Subtype:Modern Effective:2014-02-07 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2014-05-02.txt b/forge-gui/res/formats/Archive/Modern/2014-05-02.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2014-05-02.txt rename to forge-gui/res/formats/Archive/Modern/2014-05-02.txt index 2a0dba8a7f4..1ef2eebc5dc 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2014-05-02.txt +++ b/forge-gui/res/formats/Archive/Modern/2014-05-02.txt @@ -1,6 +1,6 @@ [format] Name:Modern (JOU) -Type:Historic +Type:Archive Subtype:Modern Effective:2014-05-02 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2014-05-30.txt b/forge-gui/res/formats/Archive/Modern/2014-05-30.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2014-05-30.txt rename to forge-gui/res/formats/Archive/Modern/2014-05-30.txt index 30fe5958561..d86d70c1805 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2014-05-30.txt +++ b/forge-gui/res/formats/Archive/Modern/2014-05-30.txt @@ -1,6 +1,6 @@ [format] Name:Modern (MD1) -Type:Historic +Type:Archive Subtype:Modern Effective:2014-05-30 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2014-07-18.txt b/forge-gui/res/formats/Archive/Modern/2014-07-18.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2014-07-18.txt rename to forge-gui/res/formats/Archive/Modern/2014-07-18.txt index ec892a81868..9e2579a62b9 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2014-07-18.txt +++ b/forge-gui/res/formats/Archive/Modern/2014-07-18.txt @@ -1,6 +1,6 @@ [format] Name:Modern (M15) -Type:Historic +Type:Archive Subtype:Modern Effective:2014-07-18 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2014-09-26.txt b/forge-gui/res/formats/Archive/Modern/2014-09-26.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2014-09-26.txt rename to forge-gui/res/formats/Archive/Modern/2014-09-26.txt index 60dc346c16e..b25f176f379 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2014-09-26.txt +++ b/forge-gui/res/formats/Archive/Modern/2014-09-26.txt @@ -1,6 +1,6 @@ [format] Name:Modern (KTK) -Type:Historic +Type:Archive Subtype:Modern Effective:2014-09-26 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2015-01-23.txt b/forge-gui/res/formats/Archive/Modern/2015-01-23.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2015-01-23.txt rename to forge-gui/res/formats/Archive/Modern/2015-01-23.txt index b83e78e785a..7670f0ea926 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2015-01-23.txt +++ b/forge-gui/res/formats/Archive/Modern/2015-01-23.txt @@ -1,6 +1,6 @@ [format] Name:Modern (FRF) -Type:Historic +Type:Archive Subtype:Modern Effective:2015-01-23 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2015-03-27.txt b/forge-gui/res/formats/Archive/Modern/2015-03-27.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2015-03-27.txt rename to forge-gui/res/formats/Archive/Modern/2015-03-27.txt index bb2a7308856..e72e969967f 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2015-03-27.txt +++ b/forge-gui/res/formats/Archive/Modern/2015-03-27.txt @@ -1,6 +1,6 @@ [format] Name:Modern (DTK) -Type:Historic +Type:Archive Subtype:Modern Effective:2015-03-27 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2015-05-22.txt b/forge-gui/res/formats/Archive/Modern/2015-05-22.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2015-05-22.txt rename to forge-gui/res/formats/Archive/Modern/2015-05-22.txt index 9271d4e8c17..5e012f6f57c 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2015-05-22.txt +++ b/forge-gui/res/formats/Archive/Modern/2015-05-22.txt @@ -1,6 +1,6 @@ [format] Name:Modern (MM2) -Type:Historic +Type:Archive Subtype:Modern Effective:2015-05-22 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2015-07-17.txt b/forge-gui/res/formats/Archive/Modern/2015-07-17.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2015-07-17.txt rename to forge-gui/res/formats/Archive/Modern/2015-07-17.txt index e6f225ae9a3..e8318524d23 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2015-07-17.txt +++ b/forge-gui/res/formats/Archive/Modern/2015-07-17.txt @@ -1,6 +1,6 @@ [format] Name:Modern (ORI) -Type:Historic +Type:Archive Subtype:Modern Effective:2015-07-17 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2015-10-02.txt b/forge-gui/res/formats/Archive/Modern/2015-10-02.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2015-10-02.txt rename to forge-gui/res/formats/Archive/Modern/2015-10-02.txt index c9317e633c0..44cc73b4914 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2015-10-02.txt +++ b/forge-gui/res/formats/Archive/Modern/2015-10-02.txt @@ -1,6 +1,6 @@ [format] Name:Modern (BFZ) -Type:Historic +Type:Archive Subtype:Modern Effective:2015-10-02 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2016-01-22.txt b/forge-gui/res/formats/Archive/Modern/2016-01-22.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2016-01-22.txt rename to forge-gui/res/formats/Archive/Modern/2016-01-22.txt index 2bf2bde641a..a8d4a7865d0 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2016-01-22.txt +++ b/forge-gui/res/formats/Archive/Modern/2016-01-22.txt @@ -1,6 +1,6 @@ [format] Name:Modern (OGW) -Type:Historic +Type:Archive Subtype:Modern Effective:2016-01-22 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2016-04-08.txt b/forge-gui/res/formats/Archive/Modern/2016-04-08.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2016-04-08.txt rename to forge-gui/res/formats/Archive/Modern/2016-04-08.txt index 80f2652f95a..504004176a9 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2016-04-08.txt +++ b/forge-gui/res/formats/Archive/Modern/2016-04-08.txt @@ -1,6 +1,6 @@ [format] Name:Modern (SOI) -Type:Historic +Type:Archive Subtype:Modern Effective:2016-04-08 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2016-07-22.txt b/forge-gui/res/formats/Archive/Modern/2016-07-22.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2016-07-22.txt rename to forge-gui/res/formats/Archive/Modern/2016-07-22.txt index 1e882ce35cc..2169b82b0f5 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2016-07-22.txt +++ b/forge-gui/res/formats/Archive/Modern/2016-07-22.txt @@ -1,6 +1,6 @@ [format] Name:Modern (EMN) -Type:Historic +Type:Archive Subtype:Modern Effective:2016-07-22 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2016-09-30.txt b/forge-gui/res/formats/Archive/Modern/2016-09-30.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2016-09-30.txt rename to forge-gui/res/formats/Archive/Modern/2016-09-30.txt index 33b289ed3e3..aa9a970c3cc 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2016-09-30.txt +++ b/forge-gui/res/formats/Archive/Modern/2016-09-30.txt @@ -1,6 +1,6 @@ [format] Name:Modern (KLD) -Type:Historic +Type:Archive Subtype:Modern Effective:2016-09-30 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2017-01-20.txt b/forge-gui/res/formats/Archive/Modern/2017-01-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2017-01-20.txt rename to forge-gui/res/formats/Archive/Modern/2017-01-20.txt index e83c1f91058..7e192d878dc 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2017-01-20.txt +++ b/forge-gui/res/formats/Archive/Modern/2017-01-20.txt @@ -1,6 +1,6 @@ [format] Name:Modern (AER) -Type:Historic +Type:Archive Subtype:Modern Effective:2017-01-20 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2017-03-17.txt b/forge-gui/res/formats/Archive/Modern/2017-03-17.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2017-03-17.txt rename to forge-gui/res/formats/Archive/Modern/2017-03-17.txt index 2a4c1ad1cc8..a736252bc5f 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2017-03-17.txt +++ b/forge-gui/res/formats/Archive/Modern/2017-03-17.txt @@ -1,6 +1,6 @@ [format] Name:Modern (MM3) -Type:Historic +Type:Archive Subtype:Modern Effective:2017-03-17 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2017-04-15.txt b/forge-gui/res/formats/Archive/Modern/2017-04-15.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2017-04-15.txt rename to forge-gui/res/formats/Archive/Modern/2017-04-15.txt index 7ad635db1d3..e6eb6efd399 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2017-04-15.txt +++ b/forge-gui/res/formats/Archive/Modern/2017-04-15.txt @@ -1,6 +1,6 @@ [format] Name:Modern (W17) -Type:Historic +Type:Archive Subtype:Modern Effective:2017-04-15 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2017-04-28.txt b/forge-gui/res/formats/Archive/Modern/2017-04-28.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2017-04-28.txt rename to forge-gui/res/formats/Archive/Modern/2017-04-28.txt index 563c76dba1d..c7980430ac8 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2017-04-28.txt +++ b/forge-gui/res/formats/Archive/Modern/2017-04-28.txt @@ -1,6 +1,6 @@ [format] Name:Modern (AKH) -Type:Historic +Type:Archive Subtype:Modern Effective:2017-04-28 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2017-07-14.txt b/forge-gui/res/formats/Archive/Modern/2017-07-14.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2017-07-14.txt rename to forge-gui/res/formats/Archive/Modern/2017-07-14.txt index b6e4d0aff90..294dcdfd55f 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2017-07-14.txt +++ b/forge-gui/res/formats/Archive/Modern/2017-07-14.txt @@ -1,6 +1,6 @@ [format] Name:Modern (HOU) -Type:Historic +Type:Archive Subtype:Modern Effective:2017-07-14 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2017-09-29.txt b/forge-gui/res/formats/Archive/Modern/2017-09-29.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2017-09-29.txt rename to forge-gui/res/formats/Archive/Modern/2017-09-29.txt index d31de1783cc..a7a6d88cbdc 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2017-09-29.txt +++ b/forge-gui/res/formats/Archive/Modern/2017-09-29.txt @@ -1,6 +1,6 @@ [format] Name:Modern (XLN) -Type:Historic +Type:Archive Subtype:Modern Effective:2017-09-29 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2018-01-19.txt b/forge-gui/res/formats/Archive/Modern/2018-01-19.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2018-01-19.txt rename to forge-gui/res/formats/Archive/Modern/2018-01-19.txt index 660eaf82213..41662d689e9 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2018-01-19.txt +++ b/forge-gui/res/formats/Archive/Modern/2018-01-19.txt @@ -1,6 +1,6 @@ [format] Name:Modern (RIX) -Type:Historic +Type:Archive Subtype:Modern Effective:2018-01-19 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2018-02-19.txt b/forge-gui/res/formats/Archive/Modern/2018-02-19.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2018-02-19.txt rename to forge-gui/res/formats/Archive/Modern/2018-02-19.txt index f93977229cf..b1f9c5945b7 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2018-02-19.txt +++ b/forge-gui/res/formats/Archive/Modern/2018-02-19.txt @@ -1,6 +1,6 @@ [format] Name:Modern (2018-02-12) -Type:Historic +Type:Archive Subtype:Modern Effective:2018-02-12 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2018-04-27.txt b/forge-gui/res/formats/Archive/Modern/2018-04-27.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2018-04-27.txt rename to forge-gui/res/formats/Archive/Modern/2018-04-27.txt index 4c22e621a9f..c7df18491c2 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2018-04-27.txt +++ b/forge-gui/res/formats/Archive/Modern/2018-04-27.txt @@ -1,6 +1,6 @@ [format] Name:Modern (DOM) -Type:Historic +Type:Archive Subtype:Modern Effective:2018-04-27 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2018-07-13.txt b/forge-gui/res/formats/Archive/Modern/2018-07-13.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2018-07-13.txt rename to forge-gui/res/formats/Archive/Modern/2018-07-13.txt index b6eed3c475d..b2db301a0b3 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2018-07-13.txt +++ b/forge-gui/res/formats/Archive/Modern/2018-07-13.txt @@ -1,6 +1,6 @@ [format] Name:Modern (M19) -Type:Historic +Type:Archive Subtype:Modern Effective:2018-07-13 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2018-10-05.txt b/forge-gui/res/formats/Archive/Modern/2018-10-05.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2018-10-05.txt rename to forge-gui/res/formats/Archive/Modern/2018-10-05.txt index d9cd7b07d9d..749d1594de8 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2018-10-05.txt +++ b/forge-gui/res/formats/Archive/Modern/2018-10-05.txt @@ -1,6 +1,6 @@ [format] Name:Modern (GRN) -Type:Historic +Type:Archive Subtype:Modern Effective:2018-10-05 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2018-11-02.txt b/forge-gui/res/formats/Archive/Modern/2018-11-02.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2018-11-02.txt rename to forge-gui/res/formats/Archive/Modern/2018-11-02.txt index 96813436abb..ad8c557f6be 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2018-11-02.txt +++ b/forge-gui/res/formats/Archive/Modern/2018-11-02.txt @@ -1,6 +1,6 @@ [format] Name:Modern (GK1) -Type:Historic +Type:Archive Subtype:Modern Effective:2018-11-02 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2018-11-16.txt b/forge-gui/res/formats/Archive/Modern/2018-11-16.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2018-11-16.txt rename to forge-gui/res/formats/Archive/Modern/2018-11-16.txt index 40d94ff3831..8fd0aee0e40 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2018-11-16.txt +++ b/forge-gui/res/formats/Archive/Modern/2018-11-16.txt @@ -1,6 +1,6 @@ [format] Name:Modern (G18) -Type:Historic +Type:Archive Subtype:Modern Effective:2018-11-16 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2019-01-25.txt b/forge-gui/res/formats/Archive/Modern/2019-01-25.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2019-01-25.txt rename to forge-gui/res/formats/Archive/Modern/2019-01-25.txt index db580316807..594d02a9aa5 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2019-01-25.txt +++ b/forge-gui/res/formats/Archive/Modern/2019-01-25.txt @@ -1,6 +1,6 @@ [format] Name:Modern (RNA) -Type:Historic +Type:Archive Subtype:Modern Effective:2019-01-25 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2019-02-15.txt b/forge-gui/res/formats/Archive/Modern/2019-02-15.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2019-02-15.txt rename to forge-gui/res/formats/Archive/Modern/2019-02-15.txt index 80d1baafe3e..4b97add7871 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2019-02-15.txt +++ b/forge-gui/res/formats/Archive/Modern/2019-02-15.txt @@ -1,6 +1,6 @@ [format] Name:Modern (GK2) -Type:Historic +Type:Archive Subtype:Modern Effective:2019-02-15 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2019-05-03.txt b/forge-gui/res/formats/Archive/Modern/2019-05-03.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2019-05-03.txt rename to forge-gui/res/formats/Archive/Modern/2019-05-03.txt index 8a47f082d17..df4f717d648 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2019-05-03.txt +++ b/forge-gui/res/formats/Archive/Modern/2019-05-03.txt @@ -1,6 +1,6 @@ [format] Name:Modern (WAR) -Type:Historic +Type:Archive Subtype:Modern Effective:2019-05-03 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2019-06-14.txt b/forge-gui/res/formats/Archive/Modern/2019-06-14.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2019-06-14.txt rename to forge-gui/res/formats/Archive/Modern/2019-06-14.txt index f5523fd807c..16d49715246 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2019-06-14.txt +++ b/forge-gui/res/formats/Archive/Modern/2019-06-14.txt @@ -1,6 +1,6 @@ [format] Name:Modern (MH1) -Type:Historic +Type:Archive Subtype:Modern Effective:2019-06-14 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2019-07-12.txt b/forge-gui/res/formats/Archive/Modern/2019-07-12.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2019-07-12.txt rename to forge-gui/res/formats/Archive/Modern/2019-07-12.txt index 34eebe12db9..3008847a938 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2019-07-12.txt +++ b/forge-gui/res/formats/Archive/Modern/2019-07-12.txt @@ -1,6 +1,6 @@ [format] Name:Modern (M20) -Type:Historic +Type:Archive Subtype:Modern Effective:2019-07-12 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2019-08-30.txt b/forge-gui/res/formats/Archive/Modern/2019-08-30.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2019-08-30.txt rename to forge-gui/res/formats/Archive/Modern/2019-08-30.txt index fcf81863404..8a0eeab97b6 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2019-08-30.txt +++ b/forge-gui/res/formats/Archive/Modern/2019-08-30.txt @@ -1,6 +1,6 @@ [format] Name:Modern (2019-08-30) -Type:Historic +Type:Archive Subtype:Modern Effective:2019-08-30 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2019-10-04.txt b/forge-gui/res/formats/Archive/Modern/2019-10-04.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2019-10-04.txt rename to forge-gui/res/formats/Archive/Modern/2019-10-04.txt index 31a647d344b..a4b79a41862 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2019-10-04.txt +++ b/forge-gui/res/formats/Archive/Modern/2019-10-04.txt @@ -1,6 +1,6 @@ [format] Name:Modern (ELD) -Type:Historic +Type:Archive Subtype:Modern Effective:2019-10-04 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2020-01-14.txt b/forge-gui/res/formats/Archive/Modern/2020-01-14.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2020-01-14.txt rename to forge-gui/res/formats/Archive/Modern/2020-01-14.txt index ea02d1548e5..4f113b26497 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2020-01-14.txt +++ b/forge-gui/res/formats/Archive/Modern/2020-01-14.txt @@ -1,6 +1,6 @@ [format] Name:Modern (2020-01-14) -Type:Historic +Type:Archive Subtype:Modern Effective:2020-01-14 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2020-01-24.txt b/forge-gui/res/formats/Archive/Modern/2020-01-24.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2020-01-24.txt rename to forge-gui/res/formats/Archive/Modern/2020-01-24.txt index 52627f93a31..1878a53909b 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2020-01-24.txt +++ b/forge-gui/res/formats/Archive/Modern/2020-01-24.txt @@ -1,6 +1,6 @@ [format] Name:Modern (THB) -Type:Historic +Type:Archive Subtype:Modern Effective:2020-01-24 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2020-03-10.txt b/forge-gui/res/formats/Archive/Modern/2020-03-10.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2020-03-10.txt rename to forge-gui/res/formats/Archive/Modern/2020-03-10.txt index cd416250266..8bd857106a8 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2020-03-10.txt +++ b/forge-gui/res/formats/Archive/Modern/2020-03-10.txt @@ -1,6 +1,6 @@ [format] Name:Modern (2020-03-10) -Type:Historic +Type:Archive Subtype:Modern Effective:2020-03-10 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2020-04-24.txt b/forge-gui/res/formats/Archive/Modern/2020-04-24.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2020-04-24.txt rename to forge-gui/res/formats/Archive/Modern/2020-04-24.txt index afb100763e9..8618221faf0 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2020-04-24.txt +++ b/forge-gui/res/formats/Archive/Modern/2020-04-24.txt @@ -1,6 +1,6 @@ [format] Name:Modern (IKO) -Type:Historic +Type:Archive Subtype:Modern Effective:2020-04-24 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2020-07-03.txt b/forge-gui/res/formats/Archive/Modern/2020-07-03.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2020-07-03.txt rename to forge-gui/res/formats/Archive/Modern/2020-07-03.txt index 1faa2f96e71..87288cdfde3 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2020-07-03.txt +++ b/forge-gui/res/formats/Archive/Modern/2020-07-03.txt @@ -1,6 +1,6 @@ [format] Name:Modern (M21) -Type:Historic +Type:Archive Subtype:Modern Effective:2020-07-03 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO, M21 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2020-07-13.txt b/forge-gui/res/formats/Archive/Modern/2020-07-13.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2020-07-13.txt rename to forge-gui/res/formats/Archive/Modern/2020-07-13.txt index 84636ea502d..6c91ed37a32 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2020-07-13.txt +++ b/forge-gui/res/formats/Archive/Modern/2020-07-13.txt @@ -1,6 +1,6 @@ [format] Name:Modern (2020-07-13) -Type:Historic +Type:Archive Subtype:Modern Effective:2020-07-13 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO, M21 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2020-09-25.txt b/forge-gui/res/formats/Archive/Modern/2020-09-25.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2020-09-25.txt rename to forge-gui/res/formats/Archive/Modern/2020-09-25.txt index bec87e72e2a..3500c518a7c 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2020-09-25.txt +++ b/forge-gui/res/formats/Archive/Modern/2020-09-25.txt @@ -1,6 +1,6 @@ [format] Name:Modern (ZNR) -Type:Historic +Type:Archive Subtype:Modern Effective:2020-09-25 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO, M21, ZNR diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2021-02-05.txt b/forge-gui/res/formats/Archive/Modern/2021-02-05.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2021-02-05.txt rename to forge-gui/res/formats/Archive/Modern/2021-02-05.txt index 2f7bcafbd28..85676c34908 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2021-02-05.txt +++ b/forge-gui/res/formats/Archive/Modern/2021-02-05.txt @@ -1,6 +1,6 @@ [format] Name:Modern (KHM) -Type:Historic +Type:Archive Subtype:Modern Effective:2021-02-05 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO, M21, ZNR, KHM diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2021-02-15.txt b/forge-gui/res/formats/Archive/Modern/2021-02-15.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2021-02-15.txt rename to forge-gui/res/formats/Archive/Modern/2021-02-15.txt index d7c8a4e22e2..6378957b014 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2021-02-15.txt +++ b/forge-gui/res/formats/Archive/Modern/2021-02-15.txt @@ -1,6 +1,6 @@ [format] Name:Modern (2021-02-15) -Type:Historic +Type:Archive Subtype:Modern Effective:2021-02-15 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO, M21, ZNR, KHM diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2021-03-19.txt b/forge-gui/res/formats/Archive/Modern/2021-03-19.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2021-03-19.txt rename to forge-gui/res/formats/Archive/Modern/2021-03-19.txt index 2af422f84b3..6d87a50bf26 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2021-03-19.txt +++ b/forge-gui/res/formats/Archive/Modern/2021-03-19.txt @@ -1,6 +1,6 @@ [format] Name:Modern (TSR) -Type:Historic +Type:Archive Subtype:Modern Effective:2021-03-19 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO, M21, ZNR, KHM, TSR diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2021-04-23.txt b/forge-gui/res/formats/Archive/Modern/2021-04-23.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2021-04-23.txt rename to forge-gui/res/formats/Archive/Modern/2021-04-23.txt index 7cb68154c2e..07a541812df 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2021-04-23.txt +++ b/forge-gui/res/formats/Archive/Modern/2021-04-23.txt @@ -1,6 +1,6 @@ [format] Name:Modern (STX) -Type:Historic +Type:Archive Subtype:Modern Effective:2021-04-23 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO, M21, ZNR, KHM, TSR, STX diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2021-06-18.txt b/forge-gui/res/formats/Archive/Modern/2021-06-18.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2021-06-18.txt rename to forge-gui/res/formats/Archive/Modern/2021-06-18.txt index 79d89edd62c..842e45ba18a 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2021-06-18.txt +++ b/forge-gui/res/formats/Archive/Modern/2021-06-18.txt @@ -1,6 +1,6 @@ [format] Name:Modern (MH2) -Type:Historic +Type:Archive Subtype:Modern Effective:2021-06-18 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO, M21, ZNR, KHM, TSR, STX, MH2 diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2021-07-23.txt b/forge-gui/res/formats/Archive/Modern/2021-07-23.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2021-07-23.txt rename to forge-gui/res/formats/Archive/Modern/2021-07-23.txt index 95b4f881d1d..4d6fc2f8f9e 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2021-07-23.txt +++ b/forge-gui/res/formats/Archive/Modern/2021-07-23.txt @@ -1,6 +1,6 @@ [format] Name:Modern (AFR) -Type:Historic +Type:Archive Subtype:Modern Effective:2021-07-23 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO, M21, ZNR, KHM, TSR, STX, MH2, AFR diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2021-09-24.txt b/forge-gui/res/formats/Archive/Modern/2021-09-24.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2021-09-24.txt rename to forge-gui/res/formats/Archive/Modern/2021-09-24.txt index b17c33a0b4d..82a4e1a7990 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2021-09-24.txt +++ b/forge-gui/res/formats/Archive/Modern/2021-09-24.txt @@ -1,6 +1,6 @@ [format] Name:Modern (MID) -Type:Historic +Type:Archive Subtype:Modern Effective:2021-09-24 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO, M21, ZNR, KHM, TSR, STX, MH2, AFR, MID diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2021-11-19.txt b/forge-gui/res/formats/Archive/Modern/2021-11-19.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2021-11-19.txt rename to forge-gui/res/formats/Archive/Modern/2021-11-19.txt index 3f0a9487ed5..8296c57fca4 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2021-11-19.txt +++ b/forge-gui/res/formats/Archive/Modern/2021-11-19.txt @@ -1,6 +1,6 @@ [format] Name:Modern (VOW) -Type:Historic +Type:Archive Subtype:Modern Effective:2021-11-19 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO, M21, ZNR, KHM, TSR, STX, MH2, AFR, MID, VOW diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2022-01-28.txt b/forge-gui/res/formats/Archive/Modern/2022-01-28.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2022-01-28.txt rename to forge-gui/res/formats/Archive/Modern/2022-01-28.txt index 07ea623224e..4cbb370dc18 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2022-01-28.txt +++ b/forge-gui/res/formats/Archive/Modern/2022-01-28.txt @@ -1,6 +1,6 @@ [format] Name:Modern (DBL) -Type:Historic +Type:Archive Subtype:Modern Effective:2022-01-28 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO, M21, ZNR, KHM, TSR, STX, MH2, AFR, MID, VOW, DBL diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2022-02-18.txt b/forge-gui/res/formats/Archive/Modern/2022-02-18.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2022-02-18.txt rename to forge-gui/res/formats/Archive/Modern/2022-02-18.txt index 02e62aab756..e29d4c29a27 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2022-02-18.txt +++ b/forge-gui/res/formats/Archive/Modern/2022-02-18.txt @@ -1,6 +1,6 @@ [format] Name:Modern (NEO) -Type:Historic +Type:Archive Subtype:Modern Effective:2022-02-18 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO, M21, ZNR, KHM, TSR, STX, MH2, AFR, MID, VOW, DBL, NEO diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2022-03-07.txt b/forge-gui/res/formats/Archive/Modern/2022-03-07.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2022-03-07.txt rename to forge-gui/res/formats/Archive/Modern/2022-03-07.txt index e030cd4f6f3..cfb62b09e3c 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2022-03-07.txt +++ b/forge-gui/res/formats/Archive/Modern/2022-03-07.txt @@ -1,6 +1,6 @@ [format] Name:Modern (2022-03-07) -Type:Historic +Type:Archive Subtype:Modern Effective:2022-03-07 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO, M21, ZNR, KHM, TSR, STX, MH2, AFR, MID, VOW, DBL, NEO diff --git a/forge-gui/res/formats/Historic/DCI/Modern/2022-04-29.txt b/forge-gui/res/formats/Archive/Modern/2022-04-29.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Modern/2022-04-29.txt rename to forge-gui/res/formats/Archive/Modern/2022-04-29.txt index 049ca5efb9d..9616aaa7bc0 100644 --- a/forge-gui/res/formats/Historic/DCI/Modern/2022-04-29.txt +++ b/forge-gui/res/formats/Archive/Modern/2022-04-29.txt @@ -1,6 +1,6 @@ [format] Name:Modern (SNC) -Type:Historic +Type:Archive Subtype:Modern Effective:2022-04-29 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, DPA, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, MMA, M14, THS, BNG, JOU, MD1, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, MM3, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, GK1, G18, RNA, GK2, WAR, MH1, M20, ELD, THB, IKO, M21, ZNR, KHM, TSR, STX, MH2, AFR, MID, VOW, DBL, NEO, SNC diff --git a/forge-gui/res/formats/Historic/DCI/Pauper/2019-05-24.txt b/forge-gui/res/formats/Archive/Pauper/2019-05-24.txt similarity index 89% rename from forge-gui/res/formats/Historic/DCI/Pauper/2019-05-24.txt rename to forge-gui/res/formats/Archive/Pauper/2019-05-24.txt index b0d3d4d8c0c..c3d914ab95c 100644 --- a/forge-gui/res/formats/Historic/DCI/Pauper/2019-05-24.txt +++ b/forge-gui/res/formats/Archive/Pauper/2019-05-24.txt @@ -1,6 +1,6 @@ [format] Name:Pauper (2019-05-24) -Type:Historic +Type:Archive Subtype:Custom Effective:2019-05-24 Rarities:L, C diff --git a/forge-gui/res/formats/Historic/DCI/Pauper/2019-10-25.txt b/forge-gui/res/formats/Archive/Pauper/2019-10-25.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Pauper/2019-10-25.txt rename to forge-gui/res/formats/Archive/Pauper/2019-10-25.txt index 4cefeef6f62..ca6155ba78a 100644 --- a/forge-gui/res/formats/Historic/DCI/Pauper/2019-10-25.txt +++ b/forge-gui/res/formats/Archive/Pauper/2019-10-25.txt @@ -1,6 +1,6 @@ [format] Name:Pauper (2019-10-25) -Type:Historic +Type:Archive Subtype:Custom Effective:2019-10-25 Rarities:L, C diff --git a/forge-gui/res/formats/Historic/DCI/Pauper/2020-01-14.txt b/forge-gui/res/formats/Archive/Pauper/2020-01-14.txt similarity index 91% rename from forge-gui/res/formats/Historic/DCI/Pauper/2020-01-14.txt rename to forge-gui/res/formats/Archive/Pauper/2020-01-14.txt index 527bd961132..9fa2d5e1716 100644 --- a/forge-gui/res/formats/Historic/DCI/Pauper/2020-01-14.txt +++ b/forge-gui/res/formats/Archive/Pauper/2020-01-14.txt @@ -1,6 +1,6 @@ [format] Name:Pauper (2020-01-14) -Type:Historic +Type:Archive Subtype:Custom Effective:2020-01-14 Rarities:L, C diff --git a/forge-gui/res/formats/Historic/DCI/Pauper/2020-07-13.txt b/forge-gui/res/formats/Archive/Pauper/2020-07-13.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Pauper/2020-07-13.txt rename to forge-gui/res/formats/Archive/Pauper/2020-07-13.txt index 619c6f9b4af..1573efb1ece 100644 --- a/forge-gui/res/formats/Historic/DCI/Pauper/2020-07-13.txt +++ b/forge-gui/res/formats/Archive/Pauper/2020-07-13.txt @@ -1,6 +1,6 @@ [format] Name:Pauper (2020-07-13) -Type:Historic +Type:Archive Subtype:Custom Effective:2020-07-13 Rarities:L, C diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2019-10-21.txt b/forge-gui/res/formats/Archive/Pioneer/2019-10-21.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2019-10-21.txt rename to forge-gui/res/formats/Archive/Pioneer/2019-10-21.txt index d72eb607602..df8b964da9c 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2019-10-21.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2019-10-21.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (2019-10-21) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2019-10-21 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2019-11-08.txt b/forge-gui/res/formats/Archive/Pioneer/2019-11-08.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2019-11-08.txt rename to forge-gui/res/formats/Archive/Pioneer/2019-11-08.txt index b9c17a7fe75..9a73245e4f1 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2019-11-08.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2019-11-08.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (2019-11-08) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2019-11-08 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2019-11-12.txt b/forge-gui/res/formats/Archive/Pioneer/2019-11-12.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2019-11-12.txt rename to forge-gui/res/formats/Archive/Pioneer/2019-11-12.txt index ada725ce2a9..7115aee827d 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2019-11-12.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2019-11-12.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (2019-11-12) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2019-11-12 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2019-12-03.txt b/forge-gui/res/formats/Archive/Pioneer/2019-12-03.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2019-12-03.txt rename to forge-gui/res/formats/Archive/Pioneer/2019-12-03.txt index 0bd528a64f6..d0e8e7f339f 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2019-12-03.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2019-12-03.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (2019-12-03) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2019-12-03 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2019-12-17.txt b/forge-gui/res/formats/Archive/Pioneer/2019-12-17.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2019-12-17.txt rename to forge-gui/res/formats/Archive/Pioneer/2019-12-17.txt index 13de6968666..a4f9a3e26bd 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2019-12-17.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2019-12-17.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (2019-12-17) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2019-12-17 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2020-01-24.txt b/forge-gui/res/formats/Archive/Pioneer/2020-01-24.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2020-01-24.txt rename to forge-gui/res/formats/Archive/Pioneer/2020-01-24.txt index f1d234c1fb7..6af22744d2b 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2020-01-24.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2020-01-24.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (THB) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2020-01-24 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2020-04-24.txt b/forge-gui/res/formats/Archive/Pioneer/2020-04-24.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2020-04-24.txt rename to forge-gui/res/formats/Archive/Pioneer/2020-04-24.txt index 18636326e0e..4845b8ff76a 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2020-04-24.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2020-04-24.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (IKO) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2020-04-24 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2020-07-03.txt b/forge-gui/res/formats/Archive/Pioneer/2020-07-03.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2020-07-03.txt rename to forge-gui/res/formats/Archive/Pioneer/2020-07-03.txt index fec3ace94a7..d2025dc4e8a 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2020-07-03.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2020-07-03.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (M21) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2020-07-03 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21 diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2020-07-13.txt b/forge-gui/res/formats/Archive/Pioneer/2020-07-13.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2020-07-13.txt rename to forge-gui/res/formats/Archive/Pioneer/2020-07-13.txt index b7520454d79..1781dc78b95 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2020-07-13.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2020-07-13.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (2020-07-13) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2020-07-13 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21 diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2020-08-03.txt b/forge-gui/res/formats/Archive/Pioneer/2020-08-03.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2020-08-03.txt rename to forge-gui/res/formats/Archive/Pioneer/2020-08-03.txt index 9cdc5dbebae..00509918999 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2020-08-03.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2020-08-03.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (2020-08-03) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2020-08-03 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21 diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2020-09-25.txt b/forge-gui/res/formats/Archive/Pioneer/2020-09-25.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2020-09-25.txt rename to forge-gui/res/formats/Archive/Pioneer/2020-09-25.txt index e495183cd5b..3371344b3a3 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2020-09-25.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2020-09-25.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (ZNR) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2020-09-25 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21, ZNR diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2021-02-05.txt b/forge-gui/res/formats/Archive/Pioneer/2021-02-05.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2021-02-05.txt rename to forge-gui/res/formats/Archive/Pioneer/2021-02-05.txt index bedee8f7102..c1f5f79c2a9 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2021-02-05.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2021-02-05.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (KHM) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2021-02-05 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21, ZNR, KHM diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2021-02-15.txt b/forge-gui/res/formats/Archive/Pioneer/2021-02-15.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2021-02-15.txt rename to forge-gui/res/formats/Archive/Pioneer/2021-02-15.txt index 28c3ffa6a01..e5d34bed892 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2021-02-15.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2021-02-15.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (2021-02-15) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2021-02-15 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21, ZNR, KHM diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2021-04-23.txt b/forge-gui/res/formats/Archive/Pioneer/2021-04-23.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2021-04-23.txt rename to forge-gui/res/formats/Archive/Pioneer/2021-04-23.txt index cd979cf7a85..df249016b7e 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2021-04-23.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2021-04-23.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (STX) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2021-04-23 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21, ZNR, KHM, STX diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2021-07-23.txt b/forge-gui/res/formats/Archive/Pioneer/2021-07-23.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2021-07-23.txt rename to forge-gui/res/formats/Archive/Pioneer/2021-07-23.txt index 484dcc1962d..c5bc51924c8 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2021-07-23.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2021-07-23.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (AFR) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2021-07-23 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21, ZNR, KHM, STX, AFR diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2021-09-24.txt b/forge-gui/res/formats/Archive/Pioneer/2021-09-24.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2021-09-24.txt rename to forge-gui/res/formats/Archive/Pioneer/2021-09-24.txt index 92726a3c19b..5f04ebc6526 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2021-09-24.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2021-09-24.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (MID) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2021-09-24 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21, ZNR, KHM, STX, AFR, MID diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2021-11-19.txt b/forge-gui/res/formats/Archive/Pioneer/2021-11-19.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2021-11-19.txt rename to forge-gui/res/formats/Archive/Pioneer/2021-11-19.txt index 4704aeb5c66..cb23e88974a 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2021-11-19.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2021-11-19.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (VOW) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2021-11-19 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21, ZNR, KHM, STX, AFR, MID, VOW diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2022-01-28.txt b/forge-gui/res/formats/Archive/Pioneer/2022-01-28.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2022-01-28.txt rename to forge-gui/res/formats/Archive/Pioneer/2022-01-28.txt index 28faf2987c7..99aca4a7198 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2022-01-28.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2022-01-28.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (DBL) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2022-01-28 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21, ZNR, KHM, STX, AFR, MID, VOW, DBL diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2022-02-18.txt b/forge-gui/res/formats/Archive/Pioneer/2022-02-18.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2022-02-18.txt rename to forge-gui/res/formats/Archive/Pioneer/2022-02-18.txt index 96cf26eb1fb..29b98f730d7 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2022-02-18.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2022-02-18.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (NEO) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2022-02-18 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21, ZNR, KHM, STX, AFR, MID, VOW, DBL, NEO diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2022-03-07.txt b/forge-gui/res/formats/Archive/Pioneer/2022-03-07.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2022-03-07.txt rename to forge-gui/res/formats/Archive/Pioneer/2022-03-07.txt index 04a2a639e90..76f55229b4d 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2022-03-07.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2022-03-07.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (2022-03-07) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2022-03-07 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21, ZNR, KHM, STX, AFR, MID, VOW, DBL, NEO diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2022-04-29.txt b/forge-gui/res/formats/Archive/Pioneer/2022-04-29.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2022-04-29.txt rename to forge-gui/res/formats/Archive/Pioneer/2022-04-29.txt index 920f9778302..ddbdf700828 100644 --- a/forge-gui/res/formats/Historic/DCI/Pioneer/2022-04-29.txt +++ b/forge-gui/res/formats/Archive/Pioneer/2022-04-29.txt @@ -1,6 +1,6 @@ [format] Name:Pioneer (SNC) -Type:Historic +Type:Archive Subtype:Pioneer Effective:2022-04-29 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, ORI, BFZ, OGW, SOI, W16, EMN, KLD, AER, W17, AKH, HOU, XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, THB, IKO, M21, ZNR, KHM, STX, AFR, MID, VOW, DBL, NEO, SNC diff --git a/forge-gui/res/formats/Historic/DCI/Pioneer/2022-06-07.txt b/forge-gui/res/formats/Archive/Pioneer/2022-06-07.txt similarity index 100% rename from forge-gui/res/formats/Historic/DCI/Pioneer/2022-06-07.txt rename to forge-gui/res/formats/Archive/Pioneer/2022-06-07.txt diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1995-01-10.txt b/forge-gui/res/formats/Archive/Standard/1995-01-10.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Standard/1995-01-10.txt rename to forge-gui/res/formats/Archive/Standard/1995-01-10.txt index 50476f9f241..5bea679d336 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1995-01-10.txt +++ b/forge-gui/res/formats/Archive/Standard/1995-01-10.txt @@ -1,6 +1,6 @@ [format] Name:Type 2 (1995-01-10) -Type:Historic +Type:Archive Subtype:Standard Effective:1995-01-10 Sets:3ED, DRK, FEM diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1995-04-19.txt b/forge-gui/res/formats/Archive/Standard/1995-04-19.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/1995-04-19.txt rename to forge-gui/res/formats/Archive/Standard/1995-04-19.txt index 8b2c08ffcf6..fe52b1c9bf3 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1995-04-19.txt +++ b/forge-gui/res/formats/Archive/Standard/1995-04-19.txt @@ -1,6 +1,6 @@ [format] Name:Type 2 (4ED) -Type:Historic +Type:Archive Subtype:Standard Effective:1995-04-19 Sets:DRK, FEM, 4ED diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1995-06-03.txt b/forge-gui/res/formats/Archive/Standard/1995-06-03.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/1995-06-03.txt rename to forge-gui/res/formats/Archive/Standard/1995-06-03.txt index afb9d4e1beb..9c551e24ffe 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1995-06-03.txt +++ b/forge-gui/res/formats/Archive/Standard/1995-06-03.txt @@ -1,6 +1,6 @@ [format] Name:Type 2 (ICE) -Type:Historic +Type:Archive Subtype:Standard Effective:1995-06-03 Sets:FEM, 4ED, ICE diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1995-07-01.txt b/forge-gui/res/formats/Archive/Standard/1995-07-01.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Standard/1995-07-01.txt rename to forge-gui/res/formats/Archive/Standard/1995-07-01.txt index 95423b41741..1976aa6815c 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1995-07-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1995-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 2 (CHR) -Type:Historic +Type:Archive Subtype:Standard Effective:1995-07-01 Sets:FEM, 4ED, ICE, CHR diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1995-11-01.txt b/forge-gui/res/formats/Archive/Standard/1995-11-01.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/1995-11-01.txt rename to forge-gui/res/formats/Archive/Standard/1995-11-01.txt index d7683d12dc3..3d4cf16ecf4 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1995-11-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1995-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 2 (1995-11-01) -Type:Historic +Type:Archive Subtype:Standard Effective:1995-11-01 Sets:FEM, 4ED, ICE, CHR diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1995-11-13.txt b/forge-gui/res/formats/Archive/Standard/1995-11-13.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Standard/1995-11-13.txt rename to forge-gui/res/formats/Archive/Standard/1995-11-13.txt index cec84f699cd..262c8e0bbce 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1995-11-13.txt +++ b/forge-gui/res/formats/Archive/Standard/1995-11-13.txt @@ -1,6 +1,6 @@ [format] Name:Type 2 (HML) -Type:Historic +Type:Archive Subtype:Standard Effective:1995-11-13 Sets:FEM, 4ED, ICE, CHR, HML diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1996-02-01.txt b/forge-gui/res/formats/Archive/Standard/1996-02-01.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Standard/1996-02-01.txt rename to forge-gui/res/formats/Archive/Standard/1996-02-01.txt index 6d2c2f54cf8..8fe1d061c6d 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1996-02-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1996-02-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 2 (1996-02-01) -Type:Historic +Type:Archive Subtype:Standard Effective:1996-02-01 Sets:FEM, 4ED, ICE, CHR, HML diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1996-04-01.txt b/forge-gui/res/formats/Archive/Standard/1996-04-01.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Standard/1996-04-01.txt rename to forge-gui/res/formats/Archive/Standard/1996-04-01.txt index ab2a3e30818..c460316613b 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1996-04-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1996-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 2 (1996-04-01) -Type:Historic +Type:Archive Subtype:Standard Effective:1996-04-01 Sets:FEM, 4ED, ICE, CHR, HML diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1996-07-01.txt b/forge-gui/res/formats/Archive/Standard/1996-07-01.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Standard/1996-07-01.txt rename to forge-gui/res/formats/Archive/Standard/1996-07-01.txt index 76744d35e00..0ae22c7094d 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1996-07-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1996-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 2 (1996-07-01) -Type:Historic +Type:Archive Subtype:Standard Effective:1996-07-01 Sets:FEM, 4ED, ICE, CHR, HML diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1996-07-10.txt b/forge-gui/res/formats/Archive/Standard/1996-07-10.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Standard/1996-07-10.txt rename to forge-gui/res/formats/Archive/Standard/1996-07-10.txt index fe86c14c45c..d6641fd1fef 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1996-07-10.txt +++ b/forge-gui/res/formats/Archive/Standard/1996-07-10.txt @@ -1,6 +1,6 @@ [format] Name:Type 2 (ALL) -Type:Historic +Type:Archive Subtype:Standard Effective:1996-07-10 Sets:FEM, 4ED, ICE, CHR, HML, ALL diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1996-10-01.txt b/forge-gui/res/formats/Archive/Standard/1996-10-01.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Standard/1996-10-01.txt rename to forge-gui/res/formats/Archive/Standard/1996-10-01.txt index a1c3b955007..4521b6de6c2 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1996-10-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1996-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 2 (1996-10-01) -Type:Historic +Type:Archive Subtype:Standard Effective:1996-10-01 Sets:FEM, 4ED, ICE, CHR, HML, ALL diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1996-11-07.txt b/forge-gui/res/formats/Archive/Standard/1996-11-07.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Standard/1996-11-07.txt rename to forge-gui/res/formats/Archive/Standard/1996-11-07.txt index 87038992c85..8055ddc8985 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1996-11-07.txt +++ b/forge-gui/res/formats/Archive/Standard/1996-11-07.txt @@ -1,6 +1,6 @@ [format] Name:Type 2 (MIR) -Type:Historic +Type:Archive Subtype:Standard Effective:1996-11-07 Sets:FEM, 4ED, ICE, CHR, HML, ALL, MIR diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1997-01-01.txt b/forge-gui/res/formats/Archive/Standard/1997-01-01.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/1997-01-01.txt rename to forge-gui/res/formats/Archive/Standard/1997-01-01.txt index 043941e72c4..865277a80e6 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1997-01-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1997-01-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (1997-01-01) -Type:Historic +Type:Archive Subtype:Standard Effective:1997-01-01 Sets:4ED, CHR, HML, ALL, MIR diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1997-03-05.txt b/forge-gui/res/formats/Archive/Standard/1997-03-05.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/1997-03-05.txt rename to forge-gui/res/formats/Archive/Standard/1997-03-05.txt index 23bd51ae041..6eda8e6b1d0 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1997-03-05.txt +++ b/forge-gui/res/formats/Archive/Standard/1997-03-05.txt @@ -1,6 +1,6 @@ [format] Name:Standard (VIS) -Type:Historic +Type:Archive Subtype:Standard Effective:1997-03-05 Sets:4ED, CHR, ALL, MIR, VIS diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1997-04-23.txt b/forge-gui/res/formats/Archive/Standard/1997-04-23.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Standard/1997-04-23.txt rename to forge-gui/res/formats/Archive/Standard/1997-04-23.txt index 4b985313b50..89f34fb0d8f 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1997-04-23.txt +++ b/forge-gui/res/formats/Archive/Standard/1997-04-23.txt @@ -1,6 +1,6 @@ [format] Name:Standard (5ED) -Type:Historic +Type:Archive Subtype:Standard Effective:1997-04-23 Sets:ALL, MIR, VIS, 5ED diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1997-07-01.txt b/forge-gui/res/formats/Archive/Standard/1997-07-01.txt similarity index 91% rename from forge-gui/res/formats/Historic/DCI/Standard/1997-07-01.txt rename to forge-gui/res/formats/Archive/Standard/1997-07-01.txt index 301e3522712..7af584ee98d 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1997-07-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1997-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (WTH) -Type:Historic +Type:Archive Subtype:Standard Effective:1997-07-01 Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1997-11-01.txt b/forge-gui/res/formats/Archive/Standard/1997-11-01.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/1997-11-01.txt rename to forge-gui/res/formats/Archive/Standard/1997-11-01.txt index b0da1d57d16..144c5d1a607 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1997-11-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1997-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (TMP) -Type:Historic +Type:Archive Subtype:Standard Effective:1997-11-01 Sets:MIR, VIS, 5ED, WTH, TMP diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1998-04-01.txt b/forge-gui/res/formats/Archive/Standard/1998-04-01.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/1998-04-01.txt rename to forge-gui/res/formats/Archive/Standard/1998-04-01.txt index d94d057530c..fcf06f472ea 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1998-04-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1998-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (STH) -Type:Historic +Type:Archive Subtype:Standard Effective:1998-04-01 Sets:MIR, VIS, 5ED, WTH, TMP, STH diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1998-07-01.txt b/forge-gui/res/formats/Archive/Standard/1998-07-01.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/1998-07-01.txt rename to forge-gui/res/formats/Archive/Standard/1998-07-01.txt index 0bccdc5227e..24cd880dd24 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1998-07-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1998-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (EXO) -Type:Historic +Type:Archive Subtype:Standard Effective:1998-07-01 Sets:MIR, VIS, 5ED, WTH, TMP, STH, EXO diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1998-11-01.txt b/forge-gui/res/formats/Archive/Standard/1998-11-01.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/1998-11-01.txt rename to forge-gui/res/formats/Archive/Standard/1998-11-01.txt index e65ff83034c..b745f85829d 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1998-11-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1998-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (USG) -Type:Historic +Type:Archive Subtype:Standard Effective:1998-11-01 Sets:5ED, TMP, STH, EXO, USG diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1999-01-01.txt b/forge-gui/res/formats/Archive/Standard/1999-01-01.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Standard/1999-01-01.txt rename to forge-gui/res/formats/Archive/Standard/1999-01-01.txt index ca97dcc20a6..2194ccaae57 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1999-01-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1999-01-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (1999-01-01) -Type:Historic +Type:Archive Subtype:Standard Effective:1999-01-01 Sets:5ED, TMP, STH, EXO, USG diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1999-03-01.txt b/forge-gui/res/formats/Archive/Standard/1999-03-01.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Standard/1999-03-01.txt rename to forge-gui/res/formats/Archive/Standard/1999-03-01.txt index 5b16d700578..fb31ade8459 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1999-03-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1999-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (ULG) -Type:Historic +Type:Archive Subtype:Standard Effective:1999-03-01 Sets:5ED, TMP, STH, EXO, USG, ULG diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1999-04-01.txt b/forge-gui/res/formats/Archive/Standard/1999-04-01.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/1999-04-01.txt rename to forge-gui/res/formats/Archive/Standard/1999-04-01.txt index fe9f8f3fc9c..231d23496c7 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1999-04-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1999-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (1999-04-01) -Type:Historic +Type:Archive Subtype:Standard Effective:1999-04-01 Sets:5ED, TMP, STH, EXO, USG, ULG diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1999-06-01.txt b/forge-gui/res/formats/Archive/Standard/1999-06-01.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/1999-06-01.txt rename to forge-gui/res/formats/Archive/Standard/1999-06-01.txt index cb5d2e48a42..e3780d6e5b7 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1999-06-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1999-06-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (6ED) -Type:Historic +Type:Archive Subtype:Standard Effective:1999-06-01 Sets:TMP, STH, EXO, USG, ULG, 6ED diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1999-07-01.txt b/forge-gui/res/formats/Archive/Standard/1999-07-01.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/1999-07-01.txt rename to forge-gui/res/formats/Archive/Standard/1999-07-01.txt index a07ae18092d..e03ea7ecdb8 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1999-07-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1999-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (UDS) -Type:Historic +Type:Archive Subtype:Standard Effective:1999-07-01 Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS diff --git a/forge-gui/res/formats/Historic/DCI/Standard/1999-11-01.txt b/forge-gui/res/formats/Archive/Standard/1999-11-01.txt similarity index 92% rename from forge-gui/res/formats/Historic/DCI/Standard/1999-11-01.txt rename to forge-gui/res/formats/Archive/Standard/1999-11-01.txt index 1aec79054a8..309f250426d 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/1999-11-01.txt +++ b/forge-gui/res/formats/Archive/Standard/1999-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (MMQ) -Type:Historic +Type:Archive Subtype:Standard Effective:1999-11-01 Sets:USG, ULG, 6ED, UDS, MMQ diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2000-03-01.txt b/forge-gui/res/formats/Archive/Standard/2000-03-01.txt similarity index 92% rename from forge-gui/res/formats/Historic/DCI/Standard/2000-03-01.txt rename to forge-gui/res/formats/Archive/Standard/2000-03-01.txt index db68a057841..fb0651f6547 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2000-03-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2000-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (NMS) -Type:Historic +Type:Archive Subtype:Standard Effective:2000-03-01 Sets:USG, ULG, 6ED, UDS, MMQ, NMS diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2000-07-01.txt b/forge-gui/res/formats/Archive/Standard/2000-07-01.txt similarity index 92% rename from forge-gui/res/formats/Historic/DCI/Standard/2000-07-01.txt rename to forge-gui/res/formats/Archive/Standard/2000-07-01.txt index 53241304b7a..1963c13c16e 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2000-07-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2000-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (PCY) -Type:Historic +Type:Archive Subtype:Standard Effective:2000-07-01 Sets:USG, ULG, 6ED, UDS, MMQ, NMS, PCY diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2000-11-01.txt b/forge-gui/res/formats/Archive/Standard/2000-11-01.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2000-11-01.txt rename to forge-gui/res/formats/Archive/Standard/2000-11-01.txt index 381898ce8ad..310fd6ba665 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2000-11-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2000-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (INV) -Type:Historic +Type:Archive Subtype:Standard Effective:2000-11-01 Sets:6ED, MMQ, NMS, PCY, INV diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2001-03-01.txt b/forge-gui/res/formats/Archive/Standard/2001-03-01.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2001-03-01.txt rename to forge-gui/res/formats/Archive/Standard/2001-03-01.txt index dbe486300d4..637f37bb42b 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2001-03-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2001-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (PLS) -Type:Historic +Type:Archive Subtype:Standard Effective:2001-03-01 Sets:6ED, MMQ, NMS, PCY, INV, PLS diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2001-05-01.txt b/forge-gui/res/formats/Archive/Standard/2001-05-01.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2001-05-01.txt rename to forge-gui/res/formats/Archive/Standard/2001-05-01.txt index e396b6b1324..e3211e32e8c 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2001-05-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2001-05-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (7ED) -Type:Historic +Type:Archive Subtype:Standard Effective:2001-05-01 Sets:MMQ, NMS, PCY, INV, PLS, 7ED diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2001-07-01.txt b/forge-gui/res/formats/Archive/Standard/2001-07-01.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2001-07-01.txt rename to forge-gui/res/formats/Archive/Standard/2001-07-01.txt index ff6065ee20b..1dc694c225e 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2001-07-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2001-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (APC) -Type:Historic +Type:Archive Subtype:Standard Effective:2001-07-01 Sets:MMQ, NMS, PCY, INV, PLS, 7ED, APC diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2001-11-01.txt b/forge-gui/res/formats/Archive/Standard/2001-11-01.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2001-11-01.txt rename to forge-gui/res/formats/Archive/Standard/2001-11-01.txt index cfcd33c62cc..678f0874c81 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2001-11-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2001-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (ODY) -Type:Historic +Type:Archive Subtype:Standard Effective:2001-11-01 Sets:INV, PLS, 7ED, APC, ODY diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2002-03-01.txt b/forge-gui/res/formats/Archive/Standard/2002-03-01.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2002-03-01.txt rename to forge-gui/res/formats/Archive/Standard/2002-03-01.txt index 593bb994e4e..a378a8baa13 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2002-03-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2002-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (TOR) -Type:Historic +Type:Archive Subtype:Standard Effective:2002-03-01 Sets:INV, PLS, 7ED, APC, ODY, TOR diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2002-07-01.txt b/forge-gui/res/formats/Archive/Standard/2002-07-01.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2002-07-01.txt rename to forge-gui/res/formats/Archive/Standard/2002-07-01.txt index c93f1e573c3..ffc5899b205 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2002-07-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2002-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (JUD) -Type:Historic +Type:Archive Subtype:Standard Effective:2002-07-01 Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2002-11-01.txt b/forge-gui/res/formats/Archive/Standard/2002-11-01.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2002-11-01.txt rename to forge-gui/res/formats/Archive/Standard/2002-11-01.txt index eb2fa96eb5e..983accbcdaf 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2002-11-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2002-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (ONS) -Type:Historic +Type:Archive Subtype:Standard Effective:2002-11-01 Sets:7ED, ODY, TOR, JUD, ONS diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2003-03-01.txt b/forge-gui/res/formats/Archive/Standard/2003-03-01.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2003-03-01.txt rename to forge-gui/res/formats/Archive/Standard/2003-03-01.txt index 13588d8ad77..14843927b0a 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2003-03-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2003-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (LGN) -Type:Historic +Type:Archive Subtype:Standard Effective:2003-03-01 Sets:7ED, ODY, TOR, JUD, ONS, LGN diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2003-07-01.txt b/forge-gui/res/formats/Archive/Standard/2003-07-01.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2003-07-01.txt rename to forge-gui/res/formats/Archive/Standard/2003-07-01.txt index 348669d4a7b..08346f217c6 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2003-07-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2003-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (SCG) -Type:Historic +Type:Archive Subtype:Standard Effective:2003-07-01 Sets:7ED, ODY, TOR, JUD, ONS, LGN, SCG diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2003-09-01.txt b/forge-gui/res/formats/Archive/Standard/2003-09-01.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2003-09-01.txt rename to forge-gui/res/formats/Archive/Standard/2003-09-01.txt index c78e867a83c..0283c1c2dd6 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2003-09-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2003-09-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (8ED) -Type:Historic +Type:Archive Subtype:Standard Effective:2003-09-01 Sets:ODY, TOR, JUD, ONS, LGN, SCG, 8ED diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2003-10-20.txt b/forge-gui/res/formats/Archive/Standard/2003-10-20.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2003-10-20.txt rename to forge-gui/res/formats/Archive/Standard/2003-10-20.txt index e59e7018915..2da56774bef 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2003-10-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2003-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (MRD) -Type:Historic +Type:Archive Subtype:Standard Effective:2003-10-20 Sets:ONS, LGN, SCG, 8ED, MRD diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2004-02-20.txt b/forge-gui/res/formats/Archive/Standard/2004-02-20.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2004-02-20.txt rename to forge-gui/res/formats/Archive/Standard/2004-02-20.txt index 898067b8b33..60eed367351 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2004-02-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2004-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (DST) -Type:Historic +Type:Archive Subtype:Standard Effective:2004-02-20 Sets:ONS, LGN, SCG, 8ED, MRD, DST diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2004-06-20.txt b/forge-gui/res/formats/Archive/Standard/2004-06-20.txt similarity index 89% rename from forge-gui/res/formats/Historic/DCI/Standard/2004-06-20.txt rename to forge-gui/res/formats/Archive/Standard/2004-06-20.txt index a7f80c56dbd..41dcf61b162 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2004-06-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2004-06-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (5DN) -Type:Historic +Type:Archive Subtype:Standard Effective:2004-06-20 Sets:ONS, LGN, SCG, 8ED, MRD, DST, 5DN diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2004-10-20.txt b/forge-gui/res/formats/Archive/Standard/2004-10-20.txt similarity index 89% rename from forge-gui/res/formats/Historic/DCI/Standard/2004-10-20.txt rename to forge-gui/res/formats/Archive/Standard/2004-10-20.txt index 8b70927eac0..79b3434d097 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2004-10-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2004-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (CHK) -Type:Historic +Type:Archive Subtype:Standard Effective:2004-10-20 Sets:8ED, MRD, DST, 5DN, CHK diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2005-02-20.txt b/forge-gui/res/formats/Archive/Standard/2005-02-20.txt similarity index 89% rename from forge-gui/res/formats/Historic/DCI/Standard/2005-02-20.txt rename to forge-gui/res/formats/Archive/Standard/2005-02-20.txt index 43c081d3d77..87ac9e7ac16 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2005-02-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2005-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (BOK) -Type:Historic +Type:Archive Subtype:Standard Effective:2005-02-20 Sets:8ED, MRD, DST, 5DN, CHK, BOK diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2005-03-20.txt b/forge-gui/res/formats/Archive/Standard/2005-03-20.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Standard/2005-03-20.txt rename to forge-gui/res/formats/Archive/Standard/2005-03-20.txt index 910fe0346ae..534d5915e29 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2005-03-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2005-03-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (2005-03-20) -Type:Historic +Type:Archive Subtype:Standard Effective:2005-03-20 Sets:8ED, MRD, DST, 5DN, CHK, BOK diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2005-06-20.txt b/forge-gui/res/formats/Archive/Standard/2005-06-20.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/2005-06-20.txt rename to forge-gui/res/formats/Archive/Standard/2005-06-20.txt index b09f3007b0f..947276842f9 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2005-06-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2005-06-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (SOK) -Type:Historic +Type:Archive Subtype:Standard Effective:2005-06-20 Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2005-08-20.txt b/forge-gui/res/formats/Archive/Standard/2005-08-20.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/2005-08-20.txt rename to forge-gui/res/formats/Archive/Standard/2005-08-20.txt index d21bda50187..5d1fc83a90b 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2005-08-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2005-08-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (9ED) -Type:Historic +Type:Archive Subtype:Standard Effective:2005-08-20 Sets:MRD, DST, 5DN, CHK, BOK, SOK, 9ED diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2005-10-20.txt b/forge-gui/res/formats/Archive/Standard/2005-10-20.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2005-10-20.txt rename to forge-gui/res/formats/Archive/Standard/2005-10-20.txt index e538ad15307..997740e4c37 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2005-10-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2005-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (RAV) -Type:Historic +Type:Archive Subtype:Standard Effective:2005-10-20 Sets:CHK, BOK, SOK, 9ED, RAV diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2006-02-20.txt b/forge-gui/res/formats/Archive/Standard/2006-02-20.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2006-02-20.txt rename to forge-gui/res/formats/Archive/Standard/2006-02-20.txt index 33677d6f418..06f083d1275 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2006-02-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2006-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (GPT) -Type:Historic +Type:Archive Subtype:Standard Effective:2006-02-20 Sets:CHK, BOK, SOK, 9ED, RAV, GPT diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2006-05-20.txt b/forge-gui/res/formats/Archive/Standard/2006-05-20.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2006-05-20.txt rename to forge-gui/res/formats/Archive/Standard/2006-05-20.txt index cf43c0eb55d..3d80018c936 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2006-05-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2006-05-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (DIS) -Type:Historic +Type:Archive Subtype:Standard Effective:2006-05-20 Sets:CHK, BOK, SOK, 9ED, RAV, GPT, DIS diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2006-08-20.txt b/forge-gui/res/formats/Archive/Standard/2006-08-20.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2006-08-20.txt rename to forge-gui/res/formats/Archive/Standard/2006-08-20.txt index f317ffb3b6a..8dcf191351e 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2006-08-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2006-08-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (CSP) -Type:Historic +Type:Archive Subtype:Standard Effective:2006-08-20 Sets:CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2006-10-20.txt b/forge-gui/res/formats/Archive/Standard/2006-10-20.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2006-10-20.txt rename to forge-gui/res/formats/Archive/Standard/2006-10-20.txt index 6c31f68be81..dea87303ef0 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2006-10-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2006-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (TSP) -Type:Historic +Type:Archive Subtype:Standard Effective:2006-10-20 Sets:9ED, RAV, GPT, DIS, CSP, TSP, TSB diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2007-02-20.txt b/forge-gui/res/formats/Archive/Standard/2007-02-20.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2007-02-20.txt rename to forge-gui/res/formats/Archive/Standard/2007-02-20.txt index d8d8f41df32..c5425265ee0 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2007-02-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2007-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (PLC) -Type:Historic +Type:Archive Subtype:Standard Effective:2007-02-20 Sets:9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2007-05-20.txt b/forge-gui/res/formats/Archive/Standard/2007-05-20.txt similarity index 89% rename from forge-gui/res/formats/Historic/DCI/Standard/2007-05-20.txt rename to forge-gui/res/formats/Archive/Standard/2007-05-20.txt index 8e5c45d3454..c16bcc364f4 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2007-05-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2007-05-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (FUT) -Type:Historic +Type:Archive Subtype:Standard Effective:2007-05-20 Sets:9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2007-07-20.txt b/forge-gui/res/formats/Archive/Standard/2007-07-20.txt similarity index 89% rename from forge-gui/res/formats/Historic/DCI/Standard/2007-07-20.txt rename to forge-gui/res/formats/Archive/Standard/2007-07-20.txt index e0de26e5fa9..7ca59b723b7 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2007-07-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2007-07-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (10E) -Type:Historic +Type:Archive Subtype:Standard Effective:2007-07-20 Sets:RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2007-10-20.txt b/forge-gui/res/formats/Archive/Standard/2007-10-20.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2007-10-20.txt rename to forge-gui/res/formats/Archive/Standard/2007-10-20.txt index a48560e251d..0c6d6ed33b5 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2007-10-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2007-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (LRW) -Type:Historic +Type:Archive Subtype:Standard Effective:2007-10-20 Sets:CSP, TSP, TSB, PLC, FUT, 10E, LRW diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2008-02-01.txt b/forge-gui/res/formats/Archive/Standard/2008-02-01.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2008-02-01.txt rename to forge-gui/res/formats/Archive/Standard/2008-02-01.txt index 4783fe89dcd..9b34fd1bb0e 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2008-02-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2008-02-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (MOR) -Type:Historic +Type:Archive Subtype:Standard Effective:2008-02-01 Sets:CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2008-05-02.txt b/forge-gui/res/formats/Archive/Standard/2008-05-02.txt similarity index 89% rename from forge-gui/res/formats/Historic/DCI/Standard/2008-05-02.txt rename to forge-gui/res/formats/Archive/Standard/2008-05-02.txt index 11a590424cc..cefcd1af642 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2008-05-02.txt +++ b/forge-gui/res/formats/Archive/Standard/2008-05-02.txt @@ -1,6 +1,6 @@ [format] Name:Standard (SHM) -Type:Historic +Type:Archive Subtype:Standard Effective:2008-05-02 Sets:CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2008-07-25.txt b/forge-gui/res/formats/Archive/Standard/2008-07-25.txt similarity index 89% rename from forge-gui/res/formats/Historic/DCI/Standard/2008-07-25.txt rename to forge-gui/res/formats/Archive/Standard/2008-07-25.txt index 96531c359d8..b372df4b089 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2008-07-25.txt +++ b/forge-gui/res/formats/Archive/Standard/2008-07-25.txt @@ -1,6 +1,6 @@ [format] Name:Standard (EVE) -Type:Historic +Type:Archive Subtype:Standard Effective:2008-07-25 Sets:CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2008-10-03.txt b/forge-gui/res/formats/Archive/Standard/2008-10-03.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2008-10-03.txt rename to forge-gui/res/formats/Archive/Standard/2008-10-03.txt index ea984964434..bb28c03cba9 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2008-10-03.txt +++ b/forge-gui/res/formats/Archive/Standard/2008-10-03.txt @@ -1,6 +1,6 @@ [format] Name:Standard (ALA) -Type:Historic +Type:Archive Subtype:Standard Effective:2008-10-03 Sets:10E, LRW, MOR, SHM, EVE, ALA diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2009-02-06.txt b/forge-gui/res/formats/Archive/Standard/2009-02-06.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2009-02-06.txt rename to forge-gui/res/formats/Archive/Standard/2009-02-06.txt index 35ebc829cca..0eea98cf7e0 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2009-02-06.txt +++ b/forge-gui/res/formats/Archive/Standard/2009-02-06.txt @@ -1,6 +1,6 @@ [format] Name:Standard (CFX) -Type:Historic +Type:Archive Subtype:Standard Effective:2009-02-06 Sets:10E, LRW, MOR, SHM, EVE, ALA, CFX diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2009-04-30.txt b/forge-gui/res/formats/Archive/Standard/2009-04-30.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2009-04-30.txt rename to forge-gui/res/formats/Archive/Standard/2009-04-30.txt index 845d5e42f04..74cb964e0d7 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2009-04-30.txt +++ b/forge-gui/res/formats/Archive/Standard/2009-04-30.txt @@ -1,6 +1,6 @@ [format] Name:Standard (ARB) -Type:Historic +Type:Archive Subtype:Standard Effective:2009-04-30 Sets:10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2009-07-17.txt b/forge-gui/res/formats/Archive/Standard/2009-07-17.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2009-07-17.txt rename to forge-gui/res/formats/Archive/Standard/2009-07-17.txt index 7f15d27c202..fadf95c0728 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2009-07-17.txt +++ b/forge-gui/res/formats/Archive/Standard/2009-07-17.txt @@ -1,6 +1,6 @@ [format] Name:Standard (M10) -Type:Historic +Type:Archive Subtype:Standard Effective:2009-07-17 Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2009-10-02.txt b/forge-gui/res/formats/Archive/Standard/2009-10-02.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2009-10-02.txt rename to forge-gui/res/formats/Archive/Standard/2009-10-02.txt index b7b67b8eb33..eaa6cfb51f9 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2009-10-02.txt +++ b/forge-gui/res/formats/Archive/Standard/2009-10-02.txt @@ -1,6 +1,6 @@ [format] Name:Standard (ZEN) -Type:Historic +Type:Archive Subtype:Standard Effective:2009-10-02 Sets:ALA, CFX, ARB, M10, ZEN diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2010-02-05.txt b/forge-gui/res/formats/Archive/Standard/2010-02-05.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2010-02-05.txt rename to forge-gui/res/formats/Archive/Standard/2010-02-05.txt index 8a75d719bf9..04a4da3cb15 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2010-02-05.txt +++ b/forge-gui/res/formats/Archive/Standard/2010-02-05.txt @@ -1,6 +1,6 @@ [format] Name:Standard (WWK) -Type:Historic +Type:Archive Subtype:Standard Effective:2010-02-05 Sets:ALA, CFX, ARB, M10, ZEN, WWK diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2010-04-23.txt b/forge-gui/res/formats/Archive/Standard/2010-04-23.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2010-04-23.txt rename to forge-gui/res/formats/Archive/Standard/2010-04-23.txt index 712116a86d1..1021b2ae437 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2010-04-23.txt +++ b/forge-gui/res/formats/Archive/Standard/2010-04-23.txt @@ -1,6 +1,6 @@ [format] Name:Standard (ROE) -Type:Historic +Type:Archive Subtype:Standard Effective:2010-04-23 Sets:ALA, CFX, ARB, M10, ZEN, WWK, ROE diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2010-07-16.txt b/forge-gui/res/formats/Archive/Standard/2010-07-16.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2010-07-16.txt rename to forge-gui/res/formats/Archive/Standard/2010-07-16.txt index 3f89f6c05c8..465d9c7f0c1 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2010-07-16.txt +++ b/forge-gui/res/formats/Archive/Standard/2010-07-16.txt @@ -1,6 +1,6 @@ [format] Name:Standard (M11) -Type:Historic +Type:Archive Subtype:Standard Effective:2010-07-16 Sets:ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2010-10-01.txt b/forge-gui/res/formats/Archive/Standard/2010-10-01.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2010-10-01.txt rename to forge-gui/res/formats/Archive/Standard/2010-10-01.txt index 38d64984c31..f1e1f036b49 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2010-10-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2010-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (SOM) -Type:Historic +Type:Archive Subtype:Standard Effective:2010-10-01 Sets:ZEN, WWK, ROE, M11, SOM diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2011-02-04.txt b/forge-gui/res/formats/Archive/Standard/2011-02-04.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2011-02-04.txt rename to forge-gui/res/formats/Archive/Standard/2011-02-04.txt index 0ee407af1f6..d8d40cb42ef 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2011-02-04.txt +++ b/forge-gui/res/formats/Archive/Standard/2011-02-04.txt @@ -1,6 +1,6 @@ [format] Name:Standard (MBS) -Type:Historic +Type:Archive Subtype:Standard Effective:2011-02-04 Sets:ZEN, WWK, ROE, M11, SOM, MBS diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2011-05-13.txt b/forge-gui/res/formats/Archive/Standard/2011-05-13.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2011-05-13.txt rename to forge-gui/res/formats/Archive/Standard/2011-05-13.txt index 3bea77614d1..8cb6dc77ba9 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2011-05-13.txt +++ b/forge-gui/res/formats/Archive/Standard/2011-05-13.txt @@ -1,6 +1,6 @@ [format] Name:Standard (NPH) -Type:Historic +Type:Archive Subtype:Standard Effective:2011-05-13 Sets:ZEN, WWK, ROE, M11, SOM, MBS, NPH diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2011-07-01.txt b/forge-gui/res/formats/Archive/Standard/2011-07-01.txt similarity index 92% rename from forge-gui/res/formats/Historic/DCI/Standard/2011-07-01.txt rename to forge-gui/res/formats/Archive/Standard/2011-07-01.txt index f13bd57a3ff..447103877cd 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2011-07-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2011-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (2011-07-01) -Type:Historic +Type:Archive Subtype:Standard Effective:2011-07-01 Sets:ZEN, WWK, ROE, M11, SOM, MBS, NPH diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2011-07-15.txt b/forge-gui/res/formats/Archive/Standard/2011-07-15.txt similarity index 92% rename from forge-gui/res/formats/Historic/DCI/Standard/2011-07-15.txt rename to forge-gui/res/formats/Archive/Standard/2011-07-15.txt index 1df95c63ded..6afb52ae956 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2011-07-15.txt +++ b/forge-gui/res/formats/Archive/Standard/2011-07-15.txt @@ -1,6 +1,6 @@ [format] Name:Standard (M12) -Type:Historic +Type:Archive Subtype:Standard Effective:2011-07-15 Sets:ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2011-09-30.txt b/forge-gui/res/formats/Archive/Standard/2011-09-30.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2011-09-30.txt rename to forge-gui/res/formats/Archive/Standard/2011-09-30.txt index 600c390510d..56e7f60c861 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2011-09-30.txt +++ b/forge-gui/res/formats/Archive/Standard/2011-09-30.txt @@ -1,6 +1,6 @@ [format] Name:Standard (ISD) -Type:Historic +Type:Archive Subtype:Standard Effective:2011-09-30 Sets:SOM, MBS, NPH, M12, ISD diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2012-02-03.txt b/forge-gui/res/formats/Archive/Standard/2012-02-03.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2012-02-03.txt rename to forge-gui/res/formats/Archive/Standard/2012-02-03.txt index 4b2f808aaad..2a201ab3ba2 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2012-02-03.txt +++ b/forge-gui/res/formats/Archive/Standard/2012-02-03.txt @@ -1,6 +1,6 @@ [format] Name:Standard (DKA) -Type:Historic +Type:Archive Subtype:Standard Effective:2012-02-03 Sets:SOM, MBS, NPH, M12, ISD, DKA diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2012-05-04.txt b/forge-gui/res/formats/Archive/Standard/2012-05-04.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2012-05-04.txt rename to forge-gui/res/formats/Archive/Standard/2012-05-04.txt index 339b75ba86b..af6c3bb885f 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2012-05-04.txt +++ b/forge-gui/res/formats/Archive/Standard/2012-05-04.txt @@ -1,6 +1,6 @@ [format] Name:Standard (AVR) -Type:Historic +Type:Archive Subtype:Standard Effective:2012-05-04 Sets:SOM, MBS, NPH, M12, ISD, DKA, AVR diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2012-07-13.txt b/forge-gui/res/formats/Archive/Standard/2012-07-13.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2012-07-13.txt rename to forge-gui/res/formats/Archive/Standard/2012-07-13.txt index 4555feb0258..bc55fcf3cab 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2012-07-13.txt +++ b/forge-gui/res/formats/Archive/Standard/2012-07-13.txt @@ -1,6 +1,6 @@ [format] Name:Standard (M13) -Type:Historic +Type:Archive Subtype:Standard Effective:2012-07-13 Sets:SOM, MBS, NPH, M12, ISD, DKA, AVR, M13 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2012-10-05.txt b/forge-gui/res/formats/Archive/Standard/2012-10-05.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2012-10-05.txt rename to forge-gui/res/formats/Archive/Standard/2012-10-05.txt index 453a53314f7..525421eff5e 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2012-10-05.txt +++ b/forge-gui/res/formats/Archive/Standard/2012-10-05.txt @@ -1,6 +1,6 @@ [format] Name:Standard (RTR) -Type:Historic +Type:Archive Subtype:Standard Effective:2012-10-05 Sets:ISD, DKA, AVR, M13, RTR diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2013-02-01.txt b/forge-gui/res/formats/Archive/Standard/2013-02-01.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2013-02-01.txt rename to forge-gui/res/formats/Archive/Standard/2013-02-01.txt index 1b2bf5f9789..be3468d3b04 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2013-02-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2013-02-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (GTC) -Type:Historic +Type:Archive Subtype:Standard Effective:2013-02-01 Sets:ISD, DKA, AVR, M13, RTR, GTC diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2013-05-03.txt b/forge-gui/res/formats/Archive/Standard/2013-05-03.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2013-05-03.txt rename to forge-gui/res/formats/Archive/Standard/2013-05-03.txt index ab84d5a99f5..d0ab7e8ff1b 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2013-05-03.txt +++ b/forge-gui/res/formats/Archive/Standard/2013-05-03.txt @@ -1,6 +1,6 @@ [format] Name:Standard (DGM) -Type:Historic +Type:Archive Subtype:Standard Effective:2013-05-03 Sets:ISD, DKA, AVR, M13, RTR, GTC, DGM diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2013-07-19.txt b/forge-gui/res/formats/Archive/Standard/2013-07-19.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2013-07-19.txt rename to forge-gui/res/formats/Archive/Standard/2013-07-19.txt index 9f2682b5309..f0db383498d 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2013-07-19.txt +++ b/forge-gui/res/formats/Archive/Standard/2013-07-19.txt @@ -1,6 +1,6 @@ [format] Name:Standard (M14) -Type:Historic +Type:Archive Subtype:Standard Effective:2013-07-19 Sets:ISD, DKA, AVR, M13, RTR, GTC, DGM, M14 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2013-09-27.txt b/forge-gui/res/formats/Archive/Standard/2013-09-27.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2013-09-27.txt rename to forge-gui/res/formats/Archive/Standard/2013-09-27.txt index dcd9422a614..58f6990c92a 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2013-09-27.txt +++ b/forge-gui/res/formats/Archive/Standard/2013-09-27.txt @@ -1,6 +1,6 @@ [format] Name:Standard (THS) -Type:Historic +Type:Archive Subtype:Standard Effective:2013-09-27 Sets:RTR, GTC, DGM, M14, THS diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2014-02-07.txt b/forge-gui/res/formats/Archive/Standard/2014-02-07.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2014-02-07.txt rename to forge-gui/res/formats/Archive/Standard/2014-02-07.txt index da4843febfb..e83787b6316 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2014-02-07.txt +++ b/forge-gui/res/formats/Archive/Standard/2014-02-07.txt @@ -1,6 +1,6 @@ [format] Name:Standard (BNG) -Type:Historic +Type:Archive Subtype:Standard Effective:2014-02-07 Sets:RTR, GTC, DGM, M14, THS, BNG diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2014-05-02.txt b/forge-gui/res/formats/Archive/Standard/2014-05-02.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2014-05-02.txt rename to forge-gui/res/formats/Archive/Standard/2014-05-02.txt index e5c2308f1fa..8731635dccc 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2014-05-02.txt +++ b/forge-gui/res/formats/Archive/Standard/2014-05-02.txt @@ -1,6 +1,6 @@ [format] Name:Standard (JOU) -Type:Historic +Type:Archive Subtype:Standard Effective:2014-05-02 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2014-07-18.txt b/forge-gui/res/formats/Archive/Standard/2014-07-18.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2014-07-18.txt rename to forge-gui/res/formats/Archive/Standard/2014-07-18.txt index 9cf01f0f7af..0b50bbd0c2c 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2014-07-18.txt +++ b/forge-gui/res/formats/Archive/Standard/2014-07-18.txt @@ -1,6 +1,6 @@ [format] Name:Standard (M15) -Type:Historic +Type:Archive Subtype:Standard Effective:2014-07-18 Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2014-09-26.txt b/forge-gui/res/formats/Archive/Standard/2014-09-26.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2014-09-26.txt rename to forge-gui/res/formats/Archive/Standard/2014-09-26.txt index 1164965b1f0..a77b8587805 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2014-09-26.txt +++ b/forge-gui/res/formats/Archive/Standard/2014-09-26.txt @@ -1,6 +1,6 @@ [format] Name:Standard (KTK) -Type:Historic +Type:Archive Subtype:Standard Effective:2014-09-26 Sets:THS, BNG, JOU, M15, KTK diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2015-01-23.txt b/forge-gui/res/formats/Archive/Standard/2015-01-23.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2015-01-23.txt rename to forge-gui/res/formats/Archive/Standard/2015-01-23.txt index 62bd84e9170..5473f151df7 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2015-01-23.txt +++ b/forge-gui/res/formats/Archive/Standard/2015-01-23.txt @@ -1,6 +1,6 @@ [format] Name:Standard (FRF) -Type:Historic +Type:Archive Subtype:Standard Effective:2015-01-23 Sets:THS, BNG, JOU, M15, KTK, FRF, UGF diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2015-03-27.txt b/forge-gui/res/formats/Archive/Standard/2015-03-27.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2015-03-27.txt rename to forge-gui/res/formats/Archive/Standard/2015-03-27.txt index a57ec9b8fd1..13619169319 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2015-03-27.txt +++ b/forge-gui/res/formats/Archive/Standard/2015-03-27.txt @@ -1,6 +1,6 @@ [format] Name:Standard (DTK) -Type:Historic +Type:Archive Subtype:Standard Effective:2015-03-27 Sets:THS, BNG, JOU, M15, KTK, FRF, UGF, DTK diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2015-07-17.txt b/forge-gui/res/formats/Archive/Standard/2015-07-17.txt similarity index 89% rename from forge-gui/res/formats/Historic/DCI/Standard/2015-07-17.txt rename to forge-gui/res/formats/Archive/Standard/2015-07-17.txt index 185a93d44fd..158ce40e796 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2015-07-17.txt +++ b/forge-gui/res/formats/Archive/Standard/2015-07-17.txt @@ -1,6 +1,6 @@ [format] Name:Standard (ORI) -Type:Historic +Type:Archive Subtype:Standard Effective:2015-07-17 Sets:THS, BNG, JOU, M15, KTK, FRF, UGF, DTK, ORI diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2015-10-02.txt b/forge-gui/res/formats/Archive/Standard/2015-10-02.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2015-10-02.txt rename to forge-gui/res/formats/Archive/Standard/2015-10-02.txt index 8597d1fb0c4..652b8226bd6 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2015-10-02.txt +++ b/forge-gui/res/formats/Archive/Standard/2015-10-02.txt @@ -1,6 +1,6 @@ [format] Name:Standard (BFZ) -Type:Historic +Type:Archive Subtype:Standard Effective:2015-10-02 Sets:KTK, FRF, UGF, DTK, ORI, BFZ diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2016-01-22.txt b/forge-gui/res/formats/Archive/Standard/2016-01-22.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2016-01-22.txt rename to forge-gui/res/formats/Archive/Standard/2016-01-22.txt index 3407019f7ed..8983f805744 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2016-01-22.txt +++ b/forge-gui/res/formats/Archive/Standard/2016-01-22.txt @@ -1,6 +1,6 @@ [format] Name:Standard (OGW) -Type:Historic +Type:Archive Subtype:Standard Effective:2016-01-22 Sets:KTK, FRF, UGF, DTK, ORI, BFZ, OGW diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2016-04-08.txt b/forge-gui/res/formats/Archive/Standard/2016-04-08.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2016-04-08.txt rename to forge-gui/res/formats/Archive/Standard/2016-04-08.txt index a4e7b39cebe..d1bc2e9d54c 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2016-04-08.txt +++ b/forge-gui/res/formats/Archive/Standard/2016-04-08.txt @@ -1,6 +1,6 @@ [format] Name:Standard (SOI) -Type:Historic +Type:Archive Subtype:Standard Effective:2016-04-08 Sets:DTK, ORI, BFZ, OGW, SOI, W16 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2016-07-22.txt b/forge-gui/res/formats/Archive/Standard/2016-07-22.txt similarity index 88% rename from forge-gui/res/formats/Historic/DCI/Standard/2016-07-22.txt rename to forge-gui/res/formats/Archive/Standard/2016-07-22.txt index ab3d33e269c..d3ab77c98e0 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2016-07-22.txt +++ b/forge-gui/res/formats/Archive/Standard/2016-07-22.txt @@ -1,6 +1,6 @@ [format] Name:Standard (EMN) -Type:Historic +Type:Archive Subtype:Standard Effective:2016-07-22 Sets:DTK, ORI, BFZ, OGW, SOI, W16, EMN diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2016-09-30.txt b/forge-gui/res/formats/Archive/Standard/2016-09-30.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2016-09-30.txt rename to forge-gui/res/formats/Archive/Standard/2016-09-30.txt index fbbb27029a2..8c2b6b4cd58 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2016-09-30.txt +++ b/forge-gui/res/formats/Archive/Standard/2016-09-30.txt @@ -1,6 +1,6 @@ [format] Name:Standard (KLD) -Type:Historic +Type:Archive Subtype:Standard Effective:2016-09-30 Sets:BFZ, OGW, SOI, W16, EMN, KLD diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2017-01-20.txt b/forge-gui/res/formats/Archive/Standard/2017-01-20.txt similarity index 92% rename from forge-gui/res/formats/Historic/DCI/Standard/2017-01-20.txt rename to forge-gui/res/formats/Archive/Standard/2017-01-20.txt index 8158dc094d2..3743148e98f 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2017-01-20.txt +++ b/forge-gui/res/formats/Archive/Standard/2017-01-20.txt @@ -1,6 +1,6 @@ [format] Name:Standard (AER) -Type:Historic +Type:Archive Subtype:Standard Effective:2017-01-20 Sets:BFZ, OGW, SOI, W16, EMN, KLD, AER diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2017-04-28.txt b/forge-gui/res/formats/Archive/Standard/2017-04-28.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Standard/2017-04-28.txt rename to forge-gui/res/formats/Archive/Standard/2017-04-28.txt index 65f4e4d37e5..0f8b844202d 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2017-04-28.txt +++ b/forge-gui/res/formats/Archive/Standard/2017-04-28.txt @@ -1,6 +1,6 @@ [format] Name:Standard (AKH) -Type:Historic +Type:Archive Subtype:Standard Effective:2017-04-28 Sets:BFZ, OGW, SOI, W16, EMN, KLD, AER, AKH, W17 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2017-06-19.txt b/forge-gui/res/formats/Archive/Standard/2017-06-19.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/2017-06-19.txt rename to forge-gui/res/formats/Archive/Standard/2017-06-19.txt index e6e0e22698b..0027719aab6 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2017-06-19.txt +++ b/forge-gui/res/formats/Archive/Standard/2017-06-19.txt @@ -1,6 +1,6 @@ [format] Name:Standard (2017-06-19) -Type:Historic +Type:Archive Subtype:Standard Effective:2017-06-19 Sets:BFZ, OGW, SOI, W16, EMN, KLD, AER, AKH, W17 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2017-07-14.txt b/forge-gui/res/formats/Archive/Standard/2017-07-14.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/2017-07-14.txt rename to forge-gui/res/formats/Archive/Standard/2017-07-14.txt index f73b104f71b..3e5ca8fcb3a 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2017-07-14.txt +++ b/forge-gui/res/formats/Archive/Standard/2017-07-14.txt @@ -1,6 +1,6 @@ [format] Name:Standard (HOU) -Type:Historic +Type:Archive Subtype:Standard Effective:2017-07-14 Sets:BFZ, OGW, SOI, W16, EMN, KLD, AER, AKH, W17, HOU diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2017-09-29.txt b/forge-gui/res/formats/Archive/Standard/2017-09-29.txt similarity index 92% rename from forge-gui/res/formats/Historic/DCI/Standard/2017-09-29.txt rename to forge-gui/res/formats/Archive/Standard/2017-09-29.txt index b9c40967f1c..f8216b19784 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2017-09-29.txt +++ b/forge-gui/res/formats/Archive/Standard/2017-09-29.txt @@ -1,6 +1,6 @@ [format] Name:Standard (XLN) -Type:Historic +Type:Archive Subtype:Standard Effective:2017-09-29 Sets:KLD, AER, AKH, W17, HOU, XLN diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2018-01-19.txt b/forge-gui/res/formats/Archive/Standard/2018-01-19.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/2018-01-19.txt rename to forge-gui/res/formats/Archive/Standard/2018-01-19.txt index 948a3887a90..956d87dd046 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2018-01-19.txt +++ b/forge-gui/res/formats/Archive/Standard/2018-01-19.txt @@ -1,6 +1,6 @@ [format] Name:Standard (RIX) -Type:Historic +Type:Archive Subtype:Standard Effective:2018-01-19 Sets:KLD, AER, AKH, W17, HOU, XLN, RIX diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2018-04-27.txt b/forge-gui/res/formats/Archive/Standard/2018-04-27.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/2018-04-27.txt rename to forge-gui/res/formats/Archive/Standard/2018-04-27.txt index dd371629960..b5a78397bce 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2018-04-27.txt +++ b/forge-gui/res/formats/Archive/Standard/2018-04-27.txt @@ -1,6 +1,6 @@ [format] Name:Standard (DOM) -Type:Historic +Type:Archive Subtype:Standard Effective:2018-04-27 Sets:KLD, AER, AKH, W17, HOU, XLN, RIX, DOM diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2018-07-13.txt b/forge-gui/res/formats/Archive/Standard/2018-07-13.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/2018-07-13.txt rename to forge-gui/res/formats/Archive/Standard/2018-07-13.txt index 279e9dfba94..437dc4ed3b7 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2018-07-13.txt +++ b/forge-gui/res/formats/Archive/Standard/2018-07-13.txt @@ -1,6 +1,6 @@ [format] Name:Standard (M19) -Type:Historic +Type:Archive Subtype:Standard Effective:2018-07-13 Sets:KLD, AER, AKH, W17, HOU, XLN, RIX, DOM, M19 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2018-10-05.txt b/forge-gui/res/formats/Archive/Standard/2018-10-05.txt similarity index 89% rename from forge-gui/res/formats/Historic/DCI/Standard/2018-10-05.txt rename to forge-gui/res/formats/Archive/Standard/2018-10-05.txt index 3966dfec25b..83b1e8e0a14 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2018-10-05.txt +++ b/forge-gui/res/formats/Archive/Standard/2018-10-05.txt @@ -1,6 +1,6 @@ [format] Name:Standard (GRN) -Type:Historic +Type:Archive Subtype:Standard Effective:2018-10-05 Sets:XLN, RIX, DOM, M19, GRN diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2018-11-16.txt b/forge-gui/res/formats/Archive/Standard/2018-11-16.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Standard/2018-11-16.txt rename to forge-gui/res/formats/Archive/Standard/2018-11-16.txt index 76e716388fb..683bcfaf54c 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2018-11-16.txt +++ b/forge-gui/res/formats/Archive/Standard/2018-11-16.txt @@ -1,6 +1,6 @@ [format] Name:Standard (G18) -Type:Historic +Type:Archive Subtype:Standard Effective:2018-11-16 Sets:XLN, RIX, DOM, M19, GRN, G18 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2019-01-25.txt b/forge-gui/res/formats/Archive/Standard/2019-01-25.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Standard/2019-01-25.txt rename to forge-gui/res/formats/Archive/Standard/2019-01-25.txt index d49994e00e7..80ab900e7e5 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2019-01-25.txt +++ b/forge-gui/res/formats/Archive/Standard/2019-01-25.txt @@ -1,6 +1,6 @@ [format] Name:Standard (RNA) -Type:Historic +Type:Archive Subtype:Standard Effective:2019-01-25 Sets:XLN, RIX, DOM, M19, GRN, G18, RNA diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2019-05-03.txt b/forge-gui/res/formats/Archive/Standard/2019-05-03.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Standard/2019-05-03.txt rename to forge-gui/res/formats/Archive/Standard/2019-05-03.txt index 98659c62d15..47173e3c1a4 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2019-05-03.txt +++ b/forge-gui/res/formats/Archive/Standard/2019-05-03.txt @@ -1,6 +1,6 @@ [format] Name:Standard (WAR) -Type:Historic +Type:Archive Subtype:Standard Effective:2019-05-03 Sets:XLN, RIX, DOM, M19, GRN, G18, RNA, WAR diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2019-07-12.txt b/forge-gui/res/formats/Archive/Standard/2019-07-12.txt similarity index 91% rename from forge-gui/res/formats/Historic/DCI/Standard/2019-07-12.txt rename to forge-gui/res/formats/Archive/Standard/2019-07-12.txt index b1224eb1516..82720254d33 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2019-07-12.txt +++ b/forge-gui/res/formats/Archive/Standard/2019-07-12.txt @@ -1,6 +1,6 @@ [format] Name:Standard (M20) -Type:Historic +Type:Archive Subtype:Standard Effective:2019-07-12 Sets:XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2019-08-30.txt b/forge-gui/res/formats/Archive/Standard/2019-08-30.txt similarity index 89% rename from forge-gui/res/formats/Historic/DCI/Standard/2019-08-30.txt rename to forge-gui/res/formats/Archive/Standard/2019-08-30.txt index 7932c500cbf..103431157c7 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2019-08-30.txt +++ b/forge-gui/res/formats/Archive/Standard/2019-08-30.txt @@ -1,6 +1,6 @@ [format] Name:Standard (2019-08-30) -Type:Historic +Type:Archive Subtype:Standard Effective:2019-08-30 Sets:XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2019-10-04.txt b/forge-gui/res/formats/Archive/Standard/2019-10-04.txt similarity index 87% rename from forge-gui/res/formats/Historic/DCI/Standard/2019-10-04.txt rename to forge-gui/res/formats/Archive/Standard/2019-10-04.txt index 1fff662ddc7..0834b69cdfe 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2019-10-04.txt +++ b/forge-gui/res/formats/Archive/Standard/2019-10-04.txt @@ -1,6 +1,6 @@ [format] Name:Standard (ELD) -Type:Historic +Type:Archive Subtype:Standard Effective:2019-10-04 Sets:GRN, RNA, WAR, M20, ELD diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2019-10-25.txt b/forge-gui/res/formats/Archive/Standard/2019-10-25.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Standard/2019-10-25.txt rename to forge-gui/res/formats/Archive/Standard/2019-10-25.txt index fa610c69aac..cb8790ee547 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2019-10-25.txt +++ b/forge-gui/res/formats/Archive/Standard/2019-10-25.txt @@ -1,6 +1,6 @@ [format] Name:Standard (2019-10-25) -Type:Historic +Type:Archive Subtype:Standard Effective:2019-10-25 Sets:GRN, RNA, WAR, M20, ELD diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2019-11-22.txt b/forge-gui/res/formats/Archive/Standard/2019-11-22.txt similarity index 92% rename from forge-gui/res/formats/Historic/DCI/Standard/2019-11-22.txt rename to forge-gui/res/formats/Archive/Standard/2019-11-22.txt index 54d4abaf2bd..ff8a4633e1a 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2019-11-22.txt +++ b/forge-gui/res/formats/Archive/Standard/2019-11-22.txt @@ -1,6 +1,6 @@ [format] Name:Standard (2019-11-22) -Type:Historic +Type:Archive Subtype:Standard Effective:2019-11-22 Sets:GRN, RNA, WAR, M20, ELD diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2020-01-24.txt b/forge-gui/res/formats/Archive/Standard/2020-01-24.txt similarity index 92% rename from forge-gui/res/formats/Historic/DCI/Standard/2020-01-24.txt rename to forge-gui/res/formats/Archive/Standard/2020-01-24.txt index 79077ebeea0..58791b73502 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2020-01-24.txt +++ b/forge-gui/res/formats/Archive/Standard/2020-01-24.txt @@ -1,6 +1,6 @@ [format] Name:Standard (THB) -Type:Historic +Type:Archive Subtype:Standard Effective:2020-01-24 Sets:GRN, RNA, WAR, M20, ELD, THB diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2020-04-24.txt b/forge-gui/res/formats/Archive/Standard/2020-04-24.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Standard/2020-04-24.txt rename to forge-gui/res/formats/Archive/Standard/2020-04-24.txt index 282ac5317c3..58ec74432aa 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2020-04-24.txt +++ b/forge-gui/res/formats/Archive/Standard/2020-04-24.txt @@ -1,6 +1,6 @@ [format] Name:Standard (IKO) -Type:Historic +Type:Archive Subtype:Standard Effective:2020-04-24 Sets:GRN, RNA, WAR, M20, ELD, THB, IKO diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2020-06-01.txt b/forge-gui/res/formats/Archive/Standard/2020-06-01.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/2020-06-01.txt rename to forge-gui/res/formats/Archive/Standard/2020-06-01.txt index df026df1e6b..c5a2f3fa30a 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2020-06-01.txt +++ b/forge-gui/res/formats/Archive/Standard/2020-06-01.txt @@ -1,6 +1,6 @@ [format] Name:Standard (2020-06-01) -Type:Historic +Type:Archive Subtype:Standard Effective:2020-06-01 Sets:GRN, RNA, WAR, M20, ELD, THB, IKO diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2020-07-03.txt b/forge-gui/res/formats/Archive/Standard/2020-07-03.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/2020-07-03.txt rename to forge-gui/res/formats/Archive/Standard/2020-07-03.txt index c23fd40c82f..5f72035ab5e 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2020-07-03.txt +++ b/forge-gui/res/formats/Archive/Standard/2020-07-03.txt @@ -1,6 +1,6 @@ [format] Name:Standard (M21) -Type:Historic +Type:Archive Subtype:Standard Effective:2020-07-03 Sets:GRN, RNA, WAR, M20, ELD, THB, IKO, M21 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2020-08-03.txt b/forge-gui/res/formats/Archive/Standard/2020-08-03.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Standard/2020-08-03.txt rename to forge-gui/res/formats/Archive/Standard/2020-08-03.txt index 5294ef151ed..62f4f7996fa 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2020-08-03.txt +++ b/forge-gui/res/formats/Archive/Standard/2020-08-03.txt @@ -1,6 +1,6 @@ [format] Name:Standard (2020-08-03) -Type:Historic +Type:Archive Subtype:Standard Effective:2020-08-03 Sets:GRN, RNA, WAR, M20, ELD, THB, IKO, M21 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2020-09-25.txt b/forge-gui/res/formats/Archive/Standard/2020-09-25.txt similarity index 92% rename from forge-gui/res/formats/Historic/DCI/Standard/2020-09-25.txt rename to forge-gui/res/formats/Archive/Standard/2020-09-25.txt index 1b054944bdc..3b2f5ef94e0 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2020-09-25.txt +++ b/forge-gui/res/formats/Archive/Standard/2020-09-25.txt @@ -1,6 +1,6 @@ [format] Name:Standard (ZNR) -Type:Historic +Type:Archive Subtype:Standard Effective:2020-09-25 Sets:ELD, THB, IKO, M21, ZNR diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2020-09-28.txt b/forge-gui/res/formats/Archive/Standard/2020-09-28.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Standard/2020-09-28.txt rename to forge-gui/res/formats/Archive/Standard/2020-09-28.txt index 889ec3c9dad..fb4d8baf036 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2020-09-28.txt +++ b/forge-gui/res/formats/Archive/Standard/2020-09-28.txt @@ -1,6 +1,6 @@ [format] Name:Standard (2020-09-28) -Type:Historic +Type:Archive Subtype:Standard Effective:2020-09-28 Sets:ELD, THB, IKO, M21, ZNR diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2020-10-12.txt b/forge-gui/res/formats/Archive/Standard/2020-10-12.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Standard/2020-10-12.txt rename to forge-gui/res/formats/Archive/Standard/2020-10-12.txt index 424ac3bb084..dabd0191419 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2020-10-12.txt +++ b/forge-gui/res/formats/Archive/Standard/2020-10-12.txt @@ -1,6 +1,6 @@ [format] Name:Standard (2020-10-12) -Type:Historic +Type:Archive Subtype:Standard Effective:2020-10-12 Sets:ELD, THB, IKO, M21, ZNR diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2021-02-05.txt b/forge-gui/res/formats/Archive/Standard/2021-02-05.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Standard/2021-02-05.txt rename to forge-gui/res/formats/Archive/Standard/2021-02-05.txt index 29ae0ab77b7..2db8c8b1d4b 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2021-02-05.txt +++ b/forge-gui/res/formats/Archive/Standard/2021-02-05.txt @@ -1,6 +1,6 @@ [format] Name:Standard (KHM) -Type:Historic +Type:Archive Subtype:Standard Effective:2021-02-05 Sets:ELD, THB, IKO, M21, ZNR, KHM diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2021-04-23.txt b/forge-gui/res/formats/Archive/Standard/2021-04-23.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Standard/2021-04-23.txt rename to forge-gui/res/formats/Archive/Standard/2021-04-23.txt index 5ebc1f4291a..81468e616a8 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2021-04-23.txt +++ b/forge-gui/res/formats/Archive/Standard/2021-04-23.txt @@ -1,6 +1,6 @@ [format] Name:Standard (STX) -Type:Historic +Type:Archive Subtype:Standard Effective:2021-04-23 Sets:ELD, THB, IKO, M21, ZNR, KHM, STX diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2021-07-23.txt b/forge-gui/res/formats/Archive/Standard/2021-07-23.txt similarity index 95% rename from forge-gui/res/formats/Historic/DCI/Standard/2021-07-23.txt rename to forge-gui/res/formats/Archive/Standard/2021-07-23.txt index c22741bd945..45d94d5b66a 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2021-07-23.txt +++ b/forge-gui/res/formats/Archive/Standard/2021-07-23.txt @@ -1,6 +1,6 @@ [format] Name:Standard (AFR) -Type:Historic +Type:Archive Subtype:Standard Effective:2021-07-23 Sets:ELD, THB, IKO, M21, ZNR, KHM, STX, AFR diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2021-09-24.txt b/forge-gui/res/formats/Archive/Standard/2021-09-24.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Standard/2021-09-24.txt rename to forge-gui/res/formats/Archive/Standard/2021-09-24.txt index 4628ec9d85c..8b814e82533 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2021-09-24.txt +++ b/forge-gui/res/formats/Archive/Standard/2021-09-24.txt @@ -1,6 +1,6 @@ [format] Name:Standard (MID) -Type:Historic +Type:Archive Subtype:Standard Effective:2021-09-24 Sets:ZNR, KHM, STX, AFR, MID diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2021-11-19.txt b/forge-gui/res/formats/Archive/Standard/2021-11-19.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Standard/2021-11-19.txt rename to forge-gui/res/formats/Archive/Standard/2021-11-19.txt index 0dfa7295fa9..d438695e9da 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2021-11-19.txt +++ b/forge-gui/res/formats/Archive/Standard/2021-11-19.txt @@ -1,6 +1,6 @@ [format] Name:Standard (VOW) -Type:Historic +Type:Archive Subtype:Standard Effective:2021-11-19 Sets:ZNR, KHM, STX, AFR, MID, VOW diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2022-01-25.txt b/forge-gui/res/formats/Archive/Standard/2022-01-25.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Standard/2022-01-25.txt rename to forge-gui/res/formats/Archive/Standard/2022-01-25.txt index 6e9f096a720..9680f5a2998 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2022-01-25.txt +++ b/forge-gui/res/formats/Archive/Standard/2022-01-25.txt @@ -1,6 +1,6 @@ [format] Name:Standard (2022-01-25) -Type:Historic +Type:Archive Subtype:Standard Effective:2022-01-25 Sets:ZNR, KHM, STX, AFR, MID, VOW diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2022-02-18.txt b/forge-gui/res/formats/Archive/Standard/2022-02-18.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Standard/2022-02-18.txt rename to forge-gui/res/formats/Archive/Standard/2022-02-18.txt index 1e0741067de..4e8f12d13fc 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2022-02-18.txt +++ b/forge-gui/res/formats/Archive/Standard/2022-02-18.txt @@ -1,6 +1,6 @@ [format] Name:Standard (NEO) -Type:Historic +Type:Archive Subtype:Standard Effective:2022-02-18 Sets:ZNR, KHM, STX, AFR, MID, VOW, NEO diff --git a/forge-gui/res/formats/Historic/DCI/Standard/2022-04-29.txt b/forge-gui/res/formats/Archive/Standard/2022-04-29.txt similarity index 93% rename from forge-gui/res/formats/Historic/DCI/Standard/2022-04-29.txt rename to forge-gui/res/formats/Archive/Standard/2022-04-29.txt index 71e2c2ea38a..f0e2c2e44ee 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/2022-04-29.txt +++ b/forge-gui/res/formats/Archive/Standard/2022-04-29.txt @@ -1,6 +1,6 @@ [format] Name:Standard (SNC) -Type:Historic +Type:Archive Subtype:Standard Effective:2022-04-29 Sets:ZNR, KHM, STX, AFR, MID, VOW, NEO, SNC diff --git a/forge-gui/res/formats/Historic/DCI/Standard/China/2018-06-22.txt b/forge-gui/res/formats/Archive/Standard/China/2018-06-22.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/China/2018-06-22.txt rename to forge-gui/res/formats/Archive/Standard/China/2018-06-22.txt index c45e990d695..b4fc3fee165 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/China/2018-06-22.txt +++ b/forge-gui/res/formats/Archive/Standard/China/2018-06-22.txt @@ -1,6 +1,6 @@ [format] Name:China Standard (GS1) -Type:Historic +Type:Archive Subtype:Standard Effective:2018-06-22 Sets:KLD, AER, AKH, W17, HOU, XLN, RIX, DOM, GS1 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/China/2018-07-13.txt b/forge-gui/res/formats/Archive/Standard/China/2018-07-13.txt similarity index 94% rename from forge-gui/res/formats/Historic/DCI/Standard/China/2018-07-13.txt rename to forge-gui/res/formats/Archive/Standard/China/2018-07-13.txt index 90a70f06c53..f7c39611998 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/China/2018-07-13.txt +++ b/forge-gui/res/formats/Archive/Standard/China/2018-07-13.txt @@ -1,6 +1,6 @@ [format] Name:China Standard (M19) -Type:Historic +Type:Archive Subtype:Standard Effective:2018-07-13 Sets:KLD, AER, AKH, W17, HOU, XLN, RIX, DOM, GS1, M19 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/China/2018-10-05.txt b/forge-gui/res/formats/Archive/Standard/China/2018-10-05.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Standard/China/2018-10-05.txt rename to forge-gui/res/formats/Archive/Standard/China/2018-10-05.txt index f2bcfd5b7db..a3823cf6aab 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/China/2018-10-05.txt +++ b/forge-gui/res/formats/Archive/Standard/China/2018-10-05.txt @@ -1,6 +1,6 @@ [format] Name:China Standard (GRN) -Type:Historic +Type:Archive Subtype:Standard Effective:2018-10-05 Sets:XLN, RIX, DOM, GS1, M19, GRN diff --git a/forge-gui/res/formats/Historic/DCI/Standard/China/2018-11-16.txt b/forge-gui/res/formats/Archive/Standard/China/2018-11-16.txt similarity index 90% rename from forge-gui/res/formats/Historic/DCI/Standard/China/2018-11-16.txt rename to forge-gui/res/formats/Archive/Standard/China/2018-11-16.txt index 79e215f548f..6dbe528a68f 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/China/2018-11-16.txt +++ b/forge-gui/res/formats/Archive/Standard/China/2018-11-16.txt @@ -1,6 +1,6 @@ [format] Name:China Standard (G18) -Type:Historic +Type:Archive Subtype:Standard Effective:2018-11-16 Sets:XLN, RIX, DOM, GS1, M19, GRN, G18 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/China/2019-01-25.txt b/forge-gui/res/formats/Archive/Standard/China/2019-01-25.txt similarity index 91% rename from forge-gui/res/formats/Historic/DCI/Standard/China/2019-01-25.txt rename to forge-gui/res/formats/Archive/Standard/China/2019-01-25.txt index e632743ee32..06464f4813e 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/China/2019-01-25.txt +++ b/forge-gui/res/formats/Archive/Standard/China/2019-01-25.txt @@ -1,6 +1,6 @@ [format] Name:China Standard (RNA) -Type:Historic +Type:Archive Subtype:Standard Effective:2019-01-25 Sets:XLN, RIX, DOM, GS1, M19, GRN, G18, RNA diff --git a/forge-gui/res/formats/Historic/DCI/Standard/China/2019-05-03.txt b/forge-gui/res/formats/Archive/Standard/China/2019-05-03.txt similarity index 91% rename from forge-gui/res/formats/Historic/DCI/Standard/China/2019-05-03.txt rename to forge-gui/res/formats/Archive/Standard/China/2019-05-03.txt index 429c24bb522..0568b889bad 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/China/2019-05-03.txt +++ b/forge-gui/res/formats/Archive/Standard/China/2019-05-03.txt @@ -1,6 +1,6 @@ [format] Name:China Standard (WAR) -Type:Historic +Type:Archive Subtype:Standard Effective:2019-05-03 Sets:XLN, RIX, DOM, GS1, M19, GRN, G18, RNA, WAR diff --git a/forge-gui/res/formats/Historic/DCI/Standard/China/2019-07-12.txt b/forge-gui/res/formats/Archive/Standard/China/2019-07-12.txt similarity index 91% rename from forge-gui/res/formats/Historic/DCI/Standard/China/2019-07-12.txt rename to forge-gui/res/formats/Archive/Standard/China/2019-07-12.txt index b4eddee1058..1edac193a4f 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/China/2019-07-12.txt +++ b/forge-gui/res/formats/Archive/Standard/China/2019-07-12.txt @@ -1,6 +1,6 @@ [format] Name:China Standard (M20) -Type:Historic +Type:Archive Subtype:Standard Effective:2019-07-12 Sets:XLN, RIX, DOM, GS1, M19, GRN, G18, RNA, WAR, M20 diff --git a/forge-gui/res/formats/Historic/DCI/Standard/China/2019-08-30.txt b/forge-gui/res/formats/Archive/Standard/China/2019-08-30.txt similarity index 91% rename from forge-gui/res/formats/Historic/DCI/Standard/China/2019-08-30.txt rename to forge-gui/res/formats/Archive/Standard/China/2019-08-30.txt index 0b384a8011d..d9bd58ecb00 100644 --- a/forge-gui/res/formats/Historic/DCI/Standard/China/2019-08-30.txt +++ b/forge-gui/res/formats/Archive/Standard/China/2019-08-30.txt @@ -1,6 +1,6 @@ [format] Name:China Standard (2019-08-30) -Type:Historic +Type:Archive Subtype:Standard Effective:2019-08-30 Retired:2019-10-03 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1993-08-05.txt b/forge-gui/res/formats/Archive/Vintage/1993-08-05.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Vintage/1993-08-05.txt rename to forge-gui/res/formats/Archive/Vintage/1993-08-05.txt index 666da7b6f76..04a7ee46171 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1993-08-05.txt +++ b/forge-gui/res/formats/Archive/Vintage/1993-08-05.txt @@ -1,6 +1,6 @@ [format] Name:Pre-format (1993-08-05) -Type:Historic +Type:Archive Subtype:Vintage Effective:1993-08-05 Sets:LEA diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1993-10-04.txt b/forge-gui/res/formats/Archive/Vintage/1993-10-04.txt similarity index 85% rename from forge-gui/res/formats/Historic/DCI/Vintage/1993-10-04.txt rename to forge-gui/res/formats/Archive/Vintage/1993-10-04.txt index 8890d9f4304..9f522cb2a66 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1993-10-04.txt +++ b/forge-gui/res/formats/Archive/Vintage/1993-10-04.txt @@ -1,6 +1,6 @@ [format] Name:Pre-format (LEB) -Type:Historic +Type:Archive Subtype:Vintage Effective:1993-10-04 Sets:LEA, LEB diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1993-12-01.txt b/forge-gui/res/formats/Archive/Vintage/1993-12-01.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Vintage/1993-12-01.txt rename to forge-gui/res/formats/Archive/Vintage/1993-12-01.txt index 92e147b7d83..6c9e3ca9a1b 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1993-12-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1993-12-01.txt @@ -1,6 +1,6 @@ [format] Name:Pre-format (2ED) -Type:Historic +Type:Archive Subtype:Vintage Effective:1993-12-01 Sets:LEA, LEB, 2ED diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1993-12-17.txt b/forge-gui/res/formats/Archive/Vintage/1993-12-17.txt similarity index 86% rename from forge-gui/res/formats/Historic/DCI/Vintage/1993-12-17.txt rename to forge-gui/res/formats/Archive/Vintage/1993-12-17.txt index 5c32f92c638..4dd3bc4976f 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1993-12-17.txt +++ b/forge-gui/res/formats/Archive/Vintage/1993-12-17.txt @@ -1,6 +1,6 @@ [format] Name:Pre-format (ARN) -Type:Historic +Type:Archive Subtype:Vintage Effective:1993-12-17 Sets:LEA, LEB, 2ED, ARN diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1994-01-26.txt b/forge-gui/res/formats/Archive/Vintage/1994-01-26.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Vintage/1994-01-26.txt rename to forge-gui/res/formats/Archive/Vintage/1994-01-26.txt index 6891ecc3e0b..9af41ababc5 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1994-01-26.txt +++ b/forge-gui/res/formats/Archive/Vintage/1994-01-26.txt @@ -1,6 +1,6 @@ [format] Name:Constructed (1994-01-26) -Type:Historic +Type:Archive Subtype:Vintage Effective:1994-01-26 Sets:LEA, LEB, 2ED, ARN diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1994-02-23.txt b/forge-gui/res/formats/Archive/Vintage/1994-02-23.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Vintage/1994-02-23.txt rename to forge-gui/res/formats/Archive/Vintage/1994-02-23.txt index fccfa4c9e24..72fd9be6a95 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1994-02-23.txt +++ b/forge-gui/res/formats/Archive/Vintage/1994-02-23.txt @@ -1,6 +1,6 @@ [format] Name:Constructed (1994-02-23) -Type:Historic +Type:Archive Subtype:Vintage Effective:1994-02-23 Sets:LEA, LEB, 2ED, ARN diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1994-03-04.txt b/forge-gui/res/formats/Archive/Vintage/1994-03-04.txt similarity index 96% rename from forge-gui/res/formats/Historic/DCI/Vintage/1994-03-04.txt rename to forge-gui/res/formats/Archive/Vintage/1994-03-04.txt index a4e1b10f56c..3a8e987e832 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1994-03-04.txt +++ b/forge-gui/res/formats/Archive/Vintage/1994-03-04.txt @@ -1,6 +1,6 @@ [format] Name:Constructed (ATQ) -Type:Historic +Type:Archive Subtype:Vintage Effective:1994-03-04 Sets:LEA, LEB, 2ED, ARN, ATQ diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1994-03-23.txt b/forge-gui/res/formats/Archive/Vintage/1994-03-23.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Vintage/1994-03-23.txt rename to forge-gui/res/formats/Archive/Vintage/1994-03-23.txt index 2b95907da79..1fd86d3705c 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1994-03-23.txt +++ b/forge-gui/res/formats/Archive/Vintage/1994-03-23.txt @@ -1,6 +1,6 @@ [format] Name:Constructed (1994-03-23) -Type:Historic +Type:Archive Subtype:Vintage Effective:1994-03-23 Sets:LEA, LEB, 2ED, ARN, ATQ diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1994-04-01.txt b/forge-gui/res/formats/Archive/Vintage/1994-04-01.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Vintage/1994-04-01.txt rename to forge-gui/res/formats/Archive/Vintage/1994-04-01.txt index 41b05d9beff..86d235d17f3 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1994-04-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1994-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Constructed (3ED) -Type:Historic +Type:Archive Subtype:Vintage Effective:1994-04-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1994-05-02.txt b/forge-gui/res/formats/Archive/Vintage/1994-05-02.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Vintage/1994-05-02.txt rename to forge-gui/res/formats/Archive/Vintage/1994-05-02.txt index 0bf152b84fd..a9e10a73f4d 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1994-05-02.txt +++ b/forge-gui/res/formats/Archive/Vintage/1994-05-02.txt @@ -1,6 +1,6 @@ [format] Name:Constructed (1994-05-02) -Type:Historic +Type:Archive Subtype:Vintage Effective:1994-05-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1994-06-10.txt b/forge-gui/res/formats/Archive/Vintage/1994-06-10.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Vintage/1994-06-10.txt rename to forge-gui/res/formats/Archive/Vintage/1994-06-10.txt index 96e66f048c4..f57d9134a2a 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1994-06-10.txt +++ b/forge-gui/res/formats/Archive/Vintage/1994-06-10.txt @@ -1,6 +1,6 @@ [format] Name:Constructed (LEG) -Type:Historic +Type:Archive Subtype:Vintage Effective:1994-06-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1994-06-13.txt b/forge-gui/res/formats/Archive/Vintage/1994-06-13.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Vintage/1994-06-13.txt rename to forge-gui/res/formats/Archive/Vintage/1994-06-13.txt index 9bc66b0db36..5a2f9cda29b 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1994-06-13.txt +++ b/forge-gui/res/formats/Archive/Vintage/1994-06-13.txt @@ -1,6 +1,6 @@ [format] Name:Constructed (1994-06-13) -Type:Historic +Type:Archive Subtype:Vintage Effective:1994-06-13 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1994-07-15.txt b/forge-gui/res/formats/Archive/Vintage/1994-07-15.txt similarity index 97% rename from forge-gui/res/formats/Historic/DCI/Vintage/1994-07-15.txt rename to forge-gui/res/formats/Archive/Vintage/1994-07-15.txt index 1a41a25e5e5..04bc1c90fad 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1994-07-15.txt +++ b/forge-gui/res/formats/Archive/Vintage/1994-07-15.txt @@ -1,6 +1,6 @@ [format] Name:Constructed (1994-07-15) -Type:Historic +Type:Archive Subtype:Vintage Effective:1994-07-15 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1994-08-02.txt b/forge-gui/res/formats/Archive/Vintage/1994-08-02.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1994-08-02.txt rename to forge-gui/res/formats/Archive/Vintage/1994-08-02.txt index a32341b6e20..59a9ae9f5f2 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1994-08-02.txt +++ b/forge-gui/res/formats/Archive/Vintage/1994-08-02.txt @@ -1,6 +1,6 @@ [format] Name:Constructed (1994-08-02) -Type:Historic +Type:Archive Subtype:Vintage Effective:1994-08-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1994-08-08.txt b/forge-gui/res/formats/Archive/Vintage/1994-08-08.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1994-08-08.txt rename to forge-gui/res/formats/Archive/Vintage/1994-08-08.txt index 82eab991a7e..1853a596b0d 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1994-08-08.txt +++ b/forge-gui/res/formats/Archive/Vintage/1994-08-08.txt @@ -1,6 +1,6 @@ [format] Name:Constructed (DRK) -Type:Historic +Type:Archive Subtype:Vintage Effective:1994-08-08 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1994-10-10.txt b/forge-gui/res/formats/Archive/Vintage/1994-10-10.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1994-10-10.txt rename to forge-gui/res/formats/Archive/Vintage/1994-10-10.txt index 3563e4f55d9..4bd42a2140a 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1994-10-10.txt +++ b/forge-gui/res/formats/Archive/Vintage/1994-10-10.txt @@ -1,6 +1,6 @@ [format] Name:Constructed (1994-10-10) -Type:Historic +Type:Archive Subtype:Vintage Effective:1994-10-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1994-11-15.txt b/forge-gui/res/formats/Archive/Vintage/1994-11-15.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1994-11-15.txt rename to forge-gui/res/formats/Archive/Vintage/1994-11-15.txt index 6afdced6249..a3540523719 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1994-11-15.txt +++ b/forge-gui/res/formats/Archive/Vintage/1994-11-15.txt @@ -1,6 +1,6 @@ [format] Name:Constructed (FEM) -Type:Historic +Type:Archive Subtype:Vintage Effective:1994-11-15 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1995-01-10.txt b/forge-gui/res/formats/Archive/Vintage/1995-01-10.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1995-01-10.txt rename to forge-gui/res/formats/Archive/Vintage/1995-01-10.txt index b8e404f844a..6ee5d83b91e 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1995-01-10.txt +++ b/forge-gui/res/formats/Archive/Vintage/1995-01-10.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (1995-01-10) -Type:Historic +Type:Archive Subtype:Vintage Effective:1995-01-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1995-03-01.txt b/forge-gui/res/formats/Archive/Vintage/1995-03-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1995-03-01.txt rename to forge-gui/res/formats/Archive/Vintage/1995-03-01.txt index 417a711c882..3bfd653a41a 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1995-03-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1995-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (1995-03-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:1995-03-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1995-04-19.txt b/forge-gui/res/formats/Archive/Vintage/1995-04-19.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1995-04-19.txt rename to forge-gui/res/formats/Archive/Vintage/1995-04-19.txt index a96da973fab..56df9ddc9ec 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1995-04-19.txt +++ b/forge-gui/res/formats/Archive/Vintage/1995-04-19.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (4ED) -Type:Historic +Type:Archive Subtype:Vintage Effective:1995-04-19 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1995-06-03.txt b/forge-gui/res/formats/Archive/Vintage/1995-06-03.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1995-06-03.txt rename to forge-gui/res/formats/Archive/Vintage/1995-06-03.txt index 25a584bcef5..194c915b169 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1995-06-03.txt +++ b/forge-gui/res/formats/Archive/Vintage/1995-06-03.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (ICE) -Type:Historic +Type:Archive Subtype:Vintage Effective:1995-06-03 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1995-07-01.txt b/forge-gui/res/formats/Archive/Vintage/1995-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1995-07-01.txt rename to forge-gui/res/formats/Archive/Vintage/1995-07-01.txt index c7f08f00df1..4d8c8843997 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1995-07-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1995-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (CHR) -Type:Historic +Type:Archive Subtype:Vintage Effective:1995-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1995-11-01.txt b/forge-gui/res/formats/Archive/Vintage/1995-11-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1995-11-01.txt rename to forge-gui/res/formats/Archive/Vintage/1995-11-01.txt index e4768a240cc..2aa842a98e0 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1995-11-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1995-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (1995-11-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:1995-11-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1995-11-13.txt b/forge-gui/res/formats/Archive/Vintage/1995-11-13.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1995-11-13.txt rename to forge-gui/res/formats/Archive/Vintage/1995-11-13.txt index 4f55dbaa8c0..94c8f0d15cc 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1995-11-13.txt +++ b/forge-gui/res/formats/Archive/Vintage/1995-11-13.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (HML) -Type:Historic +Type:Archive Subtype:Vintage Effective:1995-11-13 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1996-02-01.txt b/forge-gui/res/formats/Archive/Vintage/1996-02-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1996-02-01.txt rename to forge-gui/res/formats/Archive/Vintage/1996-02-01.txt index bc0ba1b5266..90bccf40341 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1996-02-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1996-02-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (1996-02-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:1996-02-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1996-04-01.txt b/forge-gui/res/formats/Archive/Vintage/1996-04-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1996-04-01.txt rename to forge-gui/res/formats/Archive/Vintage/1996-04-01.txt index 665851ba36a..851e3a27751 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1996-04-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1996-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (1996-04-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:1996-04-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1996-07-10.txt b/forge-gui/res/formats/Archive/Vintage/1996-07-10.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1996-07-10.txt rename to forge-gui/res/formats/Archive/Vintage/1996-07-10.txt index d0c76fe86ae..6fc8b1103bc 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1996-07-10.txt +++ b/forge-gui/res/formats/Archive/Vintage/1996-07-10.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (ALL) -Type:Historic +Type:Archive Subtype:Vintage Effective:1996-07-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1996-10-01.txt b/forge-gui/res/formats/Archive/Vintage/1996-10-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1996-10-01.txt rename to forge-gui/res/formats/Archive/Vintage/1996-10-01.txt index 006d869bb03..a80b9be6496 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1996-10-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1996-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (1996-10-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:1996-10-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1996-11-07.txt b/forge-gui/res/formats/Archive/Vintage/1996-11-07.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1996-11-07.txt rename to forge-gui/res/formats/Archive/Vintage/1996-11-07.txt index 8b04972d652..34cb5f10be4 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1996-11-07.txt +++ b/forge-gui/res/formats/Archive/Vintage/1996-11-07.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (MIR) -Type:Historic +Type:Archive Subtype:Vintage Effective:1996-11-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1997-03-05.txt b/forge-gui/res/formats/Archive/Vintage/1997-03-05.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1997-03-05.txt rename to forge-gui/res/formats/Archive/Vintage/1997-03-05.txt index ae98787add3..f0c1e5bde50 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1997-03-05.txt +++ b/forge-gui/res/formats/Archive/Vintage/1997-03-05.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (VIS) -Type:Historic +Type:Archive Subtype:Vintage Effective:1997-03-05 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1997-04-23.txt b/forge-gui/res/formats/Archive/Vintage/1997-04-23.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1997-04-23.txt rename to forge-gui/res/formats/Archive/Vintage/1997-04-23.txt index 39bf0999578..8d1e3e5c6e5 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1997-04-23.txt +++ b/forge-gui/res/formats/Archive/Vintage/1997-04-23.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (5ED) -Type:Historic +Type:Archive Subtype:Vintage Effective:1997-04-23 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1997-07-01.txt b/forge-gui/res/formats/Archive/Vintage/1997-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1997-07-01.txt rename to forge-gui/res/formats/Archive/Vintage/1997-07-01.txt index 2712221821e..8511b46a91a 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1997-07-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1997-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (WTH) -Type:Historic +Type:Archive Subtype:Vintage Effective:1997-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1997-10-01.txt b/forge-gui/res/formats/Archive/Vintage/1997-10-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1997-10-01.txt rename to forge-gui/res/formats/Archive/Vintage/1997-10-01.txt index 5cf0a7c1871..a06fe4676ff 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1997-10-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1997-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (1997-10-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:1997-10-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1997-11-01.txt b/forge-gui/res/formats/Archive/Vintage/1997-11-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1997-11-01.txt rename to forge-gui/res/formats/Archive/Vintage/1997-11-01.txt index 7f03b92a522..63d94692578 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1997-11-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1997-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (TMP) -Type:Historic +Type:Archive Subtype:Vintage Effective:1997-11-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1998-01-01.txt b/forge-gui/res/formats/Archive/Vintage/1998-01-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1998-01-01.txt rename to forge-gui/res/formats/Archive/Vintage/1998-01-01.txt index 19328d1e589..fd65df8ea67 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1998-01-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1998-01-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (1998-01-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:1998-01-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1998-04-01.txt b/forge-gui/res/formats/Archive/Vintage/1998-04-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1998-04-01.txt rename to forge-gui/res/formats/Archive/Vintage/1998-04-01.txt index fb777dcd8ea..470ef60ff29 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1998-04-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1998-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (STH) -Type:Historic +Type:Archive Subtype:Vintage Effective:1998-04-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1998-07-01.txt b/forge-gui/res/formats/Archive/Vintage/1998-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1998-07-01.txt rename to forge-gui/res/formats/Archive/Vintage/1998-07-01.txt index da86bd69bfc..a17f234e506 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1998-07-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1998-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (EXO) -Type:Historic +Type:Archive Subtype:Vintage Effective:1998-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1998-11-01.txt b/forge-gui/res/formats/Archive/Vintage/1998-11-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1998-11-01.txt rename to forge-gui/res/formats/Archive/Vintage/1998-11-01.txt index 3748645a723..3d1f6ee4030 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1998-11-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1998-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (USG) -Type:Historic +Type:Archive Subtype:Vintage Effective:1998-11-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1999-01-01.txt b/forge-gui/res/formats/Archive/Vintage/1999-01-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1999-01-01.txt rename to forge-gui/res/formats/Archive/Vintage/1999-01-01.txt index d88e4e652a8..620e10cc6f0 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1999-01-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1999-01-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (1999-01-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:1999-01-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1999-03-01.txt b/forge-gui/res/formats/Archive/Vintage/1999-03-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1999-03-01.txt rename to forge-gui/res/formats/Archive/Vintage/1999-03-01.txt index bf89ce2bfcf..bb6aea6a0d3 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1999-03-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1999-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (ULG) -Type:Historic +Type:Archive Subtype:Vintage Effective:1999-03-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1999-04-01.txt b/forge-gui/res/formats/Archive/Vintage/1999-04-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1999-04-01.txt rename to forge-gui/res/formats/Archive/Vintage/1999-04-01.txt index d2d56864f01..4f5da49e3d7 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1999-04-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1999-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (1999-04-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:1999-04-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1999-06-01.txt b/forge-gui/res/formats/Archive/Vintage/1999-06-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1999-06-01.txt rename to forge-gui/res/formats/Archive/Vintage/1999-06-01.txt index 9c32dd99288..edf95929f35 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1999-06-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1999-06-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (6ED) -Type:Historic +Type:Archive Subtype:Vintage Effective:1999-06-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1999-07-01.txt b/forge-gui/res/formats/Archive/Vintage/1999-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1999-07-01.txt rename to forge-gui/res/formats/Archive/Vintage/1999-07-01.txt index 29a4c418e5d..923d7b2f382 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1999-07-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1999-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (UDS) -Type:Historic +Type:Archive Subtype:Vintage Effective:1999-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1999-10-01.txt b/forge-gui/res/formats/Archive/Vintage/1999-10-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1999-10-01.txt rename to forge-gui/res/formats/Archive/Vintage/1999-10-01.txt index e059b03379d..ad427701a13 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1999-10-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1999-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (1999-10-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:1999-10-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1999-11-01.txt b/forge-gui/res/formats/Archive/Vintage/1999-11-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1999-11-01.txt rename to forge-gui/res/formats/Archive/Vintage/1999-11-01.txt index 100ecfe581f..c4d9ef943e6 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1999-11-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/1999-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (MMQ) -Type:Historic +Type:Archive Subtype:Vintage Effective:1999-11-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/1999-11-12.txt b/forge-gui/res/formats/Archive/Vintage/1999-11-12.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/1999-11-12.txt rename to forge-gui/res/formats/Archive/Vintage/1999-11-12.txt index 4d48bcea72a..9766fa36607 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/1999-11-12.txt +++ b/forge-gui/res/formats/Archive/Vintage/1999-11-12.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (BRB) -Type:Historic +Type:Archive Subtype:Vintage Effective:1999-11-12 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2000-03-01.txt b/forge-gui/res/formats/Archive/Vintage/2000-03-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2000-03-01.txt rename to forge-gui/res/formats/Archive/Vintage/2000-03-01.txt index 5f4b6344582..adbd22b231e 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2000-03-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2000-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (NMS) -Type:Historic +Type:Archive Subtype:Vintage Effective:2000-03-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2000-07-01.txt b/forge-gui/res/formats/Archive/Vintage/2000-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2000-07-01.txt rename to forge-gui/res/formats/Archive/Vintage/2000-07-01.txt index c613d2b7087..cd695136b06 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2000-07-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2000-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (PCY) -Type:Historic +Type:Archive Subtype:Vintage Effective:2000-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2000-10-01.txt b/forge-gui/res/formats/Archive/Vintage/2000-10-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2000-10-01.txt rename to forge-gui/res/formats/Archive/Vintage/2000-10-01.txt index 76ca96e304c..eb84d64046b 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2000-10-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2000-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (BTD) -Type:Historic +Type:Archive Subtype:Vintage Effective:2000-10-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2000-11-01.txt b/forge-gui/res/formats/Archive/Vintage/2000-11-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2000-11-01.txt rename to forge-gui/res/formats/Archive/Vintage/2000-11-01.txt index f022bc6f34d..c9c2e12835a 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2000-11-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2000-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (INV) -Type:Historic +Type:Archive Subtype:Vintage Effective:2000-11-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2001-03-01.txt b/forge-gui/res/formats/Archive/Vintage/2001-03-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2001-03-01.txt rename to forge-gui/res/formats/Archive/Vintage/2001-03-01.txt index 9a5a0fa5911..4fe319cee44 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2001-03-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2001-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (PLS) -Type:Historic +Type:Archive Subtype:Vintage Effective:2001-03-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2001-05-01.txt b/forge-gui/res/formats/Archive/Vintage/2001-05-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2001-05-01.txt rename to forge-gui/res/formats/Archive/Vintage/2001-05-01.txt index f5d94051caa..80ea686ed4f 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2001-05-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2001-05-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (7ED) -Type:Historic +Type:Archive Subtype:Vintage Effective:2001-05-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2001-07-01.txt b/forge-gui/res/formats/Archive/Vintage/2001-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2001-07-01.txt rename to forge-gui/res/formats/Archive/Vintage/2001-07-01.txt index d2ddcae6e96..fa5f93fcf43 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2001-07-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2001-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (APC) -Type:Historic +Type:Archive Subtype:Vintage Effective:2001-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2001-11-01.txt b/forge-gui/res/formats/Archive/Vintage/2001-11-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2001-11-01.txt rename to forge-gui/res/formats/Archive/Vintage/2001-11-01.txt index f4995bf038f..d2a7d128d36 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2001-11-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2001-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (ODY) -Type:Historic +Type:Archive Subtype:Vintage Effective:2001-11-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2001-12-01.txt b/forge-gui/res/formats/Archive/Vintage/2001-12-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2001-12-01.txt rename to forge-gui/res/formats/Archive/Vintage/2001-12-01.txt index d3852fd88d6..32057ba9c30 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2001-12-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2001-12-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (DKM) -Type:Historic +Type:Archive Subtype:Vintage Effective:2001-12-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2002-01-01.txt b/forge-gui/res/formats/Archive/Vintage/2002-01-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2002-01-01.txt rename to forge-gui/res/formats/Archive/Vintage/2002-01-01.txt index 8e0e6ba637d..df5f28265ff 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2002-01-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2002-01-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (2002-01-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:2002-01-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2002-03-01.txt b/forge-gui/res/formats/Archive/Vintage/2002-03-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2002-03-01.txt rename to forge-gui/res/formats/Archive/Vintage/2002-03-01.txt index d0b803bde0f..7ab7ad19000 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2002-03-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2002-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (TOR) -Type:Historic +Type:Archive Subtype:Vintage Effective:2002-03-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2002-07-01.txt b/forge-gui/res/formats/Archive/Vintage/2002-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2002-07-01.txt rename to forge-gui/res/formats/Archive/Vintage/2002-07-01.txt index 5ac25e07a47..5fd0d18be19 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2002-07-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2002-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (JUD) -Type:Historic +Type:Archive Subtype:Vintage Effective:2002-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2002-11-01.txt b/forge-gui/res/formats/Archive/Vintage/2002-11-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2002-11-01.txt rename to forge-gui/res/formats/Archive/Vintage/2002-11-01.txt index 2062a7d09b1..bbdf3acd203 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2002-11-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2002-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (ONS) -Type:Historic +Type:Archive Subtype:Vintage Effective:2002-11-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2003-03-01.txt b/forge-gui/res/formats/Archive/Vintage/2003-03-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2003-03-01.txt rename to forge-gui/res/formats/Archive/Vintage/2003-03-01.txt index 796717f99a3..bce06f6f84f 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2003-03-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2003-03-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (LGN) -Type:Historic +Type:Archive Subtype:Vintage Effective:2003-03-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2003-04-01.txt b/forge-gui/res/formats/Archive/Vintage/2003-04-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2003-04-01.txt rename to forge-gui/res/formats/Archive/Vintage/2003-04-01.txt index 3bcd48f8060..66d32818015 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2003-04-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2003-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (2003-04-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:2003-04-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2003-07-01.txt b/forge-gui/res/formats/Archive/Vintage/2003-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2003-07-01.txt rename to forge-gui/res/formats/Archive/Vintage/2003-07-01.txt index eb567aa36a5..8f5c3a2c0e2 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2003-07-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2003-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (SCG) -Type:Historic +Type:Archive Subtype:Vintage Effective:2003-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2003-09-01.txt b/forge-gui/res/formats/Archive/Vintage/2003-09-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2003-09-01.txt rename to forge-gui/res/formats/Archive/Vintage/2003-09-01.txt index daaa2f36eb2..04b40261a79 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2003-09-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2003-09-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (8ED) -Type:Historic +Type:Archive Subtype:Vintage Effective:2003-09-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2003-10-20.txt b/forge-gui/res/formats/Archive/Vintage/2003-10-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2003-10-20.txt rename to forge-gui/res/formats/Archive/Vintage/2003-10-20.txt index 27056915d0c..76eaaf09ceb 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2003-10-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2003-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (MRD) -Type:Historic +Type:Archive Subtype:Vintage Effective:2003-10-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2004-01-01.txt b/forge-gui/res/formats/Archive/Vintage/2004-01-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2004-01-01.txt rename to forge-gui/res/formats/Archive/Vintage/2004-01-01.txt index 5fe7ee2f83f..b9b6efee4dc 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2004-01-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2004-01-01.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (2004-01-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:2004-01-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2004-02-20.txt b/forge-gui/res/formats/Archive/Vintage/2004-02-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2004-02-20.txt rename to forge-gui/res/formats/Archive/Vintage/2004-02-20.txt index f35474e5455..6cd895388b2 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2004-02-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2004-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (DST) -Type:Historic +Type:Archive Subtype:Vintage Effective:2004-02-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2004-06-20.txt b/forge-gui/res/formats/Archive/Vintage/2004-06-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2004-06-20.txt rename to forge-gui/res/formats/Archive/Vintage/2004-06-20.txt index 0b64edf33c6..2ed2fe46985 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2004-06-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2004-06-20.txt @@ -1,6 +1,6 @@ [format] Name:Type 1 (5DN) -Type:Historic +Type:Archive Subtype:Vintage Effective:2004-06-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2004-09-20.txt b/forge-gui/res/formats/Archive/Vintage/2004-09-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2004-09-20.txt rename to forge-gui/res/formats/Archive/Vintage/2004-09-20.txt index d67be6e5c1e..86adf19170a 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2004-09-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2004-09-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2004-09-20) -Type:Historic +Type:Archive Subtype:Vintage Effective:2004-09-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2004-10-20.txt b/forge-gui/res/formats/Archive/Vintage/2004-10-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2004-10-20.txt rename to forge-gui/res/formats/Archive/Vintage/2004-10-20.txt index 19cb2afbc4a..fa544c490c3 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2004-10-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2004-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (CHK) -Type:Historic +Type:Archive Subtype:Vintage Effective:2004-10-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2004-12-20.txt b/forge-gui/res/formats/Archive/Vintage/2004-12-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2004-12-20.txt rename to forge-gui/res/formats/Archive/Vintage/2004-12-20.txt index ae7175433d5..de9068f65ed 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2004-12-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2004-12-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2004-12-20) -Type:Historic +Type:Archive Subtype:Vintage Effective:2004-12-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2005-02-20.txt b/forge-gui/res/formats/Archive/Vintage/2005-02-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2005-02-20.txt rename to forge-gui/res/formats/Archive/Vintage/2005-02-20.txt index 2fa87f32243..4009ce35b90 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2005-02-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2005-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (BOK) -Type:Historic +Type:Archive Subtype:Vintage Effective:2005-02-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2005-03-20.txt b/forge-gui/res/formats/Archive/Vintage/2005-03-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2005-03-20.txt rename to forge-gui/res/formats/Archive/Vintage/2005-03-20.txt index 9ab06dd3977..6033b95ef5b 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2005-03-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2005-03-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2005-03-20) -Type:Historic +Type:Archive Subtype:Vintage Effective:2005-03-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2005-06-20.txt b/forge-gui/res/formats/Archive/Vintage/2005-06-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2005-06-20.txt rename to forge-gui/res/formats/Archive/Vintage/2005-06-20.txt index 41af6266b5b..2e2c41e7a16 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2005-06-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2005-06-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (SOK) -Type:Historic +Type:Archive Subtype:Vintage Effective:2005-06-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2005-08-20.txt b/forge-gui/res/formats/Archive/Vintage/2005-08-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2005-08-20.txt rename to forge-gui/res/formats/Archive/Vintage/2005-08-20.txt index 3a8e356b0b0..ba45b7434ba 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2005-08-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2005-08-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (9ED) -Type:Historic +Type:Archive Subtype:Vintage Effective:2005-08-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2005-09-20.txt b/forge-gui/res/formats/Archive/Vintage/2005-09-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2005-09-20.txt rename to forge-gui/res/formats/Archive/Vintage/2005-09-20.txt index 08d077be3da..f3cce07d4a1 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2005-09-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2005-09-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2005-09-20) -Type:Historic +Type:Archive Subtype:Vintage Effective:2005-09-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ATH, ULG, 6ED, UDS, MMQ, BRB, NMS, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2005-10-20.txt b/forge-gui/res/formats/Archive/Vintage/2005-10-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2005-10-20.txt rename to forge-gui/res/formats/Archive/Vintage/2005-10-20.txt index 6cb00692377..3f92f962fa1 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2005-10-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2005-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (RAV) -Type:Historic +Type:Archive Subtype:Vintage Effective:2005-10-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2006-02-20.txt b/forge-gui/res/formats/Archive/Vintage/2006-02-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2006-02-20.txt rename to forge-gui/res/formats/Archive/Vintage/2006-02-20.txt index b19650d117c..fe056ddb0b0 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2006-02-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2006-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (GPT) -Type:Historic +Type:Archive Subtype:Vintage Effective:2006-02-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2006-05-20.txt b/forge-gui/res/formats/Archive/Vintage/2006-05-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2006-05-20.txt rename to forge-gui/res/formats/Archive/Vintage/2006-05-20.txt index f7612528cb8..04da71688cb 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2006-05-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2006-05-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DIS) -Type:Historic +Type:Archive Subtype:Vintage Effective:2006-05-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2006-08-20.txt b/forge-gui/res/formats/Archive/Vintage/2006-08-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2006-08-20.txt rename to forge-gui/res/formats/Archive/Vintage/2006-08-20.txt index c20346eb0ee..d08d474f311 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2006-08-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2006-08-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (CSP) -Type:Historic +Type:Archive Subtype:Vintage Effective:2006-08-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2006-10-20.txt b/forge-gui/res/formats/Archive/Vintage/2006-10-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2006-10-20.txt rename to forge-gui/res/formats/Archive/Vintage/2006-10-20.txt index 983dacaec11..a6f807ce56e 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2006-10-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2006-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (TSP) -Type:Historic +Type:Archive Subtype:Vintage Effective:2006-10-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2007-02-20.txt b/forge-gui/res/formats/Archive/Vintage/2007-02-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2007-02-20.txt rename to forge-gui/res/formats/Archive/Vintage/2007-02-20.txt index 78be54f0a43..4554bfd74d8 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2007-02-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2007-02-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (PLC) -Type:Historic +Type:Archive Subtype:Vintage Effective:2007-02-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2007-05-20.txt b/forge-gui/res/formats/Archive/Vintage/2007-05-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2007-05-20.txt rename to forge-gui/res/formats/Archive/Vintage/2007-05-20.txt index dd371ccf40d..70278b9444c 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2007-05-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2007-05-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (FUT) -Type:Historic +Type:Archive Subtype:Vintage Effective:2007-05-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2007-06-20.txt b/forge-gui/res/formats/Archive/Vintage/2007-06-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2007-06-20.txt rename to forge-gui/res/formats/Archive/Vintage/2007-06-20.txt index 9bb652a77e2..3bfbfce0771 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2007-06-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2007-06-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2007-06-20) -Type:Historic +Type:Archive Subtype:Vintage Effective:2007-06-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2007-07-20.txt b/forge-gui/res/formats/Archive/Vintage/2007-07-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2007-07-20.txt rename to forge-gui/res/formats/Archive/Vintage/2007-07-20.txt index a9e3d8600c3..50ffaf0b9da 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2007-07-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2007-07-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (10E) -Type:Historic +Type:Archive Subtype:Vintage Effective:2007-07-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2007-09-10.txt b/forge-gui/res/formats/Archive/Vintage/2007-09-10.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2007-09-10.txt rename to forge-gui/res/formats/Archive/Vintage/2007-09-10.txt index 6b74f3fae1a..a4379366d58 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2007-09-10.txt +++ b/forge-gui/res/formats/Archive/Vintage/2007-09-10.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (MED) -Type:Historic +Type:Archive Subtype:Vintage Effective:2007-09-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2007-09-20.txt b/forge-gui/res/formats/Archive/Vintage/2007-09-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2007-09-20.txt rename to forge-gui/res/formats/Archive/Vintage/2007-09-20.txt index de8cca791b4..75cdc0b3c7a 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2007-09-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2007-09-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2007-09-20) -Type:Historic +Type:Archive Subtype:Vintage Effective:2007-09-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2007-10-20.txt b/forge-gui/res/formats/Archive/Vintage/2007-10-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2007-10-20.txt rename to forge-gui/res/formats/Archive/Vintage/2007-10-20.txt index 4bad6518e72..c388adb9dad 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2007-10-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2007-10-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (LRW) -Type:Historic +Type:Archive Subtype:Vintage Effective:2007-10-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2007-11-16.txt b/forge-gui/res/formats/Archive/Vintage/2007-11-16.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2007-11-16.txt rename to forge-gui/res/formats/Archive/Vintage/2007-11-16.txt index 78fc1241ab8..645c9300503 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2007-11-16.txt +++ b/forge-gui/res/formats/Archive/Vintage/2007-11-16.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DD1) -Type:Historic +Type:Archive Subtype:Vintage Effective:2007-11-16 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2008-02-01.txt b/forge-gui/res/formats/Archive/Vintage/2008-02-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2008-02-01.txt rename to forge-gui/res/formats/Archive/Vintage/2008-02-01.txt index 783c001b684..aba63536222 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2008-02-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2008-02-01.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (MOR) -Type:Historic +Type:Archive Subtype:Vintage Effective:2008-02-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2008-05-02.txt b/forge-gui/res/formats/Archive/Vintage/2008-05-02.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2008-05-02.txt rename to forge-gui/res/formats/Archive/Vintage/2008-05-02.txt index 5a197dbb07e..fcc7c785241 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2008-05-02.txt +++ b/forge-gui/res/formats/Archive/Vintage/2008-05-02.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (SHM) -Type:Historic +Type:Archive Subtype:Vintage Effective:2008-05-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2008-06-20.txt b/forge-gui/res/formats/Archive/Vintage/2008-06-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2008-06-20.txt rename to forge-gui/res/formats/Archive/Vintage/2008-06-20.txt index 8a9618ad246..84b0455d6f6 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2008-06-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2008-06-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2008-06-20) -Type:Historic +Type:Archive Subtype:Vintage Effective:2008-06-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2008-07-25.txt b/forge-gui/res/formats/Archive/Vintage/2008-07-25.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2008-07-25.txt rename to forge-gui/res/formats/Archive/Vintage/2008-07-25.txt index 7fb723ffe82..1c5d35fb60e 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2008-07-25.txt +++ b/forge-gui/res/formats/Archive/Vintage/2008-07-25.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (EVE) -Type:Historic +Type:Archive Subtype:Vintage Effective:2008-07-25 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2008-08-29.txt b/forge-gui/res/formats/Archive/Vintage/2008-08-29.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2008-08-29.txt rename to forge-gui/res/formats/Archive/Vintage/2008-08-29.txt index fd155eaf7fa..ea1c44177ca 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2008-08-29.txt +++ b/forge-gui/res/formats/Archive/Vintage/2008-08-29.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DRB) -Type:Historic +Type:Archive Subtype:Vintage Effective:2008-08-29 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2008-09-20.txt b/forge-gui/res/formats/Archive/Vintage/2008-09-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2008-09-20.txt rename to forge-gui/res/formats/Archive/Vintage/2008-09-20.txt index fe0c0aeb3c2..ee49c0b10fa 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2008-09-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2008-09-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2008-09-20) -Type:Historic +Type:Archive Subtype:Vintage Effective:2008-09-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2008-09-22.txt b/forge-gui/res/formats/Archive/Vintage/2008-09-22.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2008-09-22.txt rename to forge-gui/res/formats/Archive/Vintage/2008-09-22.txt index f5a2a45488c..e161f8d8062 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2008-09-22.txt +++ b/forge-gui/res/formats/Archive/Vintage/2008-09-22.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (ME2) -Type:Historic +Type:Archive Subtype:Vintage Effective:2008-09-22 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2008-10-03.txt b/forge-gui/res/formats/Archive/Vintage/2008-10-03.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2008-10-03.txt rename to forge-gui/res/formats/Archive/Vintage/2008-10-03.txt index 025b7a133fb..c4d68a6547c 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2008-10-03.txt +++ b/forge-gui/res/formats/Archive/Vintage/2008-10-03.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (ALA) -Type:Historic +Type:Archive Subtype:Vintage Effective:2008-10-03 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2008-11-07.txt b/forge-gui/res/formats/Archive/Vintage/2008-11-07.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2008-11-07.txt rename to forge-gui/res/formats/Archive/Vintage/2008-11-07.txt index 7e96133bdbe..ad5a696a919 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2008-11-07.txt +++ b/forge-gui/res/formats/Archive/Vintage/2008-11-07.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DD2) -Type:Historic +Type:Archive Subtype:Vintage Effective:2008-11-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2009-02-06.txt b/forge-gui/res/formats/Archive/Vintage/2009-02-06.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2009-02-06.txt rename to forge-gui/res/formats/Archive/Vintage/2009-02-06.txt index 4a58f5a2785..85ce3abf4cc 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2009-02-06.txt +++ b/forge-gui/res/formats/Archive/Vintage/2009-02-06.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (CFX) -Type:Historic +Type:Archive Subtype:Vintage Effective:2009-02-06 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2009-04-10.txt b/forge-gui/res/formats/Archive/Vintage/2009-04-10.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2009-04-10.txt rename to forge-gui/res/formats/Archive/Vintage/2009-04-10.txt index 88fbc3d9bc8..a53e26ad423 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2009-04-10.txt +++ b/forge-gui/res/formats/Archive/Vintage/2009-04-10.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDC) -Type:Historic +Type:Archive Subtype:Vintage Effective:2009-04-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2009-04-30.txt b/forge-gui/res/formats/Archive/Vintage/2009-04-30.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2009-04-30.txt rename to forge-gui/res/formats/Archive/Vintage/2009-04-30.txt index 647e6e47d72..8f72acfcf39 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2009-04-30.txt +++ b/forge-gui/res/formats/Archive/Vintage/2009-04-30.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (ARB) -Type:Historic +Type:Archive Subtype:Vintage Effective:2009-04-30 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2009-07-01.txt b/forge-gui/res/formats/Archive/Vintage/2009-07-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2009-07-01.txt rename to forge-gui/res/formats/Archive/Vintage/2009-07-01.txt index e78e279a44a..742d9769d7c 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2009-07-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2009-07-01.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2009-07-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:2009-07-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2009-07-17.txt b/forge-gui/res/formats/Archive/Vintage/2009-07-17.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2009-07-17.txt rename to forge-gui/res/formats/Archive/Vintage/2009-07-17.txt index 501cba7b00b..d9227881eb0 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2009-07-17.txt +++ b/forge-gui/res/formats/Archive/Vintage/2009-07-17.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (M10) -Type:Historic +Type:Archive Subtype:Vintage Effective:2009-07-17 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2009-08-26.txt b/forge-gui/res/formats/Archive/Vintage/2009-08-26.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2009-08-26.txt rename to forge-gui/res/formats/Archive/Vintage/2009-08-26.txt index 0a2265eef58..3b67d1cc665 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2009-08-26.txt +++ b/forge-gui/res/formats/Archive/Vintage/2009-08-26.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (TD0) -Type:Historic +Type:Archive Subtype:Vintage Effective:2009-08-26 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2009-08-28.txt b/forge-gui/res/formats/Archive/Vintage/2009-08-28.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2009-08-28.txt rename to forge-gui/res/formats/Archive/Vintage/2009-08-28.txt index 232071761aa..4382ec48617 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2009-08-28.txt +++ b/forge-gui/res/formats/Archive/Vintage/2009-08-28.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (V09) -Type:Historic +Type:Archive Subtype:Vintage Effective:2009-08-28 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2009-09-07.txt b/forge-gui/res/formats/Archive/Vintage/2009-09-07.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2009-09-07.txt rename to forge-gui/res/formats/Archive/Vintage/2009-09-07.txt index 2326797f0fc..9aff88ed907 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2009-09-07.txt +++ b/forge-gui/res/formats/Archive/Vintage/2009-09-07.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (ME3) -Type:Historic +Type:Archive Subtype:Vintage Effective:2009-09-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2009-10-02.txt b/forge-gui/res/formats/Archive/Vintage/2009-10-02.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2009-10-02.txt rename to forge-gui/res/formats/Archive/Vintage/2009-10-02.txt index 40da3286519..dd21f81d924 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2009-10-02.txt +++ b/forge-gui/res/formats/Archive/Vintage/2009-10-02.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (ZEN) -Type:Historic +Type:Archive Subtype:Vintage Effective:2009-10-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2009-10-30.txt b/forge-gui/res/formats/Archive/Vintage/2009-10-30.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2009-10-30.txt rename to forge-gui/res/formats/Archive/Vintage/2009-10-30.txt index 841740f47b8..0f84b1259e6 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2009-10-30.txt +++ b/forge-gui/res/formats/Archive/Vintage/2009-10-30.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDD) -Type:Historic +Type:Archive Subtype:Vintage Effective:2009-10-30 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2009-11-20.txt b/forge-gui/res/formats/Archive/Vintage/2009-11-20.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2009-11-20.txt rename to forge-gui/res/formats/Archive/Vintage/2009-11-20.txt index efb61f27912..6ffa1d0a7fb 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2009-11-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2009-11-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (H09) -Type:Historic +Type:Archive Subtype:Vintage Effective:2009-11-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2010-02-05.txt b/forge-gui/res/formats/Archive/Vintage/2010-02-05.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2010-02-05.txt rename to forge-gui/res/formats/Archive/Vintage/2010-02-05.txt index 8732e4246fe..8389f710b7d 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2010-02-05.txt +++ b/forge-gui/res/formats/Archive/Vintage/2010-02-05.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (WWK) -Type:Historic +Type:Archive Subtype:Vintage Effective:2010-02-05 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2010-03-19.txt b/forge-gui/res/formats/Archive/Vintage/2010-03-19.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2010-03-19.txt rename to forge-gui/res/formats/Archive/Vintage/2010-03-19.txt index c76dac57042..b149e0ec5f1 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2010-03-19.txt +++ b/forge-gui/res/formats/Archive/Vintage/2010-03-19.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDE) -Type:Historic +Type:Archive Subtype:Vintage Effective:2010-03-19 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2010-04-23.txt b/forge-gui/res/formats/Archive/Vintage/2010-04-23.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2010-04-23.txt rename to forge-gui/res/formats/Archive/Vintage/2010-04-23.txt index 240da092718..f654871deda 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2010-04-23.txt +++ b/forge-gui/res/formats/Archive/Vintage/2010-04-23.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (ROE) -Type:Historic +Type:Archive Subtype:Vintage Effective:2010-04-23 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2010-06-04.txt b/forge-gui/res/formats/Archive/Vintage/2010-06-04.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2010-06-04.txt rename to forge-gui/res/formats/Archive/Vintage/2010-06-04.txt index 10f51aaf8ab..144b06c2a45 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2010-06-04.txt +++ b/forge-gui/res/formats/Archive/Vintage/2010-06-04.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DPA) -Type:Historic +Type:Archive Subtype:Vintage Effective:2010-06-04 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2010-07-16.txt b/forge-gui/res/formats/Archive/Vintage/2010-07-16.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2010-07-16.txt rename to forge-gui/res/formats/Archive/Vintage/2010-07-16.txt index 91feee55f87..3f48d625a64 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2010-07-16.txt +++ b/forge-gui/res/formats/Archive/Vintage/2010-07-16.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (M11) -Type:Historic +Type:Archive Subtype:Vintage Effective:2010-07-16 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2010-08-27.txt b/forge-gui/res/formats/Archive/Vintage/2010-08-27.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2010-08-27.txt rename to forge-gui/res/formats/Archive/Vintage/2010-08-27.txt index ceb70848856..86ef161a377 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2010-08-27.txt +++ b/forge-gui/res/formats/Archive/Vintage/2010-08-27.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (V10) -Type:Historic +Type:Archive Subtype:Vintage Effective:2010-08-27 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2010-09-03.txt b/forge-gui/res/formats/Archive/Vintage/2010-09-03.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2010-09-03.txt rename to forge-gui/res/formats/Archive/Vintage/2010-09-03.txt index be5e434de43..5296ce4d44d 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2010-09-03.txt +++ b/forge-gui/res/formats/Archive/Vintage/2010-09-03.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDF) -Type:Historic +Type:Archive Subtype:Vintage Effective:2010-09-03 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2010-10-01.txt b/forge-gui/res/formats/Archive/Vintage/2010-10-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2010-10-01.txt rename to forge-gui/res/formats/Archive/Vintage/2010-10-01.txt index 755073f8038..440a3ac2802 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2010-10-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2010-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (SOM) -Type:Historic +Type:Archive Subtype:Vintage Effective:2010-10-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2010-11-08.txt b/forge-gui/res/formats/Archive/Vintage/2010-11-08.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2010-11-08.txt rename to forge-gui/res/formats/Archive/Vintage/2010-11-08.txt index b0e994b2627..938b13c2ada 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2010-11-08.txt +++ b/forge-gui/res/formats/Archive/Vintage/2010-11-08.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (TD1) -Type:Historic +Type:Archive Subtype:Vintage Effective:2010-11-08 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2010-11-19.txt b/forge-gui/res/formats/Archive/Vintage/2010-11-19.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2010-11-19.txt rename to forge-gui/res/formats/Archive/Vintage/2010-11-19.txt index 00ff7c9c4a3..d0715246028 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2010-11-19.txt +++ b/forge-gui/res/formats/Archive/Vintage/2010-11-19.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (PD2) -Type:Historic +Type:Archive Subtype:Vintage Effective:2010-11-19 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2011-01-10.txt b/forge-gui/res/formats/Archive/Vintage/2011-01-10.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2011-01-10.txt rename to forge-gui/res/formats/Archive/Vintage/2011-01-10.txt index 546c5506dc5..23b924e6f11 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2011-01-10.txt +++ b/forge-gui/res/formats/Archive/Vintage/2011-01-10.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (ME4) -Type:Historic +Type:Archive Subtype:Vintage Effective:2011-01-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2011-02-04.txt b/forge-gui/res/formats/Archive/Vintage/2011-02-04.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2011-02-04.txt rename to forge-gui/res/formats/Archive/Vintage/2011-02-04.txt index 560bae1a9ea..2b41f3f58ee 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2011-02-04.txt +++ b/forge-gui/res/formats/Archive/Vintage/2011-02-04.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (MBS) -Type:Historic +Type:Archive Subtype:Vintage Effective:2011-02-04 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2011-04-01.txt b/forge-gui/res/formats/Archive/Vintage/2011-04-01.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2011-04-01.txt rename to forge-gui/res/formats/Archive/Vintage/2011-04-01.txt index 60bd7d4e6ca..907ebc1bf90 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2011-04-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2011-04-01.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDG) -Type:Historic +Type:Archive Subtype:Vintage Effective:2011-04-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2011-05-13.txt b/forge-gui/res/formats/Archive/Vintage/2011-05-13.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2011-05-13.txt rename to forge-gui/res/formats/Archive/Vintage/2011-05-13.txt index 2af0893aba8..3b5ce9cbd4c 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2011-05-13.txt +++ b/forge-gui/res/formats/Archive/Vintage/2011-05-13.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (NPH) -Type:Historic +Type:Archive Subtype:Vintage Effective:2011-05-13 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2011-05-14.txt b/forge-gui/res/formats/Archive/Vintage/2011-05-14.txt similarity index 98% rename from forge-gui/res/formats/Historic/DCI/Vintage/2011-05-14.txt rename to forge-gui/res/formats/Archive/Vintage/2011-05-14.txt index 3ff33456e62..a63e593b1d1 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2011-05-14.txt +++ b/forge-gui/res/formats/Archive/Vintage/2011-05-14.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (TD2) -Type:Historic +Type:Archive Subtype:Vintage Effective:2011-05-14 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2011-06-17.txt b/forge-gui/res/formats/Archive/Vintage/2011-06-17.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2011-06-17.txt rename to forge-gui/res/formats/Archive/Vintage/2011-06-17.txt index 96376ebc12c..09388a6e692 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2011-06-17.txt +++ b/forge-gui/res/formats/Archive/Vintage/2011-06-17.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (COM) -Type:Historic +Type:Archive Subtype:Vintage Effective:2011-06-17 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2011-07-15.txt b/forge-gui/res/formats/Archive/Vintage/2011-07-15.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2011-07-15.txt rename to forge-gui/res/formats/Archive/Vintage/2011-07-15.txt index 83d3dc8e73d..ef1f754a9c5 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2011-07-15.txt +++ b/forge-gui/res/formats/Archive/Vintage/2011-07-15.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (M12) -Type:Historic +Type:Archive Subtype:Vintage Effective:2011-07-15 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2011-08-26.txt b/forge-gui/res/formats/Archive/Vintage/2011-08-26.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2011-08-26.txt rename to forge-gui/res/formats/Archive/Vintage/2011-08-26.txt index 0cb402f80d5..5b96e785268 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2011-08-26.txt +++ b/forge-gui/res/formats/Archive/Vintage/2011-08-26.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (V11) -Type:Historic +Type:Archive Subtype:Vintage Effective:2011-08-26 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2011-09-02.txt b/forge-gui/res/formats/Archive/Vintage/2011-09-02.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2011-09-02.txt rename to forge-gui/res/formats/Archive/Vintage/2011-09-02.txt index eb8421d2f48..c1bfdbe30db 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2011-09-02.txt +++ b/forge-gui/res/formats/Archive/Vintage/2011-09-02.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDH) -Type:Historic +Type:Archive Subtype:Vintage Effective:2011-09-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2011-09-30.txt b/forge-gui/res/formats/Archive/Vintage/2011-09-30.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2011-09-30.txt rename to forge-gui/res/formats/Archive/Vintage/2011-09-30.txt index aeb90481e58..059cc481868 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2011-09-30.txt +++ b/forge-gui/res/formats/Archive/Vintage/2011-09-30.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (ISD) -Type:Historic +Type:Archive Subtype:Vintage Effective:2011-09-30 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2011-10-01.txt b/forge-gui/res/formats/Archive/Vintage/2011-10-01.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2011-10-01.txt rename to forge-gui/res/formats/Archive/Vintage/2011-10-01.txt index 2a187a2e8ed..d5ab776ff4b 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2011-10-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2011-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2011-10-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:2011-10-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2011-11-18.txt b/forge-gui/res/formats/Archive/Vintage/2011-11-18.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2011-11-18.txt rename to forge-gui/res/formats/Archive/Vintage/2011-11-18.txt index 5b965c4bb21..8e5158cb76c 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2011-11-18.txt +++ b/forge-gui/res/formats/Archive/Vintage/2011-11-18.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (PD3) -Type:Historic +Type:Archive Subtype:Vintage Effective:2011-11-18 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2012-02-03.txt b/forge-gui/res/formats/Archive/Vintage/2012-02-03.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2012-02-03.txt rename to forge-gui/res/formats/Archive/Vintage/2012-02-03.txt index b230a76eba4..0220b0847d5 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2012-02-03.txt +++ b/forge-gui/res/formats/Archive/Vintage/2012-02-03.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DKA) -Type:Historic +Type:Archive Subtype:Vintage Effective:2012-02-03 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2012-03-30.txt b/forge-gui/res/formats/Archive/Vintage/2012-03-30.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2012-03-30.txt rename to forge-gui/res/formats/Archive/Vintage/2012-03-30.txt index 4e4de37b68f..27ac0a53438 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2012-03-30.txt +++ b/forge-gui/res/formats/Archive/Vintage/2012-03-30.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDI) -Type:Historic +Type:Archive Subtype:Vintage Effective:2012-03-30 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2012-05-04.txt b/forge-gui/res/formats/Archive/Vintage/2012-05-04.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2012-05-04.txt rename to forge-gui/res/formats/Archive/Vintage/2012-05-04.txt index 735bab9e3e7..34c5231cd87 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2012-05-04.txt +++ b/forge-gui/res/formats/Archive/Vintage/2012-05-04.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (AVR) -Type:Historic +Type:Archive Subtype:Vintage Effective:2012-05-04 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2012-07-13.txt b/forge-gui/res/formats/Archive/Vintage/2012-07-13.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2012-07-13.txt rename to forge-gui/res/formats/Archive/Vintage/2012-07-13.txt index b0ce6a2a638..31b8b9784da 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2012-07-13.txt +++ b/forge-gui/res/formats/Archive/Vintage/2012-07-13.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (M13) -Type:Historic +Type:Archive Subtype:Vintage Effective:2012-07-13 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2012-08-31.txt b/forge-gui/res/formats/Archive/Vintage/2012-08-31.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2012-08-31.txt rename to forge-gui/res/formats/Archive/Vintage/2012-08-31.txt index d638acd8893..a341240cb0d 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2012-08-31.txt +++ b/forge-gui/res/formats/Archive/Vintage/2012-08-31.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (V12) -Type:Historic +Type:Archive Subtype:Vintage Effective:2012-08-31 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2012-09-07.txt b/forge-gui/res/formats/Archive/Vintage/2012-09-07.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2012-09-07.txt rename to forge-gui/res/formats/Archive/Vintage/2012-09-07.txt index 09890424709..14ed77c61d2 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2012-09-07.txt +++ b/forge-gui/res/formats/Archive/Vintage/2012-09-07.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDJ) -Type:Historic +Type:Archive Subtype:Vintage Effective:2012-09-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2012-10-01.txt b/forge-gui/res/formats/Archive/Vintage/2012-10-01.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2012-10-01.txt rename to forge-gui/res/formats/Archive/Vintage/2012-10-01.txt index acb000b6025..71f184d320f 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2012-10-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2012-10-01.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2012-10-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:2012-10-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2012-10-05.txt b/forge-gui/res/formats/Archive/Vintage/2012-10-05.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2012-10-05.txt rename to forge-gui/res/formats/Archive/Vintage/2012-10-05.txt index d11691cc65b..dc92de2d9d0 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2012-10-05.txt +++ b/forge-gui/res/formats/Archive/Vintage/2012-10-05.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (RTR) -Type:Historic +Type:Archive Subtype:Vintage Effective:2012-10-05 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2012-11-02.txt b/forge-gui/res/formats/Archive/Vintage/2012-11-02.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2012-11-02.txt rename to forge-gui/res/formats/Archive/Vintage/2012-11-02.txt index a8b6ef8959c..2b630f409fe 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2012-11-02.txt +++ b/forge-gui/res/formats/Archive/Vintage/2012-11-02.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (CM1) -Type:Historic +Type:Archive Subtype:Vintage Effective:2012-11-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2013-02-01.txt b/forge-gui/res/formats/Archive/Vintage/2013-02-01.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2013-02-01.txt rename to forge-gui/res/formats/Archive/Vintage/2013-02-01.txt index a982c0f6469..59a0194637f 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2013-02-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2013-02-01.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (GTC) -Type:Historic +Type:Archive Subtype:Vintage Effective:2013-02-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2013-03-15.txt b/forge-gui/res/formats/Archive/Vintage/2013-03-15.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2013-03-15.txt rename to forge-gui/res/formats/Archive/Vintage/2013-03-15.txt index 745147499fa..12af302c537 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2013-03-15.txt +++ b/forge-gui/res/formats/Archive/Vintage/2013-03-15.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDK) -Type:Historic +Type:Archive Subtype:Vintage Effective:2013-03-15 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2013-05-03.txt b/forge-gui/res/formats/Archive/Vintage/2013-05-03.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2013-05-03.txt rename to forge-gui/res/formats/Archive/Vintage/2013-05-03.txt index 5b0a8f28eea..904869bf4bb 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2013-05-03.txt +++ b/forge-gui/res/formats/Archive/Vintage/2013-05-03.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DGM) -Type:Historic +Type:Archive Subtype:Vintage Effective:2013-05-03 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2013-06-07.txt b/forge-gui/res/formats/Archive/Vintage/2013-06-07.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2013-06-07.txt rename to forge-gui/res/formats/Archive/Vintage/2013-06-07.txt index e33c6ea4629..49ce71c9e69 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2013-06-07.txt +++ b/forge-gui/res/formats/Archive/Vintage/2013-06-07.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (MMA) -Type:Historic +Type:Archive Subtype:Vintage Effective:2013-06-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2013-07-19.txt b/forge-gui/res/formats/Archive/Vintage/2013-07-19.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2013-07-19.txt rename to forge-gui/res/formats/Archive/Vintage/2013-07-19.txt index b6b452d451e..d140f8dfe13 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2013-07-19.txt +++ b/forge-gui/res/formats/Archive/Vintage/2013-07-19.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (M14) -Type:Historic +Type:Archive Subtype:Vintage Effective:2013-07-19 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2013-08-23.txt b/forge-gui/res/formats/Archive/Vintage/2013-08-23.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2013-08-23.txt rename to forge-gui/res/formats/Archive/Vintage/2013-08-23.txt index 45ea2f77da4..123fc5f23b5 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2013-08-23.txt +++ b/forge-gui/res/formats/Archive/Vintage/2013-08-23.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (V13) -Type:Historic +Type:Archive Subtype:Vintage Effective:2013-08-23 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2013-09-06.txt b/forge-gui/res/formats/Archive/Vintage/2013-09-06.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2013-09-06.txt rename to forge-gui/res/formats/Archive/Vintage/2013-09-06.txt index cd1b4d40595..050d47095c1 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2013-09-06.txt +++ b/forge-gui/res/formats/Archive/Vintage/2013-09-06.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDL) -Type:Historic +Type:Archive Subtype:Vintage Effective:2013-09-06 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2013-09-27.txt b/forge-gui/res/formats/Archive/Vintage/2013-09-27.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2013-09-27.txt rename to forge-gui/res/formats/Archive/Vintage/2013-09-27.txt index cd2abef9c6e..8023de403af 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2013-09-27.txt +++ b/forge-gui/res/formats/Archive/Vintage/2013-09-27.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (THS) -Type:Historic +Type:Archive Subtype:Vintage Effective:2013-09-27 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2013-11-01.txt b/forge-gui/res/formats/Archive/Vintage/2013-11-01.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2013-11-01.txt rename to forge-gui/res/formats/Archive/Vintage/2013-11-01.txt index b716c2da011..e7512ff86eb 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2013-11-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2013-11-01.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (C13) -Type:Historic +Type:Archive Subtype:Vintage Effective:2013-11-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2014-02-07.txt b/forge-gui/res/formats/Archive/Vintage/2014-02-07.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2014-02-07.txt rename to forge-gui/res/formats/Archive/Vintage/2014-02-07.txt index 38a76142a3f..253b5108a9d 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2014-02-07.txt +++ b/forge-gui/res/formats/Archive/Vintage/2014-02-07.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (BNG) -Type:Historic +Type:Archive Subtype:Vintage Effective:2014-02-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2014-03-14.txt b/forge-gui/res/formats/Archive/Vintage/2014-03-14.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2014-03-14.txt rename to forge-gui/res/formats/Archive/Vintage/2014-03-14.txt index 6b17bb5ea75..6a302cd3553 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2014-03-14.txt +++ b/forge-gui/res/formats/Archive/Vintage/2014-03-14.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDM) -Type:Historic +Type:Archive Subtype:Vintage Effective:2014-03-14 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2014-05-02.txt b/forge-gui/res/formats/Archive/Vintage/2014-05-02.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2014-05-02.txt rename to forge-gui/res/formats/Archive/Vintage/2014-05-02.txt index 0c02ea48bc3..97a1cbdba4c 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2014-05-02.txt +++ b/forge-gui/res/formats/Archive/Vintage/2014-05-02.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (JOU) -Type:Historic +Type:Archive Subtype:Vintage Effective:2014-05-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2014-05-30.txt b/forge-gui/res/formats/Archive/Vintage/2014-05-30.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2014-05-30.txt rename to forge-gui/res/formats/Archive/Vintage/2014-05-30.txt index ddc7d281ea1..ffd7b753fdf 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2014-05-30.txt +++ b/forge-gui/res/formats/Archive/Vintage/2014-05-30.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (MD1) -Type:Historic +Type:Archive Subtype:Vintage Effective:2014-05-30 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2014-06-06.txt b/forge-gui/res/formats/Archive/Vintage/2014-06-06.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2014-06-06.txt rename to forge-gui/res/formats/Archive/Vintage/2014-06-06.txt index c2e1a01079a..ffec6813b94 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2014-06-06.txt +++ b/forge-gui/res/formats/Archive/Vintage/2014-06-06.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (CNS) -Type:Historic +Type:Archive Subtype:Vintage Effective:2014-06-06 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2014-06-16.txt b/forge-gui/res/formats/Archive/Vintage/2014-06-16.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2014-06-16.txt rename to forge-gui/res/formats/Archive/Vintage/2014-06-16.txt index 74ec40e948b..24f827a064d 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2014-06-16.txt +++ b/forge-gui/res/formats/Archive/Vintage/2014-06-16.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (VMA) -Type:Historic +Type:Archive Subtype:Vintage Effective:2014-06-16 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2014-07-18.txt b/forge-gui/res/formats/Archive/Vintage/2014-07-18.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2014-07-18.txt rename to forge-gui/res/formats/Archive/Vintage/2014-07-18.txt index a0e59021e3a..753b25286b2 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2014-07-18.txt +++ b/forge-gui/res/formats/Archive/Vintage/2014-07-18.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (M15) -Type:Historic +Type:Archive Subtype:Vintage Effective:2014-07-18 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2014-08-22.txt b/forge-gui/res/formats/Archive/Vintage/2014-08-22.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2014-08-22.txt rename to forge-gui/res/formats/Archive/Vintage/2014-08-22.txt index 64f8563290e..997ad848afd 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2014-08-22.txt +++ b/forge-gui/res/formats/Archive/Vintage/2014-08-22.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (V14) -Type:Historic +Type:Archive Subtype:Vintage Effective:2014-08-22 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2014-09-05.txt b/forge-gui/res/formats/Archive/Vintage/2014-09-05.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2014-09-05.txt rename to forge-gui/res/formats/Archive/Vintage/2014-09-05.txt index 63d2b3473cd..4b2d91dcd4f 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2014-09-05.txt +++ b/forge-gui/res/formats/Archive/Vintage/2014-09-05.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDN) -Type:Historic +Type:Archive Subtype:Vintage Effective:2014-09-05 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2014-09-26.txt b/forge-gui/res/formats/Archive/Vintage/2014-09-26.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2014-09-26.txt rename to forge-gui/res/formats/Archive/Vintage/2014-09-26.txt index b22aea2caf6..56f24622817 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2014-09-26.txt +++ b/forge-gui/res/formats/Archive/Vintage/2014-09-26.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (KTK) -Type:Historic +Type:Archive Subtype:Vintage Effective:2014-09-26 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2014-11-07.txt b/forge-gui/res/formats/Archive/Vintage/2014-11-07.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2014-11-07.txt rename to forge-gui/res/formats/Archive/Vintage/2014-11-07.txt index f453afab52b..0dfce4faf2e 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2014-11-07.txt +++ b/forge-gui/res/formats/Archive/Vintage/2014-11-07.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (C14) -Type:Historic +Type:Archive Subtype:Vintage Effective:2014-11-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2014-12-05.txt b/forge-gui/res/formats/Archive/Vintage/2014-12-05.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2014-12-05.txt rename to forge-gui/res/formats/Archive/Vintage/2014-12-05.txt index d1004955088..7fdaa5eeb8b 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2014-12-05.txt +++ b/forge-gui/res/formats/Archive/Vintage/2014-12-05.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DD3) -Type:Historic +Type:Archive Subtype:Vintage Effective:2014-12-05 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2015-01-23.txt b/forge-gui/res/formats/Archive/Vintage/2015-01-23.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2015-01-23.txt rename to forge-gui/res/formats/Archive/Vintage/2015-01-23.txt index 8f0295ee677..c953d7bcc1a 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2015-01-23.txt +++ b/forge-gui/res/formats/Archive/Vintage/2015-01-23.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (FRF) -Type:Historic +Type:Archive Subtype:Vintage Effective:2015-01-23 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2015-02-27.txt b/forge-gui/res/formats/Archive/Vintage/2015-02-27.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2015-02-27.txt rename to forge-gui/res/formats/Archive/Vintage/2015-02-27.txt index 3ff62ffb17f..290fb480fac 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2015-02-27.txt +++ b/forge-gui/res/formats/Archive/Vintage/2015-02-27.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDO) -Type:Historic +Type:Archive Subtype:Vintage Effective:2015-02-27 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2015-03-27.txt b/forge-gui/res/formats/Archive/Vintage/2015-03-27.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2015-03-27.txt rename to forge-gui/res/formats/Archive/Vintage/2015-03-27.txt index 7f18e7e7376..e8a04a38d8c 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2015-03-27.txt +++ b/forge-gui/res/formats/Archive/Vintage/2015-03-27.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DTK) -Type:Historic +Type:Archive Subtype:Vintage Effective:2015-03-27 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2015-05-06.txt b/forge-gui/res/formats/Archive/Vintage/2015-05-06.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2015-05-06.txt rename to forge-gui/res/formats/Archive/Vintage/2015-05-06.txt index 3304763e26f..c67557bdbd7 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2015-05-06.txt +++ b/forge-gui/res/formats/Archive/Vintage/2015-05-06.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (TPR) -Type:Historic +Type:Archive Subtype:Vintage Effective:2015-05-06 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2015-05-22.txt b/forge-gui/res/formats/Archive/Vintage/2015-05-22.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2015-05-22.txt rename to forge-gui/res/formats/Archive/Vintage/2015-05-22.txt index 21aa6171e81..9083240d3de 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2015-05-22.txt +++ b/forge-gui/res/formats/Archive/Vintage/2015-05-22.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (MM2) -Type:Historic +Type:Archive Subtype:Vintage Effective:2015-05-22 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2015-07-17.txt b/forge-gui/res/formats/Archive/Vintage/2015-07-17.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2015-07-17.txt rename to forge-gui/res/formats/Archive/Vintage/2015-07-17.txt index 984c9f4d492..4358a1687ca 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2015-07-17.txt +++ b/forge-gui/res/formats/Archive/Vintage/2015-07-17.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (ORI) -Type:Historic +Type:Archive Subtype:Vintage Effective:2015-07-17 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2015-08-21.txt b/forge-gui/res/formats/Archive/Vintage/2015-08-21.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2015-08-21.txt rename to forge-gui/res/formats/Archive/Vintage/2015-08-21.txt index 16ce0f51e3a..19b8b80b8ab 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2015-08-21.txt +++ b/forge-gui/res/formats/Archive/Vintage/2015-08-21.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (V15) -Type:Historic +Type:Archive Subtype:Vintage Effective:2015-08-21 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2015-08-28.txt b/forge-gui/res/formats/Archive/Vintage/2015-08-28.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2015-08-28.txt rename to forge-gui/res/formats/Archive/Vintage/2015-08-28.txt index 69a7ca9f08b..2c7ba7a45b8 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2015-08-28.txt +++ b/forge-gui/res/formats/Archive/Vintage/2015-08-28.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDP) -Type:Historic +Type:Archive Subtype:Vintage Effective:2015-08-28 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2015-10-02.txt b/forge-gui/res/formats/Archive/Vintage/2015-10-02.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2015-10-02.txt rename to forge-gui/res/formats/Archive/Vintage/2015-10-02.txt index d89064cbb25..4f33db58640 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2015-10-02.txt +++ b/forge-gui/res/formats/Archive/Vintage/2015-10-02.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (BFZ) -Type:Historic +Type:Archive Subtype:Vintage Effective:2015-10-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2015-11-13.txt b/forge-gui/res/formats/Archive/Vintage/2015-11-13.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2015-11-13.txt rename to forge-gui/res/formats/Archive/Vintage/2015-11-13.txt index 69fb1972ece..0ea40f82bfb 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2015-11-13.txt +++ b/forge-gui/res/formats/Archive/Vintage/2015-11-13.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (C15) -Type:Historic +Type:Archive Subtype:Vintage Effective:2015-11-13 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2015-11-18.txt b/forge-gui/res/formats/Archive/Vintage/2015-11-18.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2015-11-18.txt rename to forge-gui/res/formats/Archive/Vintage/2015-11-18.txt index 9aed0cfeb9e..91be05fd6a5 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2015-11-18.txt +++ b/forge-gui/res/formats/Archive/Vintage/2015-11-18.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (PZ1) -Type:Historic +Type:Archive Subtype:Vintage Effective:2015-11-18 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2016-01-22.txt b/forge-gui/res/formats/Archive/Vintage/2016-01-22.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2016-01-22.txt rename to forge-gui/res/formats/Archive/Vintage/2016-01-22.txt index 037a0c809f0..c61d4e64008 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2016-01-22.txt +++ b/forge-gui/res/formats/Archive/Vintage/2016-01-22.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (OGW) -Type:Historic +Type:Archive Subtype:Vintage Effective:2016-01-22 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2016-02-26.txt b/forge-gui/res/formats/Archive/Vintage/2016-02-26.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2016-02-26.txt rename to forge-gui/res/formats/Archive/Vintage/2016-02-26.txt index 88ba6fef003..b01020c89ed 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2016-02-26.txt +++ b/forge-gui/res/formats/Archive/Vintage/2016-02-26.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDQ) -Type:Historic +Type:Archive Subtype:Vintage Effective:2016-02-26 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2016-04-08.txt b/forge-gui/res/formats/Archive/Vintage/2016-04-08.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2016-04-08.txt rename to forge-gui/res/formats/Archive/Vintage/2016-04-08.txt index f246d421cb9..aa282f7c675 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2016-04-08.txt +++ b/forge-gui/res/formats/Archive/Vintage/2016-04-08.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (SOI) -Type:Historic +Type:Archive Subtype:Vintage Effective:2016-04-08 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2016-06-10.txt b/forge-gui/res/formats/Archive/Vintage/2016-06-10.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2016-06-10.txt rename to forge-gui/res/formats/Archive/Vintage/2016-06-10.txt index 1a11df43961..5d4d4ec9ab1 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2016-06-10.txt +++ b/forge-gui/res/formats/Archive/Vintage/2016-06-10.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (EMA) -Type:Historic +Type:Archive Subtype:Vintage Effective:2016-06-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2016-07-22.txt b/forge-gui/res/formats/Archive/Vintage/2016-07-22.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2016-07-22.txt rename to forge-gui/res/formats/Archive/Vintage/2016-07-22.txt index 9c02cde4fad..b7874594325 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2016-07-22.txt +++ b/forge-gui/res/formats/Archive/Vintage/2016-07-22.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (EMN) -Type:Historic +Type:Archive Subtype:Vintage Effective:2016-07-22 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2016-08-19.txt b/forge-gui/res/formats/Archive/Vintage/2016-08-19.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2016-08-19.txt rename to forge-gui/res/formats/Archive/Vintage/2016-08-19.txt index 2d8df3a29a2..cea58252270 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2016-08-19.txt +++ b/forge-gui/res/formats/Archive/Vintage/2016-08-19.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (V16) -Type:Historic +Type:Archive Subtype:Vintage Effective:2016-08-19 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2016-08-26.txt b/forge-gui/res/formats/Archive/Vintage/2016-08-26.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2016-08-26.txt rename to forge-gui/res/formats/Archive/Vintage/2016-08-26.txt index 0138a4d19ca..4fab11651ae 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2016-08-26.txt +++ b/forge-gui/res/formats/Archive/Vintage/2016-08-26.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (CN2) -Type:Historic +Type:Archive Subtype:Vintage Effective:2016-08-26 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2016-09-02.txt b/forge-gui/res/formats/Archive/Vintage/2016-09-02.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2016-09-02.txt rename to forge-gui/res/formats/Archive/Vintage/2016-09-02.txt index 09746d72c58..f41d629ef34 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2016-09-02.txt +++ b/forge-gui/res/formats/Archive/Vintage/2016-09-02.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDR) -Type:Historic +Type:Archive Subtype:Vintage Effective:2016-09-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2016-09-30.txt b/forge-gui/res/formats/Archive/Vintage/2016-09-30.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2016-09-30.txt rename to forge-gui/res/formats/Archive/Vintage/2016-09-30.txt index a12039d7fbd..a57e970f0fc 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2016-09-30.txt +++ b/forge-gui/res/formats/Archive/Vintage/2016-09-30.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (KLD) -Type:Historic +Type:Archive Subtype:Vintage Effective:2016-09-30 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2016-11-11.txt b/forge-gui/res/formats/Archive/Vintage/2016-11-11.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2016-11-11.txt rename to forge-gui/res/formats/Archive/Vintage/2016-11-11.txt index 200d3b0f03d..d590baeae0f 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2016-11-11.txt +++ b/forge-gui/res/formats/Archive/Vintage/2016-11-11.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (C16) -Type:Historic +Type:Archive Subtype:Vintage Effective:2016-11-11 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2016-11-16.txt b/forge-gui/res/formats/Archive/Vintage/2016-11-16.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2016-11-16.txt rename to forge-gui/res/formats/Archive/Vintage/2016-11-16.txt index 11ec383dacf..12b065823d8 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2016-11-16.txt +++ b/forge-gui/res/formats/Archive/Vintage/2016-11-16.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (PZ2) -Type:Historic +Type:Archive Subtype:Vintage Effective:2016-11-16 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2017-01-20.txt b/forge-gui/res/formats/Archive/Vintage/2017-01-20.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2017-01-20.txt rename to forge-gui/res/formats/Archive/Vintage/2017-01-20.txt index ac56e149c9b..73f5830bb00 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2017-01-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2017-01-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (AER) -Type:Historic +Type:Archive Subtype:Vintage Effective:2017-01-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2017-03-17.txt b/forge-gui/res/formats/Archive/Vintage/2017-03-17.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2017-03-17.txt rename to forge-gui/res/formats/Archive/Vintage/2017-03-17.txt index 1b3f034da42..0bb1d4c96ad 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2017-03-17.txt +++ b/forge-gui/res/formats/Archive/Vintage/2017-03-17.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (MM3) -Type:Historic +Type:Archive Subtype:Vintage Effective:2017-03-17 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2017-03-31.txt b/forge-gui/res/formats/Archive/Vintage/2017-03-31.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2017-03-31.txt rename to forge-gui/res/formats/Archive/Vintage/2017-03-31.txt index f4b9f449af8..044442da3a7 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2017-03-31.txt +++ b/forge-gui/res/formats/Archive/Vintage/2017-03-31.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDS) -Type:Historic +Type:Archive Subtype:Vintage Effective:2017-03-31 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2017-04-24.txt b/forge-gui/res/formats/Archive/Vintage/2017-04-24.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2017-04-24.txt rename to forge-gui/res/formats/Archive/Vintage/2017-04-24.txt index a4433cec230..be9a6afd7d1 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2017-04-24.txt +++ b/forge-gui/res/formats/Archive/Vintage/2017-04-24.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2017-04-24) -Type:Historic +Type:Archive Subtype:Vintage Effective:2017-04-24 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2017-04-28.txt b/forge-gui/res/formats/Archive/Vintage/2017-04-28.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2017-04-28.txt rename to forge-gui/res/formats/Archive/Vintage/2017-04-28.txt index ffce8db66a7..fbeb136b9f6 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2017-04-28.txt +++ b/forge-gui/res/formats/Archive/Vintage/2017-04-28.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (AKH) -Type:Historic +Type:Archive Subtype:Vintage Effective:2017-04-28 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2017-06-09.txt b/forge-gui/res/formats/Archive/Vintage/2017-06-09.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2017-06-09.txt rename to forge-gui/res/formats/Archive/Vintage/2017-06-09.txt index 15fabe0be86..86054162f97 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2017-06-09.txt +++ b/forge-gui/res/formats/Archive/Vintage/2017-06-09.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (CMA) -Type:Historic +Type:Archive Subtype:Vintage Effective:2017-06-09 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2017-07-14.txt b/forge-gui/res/formats/Archive/Vintage/2017-07-14.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2017-07-14.txt rename to forge-gui/res/formats/Archive/Vintage/2017-07-14.txt index e669f9f6228..2ab1c67d2d7 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2017-07-14.txt +++ b/forge-gui/res/formats/Archive/Vintage/2017-07-14.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (HOU) -Type:Historic +Type:Archive Subtype:Vintage Effective:2017-07-14 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2017-08-25.txt b/forge-gui/res/formats/Archive/Vintage/2017-08-25.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2017-08-25.txt rename to forge-gui/res/formats/Archive/Vintage/2017-08-25.txt index 87449cba566..6e178999075 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2017-08-25.txt +++ b/forge-gui/res/formats/Archive/Vintage/2017-08-25.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (C17) -Type:Historic +Type:Archive Subtype:Vintage Effective:2017-08-25 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2017-09-01.txt b/forge-gui/res/formats/Archive/Vintage/2017-09-01.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2017-09-01.txt rename to forge-gui/res/formats/Archive/Vintage/2017-09-01.txt index f8cfa12a203..da6f5b6a7e5 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2017-09-01.txt +++ b/forge-gui/res/formats/Archive/Vintage/2017-09-01.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2017-09-01) -Type:Historic +Type:Archive Subtype:Vintage Effective:2017-09-01 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2017-09-29.txt b/forge-gui/res/formats/Archive/Vintage/2017-09-29.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2017-09-29.txt rename to forge-gui/res/formats/Archive/Vintage/2017-09-29.txt index 6877e5e4ab3..323f0170c21 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2017-09-29.txt +++ b/forge-gui/res/formats/Archive/Vintage/2017-09-29.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (XLN) -Type:Historic +Type:Archive Subtype:Vintage Effective:2017-09-29 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2017-11-10.txt b/forge-gui/res/formats/Archive/Vintage/2017-11-10.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2017-11-10.txt rename to forge-gui/res/formats/Archive/Vintage/2017-11-10.txt index 36596e22c46..e04a35b260f 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2017-11-10.txt +++ b/forge-gui/res/formats/Archive/Vintage/2017-11-10.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDT) -Type:Historic +Type:Archive Subtype:Vintage Effective:2017-11-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2017-11-17.txt b/forge-gui/res/formats/Archive/Vintage/2017-11-17.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2017-11-17.txt rename to forge-gui/res/formats/Archive/Vintage/2017-11-17.txt index 42a1303980d..635ccaac506 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2017-11-17.txt +++ b/forge-gui/res/formats/Archive/Vintage/2017-11-17.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (IMA) -Type:Historic +Type:Archive Subtype:Vintage Effective:2017-11-17 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2017-11-24.txt b/forge-gui/res/formats/Archive/Vintage/2017-11-24.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2017-11-24.txt rename to forge-gui/res/formats/Archive/Vintage/2017-11-24.txt index 523cfd6e7b2..e87ec929154 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2017-11-24.txt +++ b/forge-gui/res/formats/Archive/Vintage/2017-11-24.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (V17) -Type:Historic +Type:Archive Subtype:Vintage Effective:2017-11-24 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2018-01-19.txt b/forge-gui/res/formats/Archive/Vintage/2018-01-19.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2018-01-19.txt rename to forge-gui/res/formats/Archive/Vintage/2018-01-19.txt index 1f2a59bd53e..c44bdfa242e 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2018-01-19.txt +++ b/forge-gui/res/formats/Archive/Vintage/2018-01-19.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (RIX) -Type:Historic +Type:Archive Subtype:Vintage Effective:2018-01-19 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2018-03-16.txt b/forge-gui/res/formats/Archive/Vintage/2018-03-16.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2018-03-16.txt rename to forge-gui/res/formats/Archive/Vintage/2018-03-16.txt index 31431d1ab0d..59beef31e61 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2018-03-16.txt +++ b/forge-gui/res/formats/Archive/Vintage/2018-03-16.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (A25) -Type:Historic +Type:Archive Subtype:Vintage Effective:2018-03-16 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2018-04-06.txt b/forge-gui/res/formats/Archive/Vintage/2018-04-06.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2018-04-06.txt rename to forge-gui/res/formats/Archive/Vintage/2018-04-06.txt index 6a209ca96f9..70245dc8d30 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2018-04-06.txt +++ b/forge-gui/res/formats/Archive/Vintage/2018-04-06.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DDU) -Type:Historic +Type:Archive Subtype:Vintage Effective:2018-04-06 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2018-04-27.txt b/forge-gui/res/formats/Archive/Vintage/2018-04-27.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2018-04-27.txt rename to forge-gui/res/formats/Archive/Vintage/2018-04-27.txt index c768c796fd6..1b6874d0c80 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2018-04-27.txt +++ b/forge-gui/res/formats/Archive/Vintage/2018-04-27.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DOM) -Type:Historic +Type:Archive Subtype:Vintage Effective:2018-04-27 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2018-06-08.txt b/forge-gui/res/formats/Archive/Vintage/2018-06-08.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2018-06-08.txt rename to forge-gui/res/formats/Archive/Vintage/2018-06-08.txt index c3e36d98708..4409ac3c57b 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2018-06-08.txt +++ b/forge-gui/res/formats/Archive/Vintage/2018-06-08.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (CM2) -Type:Historic +Type:Archive Subtype:Vintage Effective:2018-06-08 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2018-06-15.txt b/forge-gui/res/formats/Archive/Vintage/2018-06-15.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2018-06-15.txt rename to forge-gui/res/formats/Archive/Vintage/2018-06-15.txt index 08b260e3c4e..d91a1e64c1b 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2018-06-15.txt +++ b/forge-gui/res/formats/Archive/Vintage/2018-06-15.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (SS1) -Type:Historic +Type:Archive Subtype:Vintage Effective:2018-06-15 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2018-06-22.txt b/forge-gui/res/formats/Archive/Vintage/2018-06-22.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2018-06-22.txt rename to forge-gui/res/formats/Archive/Vintage/2018-06-22.txt index cb683f61862..be35d720817 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2018-06-22.txt +++ b/forge-gui/res/formats/Archive/Vintage/2018-06-22.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (GS1) -Type:Historic +Type:Archive Subtype:Vintage Effective:2018-06-22 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2018-07-13.txt b/forge-gui/res/formats/Archive/Vintage/2018-07-13.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2018-07-13.txt rename to forge-gui/res/formats/Archive/Vintage/2018-07-13.txt index 67752de981d..16a36253e06 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2018-07-13.txt +++ b/forge-gui/res/formats/Archive/Vintage/2018-07-13.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (M19) -Type:Historic +Type:Archive Subtype:Vintage Effective:2018-07-13 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2018-08-09.txt b/forge-gui/res/formats/Archive/Vintage/2018-08-09.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2018-08-09.txt rename to forge-gui/res/formats/Archive/Vintage/2018-08-09.txt index 7c0a9b36ad2..0ce31c2c7c3 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2018-08-09.txt +++ b/forge-gui/res/formats/Archive/Vintage/2018-08-09.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (C18) -Type:Historic +Type:Archive Subtype:Vintage Effective:2018-08-09 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2018-10-05.txt b/forge-gui/res/formats/Archive/Vintage/2018-10-05.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2018-10-05.txt rename to forge-gui/res/formats/Archive/Vintage/2018-10-05.txt index e7d515f536d..74daf7bbb8b 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2018-10-05.txt +++ b/forge-gui/res/formats/Archive/Vintage/2018-10-05.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (GRN) -Type:Historic +Type:Archive Subtype:Vintage Effective:2018-10-05 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2018-11-02.txt b/forge-gui/res/formats/Archive/Vintage/2018-11-02.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2018-11-02.txt rename to forge-gui/res/formats/Archive/Vintage/2018-11-02.txt index 19300f0fd98..4e06e3f830f 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2018-11-02.txt +++ b/forge-gui/res/formats/Archive/Vintage/2018-11-02.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (GK1) -Type:Historic +Type:Archive Subtype:Vintage Effective:2018-11-02 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2018-11-16.txt b/forge-gui/res/formats/Archive/Vintage/2018-11-16.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2018-11-16.txt rename to forge-gui/res/formats/Archive/Vintage/2018-11-16.txt index a70b2a34dae..12c3f2d52aa 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2018-11-16.txt +++ b/forge-gui/res/formats/Archive/Vintage/2018-11-16.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (G18) -Type:Historic +Type:Archive Subtype:Vintage Effective:2018-11-16 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2018-12-07.txt b/forge-gui/res/formats/Archive/Vintage/2018-12-07.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2018-12-07.txt rename to forge-gui/res/formats/Archive/Vintage/2018-12-07.txt index afcc6038f46..b6df6b63e7b 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2018-12-07.txt +++ b/forge-gui/res/formats/Archive/Vintage/2018-12-07.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (UMA) -Type:Historic +Type:Archive Subtype:Vintage Effective:2018-12-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2019-01-25.txt b/forge-gui/res/formats/Archive/Vintage/2019-01-25.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2019-01-25.txt rename to forge-gui/res/formats/Archive/Vintage/2019-01-25.txt index 82ccdb69f47..201ff6f865f 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2019-01-25.txt +++ b/forge-gui/res/formats/Archive/Vintage/2019-01-25.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (RNA) -Type:Historic +Type:Archive Subtype:Vintage Effective:2019-01-25 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2019-02-15.txt b/forge-gui/res/formats/Archive/Vintage/2019-02-15.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2019-02-15.txt rename to forge-gui/res/formats/Archive/Vintage/2019-02-15.txt index dff43cfeea1..f07ae7c50f7 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2019-02-15.txt +++ b/forge-gui/res/formats/Archive/Vintage/2019-02-15.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (GK2) -Type:Historic +Type:Archive Subtype:Vintage Effective:2019-02-15 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2019-05-03.txt b/forge-gui/res/formats/Archive/Vintage/2019-05-03.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2019-05-03.txt rename to forge-gui/res/formats/Archive/Vintage/2019-05-03.txt index db24f7b09a8..17af170a92b 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2019-05-03.txt +++ b/forge-gui/res/formats/Archive/Vintage/2019-05-03.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (WAR) -Type:Historic +Type:Archive Subtype:Vintage Effective:2019-05-03 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2019-06-14.txt b/forge-gui/res/formats/Archive/Vintage/2019-06-14.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2019-06-14.txt rename to forge-gui/res/formats/Archive/Vintage/2019-06-14.txt index 72a00d5b172..8ca86a1a8a4 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2019-06-14.txt +++ b/forge-gui/res/formats/Archive/Vintage/2019-06-14.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (MH1) -Type:Historic +Type:Archive Subtype:Vintage Effective:2019-06-14 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2019-06-28.txt b/forge-gui/res/formats/Archive/Vintage/2019-06-28.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2019-06-28.txt rename to forge-gui/res/formats/Archive/Vintage/2019-06-28.txt index 7ef91f3e493..4f0231812b2 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2019-06-28.txt +++ b/forge-gui/res/formats/Archive/Vintage/2019-06-28.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (SS2) -Type:Historic +Type:Archive Subtype:Vintage Effective:2019-06-28 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2019-07-12.txt b/forge-gui/res/formats/Archive/Vintage/2019-07-12.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2019-07-12.txt rename to forge-gui/res/formats/Archive/Vintage/2019-07-12.txt index efa57e129b6..fcf0d6b44c8 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2019-07-12.txt +++ b/forge-gui/res/formats/Archive/Vintage/2019-07-12.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (M20) -Type:Historic +Type:Archive Subtype:Vintage Effective:2019-07-12 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2019-08-23.txt b/forge-gui/res/formats/Archive/Vintage/2019-08-23.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2019-08-23.txt rename to forge-gui/res/formats/Archive/Vintage/2019-08-23.txt index c0c4378515f..6768a7a1b20 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2019-08-23.txt +++ b/forge-gui/res/formats/Archive/Vintage/2019-08-23.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (C19) -Type:Historic +Type:Archive Subtype:Vintage Effective:2019-08-23 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2019-08-30.txt b/forge-gui/res/formats/Archive/Vintage/2019-08-30.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2019-08-30.txt rename to forge-gui/res/formats/Archive/Vintage/2019-08-30.txt index 877023bd252..5d0d9f48447 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2019-08-30.txt +++ b/forge-gui/res/formats/Archive/Vintage/2019-08-30.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2019-08-30) -Type:Historic +Type:Archive Subtype:Vintage Effective:2019-08-30 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2019-10-04.txt b/forge-gui/res/formats/Archive/Vintage/2019-10-04.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2019-10-04.txt rename to forge-gui/res/formats/Archive/Vintage/2019-10-04.txt index 26e80bdef04..5258b69ada7 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2019-10-04.txt +++ b/forge-gui/res/formats/Archive/Vintage/2019-10-04.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (ELD) -Type:Historic +Type:Archive Subtype:Vintage Effective:2019-10-04 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2019-11-07.txt b/forge-gui/res/formats/Archive/Vintage/2019-11-07.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2019-11-07.txt rename to forge-gui/res/formats/Archive/Vintage/2019-11-07.txt index ab4037a70ba..0c312a633cf 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2019-11-07.txt +++ b/forge-gui/res/formats/Archive/Vintage/2019-11-07.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (MB1) -Type:Historic +Type:Archive Subtype:Vintage Effective:2019-11-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2019-11-15.txt b/forge-gui/res/formats/Archive/Vintage/2019-11-15.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2019-11-15.txt rename to forge-gui/res/formats/Archive/Vintage/2019-11-15.txt index da72fe469c5..3e69f4a3a26 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2019-11-15.txt +++ b/forge-gui/res/formats/Archive/Vintage/2019-11-15.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (GN2) -Type:Historic +Type:Archive Subtype:Vintage Effective:2019-11-15 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2019-11-22.txt b/forge-gui/res/formats/Archive/Vintage/2019-11-22.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2019-11-22.txt rename to forge-gui/res/formats/Archive/Vintage/2019-11-22.txt index 071c0d4c92b..caf3e2c70c4 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2019-11-22.txt +++ b/forge-gui/res/formats/Archive/Vintage/2019-11-22.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2019-11-22) -Type:Historic +Type:Archive Subtype:Vintage Effective:2019-11-22 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2020-01-24.txt b/forge-gui/res/formats/Archive/Vintage/2020-01-24.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2020-01-24.txt rename to forge-gui/res/formats/Archive/Vintage/2020-01-24.txt index ad2e3c44050..cfb97732042 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2020-01-24.txt +++ b/forge-gui/res/formats/Archive/Vintage/2020-01-24.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (THB) -Type:Historic +Type:Archive Subtype:Vintage Effective:2020-01-24 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2020-04-24.txt b/forge-gui/res/formats/Archive/Vintage/2020-04-24.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2020-04-24.txt rename to forge-gui/res/formats/Archive/Vintage/2020-04-24.txt index 8d6d0e38df9..cab9998bd92 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2020-04-24.txt +++ b/forge-gui/res/formats/Archive/Vintage/2020-04-24.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (IKO) -Type:Historic +Type:Archive Subtype:Vintage Effective:2020-04-24 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2020-05-18.txt b/forge-gui/res/formats/Archive/Vintage/2020-05-18.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2020-05-18.txt rename to forge-gui/res/formats/Archive/Vintage/2020-05-18.txt index 755a5befa04..d4180b646d0 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2020-05-18.txt +++ b/forge-gui/res/formats/Archive/Vintage/2020-05-18.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2020-05-18) -Type:Historic +Type:Archive Subtype:Vintage Effective:2020-05-18 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2020-06-10.txt b/forge-gui/res/formats/Archive/Vintage/2020-06-10.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2020-06-10.txt rename to forge-gui/res/formats/Archive/Vintage/2020-06-10.txt index f51e6255134..9eafdfc6700 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2020-06-10.txt +++ b/forge-gui/res/formats/Archive/Vintage/2020-06-10.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2020-06-10) -Type:Historic +Type:Archive Subtype:Vintage Effective:2020-06-10 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2020-06-26.txt b/forge-gui/res/formats/Archive/Vintage/2020-06-26.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2020-06-26.txt rename to forge-gui/res/formats/Archive/Vintage/2020-06-26.txt index c1a2b2f0924..0c041f9c98e 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2020-06-26.txt +++ b/forge-gui/res/formats/Archive/Vintage/2020-06-26.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (SS3) -Type:Historic +Type:Archive Subtype:Vintage Effective:2020-06-26 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2020-07-03.txt b/forge-gui/res/formats/Archive/Vintage/2020-07-03.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2020-07-03.txt rename to forge-gui/res/formats/Archive/Vintage/2020-07-03.txt index fed985752d8..88e38b505bd 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2020-07-03.txt +++ b/forge-gui/res/formats/Archive/Vintage/2020-07-03.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (M21) -Type:Historic +Type:Archive Subtype:Vintage Effective:2020-07-03 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2020-07-17.txt b/forge-gui/res/formats/Archive/Vintage/2020-07-17.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2020-07-17.txt rename to forge-gui/res/formats/Archive/Vintage/2020-07-17.txt index e02f3c4f7ca..f8809336799 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2020-07-17.txt +++ b/forge-gui/res/formats/Archive/Vintage/2020-07-17.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (JMP) -Type:Historic +Type:Archive Subtype:Vintage Effective:2020-07-17 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2020-08-07.txt b/forge-gui/res/formats/Archive/Vintage/2020-08-07.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2020-08-07.txt rename to forge-gui/res/formats/Archive/Vintage/2020-08-07.txt index aeef182d8d1..710ab9cba9a 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2020-08-07.txt +++ b/forge-gui/res/formats/Archive/Vintage/2020-08-07.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2XM) -Type:Historic +Type:Archive Subtype:Vintage Effective:2020-08-07 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2020-09-25.txt b/forge-gui/res/formats/Archive/Vintage/2020-09-25.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2020-09-25.txt rename to forge-gui/res/formats/Archive/Vintage/2020-09-25.txt index d91fb3c0e9f..c6a23ec053f 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2020-09-25.txt +++ b/forge-gui/res/formats/Archive/Vintage/2020-09-25.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (ZNR) -Type:Historic +Type:Archive Subtype:Vintage Effective:2020-09-25 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2020-10-04.txt b/forge-gui/res/formats/Archive/Vintage/2020-10-04.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2020-10-04.txt rename to forge-gui/res/formats/Archive/Vintage/2020-10-04.txt index 8a0381994eb..dab2373b643 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2020-10-04.txt +++ b/forge-gui/res/formats/Archive/Vintage/2020-10-04.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2020-10-04) -Type:Historic +Type:Archive Subtype:Vintage Effective:2020-10-04 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2020-11-20.txt b/forge-gui/res/formats/Archive/Vintage/2020-11-20.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2020-11-20.txt rename to forge-gui/res/formats/Archive/Vintage/2020-11-20.txt index 01f02f55f6e..a053012119d 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2020-11-20.txt +++ b/forge-gui/res/formats/Archive/Vintage/2020-11-20.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (CMR) -Type:Historic +Type:Archive Subtype:Vintage Effective:2020-11-20 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2020-12-04.txt b/forge-gui/res/formats/Archive/Vintage/2020-12-04.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2020-12-04.txt rename to forge-gui/res/formats/Archive/Vintage/2020-12-04.txt index 173b2f4b804..021083e4bd6 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2020-12-04.txt +++ b/forge-gui/res/formats/Archive/Vintage/2020-12-04.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (CC1) -Type:Historic +Type:Archive Subtype:Vintage Effective:2020-12-04 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2021-02-05.txt b/forge-gui/res/formats/Archive/Vintage/2021-02-05.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2021-02-05.txt rename to forge-gui/res/formats/Archive/Vintage/2021-02-05.txt index 4404845322a..fd7d175c61b 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2021-02-05.txt +++ b/forge-gui/res/formats/Archive/Vintage/2021-02-05.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (KHM) -Type:Historic +Type:Archive Subtype:Vintage Effective:2021-02-05 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2021-02-15.txt b/forge-gui/res/formats/Archive/Vintage/2021-02-15.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2021-02-15.txt rename to forge-gui/res/formats/Archive/Vintage/2021-02-15.txt index bc17a5f944c..469308908c7 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2021-02-15.txt +++ b/forge-gui/res/formats/Archive/Vintage/2021-02-15.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2021-02-15) -Type:Historic +Type:Archive Subtype:Vintage Effective:2021-02-15 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2021-03-19.txt b/forge-gui/res/formats/Archive/Vintage/2021-03-19.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2021-03-19.txt rename to forge-gui/res/formats/Archive/Vintage/2021-03-19.txt index 346f61954f8..51b25fec329 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2021-03-19.txt +++ b/forge-gui/res/formats/Archive/Vintage/2021-03-19.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (TSR) -Type:Historic +Type:Archive Subtype:Vintage Effective:2021-03-19 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2021-04-23.txt b/forge-gui/res/formats/Archive/Vintage/2021-04-23.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2021-04-23.txt rename to forge-gui/res/formats/Archive/Vintage/2021-04-23.txt index 991b01cedfa..5a0bc7e3c69 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2021-04-23.txt +++ b/forge-gui/res/formats/Archive/Vintage/2021-04-23.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (STX) -Type:Historic +Type:Archive Subtype:Vintage Effective:2021-04-23 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2021-06-18.txt b/forge-gui/res/formats/Archive/Vintage/2021-06-18.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2021-06-18.txt rename to forge-gui/res/formats/Archive/Vintage/2021-06-18.txt index ad109606f02..1c1747b8e31 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2021-06-18.txt +++ b/forge-gui/res/formats/Archive/Vintage/2021-06-18.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (MH2) -Type:Historic +Type:Archive Subtype:Vintage Effective:2021-06-18 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2021-07-23.txt b/forge-gui/res/formats/Archive/Vintage/2021-07-23.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2021-07-23.txt rename to forge-gui/res/formats/Archive/Vintage/2021-07-23.txt index e72aa8c8695..c30641577d5 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2021-07-23.txt +++ b/forge-gui/res/formats/Archive/Vintage/2021-07-23.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (AFR) -Type:Historic +Type:Archive Subtype:Vintage Effective:2021-07-23 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2021-09-24.txt b/forge-gui/res/formats/Archive/Vintage/2021-09-24.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2021-09-24.txt rename to forge-gui/res/formats/Archive/Vintage/2021-09-24.txt index 7b55445dc8b..979c70f8a8d 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2021-09-24.txt +++ b/forge-gui/res/formats/Archive/Vintage/2021-09-24.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (MID) -Type:Historic +Type:Archive Subtype:Vintage Effective:2021-09-24 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC, MID, MIC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2021-10-18.txt b/forge-gui/res/formats/Archive/Vintage/2021-10-18.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2021-10-18.txt rename to forge-gui/res/formats/Archive/Vintage/2021-10-18.txt index 94f23d875ca..9337ed9edf4 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2021-10-18.txt +++ b/forge-gui/res/formats/Archive/Vintage/2021-10-18.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2021-10-18) -Type:Historic +Type:Archive Subtype:Vintage Effective:2021-10-18 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC, MID, MIC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2021-11-19.txt b/forge-gui/res/formats/Archive/Vintage/2021-11-19.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2021-11-19.txt rename to forge-gui/res/formats/Archive/Vintage/2021-11-19.txt index 9caaa7c200e..9bfb6178be3 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2021-11-19.txt +++ b/forge-gui/res/formats/Archive/Vintage/2021-11-19.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (VOW) -Type:Historic +Type:Archive Subtype:Vintage Effective:2021-11-19 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC, MID, MIC, VOW, VOC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2022-01-28.txt b/forge-gui/res/formats/Archive/Vintage/2022-01-28.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2022-01-28.txt rename to forge-gui/res/formats/Archive/Vintage/2022-01-28.txt index 87dc653afd7..3416cfd8f8b 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2022-01-28.txt +++ b/forge-gui/res/formats/Archive/Vintage/2022-01-28.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (DBL) -Type:Historic +Type:Archive Subtype:Vintage Effective:2022-01-28 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC, MID, MIC, VOW, VOC, DBL, CC2 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2022-02-17.txt b/forge-gui/res/formats/Archive/Vintage/2022-02-17.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2022-02-17.txt rename to forge-gui/res/formats/Archive/Vintage/2022-02-17.txt index 78a8cbb3a6b..f9e8ef960ac 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2022-02-17.txt +++ b/forge-gui/res/formats/Archive/Vintage/2022-02-17.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (2022-02-17) -Type:Historic +Type:Archive Subtype:Vintage Effective:2022-02-17 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC, MID, MIC, VOW, VOC, DBL, CC2 diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2022-02-18.txt b/forge-gui/res/formats/Archive/Vintage/2022-02-18.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2022-02-18.txt rename to forge-gui/res/formats/Archive/Vintage/2022-02-18.txt index 87c120b3f22..06e85af0ba8 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2022-02-18.txt +++ b/forge-gui/res/formats/Archive/Vintage/2022-02-18.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (NEO) -Type:Historic +Type:Archive Subtype:Vintage Effective:2022-02-18 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC, MID, MIC, VOW, VOC, DBL, CC2, NEO, NEC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2022-04-29.txt b/forge-gui/res/formats/Archive/Vintage/2022-04-29.txt similarity index 99% rename from forge-gui/res/formats/Historic/DCI/Vintage/2022-04-29.txt rename to forge-gui/res/formats/Archive/Vintage/2022-04-29.txt index b60f171b992..38c8a029633 100644 --- a/forge-gui/res/formats/Historic/DCI/Vintage/2022-04-29.txt +++ b/forge-gui/res/formats/Archive/Vintage/2022-04-29.txt @@ -1,6 +1,6 @@ [format] Name:Vintage (SNC) -Type:Historic +Type:Archive Subtype:Vintage Effective:2022-04-29 Sets:LEA, LEB, 2ED, ARN, ATQ, 3ED, LEG, DRC94, DRK, FEM, ARENA, WW, FS, SHC, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, POR, WTH, TMP, STH, EXO, PO2, USG, ATH, ULG, 6ED, UDS, S99, PTK, MMQ, BRB, NMS, S00, PCY, BTD, INV, PLS, 7ED, APC, ODY, DKM, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, DD1, MOR, SHM, EVE, DRB, ME2, ALA, DD2, CFX, DDC, ARB, M10, TD0, V09, ME3, ZEN, DDD, H09, WWK, DDE, ROE, DPA, M11, V10, DDF, SOM, TD1, PD2, ME4, MBS, DDG, NPH, TD2, COM, M12, V11, DDH, ISD, PD3, DKA, DDI, AVR, M13, V12, DDJ, RTR, CM1, GTC, DDK, DGM, MMA, M14, V13, DDL, THS, C13, BNG, DDM, JOU, MD1, CNS, VMA, M15, V14, DDN, KTK, C14, DVD, EVG, GVL, JVC, FRF, UGF, DDO, DTK, TPR, MM2, ORI, V15, DDP, BFZ, EXP, C15, PZ1, OGW, DDQ, SOI, W16, EMA, EMN, V16, CN2, DDR, KLD, MPS_KLD, C16, PZ2, AER, MM3, DDS, AKH, MPS_AKH, W17, CMA, HOU, C17, XLN, DDT, IMA, V17, RIX, A25, DDU, DOM, CM2, BBD, SS1, GS1, M19, C18, GRN, MPS_GRN, GK1, G18, GNT, UMA, RNA, MPS_RNA, GK2, WAR, MPS_WAR, MH1, SS2, M20, C19, ELD, MB1, GN2, THB, IKO, C20, SS3, M21, JMP, 2XM, ZNR, ZNE, ZNC, CMR, CC1, KHM, KHC, TSR, STX, STA, C21, MH2, H1R, AFR, AFC, MID, MIC, VOW, VOC, DBL, CC2, NEO, NEC, SNC, NCC diff --git a/forge-gui/res/formats/Historic/DCI/Vintage/2022-06-10.txt b/forge-gui/res/formats/Archive/Vintage/2022-06-10.txt similarity index 100% rename from forge-gui/res/formats/Historic/DCI/Vintage/2022-06-10.txt rename to forge-gui/res/formats/Archive/Vintage/2022-06-10.txt diff --git a/forge-gui/res/formats/Block/Amonkhet Block.txt b/forge-gui/res/formats/Block/Amonkhet Block.txt index 61f8b45bf3b..2d6005daec5 100644 --- a/forge-gui/res/formats/Block/Amonkhet Block.txt +++ b/forge-gui/res/formats/Block/Amonkhet Block.txt @@ -1,6 +1,6 @@ [format] Name:Amonkhet Block -Type:Historic +Type:Archive Subtype:Block Order:112 Sets:HOU, AKH diff --git a/forge-gui/res/formats/Block/Battle for Zendikar Block.txt b/forge-gui/res/formats/Block/Battle for Zendikar Block.txt index cafe11d2e4b..3d7d7e319d4 100644 --- a/forge-gui/res/formats/Block/Battle for Zendikar Block.txt +++ b/forge-gui/res/formats/Block/Battle for Zendikar Block.txt @@ -1,6 +1,6 @@ [format] Name:Battle for Zendikar Block -Type:Historic +Type:Archive Subtype:Block Order:115 Sets:OGW, BFZ diff --git a/forge-gui/res/formats/Block/Ice Age Block.txt b/forge-gui/res/formats/Block/Ice Age Block.txt index c01f532dd8b..0ede56a6530 100644 --- a/forge-gui/res/formats/Block/Ice Age Block.txt +++ b/forge-gui/res/formats/Block/Ice Age Block.txt @@ -1,6 +1,6 @@ [format] Name:Ice Age Block -Type:Historic +Type:Archive Subtype:Block Order:135 Sets:CSP, ALL, ICE diff --git a/forge-gui/res/formats/Block/Innistrad-Avacyn Restored Block.txt b/forge-gui/res/formats/Block/Innistrad-Avacyn Restored Block.txt index d6d46e619ef..855bd7fe8ed 100644 --- a/forge-gui/res/formats/Block/Innistrad-Avacyn Restored Block.txt +++ b/forge-gui/res/formats/Block/Innistrad-Avacyn Restored Block.txt @@ -1,6 +1,6 @@ [format] Name:Innistrad-Avacyn Restored Block -Type:Historic +Type:Archive Subtype:Block Order:119 Sets:ISD, AVR, DKA diff --git a/forge-gui/res/formats/Block/Invasion Block.txt b/forge-gui/res/formats/Block/Invasion Block.txt index b46581418fc..ec257d0e360 100644 --- a/forge-gui/res/formats/Block/Invasion Block.txt +++ b/forge-gui/res/formats/Block/Invasion Block.txt @@ -1,6 +1,6 @@ [format] Name:Invasion Block -Type:Historic +Type:Archive Subtype:Block Order:130 Sets:APC, PLS, INV diff --git a/forge-gui/res/formats/Block/Ixalan Block.txt b/forge-gui/res/formats/Block/Ixalan Block.txt index caaeba30bd6..7de8c0717a4 100644 --- a/forge-gui/res/formats/Block/Ixalan Block.txt +++ b/forge-gui/res/formats/Block/Ixalan Block.txt @@ -1,6 +1,6 @@ [format] Name:Ixalan Block -Type:Historic +Type:Archive Subtype:Block Order:111 Sets:XLN, RIX diff --git a/forge-gui/res/formats/Block/Kaladesh Block.txt b/forge-gui/res/formats/Block/Kaladesh Block.txt index 8d4dc5468ca..fe67fc92923 100644 --- a/forge-gui/res/formats/Block/Kaladesh Block.txt +++ b/forge-gui/res/formats/Block/Kaladesh Block.txt @@ -1,6 +1,6 @@ [format] Name:Kaladesh Block -Type:Historic +Type:Archive Subtype:Block Order:113 Sets:AER, KLD diff --git a/forge-gui/res/formats/Block/Kamigawa Block.txt b/forge-gui/res/formats/Block/Kamigawa Block.txt index d6403d6f0f7..76e9b03c478 100644 --- a/forge-gui/res/formats/Block/Kamigawa Block.txt +++ b/forge-gui/res/formats/Block/Kamigawa Block.txt @@ -1,6 +1,6 @@ [format] Name:Kamigawa Block -Type:Historic +Type:Archive Subtype:Block Order:126 Sets:SOK, BOK, CHK diff --git a/forge-gui/res/formats/Block/Khans of Tarkir Block.txt b/forge-gui/res/formats/Block/Khans of Tarkir Block.txt index a4ea2448a4a..2aa08002f51 100644 --- a/forge-gui/res/formats/Block/Khans of Tarkir Block.txt +++ b/forge-gui/res/formats/Block/Khans of Tarkir Block.txt @@ -1,6 +1,6 @@ [format] Name:Khans of Tarkir Block -Type:Historic +Type:Archive Subtype:Block Order:116 Sets:DTK, FRF, KTK diff --git a/forge-gui/res/formats/Block/Lorwyn-Shadowmoor Block.txt b/forge-gui/res/formats/Block/Lorwyn-Shadowmoor Block.txt index 35abf4e9483..baa94c32d58 100644 --- a/forge-gui/res/formats/Block/Lorwyn-Shadowmoor Block.txt +++ b/forge-gui/res/formats/Block/Lorwyn-Shadowmoor Block.txt @@ -1,6 +1,6 @@ [format] Name:Lorwyn-Shadowmoor Block -Type:Historic +Type:Archive Subtype:Block Order:123 Sets:EVE, SHM, MOR, LRW diff --git a/forge-gui/res/formats/Block/Masques Block.txt b/forge-gui/res/formats/Block/Masques Block.txt index b67f2f4cf87..f531b61b2cf 100644 --- a/forge-gui/res/formats/Block/Masques Block.txt +++ b/forge-gui/res/formats/Block/Masques Block.txt @@ -1,6 +1,6 @@ [format] Name:Masques Block -Type:Historic +Type:Archive Subtype:Block Order:131 Sets:MMQ, NMS, PCY diff --git a/forge-gui/res/formats/Block/Mirage Block.txt b/forge-gui/res/formats/Block/Mirage Block.txt index 10c705f59e5..50b67258bef 100644 --- a/forge-gui/res/formats/Block/Mirage Block.txt +++ b/forge-gui/res/formats/Block/Mirage Block.txt @@ -1,6 +1,6 @@ [format] Name:Mirage Block -Type:Historic +Type:Archive Subtype:Block Order:134 Sets:VIS, WTH, MIR diff --git a/forge-gui/res/formats/Block/Mirrodin Block.txt b/forge-gui/res/formats/Block/Mirrodin Block.txt index 6f3722f065d..8b760ef05e4 100644 --- a/forge-gui/res/formats/Block/Mirrodin Block.txt +++ b/forge-gui/res/formats/Block/Mirrodin Block.txt @@ -1,6 +1,6 @@ [format] Name:Mirrodin Block -Type:Historic +Type:Archive Subtype:Block Order:127 Sets:5DN, DST, MRD diff --git a/forge-gui/res/formats/Block/Odyssey Block.txt b/forge-gui/res/formats/Block/Odyssey Block.txt index 5a1292ea3e5..95f5f220359 100644 --- a/forge-gui/res/formats/Block/Odyssey Block.txt +++ b/forge-gui/res/formats/Block/Odyssey Block.txt @@ -1,6 +1,6 @@ [format] Name:Odyssey Block -Type:Historic +Type:Archive Subtype:Block Order:129 Sets:JUD, TOR, ODY diff --git a/forge-gui/res/formats/Block/Onslaught Block.txt b/forge-gui/res/formats/Block/Onslaught Block.txt index 4437e82f513..19d158c5bd8 100644 --- a/forge-gui/res/formats/Block/Onslaught Block.txt +++ b/forge-gui/res/formats/Block/Onslaught Block.txt @@ -1,6 +1,6 @@ [format] Name:Onslaught Block -Type:Historic +Type:Archive Subtype:Block Order:128 Sets:SCG, LGN, ONS diff --git a/forge-gui/res/formats/Block/Ravnica Block.txt b/forge-gui/res/formats/Block/Ravnica Block.txt index a4b9fda820f..db2dfe65e23 100644 --- a/forge-gui/res/formats/Block/Ravnica Block.txt +++ b/forge-gui/res/formats/Block/Ravnica Block.txt @@ -1,6 +1,6 @@ [format] Name:Ravnica Block -Type:Historic +Type:Archive Subtype:Block Order:125 Sets:DIS, GPT, RAV diff --git a/forge-gui/res/formats/Block/Return to Ravnica Block.txt b/forge-gui/res/formats/Block/Return to Ravnica Block.txt index 679579598da..8e5eedd2a76 100644 --- a/forge-gui/res/formats/Block/Return to Ravnica Block.txt +++ b/forge-gui/res/formats/Block/Return to Ravnica Block.txt @@ -1,6 +1,6 @@ [format] Name:Return to Ravnica Block -Type:Historic +Type:Archive Subtype:Block Order:118 Sets:DGM, GTC, RTR diff --git a/forge-gui/res/formats/Block/Scars of Mirrodin Block.txt b/forge-gui/res/formats/Block/Scars of Mirrodin Block.txt index cdf17911108..a815c37c528 100644 --- a/forge-gui/res/formats/Block/Scars of Mirrodin Block.txt +++ b/forge-gui/res/formats/Block/Scars of Mirrodin Block.txt @@ -1,6 +1,6 @@ [format] Name:Scars of Mirrodin Block -Type:Historic +Type:Archive Subtype:Block Order:120 Sets:NPH, MBS, SOM diff --git a/forge-gui/res/formats/Block/Shadows over Innistrad Block.txt b/forge-gui/res/formats/Block/Shadows over Innistrad Block.txt index 813dd282227..42122fc4a73 100644 --- a/forge-gui/res/formats/Block/Shadows over Innistrad Block.txt +++ b/forge-gui/res/formats/Block/Shadows over Innistrad Block.txt @@ -1,6 +1,6 @@ [format] Name:Shadows over Innistrad Block -Type:Historic +Type:Archive Subtype:Block Order:114 Sets:EMN, SOI diff --git a/forge-gui/res/formats/Block/Shards of Alara Block.txt b/forge-gui/res/formats/Block/Shards of Alara Block.txt index 53e8ecfa8fe..37c54c609c5 100644 --- a/forge-gui/res/formats/Block/Shards of Alara Block.txt +++ b/forge-gui/res/formats/Block/Shards of Alara Block.txt @@ -1,6 +1,6 @@ [format] Name:Shards of Alara Block -Type:Historic +Type:Archive Subtype:Block Order:122 Sets:ARB, CFX, ALA diff --git a/forge-gui/res/formats/Block/Tempest Block.txt b/forge-gui/res/formats/Block/Tempest Block.txt index 3576fbdd8ad..411c6150c46 100644 --- a/forge-gui/res/formats/Block/Tempest Block.txt +++ b/forge-gui/res/formats/Block/Tempest Block.txt @@ -1,6 +1,6 @@ [format] Name:Tempest Block -Type:Historic +Type:Archive Subtype:Block Order:133 Sets:EXO, STH, TMP diff --git a/forge-gui/res/formats/Block/Theros Block.txt b/forge-gui/res/formats/Block/Theros Block.txt index 6c293080263..8b96e89e9e8 100644 --- a/forge-gui/res/formats/Block/Theros Block.txt +++ b/forge-gui/res/formats/Block/Theros Block.txt @@ -1,6 +1,6 @@ [format] Name:Theros Block -Type:Historic +Type:Archive Subtype:Block Order:117 Sets:JOU, BNG, THS diff --git a/forge-gui/res/formats/Block/Time Spiral Block.txt b/forge-gui/res/formats/Block/Time Spiral Block.txt index 58f5950de7a..42818ad739b 100644 --- a/forge-gui/res/formats/Block/Time Spiral Block.txt +++ b/forge-gui/res/formats/Block/Time Spiral Block.txt @@ -1,6 +1,6 @@ [format] Name:Time Spiral Block -Type:Historic +Type:Archive Subtype:Block Order:124 Sets:FUT, PLC, TSP diff --git a/forge-gui/res/formats/Block/Urza Block.txt b/forge-gui/res/formats/Block/Urza Block.txt index 227b8f6a43b..f3e92cb480a 100644 --- a/forge-gui/res/formats/Block/Urza Block.txt +++ b/forge-gui/res/formats/Block/Urza Block.txt @@ -1,6 +1,6 @@ [format] Name:Urza Block -Type:Historic +Type:Archive Subtype:Block Order:132 Sets:UDS, ULG, USG diff --git a/forge-gui/res/formats/Block/Zendikar Block.txt b/forge-gui/res/formats/Block/Zendikar Block.txt index e68d8bd9749..a1f06a6c418 100644 --- a/forge-gui/res/formats/Block/Zendikar Block.txt +++ b/forge-gui/res/formats/Block/Zendikar Block.txt @@ -1,6 +1,6 @@ [format] Name:Zendikar Block -Type:Historic +Type:Archive Subtype:Block Order:121 Sets:ROE, WWK, ZEN diff --git a/forge-gui/res/formats/Casual/Conspiracy.txt b/forge-gui/res/formats/Casual/Conspiracy.txt index 08ba8371dbf..ecd90709889 100644 --- a/forge-gui/res/formats/Casual/Conspiracy.txt +++ b/forge-gui/res/formats/Casual/Conspiracy.txt @@ -1,6 +1,6 @@ [format] Name:Conspiracy -Type:Historic +Type:Archive Subtype:Custom Order:138 Sets:CNS, CN2 diff --git a/forge-gui/res/formats/Casual/Un-Sets.txt b/forge-gui/res/formats/Casual/Un-Sets.txt index 9aaf64ca169..eff3b864d28 100644 --- a/forge-gui/res/formats/Casual/Un-Sets.txt +++ b/forge-gui/res/formats/Casual/Un-Sets.txt @@ -1,6 +1,6 @@ [format] Name:Un-Sets -Type:Historic +Type:Archive Subtype:Custom Order:136 Sets:UST, UNH, UGL diff --git a/forge-gui/res/formats/Sanctioned/Extended.txt b/forge-gui/res/formats/Sanctioned/Extended.txt index 0b996bc5705..fc7b81d1029 100644 --- a/forge-gui/res/formats/Sanctioned/Extended.txt +++ b/forge-gui/res/formats/Sanctioned/Extended.txt @@ -1,6 +1,6 @@ [format] Name:Extended -Type:Historic +Type:Archive Subtype:Extended Effective:2013-09-27 Retired:2013-10-08 diff --git a/forge-gui/res/languages/en-US.properties b/forge-gui/res/languages/en-US.properties index 347659b3bee..06c00000520 100644 --- a/forge-gui/res/languages/en-US.properties +++ b/forge-gui/res/languages/en-US.properties @@ -67,7 +67,7 @@ cbManaBurn=Mana Burn cbManaLostPrompt=Prompt Mana Pool Emptying cbDevMode=Developer Mode cbLoadCardsLazily=Load Card Scripts Lazily -cbLoadHistoricFormats=Load Historic Formats +cbLoadArchiveFormats=Load Archived Formats cbWorkshopSyntax=Workshop Syntax Checker cbEnforceDeckLegality=Deck Conformance cbSideboardForAI=Human Sideboard for AI @@ -183,7 +183,7 @@ nlWorkshopSyntax=Enables syntax checking of card scripts in the Workshop. Note: nlGameLogEntryType=Changes how much information is displayed in the game log. Sorted by least to most verbose. nlCloseAction=Changes what happens when clicking the X button in the upper right. nlLoadCardsLazily=If turned on, Forge will load card scripts as they''re needed instead of at start up. (Warning: Experimental) -nlLoadHistoricFormats=If turned on, Forge will load all historic format definitions, this may take slightly longer to load at startup. +nlLoadArchiveFormats=If turned on, Forge will load all archived format definitions, this may take slightly longer to load at startup. GraphicOptions=Graphic Options nlCardArtFormat=The format of card art images. (Full: image of entire card. Crop: only the art part) nlDefaultFontSize=The default font size within the UI. All font elements are scaled relative to this. (REQUIRES RESTART) @@ -552,7 +552,7 @@ cbWantReprints=Allow compatible reprints from other sets lblChooseFormats=Choose formats lblSanctioned=Sanctioned lblOther=Other -lblHistoric=Historic +lblArchive=Archive lblCancel=Cancel #DialogChoosePoolDistribution.java lblBlack=Black @@ -1493,7 +1493,7 @@ lblPlayerDidntAttackThisTurn=%s didn''t attack this turn. #FormatFilter.java lblAllSetsFormats=All Sets/Formats lblOtherFormats=Other Formats -#HistoricFormatSelect.java +#ArchiveFormatSelect.java lblChooseFormat=Choose Format #Card.java lblAdventure=Adventure @@ -2672,7 +2672,7 @@ lblRenameQuestTo=Rename quest to lblQuestRename=Quest Rename #StartingPoolType.java lblUnrestricted=Unrestricted -lblCasualOrHistoricFormat=Casual/Historic format +lblCasualOrArchiveFormat=Casual/Archived format lblCustomFormat=Custom format lblEventOrStartDeck=Event or starter deck lblMySealedDeck=My sealed deck diff --git a/forge-gui/src/main/java/forge/deck/DeckImportController.java b/forge-gui/src/main/java/forge/deck/DeckImportController.java index cede55f28de..ca3c7ef2dcf 100644 --- a/forge-gui/src/main/java/forge/deck/DeckImportController.java +++ b/forge-gui/src/main/java/forge/deck/DeckImportController.java @@ -138,7 +138,7 @@ public class DeckImportController { for (final GameFormat f : sanctionedFormats) formatsDropdown.addItem(f); - if (FModel.getPreferences().getPrefBoolean(ForgePreferences.FPref.LOAD_HISTORIC_FORMATS)) { + if (FModel.getPreferences().getPrefBoolean(ForgePreferences.FPref.LOAD_ARCHIVE_FORMATS)) { // Add Block Formats formatsDropdown.addItem(SEPARATOR); final Iterable blockFormats = FModel.getFormats().getBlockList(); diff --git a/forge-gui/src/main/java/forge/gamemodes/quest/StartingPoolType.java b/forge-gui/src/main/java/forge/gamemodes/quest/StartingPoolType.java index 6b6fccb0d86..906c928412b 100644 --- a/forge-gui/src/main/java/forge/gamemodes/quest/StartingPoolType.java +++ b/forge-gui/src/main/java/forge/gamemodes/quest/StartingPoolType.java @@ -5,7 +5,7 @@ import forge.util.Localizer; public enum StartingPoolType { Complete("lblUnrestricted"), Sanctioned("lblSanctionedFormat"), - Casual("lblCasualOrHistoricFormat"), + Casual("lblCasualOrArchiveFormat"), CustomFormat("lblCustomFormat"), Precon("lblEventOrStartDeck"), SealedDeck("lblMySealedDeck"), diff --git a/forge-gui/src/main/java/forge/localinstance/properties/ForgePreferences.java b/forge-gui/src/main/java/forge/localinstance/properties/ForgePreferences.java index ed0384db980..284f771dcd7 100644 --- a/forge-gui/src/main/java/forge/localinstance/properties/ForgePreferences.java +++ b/forge-gui/src/main/java/forge/localinstance/properties/ForgePreferences.java @@ -216,7 +216,7 @@ public class ForgePreferences extends PreferencesStore { DEV_LOG_ENTRY_TYPE (GameLogEntryType.DAMAGE.toString()), LOAD_CARD_SCRIPTS_LAZILY ("false"), - LOAD_HISTORIC_FORMATS ("false"), + LOAD_ARCHIVE_FORMATS ("false"), DECK_DEFAULT_CARD_LIMIT ("4"), DECKGEN_SINGLETONS ("false"), diff --git a/forge-gui/src/main/java/forge/model/FModel.java b/forge-gui/src/main/java/forge/model/FModel.java index 40fb0da2f96..6e3f49d9a9e 100644 --- a/forge-gui/src/main/java/forge/model/FModel.java +++ b/forge-gui/src/main/java/forge/model/FModel.java @@ -208,7 +208,7 @@ public final class FModel { ForgePreferences.UPLOAD_DRAFT = ForgePreferences.NET_CONN; formats = new GameFormat.Collection(new GameFormat.Reader( new File(ForgeConstants.FORMATS_DATA_DIR), - new File(ForgeConstants.USER_FORMATS_DIR), preferences.getPrefBoolean(FPref.LOAD_HISTORIC_FORMATS))); + new File(ForgeConstants.USER_FORMATS_DIR), preferences.getPrefBoolean(FPref.LOAD_ARCHIVE_FORMATS))); magicDb.setStandardPredicate(formats.getStandard().getFilterRules()); magicDb.setPioneerPredicate(formats.getPioneer().getFilterRules());