findGroupContainingEntryID(id: EntryID): FormatAGroup {
        const matchingEntry = this.getAllEntries().find((entry) => entry.id === id);
        if (matchingEntry) {
            return this.getAllGroups().find((group) => group.id === matchingEntry.parentID) || null;
        }