From 5c21c0a498b67b05f8b6a2003fb8a9c846671220 Mon Sep 17 00:00:00 2001 From: 01zulfi <85733202+01zulfi@users.noreply.github.com> Date: Wed, 20 Aug 2025 10:24:52 +0500 Subject: [PATCH 1/2] global: support day format options & $day$ title format & /day command Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> --- apps/web/src/components/editor/tiptap.tsx | 11 +++++- .../dialogs/settings/behaviour-settings.ts | 22 ++++++++++- apps/web/src/stores/setting-store.ts | 9 ++++- .../markdown-notes-editing.md | 1 + .../personalizing-rich-text-editor.md | 2 + packages/core/src/collections/notes.ts | 1 + packages/core/src/collections/settings.ts | 12 +++++- packages/core/src/types.ts | 2 + .../src/utils/__tests__/title-format.test.js | 34 ++++++++++++++-- packages/core/src/utils/date.ts | 13 ++++++- packages/core/src/utils/title-format.ts | 10 ++++- .../src/extensions/date-time/date-time.ts | 39 ++++++++++++++++++- .../src/extensions/task-list/component.tsx | 3 +- packages/editor/src/index.ts | 5 ++- packages/intl/locale/en.po | 8 ++++ packages/intl/locale/pseudo-LOCALE.po | 8 ++++ packages/intl/src/strings.ts | 4 +- 17 files changed, 169 insertions(+), 15 deletions(-) diff --git a/apps/web/src/components/editor/tiptap.tsx b/apps/web/src/components/editor/tiptap.tsx index 28da91bce..af36f81c9 100644 --- a/apps/web/src/components/editor/tiptap.tsx +++ b/apps/web/src/components/editor/tiptap.tsx @@ -57,7 +57,7 @@ import { ScopedThemeProvider } from "../theme-provider"; import { useStore as useThemeStore } from "../../stores/theme-store"; import { writeToClipboard } from "../../utils/clipboard"; import { useEditorStore } from "../../stores/editor-store"; -import { parseInternalLink } from "@notesnook/core"; +import { DayFormat, parseInternalLink } from "@notesnook/core"; import Skeleton from "react-loading-skeleton"; import useMobile from "../../hooks/use-mobile"; import useTablet from "../../hooks/use-tablet"; @@ -108,6 +108,7 @@ type TipTapProps = { doubleSpacedLines: boolean; dateFormat: string; timeFormat: TimeFormat; + dayFormat: DayFormat; markdownShortcuts: boolean; fontLigatures: boolean; }; @@ -183,6 +184,7 @@ function TipTap(props: TipTapProps) { doubleSpacedLines, dateFormat, timeFormat, + dayFormat, markdownShortcuts, fontLigatures } = props; @@ -262,6 +264,7 @@ function TipTap(props: TipTapProps) { doubleSpacedLines, dateFormat, timeFormat, + dayFormat, element: editorContainer(), editable: !readonly, content: content?.(), @@ -431,6 +434,7 @@ function TipTap(props: TipTapProps) { doubleSpacedLines, dateFormat, timeFormat, + dayFormat, markdownShortcuts, fontLigatures ]); @@ -536,6 +540,7 @@ function TiptapWrapper( | "doubleSpacedLines" | "dateFormat" | "timeFormat" + | "dayFormat" | "markdownShortcuts" | "fontLigatures" > @@ -552,6 +557,7 @@ function TiptapWrapper( ); const dateFormat = useSettingsStore((store) => store.dateFormat); const timeFormat = useSettingsStore((store) => store.timeFormat); + const dayFormat = useSettingsStore((store) => store.dayFormat); const markdownShortcuts = useSettingsStore( (store) => store.markdownShortcuts ); @@ -631,13 +637,14 @@ function TiptapWrapper( }} > { diff --git a/apps/web/src/dialogs/settings/behaviour-settings.ts b/apps/web/src/dialogs/settings/behaviour-settings.ts index 5dc8e8ef0..f2e31b47b 100644 --- a/apps/web/src/dialogs/settings/behaviour-settings.ts +++ b/apps/web/src/dialogs/settings/behaviour-settings.ts @@ -24,7 +24,7 @@ import { useStore as useSettingStore } from "../../stores/setting-store"; import dayjs from "dayjs"; -import { TimeFormat } from "@notesnook/core"; +import { TimeFormat, DayFormat } from "@notesnook/core"; import { TrashCleanupInterval } from "@notesnook/core"; import { strings } from "@notesnook/intl"; import { checkFeature } from "../../common"; @@ -141,6 +141,26 @@ export const BehaviourSettings: SettingsGroup[] = [ ] } ] + }, + { + key: "day-format", + title: strings.dayFormat(), + description: strings.dayFormatDesc(), + keywords: [], + onStateChange: (listener) => + useSettingStore.subscribe((s) => s.dayFormat, listener), + components: [ + { + type: "dropdown", + onSelectionChanged: (value) => + useSettingStore.getState().setDayFormat(value as DayFormat), + selectedOption: () => useSettingStore.getState().dayFormat, + options: [ + { value: "short", title: "Short (Mon, Tue)" }, + { value: "long", title: "Long (Monday, Tuesday)" } + ] + } + ] } ] }, diff --git a/apps/web/src/stores/setting-store.ts b/apps/web/src/stores/setting-store.ts index c11e39463..43c7d0d3f 100644 --- a/apps/web/src/stores/setting-store.ts +++ b/apps/web/src/stores/setting-store.ts @@ -23,7 +23,7 @@ import { desktop } from "../common/desktop-bridge"; import createStore from "../common/store"; import Config from "../utils/config"; import BaseStore from "./index"; -import { TimeFormat } from "@notesnook/core"; +import { TimeFormat, DayFormat } from "@notesnook/core"; import { Profile, TrashCleanupInterval } from "@notesnook/core"; import { showToast } from "../utils/toast"; import { ConfirmDialog } from "../dialogs/confirm"; @@ -68,6 +68,7 @@ class SettingStore extends BaseStore { hideNoteTitle = Config.get("hideNoteTitle", false); dateFormat = "DD-MM-YYYY"; timeFormat: TimeFormat = "12-hour"; + dayFormat: DayFormat = "short"; titleFormat = "Note $date$ $time$"; profile?: Profile; @@ -95,6 +96,7 @@ class SettingStore extends BaseStore { this.set({ dateFormat: db.settings.getDateFormat(), timeFormat: db.settings.getTimeFormat(), + dayFormat: db.settings.getDayFormat(), titleFormat: db.settings.getTitleFormat(), trashCleanupInterval: db.settings.getTrashCleanupInterval(), profile: db.settings.getProfile(), @@ -121,6 +123,11 @@ class SettingStore extends BaseStore { this.set({ timeFormat }); }; + setDayFormat = async (dayFormat: DayFormat) => { + await db.settings.setDayFormat(dayFormat); + this.set({ dayFormat }); + }; + setTitleFormat = async (titleFormat: string) => { await db.settings.setTitleFormat(titleFormat); this.set({ titleFormat }); diff --git a/docs/help/contents/rich-text-editor/markdown-notes-editing.md b/docs/help/contents/rich-text-editor/markdown-notes-editing.md index c5c2fdbaf..7a16f7d17 100644 --- a/docs/help/contents/rich-text-editor/markdown-notes-editing.md +++ b/docs/help/contents/rich-text-editor/markdown-notes-editing.md @@ -27,6 +27,7 @@ Notesnook supports the following (Markdown) shortcuts in the editor: | Codeblock | \`\`\`javascript
function hello() { }
\`\`\` | | Math block | $$$
2 + 2 = 4
$$$ | | Current Date | `/date` | +| Current Day | `/day` | | Date Time | `/time` | | Current Date & Time | `/now` | | Current Date & Time with timezone | `/nowz` | diff --git a/docs/help/contents/rich-text-editor/personalizing-rich-text-editor.md b/docs/help/contents/rich-text-editor/personalizing-rich-text-editor.md index e7c23aca7..dabeb18f1 100644 --- a/docs/help/contents/rich-text-editor/personalizing-rich-text-editor.md +++ b/docs/help/contents/rich-text-editor/personalizing-rich-text-editor.md @@ -28,6 +28,8 @@ Go to `Settings` > `Editor` > `Title format` to customize the title formatting. **$date$**: Today's date +**$day$**: Today's day name + **$time$**: The current time **$count$**: Current note count + 1 diff --git a/packages/core/src/collections/notes.ts b/packages/core/src/collections/notes.ts index d0dc70548..0ff1090e9 100644 --- a/packages/core/src/collections/notes.ts +++ b/packages/core/src/collections/notes.ts @@ -137,6 +137,7 @@ export class Notes implements ICollection { this.db.settings.getTitleFormat(), this.db.settings.getDateFormat(), this.db.settings.getTimeFormat(), + this.db.settings.getDayFormat(), headlineTitle, this.totalNotes ); diff --git a/packages/core/src/collections/settings.ts b/packages/core/src/collections/settings.ts index e975c3d7f..0a794114c 100644 --- a/packages/core/src/collections/settings.ts +++ b/packages/core/src/collections/settings.ts @@ -30,7 +30,8 @@ import { ToolbarConfig, ToolbarConfigPlatforms, TrashCleanupInterval, - TimeFormat + TimeFormat, + DayFormat } from "../types.js"; import { ICollection } from "./collection.js"; import { SQLCachedCollection } from "../database/sql-cached-collection.js"; @@ -53,6 +54,7 @@ const DEFAULT_GROUP_OPTIONS = (key: GroupingKey) => const defaultSettings: SettingItemMap = { timeFormat: "12-hour", + dayFormat: "short", dateFormat: "DD-MM-YYYY", titleFormat: "Note $date$ $time$", defaultNotebook: undefined, @@ -204,6 +206,14 @@ export class Settings implements ICollection { return this.set("timeFormat", format); } + getDayFormat() { + return this.get("dayFormat"); + } + + setDayFormat(format: DayFormat) { + return this.set("dayFormat", format); + } + getSideBarOrder(section: SideBarSection) { return this.get(`sideBarOrder:${section}`); } diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index e32823c8c..a581d132d 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -21,6 +21,7 @@ import { Cipher } from "@notesnook/crypto"; import { isCipher } from "./utils/index.js"; export type TimeFormat = "12-hour" | "24-hour"; +export type DayFormat = "short" | "long"; export type SortOptions = { sortBy: @@ -472,6 +473,7 @@ export type SettingItemMap = { trashCleanupInterval: TrashCleanupInterval; titleFormat: string; timeFormat: TimeFormat; + dayFormat: DayFormat; dateFormat: string; defaultNotebook: string | undefined; defaultTag: string | undefined; diff --git a/packages/core/src/utils/__tests__/title-format.test.js b/packages/core/src/utils/__tests__/title-format.test.js index 75de04e4e..d34df0c63 100644 --- a/packages/core/src/utils/__tests__/title-format.test.js +++ b/packages/core/src/utils/__tests__/title-format.test.js @@ -24,6 +24,7 @@ import { test, expect, describe, beforeAll, afterAll } from "vitest"; const templates = { $time$: "11:25", $date$: "DD-MM-YYYY", + $day$: "Wed", $timestamp$: "DDMMYYYY1125", $count$: "1", $headline$: "HEADLINE" @@ -45,8 +46,35 @@ afterAll(() => { describe("pairs should be equal", () => { test.each(cases)("%s", (one, two) => { - expect(formatTitle(one, "[DD-MM-YYYY]", "[hh:mm]", "HEADLINE", 0)).toBe( - two - ); + expect( + formatTitle(one, "[DD-MM-YYYY]", "[hh:mm]", "short", "HEADLINE", 0) + ).toBe(two); + }); +}); + +describe("day format", () => { + test("$day$ with long format", () => { + expect( + formatTitle( + "Note $day$", + "[DD-MM-YYYY]", + "[hh:mm]", + "long", + "HEADLINE", + 0 + ) + ).toBe("Note Wednesday"); + }); + test("$day$ with short format", () => { + expect( + formatTitle( + "Note $day$", + "[DD-MM-YYYY]", + "[hh:mm]", + "short", + "HEADLINE", + 0 + ) + ).toBe("Note Wed"); }); }); diff --git a/packages/core/src/utils/date.ts b/packages/core/src/utils/date.ts index 80a448518..d81a16413 100644 --- a/packages/core/src/utils/date.ts +++ b/packages/core/src/utils/date.ts @@ -20,7 +20,7 @@ along with this program. If not, see . import dayjs from "dayjs"; import advancedFormat from "dayjs/plugin/advancedFormat.js"; import timezone from "dayjs/plugin/timezone.js"; -import { TimeFormat } from "../types.js"; +import { TimeFormat, DayFormat } from "../types.js"; dayjs.extend(advancedFormat); dayjs.extend(timezone); @@ -68,6 +68,10 @@ export function getTimeFormat(format: TimeFormat) { return format === "12-hour" ? "hh:mm A" : "HH:mm"; } +function getDayFormat(format: DayFormat) { + return format === "short" ? "ddd" : "dddd"; +} + export type TimeZoneOptions = { type: "timezone"; }; @@ -79,6 +83,10 @@ export type DateOptions = { type: "date"; dateFormat: string; }; +export type DayOptions = { + type: "day"; + dayFormat: DayFormat; +}; export type DateTimeOptions = { type: "date-time"; dateFormat: string; @@ -93,6 +101,7 @@ export type FormatDateOptions = | TimeZoneOptions | TimeOptions | DateOptions + | DayOptions | DateTimeOptions | DateTimeWithTimeZoneOptions; @@ -117,6 +126,8 @@ export function formatDate( return dayjs(date).format(getTimeFormat(options.timeFormat)); case "date": return dayjs(date).format(options.dateFormat); + case "day": + return dayjs(date).format(getDayFormat(options.dayFormat)); case "timezone": return dayjs(date).format("ZZ"); } diff --git a/packages/core/src/utils/title-format.ts b/packages/core/src/utils/title-format.ts index c4498f92b..ce3e41a69 100644 --- a/packages/core/src/utils/title-format.ts +++ b/packages/core/src/utils/title-format.ts @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -import { TimeFormat } from "../types.js"; +import { TimeFormat, DayFormat } from "../types.js"; import { formatDate } from "./date.js"; export const NEWLINE_STRIP_REGEX = /[\r\n\t\v]+/gm; @@ -26,6 +26,7 @@ export const HEADLINE_REGEX = /\$headline\$/g; const DATE_REGEX = /\$date\$/g; const COUNT_REGEX = /\$count\$/g; const TIME_REGEX = /\$time\$/g; +const DAY_REGEX = /\$day\$/g; const TIMESTAMP_REGEX = /\$timestamp\$/g; const TIMESTAMP_Z_REGEX = /\$timestampz\$/g; const DATE_TIME_STRIP_REGEX = /[\\\-:./, ]/g; @@ -34,6 +35,7 @@ export function formatTitle( titleFormat: string, dateFormat: string, timeFormat: TimeFormat, + dayFormat: DayFormat, headline = "", totalNotes = 0 ) { @@ -49,6 +51,11 @@ export function formatTitle( const timezone = formatDate(Date.now(), { type: "timezone" }); + const day = formatDate(Date.now(), { + dayFormat, + type: "day" + }); + const timestamp = `${date}${time}`.replace(DATE_TIME_STRIP_REGEX, ""); const timestampWithTimeZone = `${timestamp}${timezone}`; @@ -56,6 +63,7 @@ export function formatTitle( .replace(NEWLINE_STRIP_REGEX, " ") .replace(DATE_REGEX, date) .replace(TIME_REGEX, time) + .replace(DAY_REGEX, day) .replace(HEADLINE_REGEX, headline || "") .replace(TIMESTAMP_REGEX, timestamp) .replace(TIMESTAMP_Z_REGEX, timestampWithTimeZone) diff --git a/packages/editor/src/extensions/date-time/date-time.ts b/packages/editor/src/extensions/date-time/date-time.ts index 6de1d07fa..2c9ba8e7e 100644 --- a/packages/editor/src/extensions/date-time/date-time.ts +++ b/packages/editor/src/extensions/date-time/date-time.ts @@ -32,11 +32,17 @@ declare module "@tiptap/core" { * Insert time at current position */ insertTime: () => ReturnType; + /** * Insert date at current position */ insertDate: () => ReturnType; + /** + * Insert day at current position + */ + insertDay: () => ReturnType; + /** * Insert date & time at current position */ @@ -53,6 +59,7 @@ declare module "@tiptap/core" { export type DateTimeOptions = { dateFormat: string; timeFormat: "12-hour" | "24-hour"; + dayFormat: "short" | "long"; }; export const DateTime = Extension.create({ @@ -61,7 +68,8 @@ export const DateTime = Extension.create({ addOptions() { return { dateFormat: "DD-MM-YYYY", - timeFormat: "12-hour" + timeFormat: "12-hour", + dayFormat: "short" }; }, @@ -98,6 +106,15 @@ export const DateTime = Extension.create({ type: "time" }) ), + insertDay: + () => + ({ commands }) => + commands.insertContent( + formatDate(Date.now(), { + dayFormat: this.options.dayFormat, + type: "day" + }) + ), insertDateTime: () => ({ commands }) => @@ -141,6 +158,15 @@ export const DateTime = Extension.create({ }); } }), + shortcutInputRule({ + shortcut: "/day", + replace: () => { + return formatDate(Date.now(), { + dayFormat: this.options.dayFormat, + type: "day" + }); + } + }), shortcutInputRule({ shortcut: "/now", replace: () => { @@ -206,7 +232,8 @@ function textInputRule(config: { export function replaceDateTime( value: string, dateFormat = "DD-MM-YYYY", - timeFormat: "12-hour" | "24-hour" = "12-hour" + timeFormat: "12-hour" | "24-hour" = "12-hour", + dayFormat: DateTimeOptions["dayFormat"] = "short" ) { value = value.replaceAll( "/time ", @@ -242,5 +269,13 @@ export function replaceDateTime( }) + " " ); + value = value.replaceAll( + "/day ", + formatDate(Date.now(), { + dayFormat: dayFormat, + type: "day" + }) + " " + ); + return value; } diff --git a/packages/editor/src/extensions/task-list/component.tsx b/packages/editor/src/extensions/task-list/component.tsx index ffea131b9..5264c5c1e 100644 --- a/packages/editor/src/extensions/task-list/component.tsx +++ b/packages/editor/src/extensions/task-list/component.tsx @@ -130,7 +130,8 @@ export function TaskListComponent( e.target.value = replaceDateTime( e.target.value, editor.storage.dateFormat, - editor.storage.timeFormat + editor.storage.timeFormat, + editor.storage.dayFormat ); updateAttributes( { title: e.target.value }, diff --git a/packages/editor/src/index.ts b/packages/editor/src/index.ts index a389877b6..8274b646d 100644 --- a/packages/editor/src/index.ts +++ b/packages/editor/src/index.ts @@ -92,6 +92,7 @@ import "simplebar-react/dist/simplebar.min.css"; interface TiptapStorage { dateFormat?: DateTimeOptions["dateFormat"]; timeFormat?: DateTimeOptions["timeFormat"]; + dayFormat?: DateTimeOptions["dayFormat"]; openLink?: (url: string, openInNewTab?: boolean) => void; downloadAttachment?: (attachment: Attachment) => void; openAttachmentPicker?: (type: AttachmentType) => void; @@ -148,6 +149,7 @@ const useTiptap = ( onBeforeCreate, dateFormat, timeFormat, + dayFormat, copyToClipboard, createInternalLink, @@ -322,7 +324,7 @@ const useTiptap = ( KeepInView.configure({ scrollIntoViewOnWindowResize: !isMobile }), - DateTime.configure({ dateFormat, timeFormat }), + DateTime.configure({ dateFormat, timeFormat, dayFormat }), KeyMap, WebClipNode, CheckList, @@ -375,6 +377,7 @@ const useTiptap = ( onBeforeCreate: ({ editor }) => { editor.storage.dateFormat = dateFormat; editor.storage.timeFormat = timeFormat; + editor.storage.dayFormat = dayFormat; editor.storage.openLink = openLink; editor.storage.downloadAttachment = downloadAttachment; diff --git a/packages/intl/locale/en.po b/packages/intl/locale/en.po index 76bd9c844..7ae54abaa 100644 --- a/packages/intl/locale/en.po +++ b/packages/intl/locale/en.po @@ -1486,6 +1486,10 @@ msgstr "Choose from pre-built themes or create your own" msgid "Choose how dates are displayed in the app" msgstr "Choose how dates are displayed in the app" +#: src/strings.ts:2610 +msgid "Choose how day is displayed in the app" +msgstr "Choose how day is displayed in the app" + #: src/strings.ts:1157 msgid "Choose how the new note titles are formatted" msgstr "Choose how the new note titles are formatted" @@ -2036,6 +2040,10 @@ msgstr "Date uploaded" msgid "Day" msgstr "Day" +#: src/strings.ts:2609 +msgid "Day format" +msgstr "Day format" + #: src/strings.ts:2037 msgid "Deactivate" msgstr "Deactivate" diff --git a/packages/intl/locale/pseudo-LOCALE.po b/packages/intl/locale/pseudo-LOCALE.po index a3edcaa0f..84f1044af 100644 --- a/packages/intl/locale/pseudo-LOCALE.po +++ b/packages/intl/locale/pseudo-LOCALE.po @@ -1486,6 +1486,10 @@ msgstr "" msgid "Choose how dates are displayed in the app" msgstr "" +#: src/strings.ts:2610 +msgid "Choose how day is displayed in the app" +msgstr "" + #: src/strings.ts:1157 msgid "Choose how the new note titles are formatted" msgstr "" @@ -2025,6 +2029,10 @@ msgstr "" msgid "Day" msgstr "" +#: src/strings.ts:2609 +msgid "Day format" +msgstr "" + #: src/strings.ts:2037 msgid "Deactivate" msgstr "" diff --git a/packages/intl/src/strings.ts b/packages/intl/src/strings.ts index c143b1962..706766fb7 100644 --- a/packages/intl/src/strings.ts +++ b/packages/intl/src/strings.ts @@ -2614,5 +2614,7 @@ Use this if changes from other devices are not appearing on this device. This wi clickToSave: () => t`Click to save`, lineHeight: () => t`Line height`, lineHeightDesc: () => t`Adjust the line height of the editor`, - enterTitle: () => t`Enter title` + enterTitle: () => t`Enter title`, + dayFormat: () => t`Day format`, + dayFormatDesc: () => t`Choose how day is displayed in the app` }; From 2f93c6fdc80a5b8c0572e1b9f22606bf649ad4c7 Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Tue, 30 Dec 2025 09:38:18 +0500 Subject: [PATCH 2/2] mobile: support day format options --- apps/mobile/app/hooks/use-app-events.tsx | 1 + .../mobile/app/screens/editor/tiptap/types.ts | 2 + .../editor/tiptap/use-editor-events.tsx | 12 +- .../app/screens/settings/components.tsx | 2 + .../app/screens/settings/picker/pickers.jsx | 36 +- .../app/screens/settings/settings-data.tsx | 8 + apps/mobile/app/stores/use-setting-store.ts | 16 +- apps/mobile/scripts/optimize-fonts.mjs | 3 +- apps/mobile/tsconfig.tsbuildinfo | 60328 +--------------- .../editor-mobile/src/components/editor.tsx | 1 + packages/editor-mobile/src/utils/index.ts | 1 + packages/intl/locale/en.po | 3166 +- packages/intl/locale/pseudo-LOCALE.po | 3171 +- packages/intl/src/strings.ts | 3 +- 14 files changed, 3240 insertions(+), 63510 deletions(-) diff --git a/apps/mobile/app/hooks/use-app-events.tsx b/apps/mobile/app/hooks/use-app-events.tsx index 5498a4b7b..53de317ab 100644 --- a/apps/mobile/app/hooks/use-app-events.tsx +++ b/apps/mobile/app/hooks/use-app-events.tsx @@ -505,6 +505,7 @@ const initializeDatabase = async (password?: string) => { if (db.isInitialized) { await setAppMessage(); useSettingStore.getState().setAppLoading(false); + useSettingStore.getState().refresh(); Notifications.setupReminders(true); DatabaseLogger.info("Database initialized"); Notifications.restorePinnedNotes(); diff --git a/apps/mobile/app/screens/editor/tiptap/types.ts b/apps/mobile/app/screens/editor/tiptap/types.ts index b373fcf37..4216d7cd7 100644 --- a/apps/mobile/app/screens/editor/tiptap/types.ts +++ b/apps/mobile/app/screens/editor/tiptap/types.ts @@ -20,6 +20,7 @@ along with this program. If not, see . import type { ToolbarGroupDefinition } from "@notesnook/editor"; import { useEditor } from "./use-editor"; import { FeatureId, FeatureResult } from "@notesnook/common"; +import { DayFormat } from "@notesnook/core"; export type useEditorType = ReturnType; export type EditorState = { @@ -61,6 +62,7 @@ export type Settings = { features: Record; loggedIn: boolean; defaultLineHeight: number; + dayFormat: DayFormat; }; export type EditorProps = { diff --git a/apps/mobile/app/screens/editor/tiptap/use-editor-events.tsx b/apps/mobile/app/screens/editor/tiptap/use-editor-events.tsx index dbb3dd44f..37f27a05a 100644 --- a/apps/mobile/app/screens/editor/tiptap/use-editor-events.tsx +++ b/apps/mobile/app/screens/editor/tiptap/use-editor-events.tsx @@ -159,13 +159,13 @@ export const useEditorEvents = ( const fullscreen = useSettingStore((state) => state.fullscreen); const corsProxy = useSettingStore((state) => state.settings.corsProxy); const loading = useSettingStore((state) => state.isAppLoading); - const [dateFormat, timeFormat, defaultLineHeight] = useSettingStore( - (state) => [ + const [dateFormat, timeFormat, defaultLineHeight, dayFormat] = + useSettingStore((state) => [ state.dateFormat, state.timeFormat, - state.settings.defaultLineHeight - ] - ); + state.settings.defaultLineHeight, + state.dayFormat + ]); const handleBack = useRef(undefined); const loggedIn = useUserStore((state) => !!state.user); const { fontScale } = useWindowDimensions(); @@ -225,6 +225,7 @@ export const useEditorEvents = ( fontFamily: SettingsService.get().defaultFontFamily, dateFormat: db.settings?.getDateFormat(), timeFormat: db.settings?.getTimeFormat(), + dayFormat: db.settings?.getDayFormat(), fontScale, markdownShortcuts, features, @@ -245,6 +246,7 @@ export const useEditorEvents = ( defaultFontFamily, dateFormat, timeFormat, + dayFormat, loading, fontScale, markdownShortcuts, diff --git a/apps/mobile/app/screens/settings/components.tsx b/apps/mobile/app/screens/settings/components.tsx index 20ac19215..53fbbe6f4 100644 --- a/apps/mobile/app/screens/settings/components.tsx +++ b/apps/mobile/app/screens/settings/components.tsx @@ -32,6 +32,7 @@ import { BackupReminderPicker, BackupWithAttachmentsReminderPicker, DateFormatPicker, + DayFormatPicker, FontPicker, HomePicker, SidebarTabPicker, @@ -57,6 +58,7 @@ export const components: { [name: string]: ReactElement } = { "title-format": , "date-format-selector": , "time-format-selector": , + "day-format-selector": , "theme-selector": , "applock-timer": , autobackupsattachments: , diff --git a/apps/mobile/app/screens/settings/picker/pickers.jsx b/apps/mobile/app/screens/settings/picker/pickers.jsx index 39083f44b..39ba59083 100644 --- a/apps/mobile/app/screens/settings/picker/pickers.jsx +++ b/apps/mobile/app/screens/settings/picker/pickers.jsx @@ -32,6 +32,12 @@ import { strings } from "@notesnook/intl"; import { isFeatureAvailable } from "@notesnook/common"; import PaywallSheet from "../../../components/sheets/paywall"; +const DAY_FORMATS = ["short", "long"]; +const DayFormatFormats = { + short: "ddd", + long: "dddd" +}; + export const FontPicker = createSettingsPicker({ getValue: () => useSettingStore.getState().settings.defaultFontFamily, updateValue: (item) => { @@ -111,8 +117,8 @@ export const TrashIntervalPicker = createSettingsPicker({ return item === -1 ? strings.never() : item === 1 - ? strings.reminderRecurringMode.day() - : strings.days(item); + ? strings.reminderRecurringMode.day() + : strings.days(item); }, getItemKey: (item) => item.toString(), options: [-1, 1, 7, 30, 365], @@ -152,6 +158,24 @@ export const DateFormatPicker = createSettingsPicker({ isOptionAvailable: () => true }); +export const DayFormatPicker = createSettingsPicker({ + getValue: () => db.settings.getDayFormat(), + updateValue: (item) => { + db.settings.setDayFormat(item); + useSettingStore.setState({ + dayFormat: item + }); + }, + formatValue: (item) => { + return `${strings.dayFormat()} (${dayjs().format(DayFormatFormats[item])})`; + }, + getItemKey: (item) => item, + options: DAY_FORMATS, + compareValue: (current, item) => current === item, + isFeatureAvailable: () => true, + isOptionAvailable: () => true +}); + const TimeFormats = { "12-hour": "hh:mm A", "24-hour": "HH:mm" @@ -228,10 +252,10 @@ export const ApplockTimerPicker = createSettingsPicker({ return item === -1 ? strings.never() : item === 0 || item === undefined - ? strings.immediately() - : item === 1 - ? strings.minutes(1) - : strings.minutes(item); + ? strings.immediately() + : item === 1 + ? strings.minutes(1) + : strings.minutes(item); }, getItemKey: (item) => item.toString(), options: [-1, 0, 1, 5, 15, 30], diff --git a/apps/mobile/app/screens/settings/settings-data.tsx b/apps/mobile/app/screens/settings/settings-data.tsx index 8794a406e..47b6d2a7b 100644 --- a/apps/mobile/app/screens/settings/settings-data.tsx +++ b/apps/mobile/app/screens/settings/settings-data.tsx @@ -717,6 +717,14 @@ export const settingsGroups: SettingSection[] = [ component: "date-format-selector", icon: "calendar-blank" }, + { + id: "day-format", + name: strings.dayFormat(), + description: strings.dayFormatDesc(), + type: "component", + component: "day-format-selector", + icon: "calendar-today" + }, { id: "time-format", name: strings.timeFormat(), diff --git a/apps/mobile/app/stores/use-setting-store.ts b/apps/mobile/app/stores/use-setting-store.ts index 7b0aeb382..eb7944a02 100644 --- a/apps/mobile/app/stores/use-setting-store.ts +++ b/apps/mobile/app/stores/use-setting-store.ts @@ -24,9 +24,9 @@ import { initialWindowMetrics } from "react-native-safe-area-context"; import { FileType } from "react-native-scoped-storage"; import { create } from "zustand"; import { ThemeDark, ThemeLight, ThemeDefinition } from "@notesnook/theme"; -import { Reminder } from "@notesnook/core"; import { EDITOR_LINE_HEIGHT } from "../utils/constants"; - +import { DayFormat, Reminder } from "@notesnook/core"; +import { db } from "../common/database"; export const HostIds = [ "API_HOST", "AUTH_HOST", @@ -137,9 +137,11 @@ export interface SettingStore { setInsets: (insets: Insets) => void; timeFormat: string; dateFormat: string; + dayFormat: DayFormat; dbPassword?: string; isOldAppLock: () => boolean; initialUrl: string | null; + refresh: () => void; } const { width, height } = Dimensions.get("window"); @@ -226,6 +228,7 @@ export const useSettingStore = create((set, get) => ({ setInsets: (insets) => set({ insets }), timeFormat: "12-hour", dateFormat: "DD-MM-YYYY", + dayFormat: "short", setAppDidEnterBackgroundForAction: (value: boolean) => { set({ appDidEnterBackgroundForAction: value @@ -242,5 +245,12 @@ export const useSettingStore = create((set, get) => ({ insets: initialWindowMetrics?.insets ? initialWindowMetrics.insets : { top: 0, right: 0, left: 0, bottom: 0 }, - initialUrl: null + initialUrl: null, + refresh: () => { + set({ + dayFormat: db.settings.getDayFormat(), + timeFormat: db.settings.getTimeFormat(), + dateFormat: db.settings?.getTimeFormat() + }); + } })); diff --git a/apps/mobile/scripts/optimize-fonts.mjs b/apps/mobile/scripts/optimize-fonts.mjs index a96bbc30f..80e0ee176 100644 --- a/apps/mobile/scripts/optimize-fonts.mjs +++ b/apps/mobile/scripts/optimize-fonts.mjs @@ -117,7 +117,8 @@ const EXTRA_ICON_NAMES = [ "calendar-blank", "email-newsletter", "cellphone-arrow-down", - "format-line-spacing" + "format-line-spacing", + "calendar-today" ]; const __filename = fileURLToPath(import.meta.url); diff --git a/apps/mobile/tsconfig.tsbuildinfo b/apps/mobile/tsconfig.tsbuildinfo index 345b8af14..36e30bf90 100644 --- a/apps/mobile/tsconfig.tsbuildinfo +++ b/apps/mobile/tsconfig.tsbuildinfo @@ -1,60327 +1 @@ -{ - "fileNames": [ - "./node_modules/typescript/lib/lib.es5.d.ts", - "./node_modules/typescript/lib/lib.es2015.d.ts", - "./node_modules/typescript/lib/lib.es2016.d.ts", - "./node_modules/typescript/lib/lib.es2017.d.ts", - "./node_modules/typescript/lib/lib.es2018.d.ts", - "./node_modules/typescript/lib/lib.es2019.d.ts", - "./node_modules/typescript/lib/lib.es2020.d.ts", - "./node_modules/typescript/lib/lib.dom.d.ts", - "./node_modules/typescript/lib/lib.dom.iterable.d.ts", - "./node_modules/typescript/lib/lib.es2015.core.d.ts", - "./node_modules/typescript/lib/lib.es2015.collection.d.ts", - "./node_modules/typescript/lib/lib.es2015.generator.d.ts", - "./node_modules/typescript/lib/lib.es2015.iterable.d.ts", - "./node_modules/typescript/lib/lib.es2015.promise.d.ts", - "./node_modules/typescript/lib/lib.es2015.proxy.d.ts", - "./node_modules/typescript/lib/lib.es2015.reflect.d.ts", - "./node_modules/typescript/lib/lib.es2015.symbol.d.ts", - "./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts", - "./node_modules/typescript/lib/lib.es2016.array.include.d.ts", - "./node_modules/typescript/lib/lib.es2016.intl.d.ts", - "./node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts", - "./node_modules/typescript/lib/lib.es2017.date.d.ts", - "./node_modules/typescript/lib/lib.es2017.object.d.ts", - "./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts", - "./node_modules/typescript/lib/lib.es2017.string.d.ts", - "./node_modules/typescript/lib/lib.es2017.intl.d.ts", - "./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts", - "./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts", - "./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts", - "./node_modules/typescript/lib/lib.es2018.intl.d.ts", - "./node_modules/typescript/lib/lib.es2018.promise.d.ts", - "./node_modules/typescript/lib/lib.es2018.regexp.d.ts", - "./node_modules/typescript/lib/lib.es2019.array.d.ts", - "./node_modules/typescript/lib/lib.es2019.object.d.ts", - "./node_modules/typescript/lib/lib.es2019.string.d.ts", - "./node_modules/typescript/lib/lib.es2019.symbol.d.ts", - "./node_modules/typescript/lib/lib.es2019.intl.d.ts", - "./node_modules/typescript/lib/lib.es2020.bigint.d.ts", - "./node_modules/typescript/lib/lib.es2020.date.d.ts", - "./node_modules/typescript/lib/lib.es2020.promise.d.ts", - "./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts", - "./node_modules/typescript/lib/lib.es2020.string.d.ts", - "./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts", - "./node_modules/typescript/lib/lib.es2020.intl.d.ts", - "./node_modules/typescript/lib/lib.es2020.number.d.ts", - "./node_modules/typescript/lib/lib.esnext.disposable.d.ts", - "./node_modules/typescript/lib/lib.esnext.float16.d.ts", - "./node_modules/typescript/lib/lib.decorators.d.ts", - "./node_modules/typescript/lib/lib.decorators.legacy.d.ts", - "./node_modules/@babel/types/lib/index.d.ts", - "./node_modules/@types/babel__generator/index.d.ts", - "./node_modules/@babel/parser/typings/babel-parser.d.ts", - "./node_modules/@types/babel__template/index.d.ts", - "./node_modules/@types/babel__traverse/index.d.ts", - "./node_modules/@types/babel__core/index.d.ts", - "./babel.config.js", - "./node_modules/@formatjs/intl-locale/polyfill-force.d.ts", - "./node_modules/@formatjs/intl-pluralrules/polyfill-force.d.ts", - "./node_modules/@formatjs/intl-pluralrules/locale-data/en.d.ts", - "./polyfills/console-time.js", - "./app/common/logger/index.ts", - "../../packages/intl/node_modules/@lingui/core/node_modules/@lingui/message-utils/dist/compilemessage.d.mts", - "../../packages/intl/node_modules/@lingui/core/dist/index.d.mts", - "../../packages/intl/dist/index.d.ts", - "./node_modules/@lingui/message-utils/dist/compilemessage.d.mts", - "./node_modules/@lingui/core/dist/index.d.mts", - "./node_modules/react-native-config/index.d.ts", - "./worker.js", - "./node_modules/buffer/index.d.ts", - "./node_modules/react-native/types/modules/batchedbridge.d.ts", - "./node_modules/react-native/libraries/vendor/emitter/eventemitter.d.ts", - "./node_modules/react-native/types/modules/codegen.d.ts", - "./node_modules/react-native/types/modules/devtools.d.ts", - "./node_modules/react-native/libraries/vendor/core/errorutils.d.ts", - "./node_modules/react-native/src/types/globals.d.ts", - "./node_modules/@types/react/global.d.ts", - "./node_modules/csstype/index.d.ts", - "./node_modules/@types/react/index.d.ts", - "./node_modules/react-native/types/private/utilities.d.ts", - "./node_modules/react-native/types/public/insets.d.ts", - "./node_modules/react-native/types/public/reactnativetypes.d.ts", - "./node_modules/react-native/libraries/types/coreeventtypes.d.ts", - "./node_modules/react-native/types/public/reactnativerenderer.d.ts", - "./node_modules/react-native/libraries/components/touchable/touchable.d.ts", - "./node_modules/react-native/libraries/components/view/viewaccessibility.d.ts", - "./node_modules/react-native/libraries/components/view/viewproptypes.d.ts", - "./node_modules/react-native/libraries/components/refreshcontrol/refreshcontrol.d.ts", - "./node_modules/react-native/libraries/components/view/view.d.ts", - "./node_modules/react-native/libraries/components/scrollview/scrollview.d.ts", - "./node_modules/react-native/libraries/image/imageresizemode.d.ts", - "./node_modules/react-native/libraries/image/imagesource.d.ts", - "./node_modules/react-native/libraries/image/image.d.ts", - "./node_modules/react-native/node_modules/@react-native/virtualized-lists/lists/virtualizedlist.d.ts", - "./node_modules/react-native/node_modules/@react-native/virtualized-lists/index.d.ts", - "./node_modules/react-native/libraries/lists/flatlist.d.ts", - "./node_modules/react-native/libraries/reactnative/rendererproxy.d.ts", - "./node_modules/react-native/libraries/lists/sectionlist.d.ts", - "./node_modules/react-native/libraries/text/text.d.ts", - "./node_modules/react-native/libraries/animated/animated.d.ts", - "./node_modules/react-native/libraries/stylesheet/stylesheettypes.d.ts", - "./node_modules/react-native/libraries/stylesheet/stylesheet.d.ts", - "./node_modules/react-native/libraries/stylesheet/processcolor.d.ts", - "./node_modules/react-native/libraries/actionsheetios/actionsheetios.d.ts", - "./node_modules/react-native/libraries/alert/alert.d.ts", - "./node_modules/react-native/libraries/animated/easing.d.ts", - "./node_modules/react-native/libraries/animated/useanimatedvalue.d.ts", - "./node_modules/react-native/libraries/eventemitter/rctdeviceeventemitter.d.ts", - "./node_modules/react-native/libraries/eventemitter/rctnativeappeventemitter.d.ts", - "./node_modules/react-native/libraries/appstate/appstate.d.ts", - "./node_modules/react-native/libraries/batchedbridge/nativemodules.d.ts", - "./node_modules/react-native/libraries/components/accessibilityinfo/accessibilityinfo.d.ts", - "./node_modules/react-native/libraries/components/activityindicator/activityindicator.d.ts", - "./node_modules/react-native/libraries/components/clipboard/clipboard.d.ts", - "./node_modules/react-native/libraries/components/drawerandroid/drawerlayoutandroid.d.ts", - "./node_modules/react-native/libraries/eventemitter/nativeeventemitter.d.ts", - "./node_modules/react-native/libraries/components/keyboard/keyboard.d.ts", - "./node_modules/react-native/types/private/timermixin.d.ts", - "./node_modules/react-native/libraries/components/keyboard/keyboardavoidingview.d.ts", - "./node_modules/react-native/libraries/components/layoutconformance/layoutconformance.d.ts", - "./node_modules/react-native/libraries/components/pressable/pressable.d.ts", - "./node_modules/react-native/libraries/components/progressbarandroid/progressbarandroid.d.ts", - "./node_modules/react-native/libraries/components/safeareaview/safeareaview.d.ts", - "./node_modules/react-native/libraries/components/statusbar/statusbar.d.ts", - "./node_modules/react-native/libraries/components/switch/switch.d.ts", - "./node_modules/react-native/libraries/components/textinput/inputaccessoryview.d.ts", - "./node_modules/react-native/libraries/components/textinput/textinput.d.ts", - "./node_modules/react-native/libraries/components/toastandroid/toastandroid.d.ts", - "./node_modules/react-native/libraries/components/touchable/touchablewithoutfeedback.d.ts", - "./node_modules/react-native/libraries/components/touchable/touchablehighlight.d.ts", - "./node_modules/react-native/libraries/components/touchable/touchableopacity.d.ts", - "./node_modules/react-native/libraries/components/touchable/touchablenativefeedback.d.ts", - "./node_modules/react-native/libraries/components/button.d.ts", - "./node_modules/react-native/libraries/core/registercallablemodule.d.ts", - "./node_modules/react-native/libraries/interaction/interactionmanager.d.ts", - "./node_modules/react-native/libraries/interaction/panresponder.d.ts", - "./node_modules/react-native/libraries/layoutanimation/layoutanimation.d.ts", - "./node_modules/react-native/libraries/linking/linking.d.ts", - "./node_modules/react-native/libraries/logbox/logbox.d.ts", - "./node_modules/react-native/libraries/modal/modal.d.ts", - "./node_modules/react-native/libraries/performance/systrace.d.ts", - "./node_modules/react-native/libraries/permissionsandroid/permissionsandroid.d.ts", - "./node_modules/react-native/libraries/pushnotificationios/pushnotificationios.d.ts", - "./node_modules/react-native/libraries/utilities/iperformancelogger.d.ts", - "./node_modules/react-native/libraries/reactnative/appregistry.d.ts", - "./node_modules/react-native/libraries/reactnative/i18nmanager.d.ts", - "./node_modules/react-native/libraries/reactnative/roottag.d.ts", - "./node_modules/react-native/libraries/reactnative/uimanager.d.ts", - "./node_modules/react-native/libraries/reactnative/requirenativecomponent.d.ts", - "./node_modules/react-native/libraries/settings/settings.d.ts", - "./node_modules/react-native/libraries/share/share.d.ts", - "./node_modules/react-native/libraries/stylesheet/platformcolorvaluetypesios.d.ts", - "./node_modules/react-native/libraries/stylesheet/platformcolorvaluetypes.d.ts", - "./node_modules/react-native/libraries/turbomodule/rctexport.d.ts", - "./node_modules/react-native/libraries/turbomodule/turbomoduleregistry.d.ts", - "./node_modules/react-native/libraries/types/codegentypesnamespace.d.ts", - "./node_modules/react-native/libraries/utilities/appearance.d.ts", - "./node_modules/react-native/libraries/utilities/backhandler.d.ts", - "./node_modules/react-native/src/private/devsupport/devmenu/devmenu.d.ts", - "./node_modules/react-native/libraries/utilities/devsettings.d.ts", - "./node_modules/react-native/libraries/utilities/dimensions.d.ts", - "./node_modules/react-native/libraries/utilities/pixelratio.d.ts", - "./node_modules/react-native/libraries/utilities/platform.d.ts", - "./node_modules/react-native/libraries/vibration/vibration.d.ts", - "./node_modules/react-native/types/public/deprecatedpropertiesalias.d.ts", - "./node_modules/react-native/libraries/utilities/codegennativecommands.d.ts", - "./node_modules/react-native/libraries/utilities/codegennativecomponent.d.ts", - "./node_modules/react-native/types/index.d.ts", - "./node_modules/@callstack/repack/dist/modules/scriptmanager/nativescriptmanager.d.ts", - "./node_modules/@callstack/repack/dist/modules/scriptmanager/types.d.ts", - "./node_modules/@callstack/repack/dist/modules/scriptmanager/script.d.ts", - "./node_modules/@callstack/repack/dist/modules/scriptmanager/scriptmanager.d.ts", - "./node_modules/@callstack/repack/dist/modules/scriptmanager/getwebpackcontext.d.ts", - "./node_modules/@callstack/repack/dist/modules/scriptmanager/federated.d.ts", - "./node_modules/@callstack/repack/dist/modules/scriptmanager/index.d.ts", - "./node_modules/@callstack/repack/client/index.d.ts", - "./globals.js", - "./node_modules/react-native-safe-area-context/lib/typescript/src/specs/nativesafeareaview.d.ts", - "./node_modules/react-native-safe-area-context/lib/typescript/src/safearea.types.d.ts", - "./node_modules/react-native-safe-area-context/lib/typescript/src/safeareacontext.d.ts", - "./node_modules/react-native-safe-area-context/lib/typescript/src/safeareaview.d.ts", - "./node_modules/react-native-safe-area-context/lib/typescript/src/initialwindow.d.ts", - "./node_modules/react-native-safe-area-context/lib/typescript/src/index.d.ts", - "../../packages/theme/node_modules/csstype/index.d.ts", - "../../packages/theme/dist/types/theme-engine/types.d.ts", - "../../packages/theme/node_modules/@theme-ui/css/dist/declarations/src/options.d.ts", - "../../packages/theme/node_modules/@emotion/sheet/dist/declarations/src/index.d.ts", - "../../packages/theme/node_modules/@emotion/sheet/dist/emotion-sheet.cjs.d.mts", - "../../packages/theme/node_modules/@emotion/utils/dist/declarations/src/types.d.ts", - "../../packages/theme/node_modules/@emotion/utils/dist/declarations/src/index.d.ts", - "../../packages/theme/node_modules/@emotion/utils/dist/emotion-utils.cjs.d.mts", - "../../packages/theme/node_modules/@emotion/cache/dist/declarations/src/types.d.ts", - "../../packages/theme/node_modules/@emotion/cache/dist/declarations/src/index.d.ts", - "../../packages/theme/node_modules/@emotion/cache/dist/emotion-cache.cjs.default.d.ts", - "../../packages/theme/node_modules/@emotion/cache/dist/emotion-cache.cjs.d.mts", - "../../packages/theme/node_modules/@emotion/serialize/dist/declarations/src/index.d.ts", - "../../packages/theme/node_modules/@emotion/serialize/dist/emotion-serialize.cjs.d.mts", - "../../packages/theme/node_modules/@types/react/global.d.ts", - "../../packages/theme/node_modules/@types/prop-types/index.d.ts", - "../../packages/theme/node_modules/@types/react/index.d.ts", - "../../packages/theme/node_modules/@emotion/react/dist/declarations/types/jsx-namespace.d.ts", - "../../packages/theme/node_modules/@emotion/react/dist/declarations/types/helper.d.ts", - "../../packages/theme/node_modules/@emotion/react/dist/declarations/types/theming.d.ts", - "../../packages/theme/node_modules/@emotion/react/dist/declarations/types/index.d.ts", - "../../packages/theme/node_modules/@emotion/react/dist/declarations/src/index.d.ts", - "../../packages/theme/node_modules/@emotion/react/dist/emotion-react.cjs.d.mts", - "../../packages/theme/node_modules/@theme-ui/css/dist/declarations/src/types.d.ts", - "../../packages/theme/node_modules/@theme-ui/css/dist/declarations/src/index.d.ts", - "../../packages/theme/node_modules/@theme-ui/css/dist/theme-ui-css.cjs.d.ts", - "../../packages/theme/dist/types/theme/variants/index.d.ts", - "../../packages/theme/dist/types/theme/font/fontsize.d.ts", - "../../packages/theme/dist/types/theme/font/index.d.ts", - "../../packages/theme/dist/types/theme/types.d.ts", - "../../packages/theme/node_modules/@theme-ui/core/dist/declarations/src/types.d.ts", - "../../packages/theme/node_modules/@theme-ui/core/dist/declarations/src/jsx-namespace.d.ts", - "../../packages/theme/node_modules/@theme-ui/core/dist/declarations/src/index.d.ts", - "../../packages/theme/node_modules/@theme-ui/core/dist/theme-ui-core.cjs.d.ts", - "../../packages/theme/dist/types/theme/variants/button.d.ts", - "../../packages/theme/dist/types/theme/index.d.ts", - "../../packages/theme/dist/types/theme-engine/utils.d.ts", - "../../packages/theme/dist/types/theme-engine/validator.d.ts", - "../../packages/theme/node_modules/zustand/esm/vanilla.d.mts", - "../../packages/theme/node_modules/zustand/esm/react.d.mts", - "../../packages/theme/node_modules/zustand/esm/index.d.mts", - "../../packages/theme/dist/types/theme-engine/index.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/types.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/box.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/flex.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/grid.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/button.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/link.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/paragraph.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/text.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/heading.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/image.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/card.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/label.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/input.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/select.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/textarea.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/radio.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/checkbox.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/switch.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/slider.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/util.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/field.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/progress.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/donut.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/spinner.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/avatar.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/badge.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/iconbutton.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/close.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/alert.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/divider.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/embed.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/aspectratio.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/aspectimage.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/container.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/navlink.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/message.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/menubutton.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/index.d.ts", - "../../packages/theme/node_modules/@theme-ui/components/dist/theme-ui-components.cjs.d.ts", - "../../packages/theme/dist/types/emotion/theme-provider.d.ts", - "../../packages/theme/dist/types/emotion/index.d.ts", - "../../packages/theme/dist/types/index.d.ts", - "./node_modules/@ammarahmed/react-native-share-extension/index.d.ts", - "./node_modules/@flyerhq/react-native-link-preview/lib/types.d.ts", - "./node_modules/@flyerhq/react-native-link-preview/lib/linkpreview.d.ts", - "./node_modules/@flyerhq/react-native-link-preview/lib/utils.d.ts", - "./node_modules/@flyerhq/react-native-link-preview/lib/index.d.ts", - "../../packages/sodium/node_modules/@types/libsodium-wrappers/index.d.ts", - "../../packages/sodium/node_modules/@types/libsodium-wrappers-sumo/index.d.ts", - "../../packages/sodium/dist/types-dnab56p6.d.mts", - "../../packages/sodium/dist/browser.d.mts", - "../../packages/crypto/dist/index.d.mts", - "../../packages/core/dist/types/types.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/insert-result.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/delete-result.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/update-result.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/type-error.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/merge-result.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/type-utils.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/operation-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/identifier-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/check-constraint-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/column-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/default-value-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/generated-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/schemable-identifier-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/table-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/references-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/column-definition-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/add-column-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-column-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/rename-column-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/raw-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/alter-column-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/foreign-key-constraint-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/primary-constraint-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/unique-constraint-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/constraint-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/add-constraint-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-constraint-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/modify-column-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-index-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/add-index-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/alter-table-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/where-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/create-index-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/create-schema-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/create-table-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/alias-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/operation-node-source.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/expression/expression.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/explainable.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/explain-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/column-update-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/on-conflict-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/on-duplicate-key-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/output-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/select-all-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/reference-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/simple-reference-expression-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/selection-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/returning-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/top-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/common-table-expression-name-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/common-table-expression-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/with-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/insert-query-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/from-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/group-by-item-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/group-by-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/having-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/on-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/join-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/limit-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/offset-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/order-by-item-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/order-by-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/select-modifier-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/set-operation-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/value-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/fetch-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/select-query-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/primitive-value-list-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/value-list-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/update-query-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/using-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/delete-query-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/when-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/merge-query-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/query-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/trigger-event-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/trigger-order-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/function-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/create-trigger-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/create-type-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/create-view-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-schema-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-table-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-trigger-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-type-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-view-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-compiler/query-compiler.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-compiler/compiled-query.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/driver/database-connection.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/driver/driver.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/database-introspector.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/dialect-adapter.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/dialect.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/driver/connection-provider.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/query-id.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/plugin/kysely-plugin.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-executor/query-executor.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/compilable.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/default-value-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/column-definition-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/data-type-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/data-type-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/alter-column-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/alter-table-executor.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/foreign-key-constraint-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/alter-table-add-foreign-key-constraint-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/alter-table-drop-constraint-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/select-query-builder-expression.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/table-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/binary-operation-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/operator-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/value-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/column-type.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/binary-operation-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/join-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/join-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dynamic/dynamic-reference-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/select-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/order-by-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/group-by-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/where-interface.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/no-result-error.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/having-interface.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/set-operation-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/streamable.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/and-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/or-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/parens-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/expression/expression-wrapper.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/select-query-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/coalesce-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/partition-by-item-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/partition-by-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/over-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/aggregate-function-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/partition-by-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/over-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/aggregate-function-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/function-module.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/case-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/case-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/json-path-leg-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/json-path-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/json-operator-chain-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/json-reference-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/json-path-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/tuple-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/expression/expression-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/expression-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/reference-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/alter-table-add-index-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/unique-constraint-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/alter-table-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/create-index-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/create-schema-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/create-table-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/drop-index-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/drop-schema-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/drop-table-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-executor/query-executor-provider.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/raw-builder/raw-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/create-view-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/drop-view-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/create-type-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/drop-type-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/values-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/insert-values-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/update-set-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/returning-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/returning-interface.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/on-conflict-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/output-interface.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/insert-query-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/delete-query-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/update-query-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/cte-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/with-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/merge-query-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-creator.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/trigger-query-creator.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/create-trigger-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/drop-trigger-builder.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/schema.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dynamic/dynamic.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/log.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/kysely.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/raw-builder/sql.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-executor/query-executor-base.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-executor/default-query-executor.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-executor/noop-query-executor.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/list-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/default-insert-value-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/unary-operation-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/tuple-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/matched-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/cast-node.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/operation-node-visitor.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-compiler/default-query-compiler.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/driver/default-connection-provider.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/driver/single-connection-provider.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/driver/dummy-driver.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/dialect-adapter-base.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/sqlite/sqlite-dialect-config.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/sqlite/sqlite-dialect.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/sqlite/sqlite-driver.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/postgres/postgres-query-compiler.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/postgres/postgres-introspector.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/postgres/postgres-adapter.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mysql/mysql-dialect-config.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mysql/mysql-dialect.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mysql/mysql-driver.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mysql/mysql-query-compiler.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mysql/mysql-introspector.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mysql/mysql-adapter.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/postgres/postgres-dialect-config.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/postgres/postgres-driver.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/postgres/postgres-dialect.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/sqlite/sqlite-query-compiler.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/sqlite/sqlite-introspector.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/sqlite/sqlite-adapter.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mssql/mssql-adapter.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mssql/mssql-dialect-config.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mssql/mssql-dialect.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mssql/mssql-driver.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mssql/mssql-introspector.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mssql/mssql-query-compiler.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/migration/migrator.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/migration/file-migration-provider.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/plugin/camel-case/camel-case-plugin.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/plugin/deduplicate-joins/deduplicate-joins-plugin.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/plugin/with-schema/with-schema-plugin.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/plugin/parse-json-results/parse-json-results-plugin.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/operation-node-transformer.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/infer-result.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/log-once.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/unary-operation-parser.d.ts", - "../../packages/core/node_modules/@streetwriters/kysely/dist/esm/index.d.ts", - "../../packages/core/dist/types/database/index.d.ts", - "../../packages/logger/dist/index.d.mts", - "../../packages/core/dist/types/api/token-manager.d.ts", - "../../packages/core/dist/types/database/kv.d.ts", - "../../packages/core/dist/types/database/config.d.ts", - "../../packages/core/dist/types/interfaces.d.ts", - "../../packages/core/dist/types/utils/array.d.ts", - "../../packages/core/dist/types/utils/clone.d.ts", - "../../packages/core/dist/types/utils/constants.d.ts", - "../../packages/core/dist/types/utils/internal-link.d.ts", - "../../packages/core/dist/types/utils/content-block.d.ts", - "../../packages/core/dist/types/utils/date.d.ts", - "../../packages/core/dist/types/utils/event-manager.d.ts", - "../../packages/core/dist/types/utils/filename.d.ts", - "../../packages/core/dist/types/utils/grouping.d.ts", - "../../packages/core/dist/types/utils/has-require.d.ts", - "../../packages/core/dist/types/utils/hostname.d.ts", - "../../packages/core/dist/types/utils/html-diff.d.ts", - "../../packages/core/dist/types/utils/html-parser.d.ts", - "../../packages/core/dist/types/utils/html-rewriter.d.ts", - "../../packages/core/dist/types/utils/http.d.ts", - "../../packages/core/dist/types/utils/id.d.ts", - "../../packages/core/dist/types/utils/object-id.d.ts", - "../../packages/core/dist/types/utils/query-transformer.d.ts", - "../../packages/core/dist/types/utils/queue-value.d.ts", - "../../packages/core/dist/types/utils/random.d.ts", - "../../packages/core/dist/types/utils/set.d.ts", - "../../packages/core/dist/types/utils/title-format.d.ts", - "../../packages/core/dist/types/utils/virtualized-grouping.d.ts", - "../../packages/core/dist/types/utils/crypto.d.ts", - "../../packages/core/dist/types/utils/fuzzy.d.ts", - "../../packages/core/dist/types/utils/index.d.ts", - "../../packages/core/dist/types/content-types/tiptap.d.ts", - "../../packages/core/dist/types/content-types/index.d.ts", - "../../packages/core/dist/types/common.d.ts", - "../../packages/core/dist/types/collections/collection.d.ts", - "../../packages/core/dist/types/database/sanitizer.d.ts", - "../../packages/core/dist/types/database/sql-collection.d.ts", - "../../packages/core/dist/types/collections/notes.d.ts", - "../../packages/core/dist/types/database/fs.d.ts", - "../../packages/core/dist/types/collections/notebooks.d.ts", - "../../packages/core/dist/types/collections/trash.d.ts", - "../../packages/core/dist/types/api/sync/types.d.ts", - "../../packages/core/dist/types/api/sync/collector.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/abortcontroller.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/itransport.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/errors.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/ilogger.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/ihubprotocol.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/httpclient.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/defaulthttpclient.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/ihttpconnectionoptions.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/istatefulreconnectoptions.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/stream.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/hubconnection.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/iretrypolicy.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/hubconnectionbuilder.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/loggers.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/jsonhubprotocol.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/subject.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/utils.d.ts", - "../../packages/core/node_modules/@microsoft/signalr/dist/esm/index.d.ts", - "../../packages/core/dist/types/api/sync/merger.d.ts", - "../../packages/core/dist/types/api/sync/auto-sync.d.ts", - "../../packages/core/node_modules/async-mutex/lib/mutexinterface.d.ts", - "../../packages/core/node_modules/async-mutex/lib/mutex.d.ts", - "../../packages/core/node_modules/async-mutex/lib/semaphoreinterface.d.ts", - "../../packages/core/node_modules/async-mutex/lib/semaphore.d.ts", - "../../packages/core/node_modules/async-mutex/lib/withtimeout.d.ts", - "../../packages/core/node_modules/async-mutex/lib/tryacquire.d.ts", - "../../packages/core/node_modules/async-mutex/lib/errors.d.ts", - "../../packages/core/node_modules/async-mutex/lib/index.d.ts", - "../../packages/core/dist/types/api/sync/devices.d.ts", - "../../packages/core/dist/types/api/sync/index.d.ts", - "../../packages/core/dist/types/collections/tags.d.ts", - "../../packages/core/dist/types/collections/colors.d.ts", - "../../packages/core/dist/types/api/vault.d.ts", - "../../packages/core/dist/types/api/lookup.d.ts", - "../../packages/core/dist/types/collections/content.d.ts", - "../../packages/core/dist/types/database/migrator.d.ts", - "../../packages/core/dist/types/database/backup.d.ts", - "../../packages/core/dist/types/collections/legacy-settings.d.ts", - "../../packages/core/dist/types/api/migrations.d.ts", - "../../packages/core/dist/types/api/user-manager.d.ts", - "../../packages/core/dist/types/api/monographs.d.ts", - "../../packages/core/dist/types/collections/monographs.d.ts", - "../../packages/core/dist/types/api/offers.d.ts", - "../../packages/core/dist/types/collections/attachments.d.ts", - "../../packages/core/dist/types/api/debug.d.ts", - "../../packages/core/dist/types/collections/session-content.d.ts", - "../../packages/core/dist/types/collections/note-history.d.ts", - "../../packages/core/dist/types/api/mfa-manager.d.ts", - "../../packages/core/dist/types/api/pricing.d.ts", - "../../packages/core/dist/types/database/sql-cached-collection.d.ts", - "../../packages/core/dist/types/collections/shortcuts.d.ts", - "../../packages/core/dist/types/collections/reminders.d.ts", - "../../packages/core/dist/types/collections/relations.d.ts", - "../../packages/core/dist/types/api/subscriptions.d.ts", - "../../packages/core/dist/types/collections/settings.d.ts", - "../../packages/core/dist/types/database/cached-collection.d.ts", - "../../packages/core/dist/types/collections/vaults.d.ts", - "../../packages/core/dist/types/api/inbox-api-keys.d.ts", - "../../packages/core/dist/types/api/circle.d.ts", - "../../packages/core/dist/types/api/index.d.ts", - "../../packages/core/dist/types/logger.d.ts", - "../../packages/core/dist/types/utils/dataurl.d.ts", - "../../packages/core/dist/types/index.d.ts", - "../../packages/common/dist/types/database.d.ts", - "../../packages/common/dist/types/utils/file.d.ts", - "../../packages/common/dist/types/utils/number.d.ts", - "../../packages/common/dist/types/utils/date-time.d.ts", - "../../packages/common/dist/types/utils/debounce.d.ts", - "../../packages/common/dist/types/utils/random.d.ts", - "../../packages/common/dist/types/utils/string.d.ts", - "../../packages/common/dist/types/utils/resolve-items.d.ts", - "../../packages/common/dist/types/utils/migrate-toolbar.d.ts", - "../../packages/common/dist/types/utils/export-notes.d.ts", - "../../packages/common/dist/types/utils/dataurl.d.ts", - "../../packages/common/dist/types/utils/tab-session-history.d.ts", - "../../packages/common/dist/types/utils/keybindings.d.ts", - "../../packages/common/dist/types/utils/is-feature-available.d.ts", - "../../packages/common/dist/types/utils/index.d.ts", - "../../packages/common/node_modules/timeago.js/lib/interface.d.ts", - "../../packages/common/node_modules/timeago.js/lib/register.d.ts", - "../../packages/common/node_modules/timeago.js/lib/format.d.ts", - "../../packages/common/node_modules/timeago.js/lib/realtime.d.ts", - "../../packages/common/node_modules/timeago.js/lib/index.d.ts", - "../../packages/common/dist/types/hooks/use-time-ago.d.ts", - "../../packages/common/node_modules/@types/react/index.d.ts", - "../../packages/common/dist/types/hooks/use-promise.d.ts", - "../../packages/common/dist/types/hooks/use-resolved-item.d.ts", - "../../packages/common/dist/types/hooks/use-is-feature-available.d.ts", - "../../packages/common/dist/types/hooks/index.d.ts", - "../../packages/common/node_modules/@types/react/jsx-runtime.d.ts", - "../../packages/common/dist/types/components/resolved-item.d.ts", - "../../packages/common/dist/types/components/index.d.ts", - "../../packages/common/dist/types/index.d.ts", - "./node_modules/react-native-blob-util/index.d.ts", - "./node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/globals.d.ts", - "./node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/legacy-properties.d.ts", - "./node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/batchedbridge.d.ts", - "./node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/codegen.d.ts", - "./node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/devtools.d.ts", - "./node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/launchscreen.d.ts", - "./node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/index.d.ts", - "./node_modules/@types/react-native-vector-icons/icon.d.ts", - "./node_modules/@types/react-native-vector-icons/materialcommunityicons.d.ts", - "./node_modules/@types/validator/lib/isurl.d.ts", - "./node_modules/@streetwriters/kysely/dist/esm/index.d.ts", - "./node_modules/react-native-gzip/lib/typescript/index.d.ts", - "./node_modules/event-target-shim/index.d.ts", - "./app/utils/sse/even-source-ios.js", - "./app/utils/sse/event-source.js", - "./node_modules/@react-native-community/netinfo/lib/typescript/src/internal/types.d.ts", - "./node_modules/@react-native-community/netinfo/lib/typescript/src/index.d.ts", - "./node_modules/@react-native-clipboard/clipboard/dist/clipboard.d.ts", - "./node_modules/@react-native-clipboard/clipboard/dist/useclipboard.d.ts", - "./node_modules/@react-native-clipboard/clipboard/dist/index.d.ts", - "./node_modules/react-native-actions-sheet/dist/src/eventmanager.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/publicglobals.d.ts", - "./node_modules/react-native-worklets/lib/typescript/runtimekind.d.ts", - "./node_modules/react-native-worklets/lib/typescript/publicglobals.d.ts", - "./node_modules/react-native-worklets/lib/typescript/worklettypes.d.ts", - "./node_modules/react-native-worklets/lib/typescript/serializable.d.ts", - "./node_modules/react-native-worklets/lib/typescript/deprecated.d.ts", - "./node_modules/react-native-worklets/lib/typescript/featureflags/index.d.ts", - "./node_modules/react-native-worklets/lib/typescript/synchronizable.d.ts", - "./node_modules/react-native-worklets/lib/typescript/issynchronizable.d.ts", - "./node_modules/react-native-worklets/lib/typescript/runtimes.d.ts", - "./node_modules/react-native-worklets/lib/typescript/serializablemappingcache.d.ts", - "./node_modules/react-native-worklets/lib/typescript/threads.d.ts", - "./node_modules/react-native-worklets/lib/typescript/workletfunction.d.ts", - "./node_modules/react-native-worklets/lib/typescript/workletsmodule/workletsmoduleproxy.d.ts", - "./node_modules/react-native-worklets/lib/typescript/workletsmodule/workletsmoduleinstance.d.ts", - "./node_modules/react-native-worklets/lib/typescript/workletsmodule/index.d.ts", - "./node_modules/react-native-worklets/lib/typescript/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/common/types.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/easing/types.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/easing/cubicbezier.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/easing/linear.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/easing/steps.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/easing/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/types/common.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/types/helpers.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/types/animation.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/types/transition.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/types/config.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/types/props.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/types/interfaces.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/types/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/component/createanimatedcomponent.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/component/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/stylesheet/keyframes.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/stylesheet/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/easing.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/commontypes.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/animationbuilder/baseanimationbuilder.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/animationbuilder/keyframe.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/helpertypes.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/component/flatlist.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/component/image.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/component/scrollview.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/component/text.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/component/view.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/common/constants.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/common/errors.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/common/logger.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/common/processors/colors.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/common/processors/shadows.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/common/processors/transformorigin.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/common/processors/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/common/utils/guards.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/common/utils/parsers.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/common/utils/suffix.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/common/utils/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/common/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/confighelper.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/animationsmanager.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/component/layoutanimationconfig.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/animationbuilder/complexanimationbuilder.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/animationbuilder/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/bounce.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/fade.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/flip.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/lightspeed.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/pinwheel.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/roll.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/rotate.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/slide.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/stretch.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/zoom.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaulttransitions/curvedtransition.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaulttransitions/entryexittransition.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaulttransitions/fadingtransition.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaulttransitions/jumpingtransition.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaulttransitions/lineartransition.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaulttransitions/sequencedtransition.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaulttransitions/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/models/csskeyframesrulebase.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/models/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/types/animation.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/types/transition.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/types/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/keyframes/csskeyframesruleimpl.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/keyframes/csskeyframesregistry.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/keyframes/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/managers/cssmanager.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/managers/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/style/types.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/style/config.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/style/createstylebuilder.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/style/processors/colors.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/style/processors/font.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/style/processors/insets.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/style/processors/others.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/style/processors/transform.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/style/processors/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/style/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/animation/keyframes.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/animation/properties.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/animation/settings.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/animation/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/common/settings.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/common/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/transition/config.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/transition/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/proxy.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/registry.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/native/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/reanimatedmodule/reanimatedmoduleproxy.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/reanimatedmodule/js-reanimated/jsreanimated.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/reanimatedmodule/js-reanimated/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/commontypes.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/viewdescriptorsset.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/createanimatedcomponent/commontypes.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/platform.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/css/component/animatedcomponent.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/createanimatedcomponent/inlinepropmanager.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/createanimatedcomponent/propsfilter.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/createanimatedcomponent/animatedcomponent.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/createanimatedcomponent/createanimatedcomponent.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/createanimatedcomponent/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animated.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/clamp.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/commontypes.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/decay/utils.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/decay/decay.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/decay/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/delay.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/repeat.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/sequence.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/spring/springconfigs.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/spring/spring.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/spring/springutils.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/spring/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/styleanimation.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/timing.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/util.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/animation/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/colors.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/component/performancemonitor.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/component/reducedmotionconfig.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/mappers.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/mutables.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/core.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/featureflags/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/framecallback/framecallbackregistryui.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/framecallback/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/useanimatedkeyboard.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/useanimatedprops.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/useanimatedreaction.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/useanimatedref.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/useevent.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/useanimatedscrollhandler.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/useanimatedsensor.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/useanimatedstyle.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/usecomposedeventhandler.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/usederivedvalue.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/useframecallback.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/usehandler.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/usereducedmotion.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/usescrolloffset.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/usesharedvalue.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/hook/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/interpolation.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/interpolatecolor.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/issharedvalue.d.ts", - "./node_modules/@types/react-test-renderer/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/jestutils.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/platform-specific/jsversion.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/platformfunctions/dispatchcommand.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/platformfunctions/getrelativecoords.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/platformfunctions/measure.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/platformfunctions/scrollto.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/platformfunctions/setgesturestate.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/platformfunctions/setnativeprops.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/platformfunctions/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/pluginutils.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/propadapters.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/screentransition/commontypes.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/screentransition/animationmanager.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/screentransition/presets.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/screentransition/index.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/workletfunctions.d.ts", - "./node_modules/react-native-reanimated/lib/typescript/index.d.ts", - "./node_modules/react-native-actions-sheet/dist/src/hooks/use-router.d.ts", - "./node_modules/react-native-actions-sheet/dist/src/types.d.ts", - "./node_modules/react-native-actions-sheet/dist/src/index.d.ts", - "./node_modules/react-native-actions-sheet/dist/src/sheetmanager.d.ts", - "./node_modules/react-native-actions-sheet/dist/src/provider.d.ts", - "./node_modules/react-native-actions-sheet/dist/src/context.d.ts", - "./node_modules/react-native-actions-sheet/dist/src/hooks/use-scroll-handlers.d.ts", - "./node_modules/react-native-actions-sheet/dist/src/views/scrollview.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/directions.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/state.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/pointertype.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/gesturehandlerroothoc.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/gesturehandlerrootview.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/toucheventtype.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/typeutils.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gesturehandlercommon.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/gesturestatemanager.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/web/interfaces.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gesturehandlereventpayload.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/gesture.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/tapgesturehandler.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/forcetouchgesturehandler.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/forcetouchgesture.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/longpressgesturehandler.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/pangesturehandler.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/pangesture.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/pinchgesturehandler.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/pinchgesture.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/rotationgesturehandler.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/flinggesturehandler.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/nativeviewgesturehandler.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/createnativewrapper.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/gesturecomposition.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/gesturedetector/index.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/flinggesture.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/longpressgesture.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/rotationgesture.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/tapgesture.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/nativegesture.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/manualgesture.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/hovergesture.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/gestureobjects.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/gesturebuttonsprops.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/gesturehandlerbutton.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/gesturebuttons.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/extrabuttonprops.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/generictouchableprops.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/touchablehighlight.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/touchableopacity.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/generictouchable.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/touchablewithoutfeedback.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/touchablenativefeedback.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/index.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/gesturecomponents.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/text.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/handlers/gesturehandlertypescompat.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/swipeable.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/utils.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/pressable/pressableprops.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/pressable/pressable.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/pressable/index.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/components/drawerlayout.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/enablenewwebimplementation.d.ts", - "./node_modules/react-native-gesture-handler/lib/typescript/index.d.ts", - "./node_modules/react-native-actions-sheet/dist/src/views/flatlist.d.ts", - "./node_modules/react-native-actions-sheet/dist/index.d.ts", - "./app/utils/events.js", - "./app/services/event-manager.ts", - "./node_modules/zustand/vanilla.d.ts", - "./node_modules/zustand/react.d.ts", - "./node_modules/zustand/index.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/encryption.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/eventmanager.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/indexer/strings.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/indexer/numbers.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/indexer/booleans.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/indexer/maps.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/indexer/arrays.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/indexer/indexer.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/types/index.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/transactions.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/mmkvinstance.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/hooks/useindex.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/hooks/usemmkv.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/hooks/usemmkvref.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/initializer.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/mmkvloader.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/mmkv/init.d.ts", - "./node_modules/react-native-mmkv-storage/dist/src/utils.d.ts", - "./node_modules/react-native-mmkv-storage/dist/index.d.ts", - "./node_modules/zustand/middleware/redux.d.ts", - "./node_modules/zustand/middleware/devtools.d.ts", - "./node_modules/zustand/middleware/subscribewithselector.d.ts", - "./node_modules/zustand/middleware/combine.d.ts", - "./node_modules/zustand/middleware/persist.d.ts", - "./node_modules/zustand/middleware.d.ts", - "./app/common/database/mmkv.ts", - "./node_modules/react-native-webview/lib/rncwebviewnativecomponent.d.ts", - "./node_modules/react-native-webview/lib/webviewtypes.d.ts", - "./node_modules/react-native-webview/index.d.ts", - "./app/utils/notesnook-module.ts", - "../../packages/editor/node_modules/orderedmap/dist/index.d.ts", - "../../packages/editor/node_modules/prosemirror-model/dist/index.d.ts", - "../../packages/editor/node_modules/prosemirror-transform/dist/index.d.ts", - "../../packages/editor/node_modules/prosemirror-view/dist/index.d.ts", - "../../packages/editor/node_modules/prosemirror-state/dist/index.d.ts", - "../../packages/editor/node_modules/@tiptap/pm/state/dist/index.d.ts", - "../../packages/editor/node_modules/@tiptap/pm/model/dist/index.d.ts", - "../../packages/editor/node_modules/@tiptap/pm/view/dist/index.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/eventemitter.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/inputrule.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/pasterule.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/node.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/mark.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extension.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/types.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensionmanager.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/nodepos.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensions/clipboardtextserializer.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/blur.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/clearcontent.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/clearnodes.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/command.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/createparagraphnear.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/cut.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/deletecurrentnode.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/deletenode.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/deleterange.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/deleteselection.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/enter.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/exitcode.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/extendmarkrange.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/first.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/focus.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/foreach.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/insertcontent.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/insertcontentat.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/join.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/joinitembackward.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/joinitemforward.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/jointextblockbackward.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/jointextblockforward.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/keyboardshortcut.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/lift.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/liftemptyblock.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/liftlistitem.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/newlineincode.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/resetattributes.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/scrollintoview.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/selectall.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/selectnodebackward.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/selectnodeforward.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/selectparentnode.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/selecttextblockend.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/selecttextblockstart.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/setcontent.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/setmark.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/setmeta.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/setnode.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/setnodeselection.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/settextselection.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/sinklistitem.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/splitblock.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/splitlistitem.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/togglelist.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/togglemark.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/togglenode.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/togglewrap.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/undoinputrule.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/unsetallmarks.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/unsetmark.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/updateattributes.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/wrapin.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/wrapinlist.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/index.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensions/commands.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensions/editable.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensions/focusevents.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensions/keymap.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensions/tabindex.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensions/index.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/editor.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commandmanager.d.ts", - "../../packages/editor/node_modules/@tiptap/pm/transform/dist/index.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/combinetransactionsteps.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/createchainablestate.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/createdocument.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/createnodefromcontent.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/defaultblockat.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/findchildren.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/findchildreninrange.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/findparentnode.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/findparentnodeclosesttopos.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/generatehtml.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/generatejson.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/generatetext.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getattributes.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getattributesfromextensions.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getchangedranges.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getdebugjson.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getextensionfield.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/gethtmlfromfragment.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getmarkattributes.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getmarkrange.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getmarksbetween.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getmarktype.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getnodeatposition.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getnodeattributes.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getnodetype.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getrenderedattributes.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getschema.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getschemabyresolvedextensions.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getschematypebyname.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getschematypenamebyname.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getsplittedattributes.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/gettext.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/gettextbetween.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/gettextcontentfromnodes.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/gettextserializersfromschema.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/injectextensionattributestoparserule.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/isactive.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/isatendofnode.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/isatstartofnode.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/isextensionrulesenabled.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/islist.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/ismarkactive.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/isnodeactive.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/isnodeempty.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/isnodeselection.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/istextselection.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/postodomrect.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/resolvefocusposition.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/selectiontoinsertionend.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/splitextensions.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/index.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/inputrules/markinputrule.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/inputrules/nodeinputrule.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/inputrules/textblocktypeinputrule.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/inputrules/textinputrule.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/inputrules/wrappinginputrule.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/inputrules/index.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/nodeview.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/pasterules/markpasterule.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/pasterules/nodepasterule.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/pasterules/textpasterule.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/pasterules/index.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/tracker.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/callorreturn.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/createstyletag.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/deleteprops.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/elementfromstring.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/escapeforregex.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/findduplicates.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/fromstring.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/isemptyobject.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/isfunction.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/isios.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/ismacos.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/isnumber.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/isplainobject.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/isregexp.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/isstring.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/mergeattributes.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/mergedeep.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/minmax.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/objectincludes.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/removeduplicates.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/index.d.ts", - "../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/index.d.ts", - "../../packages/editor/dist/types/extensions/link/link.d.ts", - "../../packages/editor/dist/types/extensions/link/index.d.ts", - "../../packages/editor/dist/types/extensions/attachment/types.d.ts", - "../../packages/editor/dist/types/extensions/attachment/attachment.d.ts", - "../../packages/editor/dist/types/extensions/attachment/index.d.ts", - "../../packages/editor/dist/types/extensions/date-time/date-time.d.ts", - "../../packages/editor/dist/types/extensions/date-time/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-text-style/dist/packages/extension-text-style/src/text-style.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-text-style/dist/packages/extension-text-style/src/index.d.ts", - "../../packages/editor/dist/types/extensions/text-direction/text-direction.d.ts", - "../../packages/editor/dist/types/extensions/text-direction/index.d.ts", - "../../packages/editor/dist/types/extensions/image/image.d.ts", - "../../packages/editor/dist/types/extensions/image/index.d.ts", - "../../packages/editor/dist/types/extensions/web-clip/web-clip.d.ts", - "../../packages/editor/dist/types/extensions/web-clip/index.d.ts", - "../../packages/editor/dist/types/hooks/use-permission-handler.d.ts", - "../../packages/editor/node_modules/@theme-ui/components/dist/theme-ui-components.cjs.d.ts", - "../../packages/editor/dist/types/types.d.ts", - "../../packages/editor/dist/types/utils/downloader.d.ts", - "../../packages/editor/node_modules/zustand/esm/index.d.mts", - "../../packages/editor/dist/types/toolbar/stores/toolbar-store.d.ts", - "../../packages/editor/dist/types/toolbar/icons.d.ts", - "../../packages/editor/node_modules/@types/react/index.d.ts", - "../../packages/editor/node_modules/@types/react/jsx-runtime.d.ts", - "../../packages/editor/dist/types/toolbar/tools/inline.d.ts", - "../../packages/editor/dist/types/toolbar/tools/block.d.ts", - "../../packages/editor/dist/types/toolbar/tools/font.d.ts", - "../../packages/editor/dist/types/toolbar/tools/alignment.d.ts", - "../../packages/editor/dist/types/toolbar/tools/headings.d.ts", - "../../packages/editor/dist/types/toolbar/tools/lists.d.ts", - "../../packages/editor/dist/types/toolbar/tools/text-direction.d.ts", - "../../packages/editor/dist/types/toolbar/tools/colors.d.ts", - "../../packages/editor/dist/types/toolbar/tools/table.d.ts", - "../../packages/editor/dist/types/toolbar/tools/image.d.ts", - "../../packages/editor/dist/types/toolbar/tools/attachment.d.ts", - "../../packages/editor/dist/types/toolbar/tools/embed.d.ts", - "../../packages/editor/dist/types/toolbar/tools/link.d.ts", - "../../packages/editor/dist/types/toolbar/tools/web-clip.d.ts", - "../../packages/editor/dist/types/toolbar/tools/index.d.ts", - "../../packages/editor/dist/types/toolbar/types.d.ts", - "../../packages/editor/dist/types/toolbar/toolbar.d.ts", - "../../packages/editor/dist/types/toolbar/tool-definitions.d.ts", - "../../packages/editor/dist/types/toolbar/index.d.ts", - "../../packages/editor/dist/types/utils/prosemirror.d.ts", - "../../packages/editor/node_modules/alfaaz/dist/index.d.ts", - "../../packages/editor/dist/types/utils/word-counter.d.ts", - "../../packages/editor/dist/types/utils/font.d.ts", - "../../packages/editor/dist/types/utils/toc.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-history/dist/packages/extension-history/src/history.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-history/dist/packages/extension-history/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-character-count/dist/packages/extension-character-count/src/character-count.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-character-count/dist/packages/extension-character-count/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-placeholder/dist/packages/extension-placeholder/src/placeholder.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-placeholder/dist/packages/extension-placeholder/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-underline/dist/packages/extension-underline/src/underline.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-underline/dist/packages/extension-underline/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-blockquote/dist/packages/extension-blockquote/src/blockquote.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-blockquote/dist/packages/extension-blockquote/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-bold/dist/packages/extension-bold/src/bold.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-bold/dist/packages/extension-bold/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-bullet-list/dist/packages/extension-bullet-list/src/bullet-list.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-bullet-list/dist/packages/extension-bullet-list/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-code/dist/packages/extension-code/src/code.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-code/dist/packages/extension-code/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-code-block/dist/packages/extension-code-block/src/code-block.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-code-block/dist/packages/extension-code-block/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-dropcursor/dist/packages/extension-dropcursor/src/dropcursor.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-dropcursor/dist/packages/extension-dropcursor/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-hard-break/dist/packages/extension-hard-break/src/hard-break.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-hard-break/dist/packages/extension-hard-break/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-heading/dist/packages/extension-heading/src/heading.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-heading/dist/packages/extension-heading/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-horizontal-rule/dist/packages/extension-horizontal-rule/src/horizontal-rule.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-horizontal-rule/dist/packages/extension-horizontal-rule/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-italic/dist/packages/extension-italic/src/italic.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-italic/dist/packages/extension-italic/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-list-item/dist/packages/extension-list-item/src/list-item.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-list-item/dist/packages/extension-list-item/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-ordered-list/dist/packages/extension-ordered-list/src/ordered-list.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-ordered-list/dist/packages/extension-ordered-list/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-paragraph/dist/packages/extension-paragraph/src/paragraph.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-paragraph/dist/packages/extension-paragraph/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-strike/dist/packages/extension-strike/src/strike.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-strike/dist/packages/extension-strike/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/dist/packages/starter-kit/src/starter-kit.d.ts", - "../../packages/editor/node_modules/@tiptap/starter-kit/dist/packages/starter-kit/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-text-align/dist/packages/extension-text-align/src/text-align.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-text-align/dist/packages/extension-text-align/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-subscript/dist/packages/extension-subscript/src/subscript.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-subscript/dist/packages/extension-subscript/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-superscript/dist/packages/extension-superscript/src/superscript.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-superscript/dist/packages/extension-superscript/src/index.d.ts", - "../../packages/editor/dist/types/extensions/font-size/font-size.d.ts", - "../../packages/editor/dist/types/extensions/font-size/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-font-family/dist/packages/extension-font-family/src/font-family.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-font-family/dist/packages/extension-font-family/src/index.d.ts", - "../../packages/editor/dist/types/extensions/bullet-list/bullet-list.d.ts", - "../../packages/editor/dist/types/extensions/bullet-list/index.d.ts", - "../../packages/editor/dist/types/extensions/ordered-list/ordered-list.d.ts", - "../../packages/editor/dist/types/extensions/ordered-list/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-color/dist/packages/extension-color/src/color.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-color/dist/packages/extension-color/src/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-table-row/dist/packages/extension-table-row/src/table-row.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-table-row/dist/packages/extension-table-row/src/index.d.ts", - "../../packages/editor/dist/types/extensions/table-cell/table-cell.d.ts", - "../../packages/editor/dist/types/extensions/table-cell/index.d.ts", - "../../packages/editor/dist/types/extensions/table-header/table-header.d.ts", - "../../packages/editor/dist/types/extensions/table-header/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-task-list/dist/packages/extension-task-list/src/task-list.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-task-list/dist/packages/extension-task-list/src/index.d.ts", - "../../packages/editor/dist/types/extensions/task-list/task-list.d.ts", - "../../packages/editor/dist/types/extensions/task-list/index.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-task-item/dist/packages/extension-task-item/src/task-item.d.ts", - "../../packages/editor/node_modules/@tiptap/extension-task-item/dist/packages/extension-task-item/src/index.d.ts", - "../../packages/editor/dist/types/extensions/task-item/task-item.d.ts", - "../../packages/editor/dist/types/extensions/task-item/index.d.ts", - "../../packages/editor/dist/types/toolbar/stores/search-store.d.ts", - "../../packages/editor/dist/types/extensions/search-replace/search-replace.d.ts", - "../../packages/editor/dist/types/extensions/search-replace/index.d.ts", - "../../packages/editor/dist/types/extensions/embed/embed.d.ts", - "../../packages/editor/dist/types/extensions/embed/index.d.ts", - "../../packages/editor/dist/types/extensions/code-block/utils.d.ts", - "../../packages/editor/dist/types/extensions/code-block/code-block.d.ts", - "../../packages/editor/dist/types/extensions/code-block/index.d.ts", - "../../packages/editor/dist/types/extensions/list-item/list-item.d.ts", - "../../packages/editor/dist/types/extensions/list-item/index.d.ts", - "../../packages/editor/dist/types/extensions/outline-list/outline-list.d.ts", - "../../packages/editor/dist/types/extensions/outline-list/index.d.ts", - "../../packages/editor/dist/types/extensions/outline-list-item/outline-list-item.d.ts", - "../../packages/editor/dist/types/extensions/outline-list-item/index.d.ts", - "../../packages/editor/dist/types/extensions/table/table.d.ts", - "../../packages/editor/dist/types/extensions/table/index.d.ts", - "../../packages/editor/dist/types/extensions/check-list/check-list.d.ts", - "../../packages/editor/dist/types/extensions/check-list/index.d.ts", - "../../packages/editor/dist/types/extensions/check-list-item/check-list-item.d.ts", - "../../packages/editor/dist/types/extensions/check-list-item/index.d.ts", - "../../packages/editor/dist/types/extension-imports.d.ts", - "../../packages/editor/dist/types/index.d.ts", - "../../packages/editor-mobile/src/utils/editor-events.ts", - "../../packages/editor-mobile/src/utils/native-events.ts", - "./node_modules/async-mutex/lib/index.d.ts", - "./node_modules/react-native-notification-sounds/index.d.ts", - "./node_modules/react-native-scoped-storage/dist/index.d.ts", - "./app/stores/use-setting-store.ts", - "./app/hooks/use-global-safe-area-insets.ts", - "./node_modules/react-native-device-info/lib/typescript/internal/types.d.ts", - "./node_modules/react-native-device-info/lib/typescript/internal/privatetypes.d.ts", - "./node_modules/react-native-device-info/lib/typescript/index.d.ts", - "./app/services/device-detection.js", - "./node_modules/@react-navigation/routers/lib/typescript/src/types.d.ts", - "./node_modules/@react-navigation/routers/lib/typescript/src/commonactions.d.ts", - "./node_modules/@react-navigation/routers/lib/typescript/src/baserouter.d.ts", - "./node_modules/@react-navigation/routers/lib/typescript/src/tabrouter.d.ts", - "./node_modules/@react-navigation/routers/lib/typescript/src/drawerrouter.d.ts", - "./node_modules/@react-navigation/routers/lib/typescript/src/stackrouter.d.ts", - "./node_modules/@react-navigation/routers/lib/typescript/src/index.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/types.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/basenavigationcontainer.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/createnavigationcontainerref.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/createnavigatorfactory.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/currentrendercontext.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/findfocusedroute.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/getactionfromstate.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/getfocusedroutenamefromroute.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/getpathfromstate.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/getstatefrompath.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/navigationcontainerrefcontext.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/navigationcontext.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/navigationhelperscontext.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/navigationroutecontext.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/preventremovecontext.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/preventremoveprovider.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/usefocuseffect.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/useisfocused.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/usenavigation.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/usenavigationbuilder.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/usenavigationcontainerref.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/usenavigationstate.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/usepreventremove.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/usepreventremovecontext.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/useroute.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/validatepathconfig.d.ts", - "./node_modules/@react-navigation/core/lib/typescript/src/index.d.ts", - "./node_modules/@react-navigation/native/lib/typescript/src/uselinkto.d.ts", - "./node_modules/@react-navigation/native/lib/typescript/src/link.d.ts", - "./node_modules/@react-navigation/native/lib/typescript/src/types.d.ts", - "./node_modules/@react-navigation/native/lib/typescript/src/linkingcontext.d.ts", - "./node_modules/@react-navigation/native/lib/typescript/src/navigationcontainer.d.ts", - "./node_modules/@react-navigation/native/lib/typescript/src/servercontext.d.ts", - "./node_modules/@react-navigation/native/lib/typescript/src/servercontainer.d.ts", - "./node_modules/@react-navigation/native/lib/typescript/src/theming/darktheme.d.ts", - "./node_modules/@react-navigation/native/lib/typescript/src/theming/defaulttheme.d.ts", - "./node_modules/@react-navigation/native/lib/typescript/src/theming/themeprovider.d.ts", - "./node_modules/@react-navigation/native/lib/typescript/src/theming/usetheme.d.ts", - "./node_modules/@react-navigation/native/lib/typescript/src/uselinkbuilder.d.ts", - "./node_modules/@react-navigation/native/lib/typescript/src/uselinkprops.d.ts", - "./node_modules/@react-navigation/native/lib/typescript/src/usescrolltotop.d.ts", - "./node_modules/@react-navigation/native/lib/typescript/src/index.d.ts", - "./node_modules/react-native-screens/lib/typescript/fabric/nativescreensmodule.d.ts", - "./node_modules/react-native-screens/lib/typescript/native-stack/types.d.ts", - "./node_modules/react-native-screens/lib/typescript/components/shared/types.d.ts", - "./node_modules/react-native-screens/lib/typescript/components/bottom-tabs/bottomtabs.types.d.ts", - "./node_modules/react-native-screens/lib/typescript/components/bottom-tabs/bottomtabsscreen.types.d.ts", - "./node_modules/react-native-screens/lib/typescript/types.d.ts", - "./node_modules/react-native-screens/lib/typescript/core.d.ts", - "./node_modules/react-native-screens/lib/typescript/components/screen.d.ts", - "./node_modules/react-native-screens/lib/typescript/fabric/screenstackheadersubviewnativecomponent.d.ts", - "./node_modules/react-native-screens/lib/typescript/components/screenstackheaderconfig.d.ts", - "./node_modules/react-native-screens/lib/typescript/components/searchbar.d.ts", - "./node_modules/react-native-screens/lib/typescript/components/screencontainer.d.ts", - "./node_modules/react-native-screens/lib/typescript/components/screenstack.d.ts", - "./node_modules/react-native-screens/lib/typescript/components/screenstackitem.d.ts", - "./node_modules/react-native-screens/lib/typescript/components/fullwindowoverlay.d.ts", - "./node_modules/react-native-screens/lib/typescript/components/screenfooter.d.ts", - "./node_modules/react-native-screens/lib/typescript/components/screencontentwrapper.d.ts", - "./node_modules/react-native-screens/lib/typescript/utils.d.ts", - "./node_modules/react-native-screens/lib/typescript/flags.d.ts", - "./node_modules/react-native-screens/lib/typescript/usetransitionprogress.d.ts", - "./node_modules/react-native-screens/lib/typescript/components/bottom-tabs/bottomtabs.d.ts", - "./node_modules/react-native-screens/lib/typescript/components/bottom-tabs/bottomtabsscreen.d.ts", - "./node_modules/react-native-screens/lib/typescript/index.d.ts", - "./node_modules/@react-navigation/native-stack/lib/typescript/src/types.d.ts", - "./node_modules/@react-navigation/native-stack/lib/typescript/src/navigators/createnativestacknavigator.d.ts", - "./node_modules/@react-navigation/native-stack/lib/typescript/src/views/nativestackview.d.ts", - "./node_modules/@react-navigation/native-stack/lib/typescript/src/index.d.ts", - "./app/stores/create-db-collection-store.ts", - "./app/stores/use-favorite-store.ts", - "./app/stores/use-navigation-store.ts", - "./app/stores/use-notebook-store.ts", - "./app/stores/use-notes-store.ts", - "./app/stores/use-reminder-store.ts", - "./app/stores/use-tag-store.ts", - "./app/stores/use-trash-store.ts", - "./app/components/side-menu/dragging-store.ts", - "./app/components/fluid-panels/index.tsx", - "./app/utils/global-refs.ts", - "./app/stores/use-archived-store.ts", - "./app/services/navigation.ts", - "./app/services/note-preview-widget.ts", - "./node_modules/@ammarahmed/notifee-react-native/dist/types/notificationios.d.ts", - "./node_modules/@ammarahmed/notifee-react-native/dist/types/notificationandroid.d.ts", - "./node_modules/@ammarahmed/notifee-react-native/dist/types/notificationweb.d.ts", - "./node_modules/@ammarahmed/notifee-react-native/dist/types/notification.d.ts", - "./node_modules/@ammarahmed/notifee-react-native/dist/types/trigger.d.ts", - "./node_modules/@ammarahmed/notifee-react-native/dist/types/powermanagerinfo.d.ts", - "./node_modules/@ammarahmed/notifee-react-native/dist/types/module.d.ts", - "./node_modules/@ammarahmed/notifee-react-native/dist/types/library.d.ts", - "./node_modules/@ammarahmed/notifee-react-native/dist/index.d.ts", - "./node_modules/dayjs/locale/types.d.ts", - "./node_modules/dayjs/locale/index.d.ts", - "./node_modules/dayjs/index.d.ts", - "./node_modules/entities/lib/encode.d.ts", - "./node_modules/entities/lib/generated/decode-data-html.d.ts", - "./node_modules/entities/lib/generated/decode-data-xml.d.ts", - "./node_modules/entities/lib/decode.d.ts", - "./node_modules/entities/lib/index.d.ts", - "./app/utils/size/index.js", - "./app/utils/styles.ts", - "./app/utils/tooltip.ts", - "./app/stores/use-user-store.ts", - "./node_modules/react-native-screenguard/src/types/data.d.ts", - "./node_modules/react-native-screenguard/src/types/index.d.ts", - "./app/services/settings.ts", - "./node_modules/react-native-theme-switch-animation/lib/typescript/src/index.d.ts", - "./node_modules/react-native-navigation-bar-color/index.d.ts", - "./app/stores/use-theme-store.ts", - "./app/utils/colors.js", - "./app/components/ui/pressable/index.tsx", - "./app/components/ui/typography/heading.tsx", - "./app/components/ui/typography/paragraph.tsx", - "./app/components/ui/button/index.tsx", - "./app/components/dialog/functions.ts", - "./app/stores/use-relation-store.ts", - "./app/utils/note-to-text.ts", - "./app/utils/time/index.ts", - "./app/services/notifications.ts", - "./node_modules/@ammarahmed/react-native-fingerprint-scanner/index.d.ts", - "./node_modules/react-native-keychain/typings/react-native-keychain.d.ts", - "./node_modules/@ammarahmed/react-native-sodium/types.ts", - "./node_modules/@ammarahmed/react-native-sodium/index.ts", - "./node_modules/react-native-securerandom/index.d.ts", - "./app/common/database/encryption.ts", - "./app/common/database/storage.ts", - "./app/services/biometrics.ts", - "./app/utils/unlock-vault.ts", - "./app/stores/use-menu-store.ts", - "./app/stores/item-selection-store.ts", - "./app/stores/create-notebook-tree-stores.ts", - "./app/components/side-menu/stores.ts", - "./app/utils/functions.ts", - "./app/screens/notes/common.ts", - "./app/screens/editor/tiptap/commands.ts", - "./app/screens/editor/tiptap/session-history.ts", - "./app/screens/editor/tiptap/use-editor.ts", - "./app/screens/editor/tiptap/types.ts", - "./app/screens/editor/tiptap/utils.ts", - "./app/screens/editor/tiptap/use-tab-store.ts", - "./app/stores/use-attachment-store.ts", - "./app/utils/constants.ts", - "./app/common/filesystem/utils.ts", - "./app/common/filesystem/io.ts", - "./app/common/filesystem/download.ts", - "./app/common/filesystem/upload.ts", - "./app/common/filesystem/index.ts", - "./node_modules/react-native-quick-sqlite/lib/typescript/module/index.d.ts", - "./app/common/database/sqlite.kysely.ts", - "./app/common/database/logger.ts", - "./app/common/database/index.ts", - "./app/hooks/use-db-item.ts", - "./node_modules/@bam.tech/react-native-image-resizer/lib/typescript/types.d.ts", - "./node_modules/@bam.tech/react-native-image-resizer/lib/typescript/index.d.ts", - "./app/common/filesystem/compress.js", - "./app/utils/note-bundle.js", - "./app/share/store.ts", - "./app/share/add-notebooks.jsx", - "./app/share/add-tags.jsx", - "./app/share/editor.tsx", - "./app/share/fetch-webview.tsx", - "./app/hooks/use-notebook.ts", - "./app/utils/elevation.ts", - "./app/share/search.tsx", - "./app/share/share.tsx", - "./app/share/index.tsx", - "./index.ext.js", - "./node_modules/@ammarahmed/react-native-background-fetch/index.d.ts", - "./app/services/background-sync.ts", - "./app.json", - "./node_modules/@lingui/react/dist/shared/react.b2b749a9.d.mts", - "./node_modules/@lingui/react/dist/index.d.mts", - "./node_modules/react-native-iap/lib/typescript/src/types/android.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/modules/common.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/modules/android.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/types/apple.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/modules/ios.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/modules/index.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/purchaseerror.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/types/applesk2.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/modules/iossk2.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/types/index.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/types/amazon.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/modules/amazon.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/internal/enhancedfetch.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/internal/fillproductswithadditionaldata.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/internal/platform.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/internal/index.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/iap.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/eventemitter.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/hooks/useiap.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/hooks/withiapcontext.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/utils/errormapping.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/utils/typeguards.d.ts", - "./node_modules/react-native-iap/lib/typescript/src/index.d.ts", - "./app/services/premium.ts", - "./app/stores/use-message-store.ts", - "./app/hooks/use-is-floating-keyboard.ts", - "./app/components/ui/transitions/bouncing-view.jsx", - "./app/components/dialog/base-dialog.tsx", - "./app/components/announcements/body.tsx", - "./e2e/test.ids.js", - "./app/hooks/use-keyboard.ts", - "./app/components/toast/index.tsx", - "./app/components/ui/sheet/index.jsx", - "./app/components/sheet-provider/index.jsx", - "./app/components/announcements/cta.tsx", - "./app/components/announcements/description.tsx", - "./app/components/announcements/list.tsx", - "./app/components/announcements/photo.tsx", - "./app/components/announcements/subheading.tsx", - "./app/components/announcements/title.tsx", - "./app/components/announcements/functions.tsx", - "./app/components/announcements/index.tsx", - "./app/components/auth/common.ts", - "./app/screens/settings/functions.js", - "./node_modules/react-native-check-version/index.d.ts", - "./app/components/ui/seperator/index.tsx", - "./node_modules/react-native-progress/index.d.ts", - "./node_modules/react-native-svg/lib/typescript/lib/extract/types.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/shape.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/g.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/utils.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/svg.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/circle.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/clippath.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/defs.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/ellipse.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/foreignobject.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/image.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/line.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/lineargradient.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/marker.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/mask.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/path.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/pattern.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/polygon.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/polyline.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/radialgradient.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/rect.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/stop.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/symbol.d.ts", - "./node_modules/react-native-svg/lib/typescript/lib/extract/extracttext.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/tspan.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/text.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/textpath.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/use.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/filterprimitive.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/feblend.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/fecolormatrix.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/fecomponenttransfer.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/fecomponenttransferfunction.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/fecomposite.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/types.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/feconvolvematrix.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/fediffuselighting.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/fedisplacementmap.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/fedistantlight.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/fedropshadow.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/feflood.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/fegaussianblur.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/feimage.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/femerge.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/femergenode.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/femorphology.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/feoffset.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/fepointlight.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/fespecularlighting.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/fespotlight.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/fetile.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/feturbulence.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements/filters/filter.d.ts", - "./node_modules/react-native-svg/lib/typescript/elements.d.ts", - "./node_modules/react-native-svg/lib/typescript/xmltags.d.ts", - "./node_modules/react-native-svg/lib/typescript/xml.d.ts", - "./node_modules/react-native-svg/lib/typescript/utils/fetchdata.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/codegenutils.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/circlenativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/clippathnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/defsnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/ellipsenativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/foreignobjectnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/groupnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/imagenativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/lineargradientnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/linenativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/markernativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/masknativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/pathnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/patternnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/radialgradientnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/rectnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/androidsvgviewnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/iossvgviewnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/symbolnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/textnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/textpathnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/tspannativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/usenativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/filternativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/feblendnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/fecolormatrixnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/fecompositenativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/fefloodnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/fegaussianblurnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/femergenativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/feoffsetnativecomponent.d.ts", - "./node_modules/react-native-svg/lib/typescript/fabric/index.d.ts", - "./node_modules/react-native-svg/lib/typescript/deprecated.d.ts", - "./node_modules/react-native-svg/lib/typescript/reactnativesvg.d.ts", - "./node_modules/react-native-svg/lib/typescript/index.d.ts", - "./node_modules/react-native-qrcode-svg/index.d.ts", - "./app/components/ui/svg/module-svg.js", - "./app/components/ui/svg/lazy.js", - "./app/components/ui/svg/index.tsx", - "./app/components/sheets/update/index.js", - "./app/utils/github-version.ts", - "./app/services/message.tsx", - "./app/stores/use-monograph-store.ts", - "./app/stores/index.ts", - "./app/services/sync.ts", - "./node_modules/@types/validator/lib/isemail.d.ts", - "./app/services/validation.js", - "./app/components/ui/icon-button/index.tsx", - "./node_modules/phone/dist/data/country_phone_data.d.ts", - "./node_modules/phone/dist/index.d.ts", - "./app/components/ui/input/index.tsx", - "./app/components/ui/appicon/index.tsx", - "./app/components/ui/notice/index.tsx", - "./app/components/dialog/dialog-buttons.tsx", - "./app/components/dialog/dialog-header.tsx", - "./app/components/dialog/index.tsx", - "./app/hooks/use-timer.ts", - "./app/components/auth/two-factor.tsx", - "./app/components/auth/use-login.ts", - "./app/components/auth/session-expired.tsx", - "./app/components/dialogs/applock-password/index.tsx", - "./app/components/dialogs/jump-to-section/index.tsx", - "./app/components/dialogs/loading/index.tsx", - "./node_modules/react-native-orientation-locker/index.d.ts", - "./node_modules/react-native-pdf/index.d.ts", - "./node_modules/react-native-zip-archive/index.d.ts", - "./node_modules/react-native-file-viewer/index.d.ts", - "./app/components/sheets/export-notes/share.jsx", - "./app/common/filesystem/download-attachment.tsx", - "./app/hooks/use-attachment-progress.ts", - "./app/components/dialogs/pdf-preview/index.jsx", - "./node_modules/react-native-share/lib/typescript/components/overlay.d.ts", - "./node_modules/react-native-share/lib/typescript/components/sheet.d.ts", - "./node_modules/react-native-share/lib/typescript/components/button.d.ts", - "./node_modules/react-native-share/lib/typescript/components/sharesheet.d.ts", - "./node_modules/react-native-share/lib/typescript/types.d.ts", - "./node_modules/react-native-share/lib/typescript/index.d.ts", - "./app/components/dialogs/vault/index.jsx", - "./node_modules/react-native-image-zoom-viewer/built/image-viewer.type.d.ts", - "./node_modules/react-native-image-zoom-viewer/built/image-viewer.component.d.ts", - "./node_modules/react-native-image-zoom-viewer/built/index.d.ts", - "./app/components/image-preview/index.tsx", - "./node_modules/@sayem314/react-native-keep-awake/index.d.ts", - "./app/screens/editor/source.ts", - "./app/screens/editor/readonly-editor.tsx", - "./app/components/dialog/dialog-container.tsx", - "./node_modules/diffblazer/dist/action.d.ts", - "./node_modules/diffblazer/dist/match.d.ts", - "./node_modules/diffblazer/dist/operation.d.ts", - "./node_modules/diffblazer/dist/tokenizer.d.ts", - "./node_modules/diffblazer/dist/types.d.ts", - "./node_modules/diffblazer/dist/index.d.ts", - "./app/components/merge-conflicts/index.jsx", - "./app/components/sheets/rate-app/index.js", - "./app/components/sheets/recovery-key/index.jsx", - "./app/components/dialogs/progress/index.tsx", - "./app/components/dialog-provider/index.jsx", - "./node_modules/react-native-bootsplash/dist/typescript/index.d.ts", - "./app/hooks/use-stored-ref.ts", - "./app/components/sheets/github/issue.js", - "./app/components/exception-handler/index.tsx", - "./app/components/globalsafearea/index.tsx", - "./app/services/backup.ts", - "./app/components/sheets/migrate/index.tsx", - "./app/features.ts", - "./app/components/sheets/new-feature/index.tsx", - "./app/hooks/use-pricing-plans.ts", - "./app/components/sheets/paywall/index.tsx", - "./app/assets/images/assets.js", - "./app/hooks/use-rotator.ts", - "./app/components/walkthroughs/walkthroughs.tsx", - "./app/components/walkthroughs/index.tsx", - "./node_modules/react-native-date-picker/index.d.ts", - "./node_modules/@react-native-community/datetimepicker/src/index.d.ts", - "./node_modules/react-native-modal-datetime-picker/typings/index.d.ts", - "./app/stores/use-selection-store.ts", - "./app/components/header/left-menus.tsx", - "./app/components/header/right-menus.tsx", - "./app/components/header/index.tsx", - "./app/components/ui/reminder-time/index.tsx", - "./app/hooks/use-navigation-focus.ts", - "./app/screens/add-reminder/index.tsx", - "../../packages/editor/dist/cjs/toolbar/icons.js", - "../../packages/editor/dist/cjs/toolbar/tool-definitions.js", - "./app/screens/settings/editor/toolbar-definition.ts", - "./app/screens/settings/editor/state.ts", - "./app/hooks/use-feature-manager.ts", - "./app/hooks/use-app-events.tsx", - "./app/screens/note-preview-configure/index.tsx", - "./app/services/tip-manager.ts", - "./app/hooks/use-tooltip.ts", - "./app/hooks/use-stored-state.ts", - "./app/navigation/navigation-stack.tsx", - "../../servers/themes/node_modules/zod/lib/helpers/typealiases.d.ts", - "../../servers/themes/node_modules/zod/lib/helpers/util.d.ts", - "../../servers/themes/node_modules/zod/lib/zoderror.d.ts", - "../../servers/themes/node_modules/zod/lib/locales/en.d.ts", - "../../servers/themes/node_modules/zod/lib/errors.d.ts", - "../../servers/themes/node_modules/zod/lib/helpers/parseutil.d.ts", - "../../servers/themes/node_modules/zod/lib/helpers/enumutil.d.ts", - "../../servers/themes/node_modules/zod/lib/helpers/errorutil.d.ts", - "../../servers/themes/node_modules/zod/lib/helpers/partialutil.d.ts", - "../../servers/themes/node_modules/zod/lib/types.d.ts", - "../../servers/themes/node_modules/zod/lib/external.d.ts", - "../../servers/themes/node_modules/zod/lib/index.d.ts", - "../../servers/themes/node_modules/zod/index.d.ts", - "../../servers/themes/node_modules/async-mutex/lib/index.d.ts", - "../../servers/themes/src/counter.ts", - "../../servers/themes/src/constants.ts", - "../../servers/themes/node_modules/@orama/orama/dist/components/tokenizer/languages.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/types.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/methods/create.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/methods/docs.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/methods/insert.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/methods/remove.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/methods/search.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/methods/serialization.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/methods/update.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/utils.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/components/defaults.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/components/documents-store.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/trees/avl.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/trees/radix.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/components/index.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/components/tokenizer/index.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/components/sorter.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/components.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/components/levenshtein.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/internals.d.ts", - "../../servers/themes/node_modules/@orama/orama/dist/index.d.ts", - "../../servers/themes/src/sync.ts", - "../../servers/themes/src/schemas.ts", - "../../servers/themes/src/orama.ts", - "../../servers/themes/node_modules/@trpc/server/dist/transformer.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/rpc/codes.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/error/trpcerror.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/types.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/observable/types.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/observable/observable.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/observable/operators/share.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/observable/operators/map.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/observable/operators/tap.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/observable/operators/index.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/observable/internals/observabletopromise.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/observable/index.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/rpc/envelopes.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/rpc/parsetrpcmessage.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/rpc/index.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/deprecated/internals/middlewares.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/deprecated/internals/procedure.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/core/parser.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/core/internals/getparsefn.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/shared/internal/serialize.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/shared/jsonify.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/core/types.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/core/procedure.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/core/internals/utils.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/core/middleware.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/core/internals/procedurebuilder.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/core/router.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/core/internals/mergerouters.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/core/inittrpc.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/core/index.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/error/formatter.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/core/internals/config.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/deprecated/interop.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/deprecated/router.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/internals.d.ts", - "../../servers/themes/node_modules/@trpc/server/dist/index.d.ts", - "../../servers/themes/src/trpc.ts", - "../../servers/themes/src/api.ts", - "../../servers/themes/src/index.ts", - "./node_modules/@react-native-documents/picker/lib/typescript/isknowntype.d.ts", - "./node_modules/@react-native-documents/picker/lib/typescript/types.d.ts", - "./node_modules/@react-native-documents/picker/lib/typescript/spec/nativedocumentpicker.d.ts", - "./node_modules/@react-native-documents/picker/lib/typescript/keeplocalcopy.d.ts", - "./node_modules/@react-native-documents/picker/lib/typescript/filetypes.d.ts", - "./node_modules/@react-native-documents/picker/lib/typescript/errors.d.ts", - "./node_modules/@react-native-documents/picker/lib/typescript/pickdirectory.d.ts", - "./node_modules/@react-native-documents/picker/lib/typescript/pick.d.ts", - "./node_modules/@react-native-documents/picker/lib/typescript/savedocuments.d.ts", - "./node_modules/@react-native-documents/picker/lib/typescript/release.d.ts", - "./node_modules/@react-native-documents/picker/lib/typescript/index.d.ts", - "./node_modules/@tanstack/react-query/build/lib/setbatchupdatesfn.d.ts", - "./node_modules/@tanstack/query-core/build/lib/removable.d.ts", - "./node_modules/@tanstack/query-core/build/lib/subscribable.d.ts", - "./node_modules/@tanstack/query-core/build/lib/queryobserver.d.ts", - "./node_modules/@tanstack/query-core/build/lib/logger.d.ts", - "./node_modules/@tanstack/query-core/build/lib/query.d.ts", - "./node_modules/@tanstack/query-core/build/lib/utils.d.ts", - "./node_modules/@tanstack/query-core/build/lib/querycache.d.ts", - "./node_modules/@tanstack/query-core/build/lib/queryclient.d.ts", - "./node_modules/@tanstack/query-core/build/lib/mutationobserver.d.ts", - "./node_modules/@tanstack/query-core/build/lib/mutationcache.d.ts", - "./node_modules/@tanstack/query-core/build/lib/mutation.d.ts", - "./node_modules/@tanstack/query-core/build/lib/types.d.ts", - "./node_modules/@tanstack/query-core/build/lib/retryer.d.ts", - "./node_modules/@tanstack/query-core/build/lib/queriesobserver.d.ts", - "./node_modules/@tanstack/query-core/build/lib/infinitequeryobserver.d.ts", - "./node_modules/@tanstack/query-core/build/lib/notifymanager.d.ts", - "./node_modules/@tanstack/query-core/build/lib/focusmanager.d.ts", - "./node_modules/@tanstack/query-core/build/lib/onlinemanager.d.ts", - "./node_modules/@tanstack/query-core/build/lib/hydration.d.ts", - "./node_modules/@tanstack/query-core/build/lib/index.d.ts", - "./node_modules/@tanstack/react-query/build/lib/types.d.ts", - "./node_modules/@tanstack/react-query/build/lib/usequeries.d.ts", - "./node_modules/@tanstack/react-query/build/lib/usequery.d.ts", - "./node_modules/@tanstack/react-query/build/lib/usesuspensequery.d.ts", - "./node_modules/@tanstack/react-query/build/lib/usesuspenseinfinitequery.d.ts", - "./node_modules/@tanstack/react-query/build/lib/usesuspensequeries.d.ts", - "./node_modules/@tanstack/react-query/build/lib/queryoptions.d.ts", - "./node_modules/@tanstack/react-query/build/lib/infinitequeryoptions.d.ts", - "./node_modules/@tanstack/react-query/build/lib/queryclientprovider.d.ts", - "./node_modules/@tanstack/react-query/build/lib/queryerrorresetboundary.d.ts", - "./node_modules/@tanstack/react-query/build/lib/hydrate.d.ts", - "./node_modules/@tanstack/react-query/build/lib/useisfetching.d.ts", - "./node_modules/@tanstack/react-query/build/lib/useismutating.d.ts", - "./node_modules/@tanstack/react-query/build/lib/usemutation.d.ts", - "./node_modules/@tanstack/react-query/build/lib/useinfinitequery.d.ts", - "./node_modules/@tanstack/react-query/build/lib/isrestoring.d.ts", - "./node_modules/@tanstack/react-query/build/lib/index.d.ts", - "./node_modules/@trpc/server/dist/index.d.ts", - "./node_modules/@trpc/server/dist/observable/observable.d.ts", - "./node_modules/@trpc/server/dist/observable/types.d.ts", - "./node_modules/@trpc/server/dist/observable/operators/share.d.ts", - "./node_modules/@trpc/server/dist/observable/operators/map.d.ts", - "./node_modules/@trpc/server/dist/observable/operators/tap.d.ts", - "./node_modules/@trpc/server/dist/observable/operators/index.d.ts", - "./node_modules/@trpc/server/dist/observable/internals/observabletopromise.d.ts", - "./node_modules/@trpc/server/dist/observable/index.d.ts", - "./node_modules/@trpc/server/dist/rpc/codes.d.ts", - "./node_modules/@trpc/server/dist/rpc/envelopes.d.ts", - "./node_modules/@trpc/server/dist/rpc/parsetrpcmessage.d.ts", - "./node_modules/@trpc/server/dist/rpc/index.d.ts", - "./node_modules/@types/node/compatibility/iterators.d.ts", - "./node_modules/@types/node/globals.typedarray.d.ts", - "./node_modules/@types/node/buffer.buffer.d.ts", - "./node_modules/@types/node/globals.d.ts", - "./node_modules/@types/node/web-globals/abortcontroller.d.ts", - "./node_modules/@types/node/web-globals/crypto.d.ts", - "./node_modules/@types/node/web-globals/domexception.d.ts", - "./node_modules/@types/node/web-globals/events.d.ts", - "./node_modules/undici-types/utility.d.ts", - "./node_modules/undici-types/header.d.ts", - "./node_modules/undici-types/readable.d.ts", - "./node_modules/undici-types/fetch.d.ts", - "./node_modules/undici-types/formdata.d.ts", - "./node_modules/undici-types/connector.d.ts", - "./node_modules/undici-types/client-stats.d.ts", - "./node_modules/undici-types/client.d.ts", - "./node_modules/undici-types/errors.d.ts", - "./node_modules/undici-types/dispatcher.d.ts", - "./node_modules/undici-types/global-dispatcher.d.ts", - "./node_modules/undici-types/global-origin.d.ts", - "./node_modules/undici-types/pool-stats.d.ts", - "./node_modules/undici-types/pool.d.ts", - "./node_modules/undici-types/handlers.d.ts", - "./node_modules/undici-types/balanced-pool.d.ts", - "./node_modules/undici-types/h2c-client.d.ts", - "./node_modules/undici-types/agent.d.ts", - "./node_modules/undici-types/mock-interceptor.d.ts", - "./node_modules/undici-types/mock-call-history.d.ts", - "./node_modules/undici-types/mock-agent.d.ts", - "./node_modules/undici-types/mock-client.d.ts", - "./node_modules/undici-types/mock-pool.d.ts", - "./node_modules/undici-types/snapshot-agent.d.ts", - "./node_modules/undici-types/mock-errors.d.ts", - "./node_modules/undici-types/proxy-agent.d.ts", - "./node_modules/undici-types/env-http-proxy-agent.d.ts", - "./node_modules/undici-types/retry-handler.d.ts", - "./node_modules/undici-types/retry-agent.d.ts", - "./node_modules/undici-types/api.d.ts", - "./node_modules/undici-types/cache-interceptor.d.ts", - "./node_modules/undici-types/interceptors.d.ts", - "./node_modules/undici-types/util.d.ts", - "./node_modules/undici-types/cookies.d.ts", - "./node_modules/undici-types/patch.d.ts", - "./node_modules/undici-types/websocket.d.ts", - "./node_modules/undici-types/eventsource.d.ts", - "./node_modules/undici-types/diagnostics-channel.d.ts", - "./node_modules/undici-types/content-type.d.ts", - "./node_modules/undici-types/cache.d.ts", - "./node_modules/undici-types/index.d.ts", - "./node_modules/@types/node/web-globals/fetch.d.ts", - "./node_modules/@types/node/web-globals/navigator.d.ts", - "./node_modules/@types/node/web-globals/storage.d.ts", - "./node_modules/@types/node/web-globals/streams.d.ts", - "./node_modules/@types/node/assert.d.ts", - "./node_modules/@types/node/assert/strict.d.ts", - "./node_modules/@types/node/async_hooks.d.ts", - "./node_modules/@types/node/buffer.d.ts", - "./node_modules/@types/node/child_process.d.ts", - "./node_modules/@types/node/cluster.d.ts", - "./node_modules/@types/node/console.d.ts", - "./node_modules/@types/node/constants.d.ts", - "./node_modules/@types/node/crypto.d.ts", - "./node_modules/@types/node/dgram.d.ts", - "./node_modules/@types/node/diagnostics_channel.d.ts", - "./node_modules/@types/node/dns.d.ts", - "./node_modules/@types/node/dns/promises.d.ts", - "./node_modules/@types/node/domain.d.ts", - "./node_modules/@types/node/events.d.ts", - "./node_modules/@types/node/fs.d.ts", - "./node_modules/@types/node/fs/promises.d.ts", - "./node_modules/@types/node/http.d.ts", - "./node_modules/@types/node/http2.d.ts", - "./node_modules/@types/node/https.d.ts", - "./node_modules/@types/node/inspector.d.ts", - "./node_modules/@types/node/inspector.generated.d.ts", - "./node_modules/@types/node/module.d.ts", - "./node_modules/@types/node/net.d.ts", - "./node_modules/@types/node/os.d.ts", - "./node_modules/@types/node/path.d.ts", - "./node_modules/@types/node/perf_hooks.d.ts", - "./node_modules/@types/node/process.d.ts", - "./node_modules/@types/node/punycode.d.ts", - "./node_modules/@types/node/querystring.d.ts", - "./node_modules/@types/node/readline.d.ts", - "./node_modules/@types/node/readline/promises.d.ts", - "./node_modules/@types/node/repl.d.ts", - "./node_modules/@types/node/sea.d.ts", - "./node_modules/@types/node/sqlite.d.ts", - "./node_modules/@types/node/stream.d.ts", - "./node_modules/@types/node/stream/promises.d.ts", - "./node_modules/@types/node/stream/consumers.d.ts", - "./node_modules/@types/node/stream/web.d.ts", - "./node_modules/@types/node/string_decoder.d.ts", - "./node_modules/@types/node/test.d.ts", - "./node_modules/@types/node/timers.d.ts", - "./node_modules/@types/node/timers/promises.d.ts", - "./node_modules/@types/node/tls.d.ts", - "./node_modules/@types/node/trace_events.d.ts", - "./node_modules/@types/node/tty.d.ts", - "./node_modules/@types/node/url.d.ts", - "./node_modules/@types/node/util.d.ts", - "./node_modules/@types/node/v8.d.ts", - "./node_modules/@types/node/vm.d.ts", - "./node_modules/@types/node/wasi.d.ts", - "./node_modules/@types/node/worker_threads.d.ts", - "./node_modules/@types/node/zlib.d.ts", - "./node_modules/@types/node/index.d.ts", - "./node_modules/@trpc/client/dist/internals/types.d.ts", - "./node_modules/@trpc/client/dist/trpcclienterror.d.ts", - "./node_modules/@trpc/client/dist/links/types.d.ts", - "./node_modules/@trpc/client/dist/internals/trpcuntypedclient.d.ts", - "./node_modules/@trpc/client/dist/createtrpcuntypedclient.d.ts", - "./node_modules/@trpc/server/dist/shared/createproxy/index.d.ts", - "./node_modules/@trpc/server/dist/shared/jsonify.d.ts", - "./node_modules/@trpc/server/dist/internals.d.ts", - "./node_modules/@trpc/server/dist/shared/transformtrpcresponse.d.ts", - "./node_modules/@trpc/server/dist/shared/internal/serialize.d.ts", - "./node_modules/@trpc/server/dist/core/router.d.ts", - "./node_modules/@trpc/server/dist/core/procedure.d.ts", - "./node_modules/@trpc/server/dist/core/parser.d.ts", - "./node_modules/@trpc/server/dist/core/middleware.d.ts", - "./node_modules/@trpc/server/dist/core/inittrpc.d.ts", - "./node_modules/@trpc/server/dist/core/types.d.ts", - "./node_modules/@trpc/server/dist/core/index.d.ts", - "./node_modules/@trpc/server/dist/error/trpcerror.d.ts", - "./node_modules/@trpc/server/dist/shared/geterrorshape.d.ts", - "./node_modules/@trpc/server/dist/shared/getcausefromunknown.d.ts", - "./node_modules/@trpc/server/dist/shared/index.d.ts", - "./node_modules/@trpc/client/dist/links/internals/streamingutils.d.ts", - "./node_modules/@trpc/client/dist/links/internals/httputils.d.ts", - "./node_modules/@trpc/client/dist/links/httpbatchlinkoptions.d.ts", - "./node_modules/@trpc/client/dist/links/httpbatchlink.d.ts", - "./node_modules/@trpc/client/dist/links/httpbatchstreamlink.d.ts", - "./node_modules/@trpc/client/dist/links/httplink.d.ts", - "./node_modules/@trpc/client/dist/links/loggerlink.d.ts", - "./node_modules/@trpc/client/dist/links/splitlink.d.ts", - "./node_modules/@trpc/client/dist/internals/retrydelay.d.ts", - "./node_modules/@trpc/client/dist/links/wslink.d.ts", - "./node_modules/@trpc/client/dist/links/httpformdatalink.d.ts", - "./node_modules/@trpc/client/dist/links/index.d.ts", - "./node_modules/@trpc/client/dist/createtrpcclient.d.ts", - "./node_modules/@trpc/client/dist/createtrpcclientproxy.d.ts", - "./node_modules/@trpc/client/dist/getfetch.d.ts", - "./node_modules/@trpc/client/dist/index.d.ts", - "./node_modules/@trpc/react-query/dist/internals/getarrayquerykey.d.ts", - "./node_modules/@trpc/react-query/dist/internals/context.d.ts", - "./node_modules/@trpc/react-query/dist/internals/usequeries.d.ts", - "./node_modules/@trpc/react-query/dist/shared/types.d.ts", - "./node_modules/@trpc/react-query/dist/internals/usehookresult.d.ts", - "./node_modules/@trpc/react-query/dist/shared/hooks/types.d.ts", - "./node_modules/@trpc/react-query/dist/shared/hooks/createhooksinternal.d.ts", - "./node_modules/@trpc/react-query/dist/shared/hooks/deprecated/createhooksinternal.d.ts", - "./node_modules/@trpc/react-query/dist/shared/hooks/createroothooks.d.ts", - "./node_modules/@trpc/react-query/dist/shared/proxy/decorationproxy.d.ts", - "./node_modules/@trpc/react-query/dist/shared/proxy/utilsproxy.d.ts", - "./node_modules/@trpc/react-query/dist/shared/proxy/usequeriesproxy.d.ts", - "./node_modules/@trpc/react-query/dist/createtrpcreact.d.ts", - "./node_modules/@trpc/react-query/dist/shared/queryclient.d.ts", - "./node_modules/@trpc/react-query/dist/utils/inferreactqueryprocedure.d.ts", - "./node_modules/@trpc/react-query/dist/shared/polymorphism/mutationlike.d.ts", - "./node_modules/@trpc/react-query/dist/shared/polymorphism/querylike.d.ts", - "./node_modules/@trpc/react-query/dist/shared/polymorphism/routerlike.d.ts", - "./node_modules/@trpc/react-query/dist/shared/polymorphism/utilslike.d.ts", - "./node_modules/@trpc/react-query/dist/shared/polymorphism/index.d.ts", - "./node_modules/@trpc/react-query/dist/internals/getclientargs.d.ts", - "./node_modules/@trpc/react-query/dist/shared/index.d.ts", - "./node_modules/@trpc/react-query/dist/internals/getquerykey.d.ts", - "./node_modules/@trpc/react-query/dist/interop.d.ts", - "./node_modules/@trpc/react-query/dist/index.d.ts", - "./app/components/container/floating-button.tsx", - "./app/hooks/use-delay-layout.ts", - "./app/components/delay-layout/default-placeholder.tsx", - "./app/components/delay-layout/settings-placeholder.tsx", - "./app/components/delay-layout/index.tsx", - "./node_modules/@legendapp/list/index.d.ts", - "./app/hooks/use-group-options.ts", - "./app/components/announcements/announcement.tsx", - "./app/components/list/card.tsx", - "./app/components/list-items/headers/header.tsx", - "./app/components/tip/index.tsx", - "./app/components/list/empty.tsx", - "./app/hooks/use-is-compact-mode-enabled.ts", - "./app/components/sheets/sort/index.tsx", - "./app/components/list-items/headers/section-header.tsx", - "./app/hooks/use-selected.ts", - "./app/components/properties/date-meta.jsx", - "./node_modules/react-native-swiper-flatlist/src/themes/colors.ts", - "./node_modules/react-native-swiper-flatlist/src/themes/layout.ts", - "./node_modules/react-native-swiper-flatlist/src/themes/index.ts", - "./node_modules/react-native-swiper-flatlist/src/components/pagination/paginationprops.tsx", - "./node_modules/react-native-swiper-flatlist/src/components/pagination/pagination.tsx", - "./node_modules/react-native-swiper-flatlist/src/components/swiperflatlist/swiperflatlistprops.tsx", - "./node_modules/react-native-swiper-flatlist/src/components/swiperflatlist/swiperflatlist.tsx", - "./node_modules/react-native-swiper-flatlist/src/components/index.ts", - "./node_modules/react-native-swiper-flatlist/index.ts", - "./app/screens/settings/attachment-group-progress.tsx", - "./node_modules/pathe/dist/index.d.ts", - "./node_modules/react-native-image-crop-picker/index.d.ts", - "./app/components/dialogs/attach-image-dialog/index.tsx", - "./app/screens/editor/tiptap/picker.ts", - "./app/components/attachments/actions.tsx", - "./app/components/attachments/attachment-item.tsx", - "./app/components/attachments/index.tsx", - "./app/components/note-history/preview.jsx", - "./app/components/note-history/index.tsx", - "./app/utils/notebooks.ts", - "./app/components/sheets/add-notebook/index.tsx", - "./node_modules/react-native-in-app-review/index.d.ts", - "./app/services/app-review.ts", - "./app/services/exporter.ts", - "./app/components/sheets/export-notes/index.tsx", - "./node_modules/react-async-hook/dist/index.d.ts", - "./app/components/sheets/publish-note/index.tsx", - "./app/components/sheets/references/index.tsx", - "./app/components/sheets/relations-list/index.tsx", - "./app/hooks/use-actions.tsx", - "./app/components/properties/items.tsx", - "./app/components/list-items/headers/notebook-header.tsx", - "./node_modules/react-native-material-menu/dist/menu.d.ts", - "./node_modules/react-native-material-menu/dist/menudivider.d.ts", - "./node_modules/react-native-material-menu/dist/menuitem.d.ts", - "./node_modules/react-native-material-menu/dist/index.d.ts", - "./app/components/side-menu/notebook-item.tsx", - "./app/screens/move-notebook/index.tsx", - "./app/screens/manage-tags/index.tsx", - "./app/components/selection-header/index.tsx", - "./app/components/sheets/notebooks/index.tsx", - "./app/screens/notebook/index.tsx", - "./app/components/properties/notebooks.jsx", - "./app/screens/notes/tagged.tsx", - "./node_modules/react-native-wheel-color-picker/types.d.ts", - "./app/components/dialogs/color-picker/index.tsx", - "./app/components/properties/color-tags.tsx", - "./app/components/properties/tags.jsx", - "./app/components/properties/index.jsx", - "./app/components/ui/time-since/index.tsx", - "./app/components/list-items/note/index.tsx", - "./app/components/list-items/selection-wrapper/index.tsx", - "./app/components/list-items/note/wrapper.tsx", - "./app/components/list-items/notebook/index.tsx", - "./app/components/list-items/notebook/wrapper.tsx", - "./app/components/list-items/reminder/index.tsx", - "./app/components/list-items/tag/index.tsx", - "./app/components/list-items/search-result/index.tsx", - "./app/components/list/list-item.wrapper.tsx", - "./app/components/list/index.tsx", - "./app/screens/notes/index.tsx", - "./app/screens/notes/monographs.tsx", - "./app/utils/menu-items.ts", - "./app/screens/settings/theme-selector.tsx", - "./app/hooks/use-app-state.ts", - "./node_modules/react-native-keyboard-aware-scroll-view/index.d.ts", - "./app/components/app-lock/index.tsx", - "./app/app.tsx", - "./index.js", - "./lingui.config.js", - "./node_modules/metro-cache/src/types.d.ts", - "./node_modules/metro-cache/src/cache.d.ts", - "./node_modules/metro-cache/src/stablehash.d.ts", - "./node_modules/metro-cache/src/stores/filestore.d.ts", - "./node_modules/metro-cache/src/stores/autocleanfilestore.d.ts", - "./node_modules/metro-cache/src/stores/httperror.d.ts", - "./node_modules/metro-cache/src/stores/networkerror.d.ts", - "./node_modules/metro-cache/src/stores/httpstore.d.ts", - "./node_modules/metro-cache/src/stores/httpgetstore.d.ts", - "./node_modules/metro-cache/src/index.d.ts", - "./node_modules/metro-file-map/src/flow-types.d.ts", - "./node_modules/metro-file-map/src/cache/diskcachemanager.d.ts", - "./node_modules/metro-file-map/src/lib/duplicatehastecandidateserror.d.ts", - "./node_modules/metro-file-map/src/watcher.d.ts", - "./node_modules/metro-file-map/src/index.d.ts", - "./node_modules/metro/src/modulegraph/worker/collectdependencies.d.ts", - "./node_modules/metro/src/lib/contextmodule.d.ts", - "./node_modules/metro/src/lib/countingset.d.ts", - "./node_modules/metro/src/deltabundler/graph.d.ts", - "./node_modules/metro/src/asset.d.ts", - "./node_modules/metro-babel-transformer/src/index.d.ts", - "./node_modules/ob1/src/ob1.d.ts", - "./node_modules/metro-source-map/src/consumer/constants.d.ts", - "./node_modules/metro-source-map/src/consumer/types.d.ts", - "./node_modules/metro-source-map/src/bundlebuilder.d.ts", - "./node_modules/metro-source-map/src/composesourcemaps.d.ts", - "./node_modules/metro-source-map/src/consumer/delegatingconsumer.d.ts", - "./node_modules/metro-source-map/src/consumer/index.d.ts", - "./node_modules/metro-source-map/src/consumer/normalizesourcepath.d.ts", - "./node_modules/metro-source-map/src/generatefunctionmap.d.ts", - "./node_modules/metro-source-map/src/b64builder.d.ts", - "./node_modules/metro-source-map/src/generator.d.ts", - "./node_modules/metro-source-map/src/source-map.d.ts", - "./node_modules/metro/src/shared/types.d.ts", - "./node_modules/metro/src/deltabundler/serializers/getrambundleinfo.d.ts", - "./node_modules/metro/src/lib/getgraphid.d.ts", - "./node_modules/metro/src/server/multipartresponse.d.ts", - "./node_modules/metro/src/deltabundler.d.ts", - "./node_modules/metro/src/deltabundler/worker.d.ts", - "./node_modules/metro/src/node-haste/dependencygraph.d.ts", - "./node_modules/metro/src/bundler.d.ts", - "./node_modules/metro/src/incrementalbundler.d.ts", - "./node_modules/metro/src/server.d.ts", - "./node_modules/metro/src/lib/reporting.d.ts", - "./node_modules/@types/yargs-parser/index.d.ts", - "./node_modules/@types/yargs/index.d.ts", - "./node_modules/@types/yargs/index.d.mts", - "./node_modules/metro-core/src/errors/ambiguousmoduleresolutionerror.d.ts", - "./node_modules/metro-core/src/errors/packageresolutionerror.d.ts", - "./node_modules/metro-core/src/logger.d.ts", - "./node_modules/metro-core/src/terminal.d.ts", - "./node_modules/metro-core/src/index.d.ts", - "./node_modules/metro/src/lib/terminalreporter.d.ts", - "./node_modules/metro/src/index.d.ts", - "./node_modules/metro-transform-worker/src/index.d.ts", - "./node_modules/metro/src/deltabundler/types.d.ts", - "./node_modules/metro-resolver/src/types.d.ts", - "./node_modules/metro-resolver/src/errors/failedtoresolvenameerror.d.ts", - "./node_modules/metro-resolver/src/errors/failedtoresolvepatherror.d.ts", - "./node_modules/metro-resolver/src/errors/failedtoresolveunsupportederror.d.ts", - "./node_modules/metro-resolver/src/errors/formatfilecandidates.d.ts", - "./node_modules/metro-resolver/src/errors/invalidpackageerror.d.ts", - "./node_modules/metro-resolver/src/resolve.d.ts", - "./node_modules/metro-resolver/src/index.d.ts", - "./node_modules/metro/src/deltabundler/serializers/getexplodedsourcemap.d.ts", - "./node_modules/metro/src/server/symbolicate.d.ts", - "./node_modules/metro-config/src/types.d.ts", - "./node_modules/metro-config/src/defaults/index.d.ts", - "./node_modules/metro-config/src/loadconfig.d.ts", - "./node_modules/metro-config/src/index.d.ts", - "./node_modules/@react-native/metro-config/dist/index.d.ts", - "./node_modules/react-native-reanimated/metro-config/index.d.ts", - "./metro.config.js", - "./node_modules/@callstack/repack/dist/types.d.ts", - "./node_modules/@callstack/repack/dist/commands/types.d.ts", - "./node_modules/@callstack/repack/dist/commands/rspack/bundle.d.ts", - "./node_modules/@callstack/repack/dist/commands/rspack/start.d.ts", - "./node_modules/@callstack/repack/dist/commands/rspack/index.d.ts", - "./node_modules/@callstack/repack/commands/rspack.d.ts", - "./react-native.config.js", - "./node_modules/@rspack/binding/napi-binding.d.ts", - "./node_modules/@rspack/binding/binding.d.ts", - "./node_modules/@rspack/lite-tapable/dist/index.d.ts", - "./node_modules/@rspack/core/compiled/webpack-sources/types.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/apiplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/arraypushcallbackchunkformatplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/assetmodulesplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/asyncwebassemblymodulesplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/bannerplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/bundlerinforspackplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/base.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/chunkprefetchpreloadplugin.d.ts", - "./node_modules/@types/graceful-fs/index.d.ts", - "./node_modules/@rspack/core/compiled/watchpack/index.d.ts", - "./node_modules/@rspack/core/dist/chunk.d.ts", - "./node_modules/@rspack/core/dist/loader-runner/index.d.ts", - "./node_modules/@rspack/core/dist/logging/logger.d.ts", - "./node_modules/@rspack/core/dist/util/hash/index.d.ts", - "./node_modules/@rspack/core/dist/lib/webpackerror.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/httpuriplugin.d.ts", - "./node_modules/@rspack/core/dist/util/runtime.d.ts", - "./node_modules/@rspack/core/dist/chunkgraph.d.ts", - "./node_modules/@rspack/core/dist/exportsinfo.d.ts", - "./node_modules/@rspack/core/dist/modulegraph.d.ts", - "./node_modules/@rspack/core/dist/config/devserver.d.ts", - "./node_modules/@rspack/core/dist/config/types.d.ts", - "./node_modules/@rspack/core/dist/config/normalization.d.ts", - "./node_modules/@rspack/core/dist/config/adapterruleuse.d.ts", - "./node_modules/@rspack/core/dist/resolver.d.ts", - "./node_modules/@rspack/core/dist/buildinfo.d.ts", - "./node_modules/@rspack/core/dist/module.d.ts", - "./node_modules/@rspack/core/dist/contextmodulefactory.d.ts", - "./node_modules/@rspack/core/dist/config/adapter.d.ts", - "./node_modules/@rspack/core/dist/config/defaults.d.ts", - "./node_modules/@rspack/core/dist/config/index.d.ts", - "./node_modules/@rspack/core/dist/filesysteminfo.d.ts", - "./node_modules/@rspack/core/dist/lib/cache.d.ts", - "./node_modules/@rspack/core/dist/lib/cache/getlazyhashedetag.d.ts", - "./node_modules/@rspack/core/dist/lib/cachefacade.d.ts", - "./node_modules/@rspack/core/dist/resolverfactory.d.ts", - "./node_modules/@rspack/core/dist/normalmodulefactory.d.ts", - "./node_modules/@rspack/core/dist/rulesetcompiler.d.ts", - "./node_modules/@rspack/core/dist/util/smartgrouping.d.ts", - "./node_modules/@rspack/core/dist/stats/statsfactory.d.ts", - "./node_modules/@rspack/core/dist/stats/statsfactoryutils.d.ts", - "./node_modules/@rspack/core/dist/stats.d.ts", - "./node_modules/@rspack/core/dist/util/fs.d.ts", - "./node_modules/@rspack/core/dist/watching.d.ts", - "./node_modules/@rspack/core/dist/compiler.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/circulardependencyrspackplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/commonjschunkformatplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/contextreplacementplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/copyrspackplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/csschunkingplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/cssmodulesplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/css-extract/loader.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/css-extract/index.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/datauriplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/defineplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/deterministicchunkidsplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/deterministicmoduleidsplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/dllentryplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/dllreferenceagencyplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/dynamicentryplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/electrontargetplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/enablechunkloadingplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/enablelibraryplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/enablewasmloadingplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/ensurechunkconditionsplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/entryplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/esmlibraryplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/evaldevtoolmoduleplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/evalsourcemapdevtoolplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/externalsplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/fetchcompileasyncwasmplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/fileuriplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/flagdependencyexportsplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/flagdependencyusageplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/hotmodulereplacementplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/httpexternalsrspackplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/html-plugin/options.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/html-plugin/hooks.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/html-plugin/plugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/html-plugin/index.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/ignoreplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/inferasyncmodulesplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/javascriptmodulesplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/jsloaderrspackplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/jsonmodulesplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/libmanifestplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-loader/lightningcss/index.d.ts", - "./node_modules/@rspack/core/dist/util/assetcondition.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/lightningcssminimizerrspackplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/limitchunkcountplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/lazy-compilation/middleware.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/mangleexportsplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/mergeduplicatechunksplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/modulechunkformatplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/moduleconcatenationplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/moduleinfoheaderplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/namedchunkidsplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/namedmoduleidsplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/naturalchunkidsplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/naturalmoduleidsplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/nodetargetplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/noemitonerrorsplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/normalmodulereplacementplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/occurrencechunkidsplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/progressplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/provideplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/realcontenthashplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/removeduplicatemodulesplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/removeemptychunksplugin.d.ts", - "./node_modules/@rspack/core/dist/taps/types.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/rsdoctorplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/rslibplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/rstestplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/runtimechunkplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/runtimeplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/sideeffectsflagplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/sizelimitsplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/sourcemapdevtoolplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/splitchunksplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/subresourceintegrityplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/swcjsminimizerplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/urlplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/warncasesensitivemodulesplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/webworkertemplateplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/workerplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-plugin/index.d.ts", - "./node_modules/@rspack/core/dist/entrypoint.d.ts", - "./node_modules/@rspack/core/dist/normalmodule.d.ts", - "./node_modules/@rspack/core/dist/rspackerror.d.ts", - "./node_modules/@rspack/core/dist/runtimemodule.d.ts", - "./node_modules/@rspack/core/dist/stats/statsprinter.d.ts", - "./node_modules/@rspack/core/dist/chunks.d.ts", - "./node_modules/@rspack/core/dist/codegenerationresults.d.ts", - "./node_modules/@rspack/core/dist/taps/compilation.d.ts", - "./node_modules/@rspack/core/dist/compilation.d.ts", - "./node_modules/@rspack/core/dist/multistats.d.ts", - "./node_modules/@rspack/core/dist/multiwatching.d.ts", - "./node_modules/@rspack/core/dist/multicompiler.d.ts", - "./node_modules/@rspack/core/dist/rspackoptionsapply.d.ts", - "./node_modules/@rspack/core/dist/concatenatedmodule.d.ts", - "./node_modules/@rspack/core/dist/contextmodule.d.ts", - "./node_modules/@rspack/core/dist/externalmodule.d.ts", - "./node_modules/@rspack/core/dist/runtimeglobals.d.ts", - "./node_modules/@rspack/core/dist/lib/modulefilenamehelpers.d.ts", - "./node_modules/@rspack/core/dist/template.d.ts", - "./node_modules/@rspack/core/dist/schema/validate.d.ts", - "./node_modules/@rspack/core/dist/lib/dllplugin.d.ts", - "./node_modules/@rspack/core/dist/lib/dllreferenceplugin.d.ts", - "./node_modules/@rspack/core/dist/lib/entryoptionplugin.d.ts", - "./node_modules/@rspack/core/dist/lib/environmentplugin.d.ts", - "./node_modules/@rspack/core/dist/lib/loaderoptionsplugin.d.ts", - "./node_modules/@rspack/core/dist/lib/loadertargetplugin.d.ts", - "./node_modules/@rspack/core/dist/node/nodeenvironmentplugin.d.ts", - "./node_modules/@rspack/core/dist/node/nodetemplateplugin.d.ts", - "./node_modules/@rspack/core/dist/sharing/shareplugin.d.ts", - "./node_modules/@rspack/core/dist/container/containerplugin.d.ts", - "./node_modules/@rspack/core/dist/container/containerreferenceplugin.d.ts", - "./node_modules/@rspack/core/dist/container/modulefederationpluginv1.d.ts", - "./node_modules/@rspack/core/dist/container/modulefederationplugin.d.ts", - "./node_modules/@rspack/core/dist/sharing/consumesharedplugin.d.ts", - "./node_modules/@rspack/core/dist/sharing/providesharedplugin.d.ts", - "./node_modules/@rspack/core/dist/builtin-loader/swc/collecttypescriptinfo.d.ts", - "./node_modules/@rspack/core/dist/builtin-loader/swc/pluginimport.d.ts", - "./node_modules/@rspack/core/compiled/@swc/types/index.d.ts", - "./node_modules/@rspack/core/dist/builtin-loader/swc/types.d.ts", - "./node_modules/@rspack/core/dist/builtin-loader/swc/index.d.ts", - "./node_modules/@rspack/core/dist/swc.d.ts", - "./node_modules/@rspack/core/dist/virtualmodulesplugin.d.ts", - "./node_modules/@rspack/core/dist/exports.d.ts", - "./node_modules/@rspack/core/dist/rspack.d.ts", - "./node_modules/@rspack/core/dist/index.d.ts", - "./node_modules/@callstack/repack/dist/plugins/developmentplugin.d.ts", - "./node_modules/@callstack/repack/dist/logging/types.d.ts", - "./node_modules/@callstack/repack/dist/logging/helpers.d.ts", - "./node_modules/@callstack/repack/dist/logging/reporters.d.ts", - "./node_modules/@callstack/repack/dist/logging/index.d.ts", - "./node_modules/@callstack/repack/dist/plugins/loggerplugin.d.ts", - "./node_modules/@callstack/repack/dist/plugins/manifestplugin.d.ts", - "./node_modules/@callstack/repack/dist/plugins/babelplugin.d.ts", - "./node_modules/@callstack/repack/dist/plugins/outputplugin/types.d.ts", - "./node_modules/@callstack/repack/dist/plugins/outputplugin/outputplugin.d.ts", - "./node_modules/@callstack/repack/dist/plugins/outputplugin/index.d.ts", - "./node_modules/@callstack/repack/dist/plugins/repacktargetplugin/repacktargetplugin.d.ts", - "./node_modules/@callstack/repack/dist/plugins/repacktargetplugin/index.d.ts", - "./node_modules/@callstack/repack/dist/plugins/modulefederationpluginv1.d.ts", - "./node_modules/@callstack/repack/dist/plugins/modulefederationplugin.d.ts", - "./node_modules/@module-federation/sdk/dist/src/constant.d.ts", - "./node_modules/@module-federation/sdk/dist/src/types/common.d.ts", - "./node_modules/@module-federation/sdk/dist/src/types/stats.d.ts", - "./node_modules/@module-federation/sdk/dist/src/types/manifest.d.ts", - "./node_modules/@module-federation/sdk/dist/src/types/snapshot.d.ts", - "./node_modules/@module-federation/sdk/dist/src/types/plugins/containerplugin.d.ts", - "./node_modules/@module-federation/sdk/dist/src/types/plugins/containerreferenceplugin.d.ts", - "./node_modules/@module-federation/sdk/dist/src/types/plugins/modulefederationplugin.d.ts", - "./node_modules/@module-federation/sdk/dist/src/types/plugins/shareplugin.d.ts", - "./node_modules/@module-federation/sdk/dist/src/types/plugins/index.d.ts", - "./node_modules/@module-federation/sdk/dist/src/types/hooks.d.ts", - "./node_modules/@module-federation/sdk/dist/src/types/index.d.ts", - "./node_modules/@module-federation/sdk/dist/src/utils.d.ts", - "./node_modules/@module-federation/sdk/dist/src/generatesnapshotfrommanifest.d.ts", - "./node_modules/@module-federation/sdk/dist/src/logger.d.ts", - "./node_modules/@module-federation/sdk/dist/src/env.d.ts", - "./node_modules/@module-federation/sdk/dist/src/dom.d.ts", - "./node_modules/@module-federation/sdk/dist/src/node.d.ts", - "./node_modules/@module-federation/sdk/dist/src/normalizeoptions.d.ts", - "./node_modules/@module-federation/sdk/dist/src/createmodulefederationconfig.d.ts", - "./node_modules/@module-federation/sdk/dist/src/index.d.ts", - "./node_modules/@module-federation/sdk/dist/index.d.ts", - "./node_modules/@callstack/repack/dist/plugins/modulefederationpluginv2.d.ts", - "./node_modules/@types/json-schema/index.d.ts", - "./node_modules/schema-utils/declarations/validationerror.d.ts", - "./node_modules/fast-uri/types/index.d.ts", - "./node_modules/ajv/dist/compile/codegen/code.d.ts", - "./node_modules/ajv/dist/compile/codegen/scope.d.ts", - "./node_modules/ajv/dist/compile/codegen/index.d.ts", - "./node_modules/ajv/dist/compile/rules.d.ts", - "./node_modules/ajv/dist/compile/util.d.ts", - "./node_modules/ajv/dist/compile/validate/subschema.d.ts", - "./node_modules/ajv/dist/compile/errors.d.ts", - "./node_modules/ajv/dist/compile/validate/index.d.ts", - "./node_modules/ajv/dist/compile/validate/datatype.d.ts", - "./node_modules/ajv/dist/vocabularies/applicator/additionalitems.d.ts", - "./node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts", - "./node_modules/ajv/dist/vocabularies/applicator/contains.d.ts", - "./node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts", - "./node_modules/ajv/dist/vocabularies/applicator/propertynames.d.ts", - "./node_modules/ajv/dist/vocabularies/applicator/additionalproperties.d.ts", - "./node_modules/ajv/dist/vocabularies/applicator/not.d.ts", - "./node_modules/ajv/dist/vocabularies/applicator/anyof.d.ts", - "./node_modules/ajv/dist/vocabularies/applicator/oneof.d.ts", - "./node_modules/ajv/dist/vocabularies/applicator/if.d.ts", - "./node_modules/ajv/dist/vocabularies/applicator/index.d.ts", - "./node_modules/ajv/dist/vocabularies/validation/limitnumber.d.ts", - "./node_modules/ajv/dist/vocabularies/validation/multipleof.d.ts", - "./node_modules/ajv/dist/vocabularies/validation/pattern.d.ts", - "./node_modules/ajv/dist/vocabularies/validation/required.d.ts", - "./node_modules/ajv/dist/vocabularies/validation/uniqueitems.d.ts", - "./node_modules/ajv/dist/vocabularies/validation/const.d.ts", - "./node_modules/ajv/dist/vocabularies/validation/enum.d.ts", - "./node_modules/ajv/dist/vocabularies/validation/index.d.ts", - "./node_modules/ajv/dist/vocabularies/format/format.d.ts", - "./node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedproperties.d.ts", - "./node_modules/ajv/dist/vocabularies/unevaluated/unevaluateditems.d.ts", - "./node_modules/ajv/dist/vocabularies/validation/dependentrequired.d.ts", - "./node_modules/ajv/dist/vocabularies/discriminator/types.d.ts", - "./node_modules/ajv/dist/vocabularies/discriminator/index.d.ts", - "./node_modules/ajv/dist/vocabularies/errors.d.ts", - "./node_modules/ajv/dist/types/json-schema.d.ts", - "./node_modules/ajv/dist/types/jtd-schema.d.ts", - "./node_modules/ajv/dist/runtime/validation_error.d.ts", - "./node_modules/ajv/dist/compile/ref_error.d.ts", - "./node_modules/ajv/dist/core.d.ts", - "./node_modules/ajv/dist/compile/resolve.d.ts", - "./node_modules/ajv/dist/compile/index.d.ts", - "./node_modules/ajv/dist/types/index.d.ts", - "./node_modules/ajv/dist/ajv.d.ts", - "./node_modules/schema-utils/declarations/validate.d.ts", - "./node_modules/schema-utils/declarations/index.d.ts", - "./node_modules/@callstack/repack/dist/plugins/codesigningplugin/config.d.ts", - "./node_modules/@callstack/repack/dist/plugins/codesigningplugin/codesigningplugin.d.ts", - "./node_modules/@callstack/repack/dist/plugins/codesigningplugin/index.d.ts", - "./node_modules/@callstack/repack/dist/plugins/hermesbytecodeplugin/hermesbytecodeplugin.d.ts", - "./node_modules/@callstack/repack/dist/plugins/hermesbytecodeplugin/chunkstohermesbytecodeplugin.d.ts", - "./node_modules/@callstack/repack/dist/plugins/hermesbytecodeplugin/index.d.ts", - "./node_modules/@callstack/repack/dist/plugins/index.d.ts", - "./node_modules/@callstack/repack/dist/plugins/repackplugin.d.ts", - "./node_modules/@callstack/repack/dist/utils/assetextensions.d.ts", - "./node_modules/ajv/dist/vocabularies/jtd/error.d.ts", - "./node_modules/ajv/dist/vocabularies/jtd/type.d.ts", - "./node_modules/ajv/dist/vocabularies/jtd/enum.d.ts", - "./node_modules/ajv/dist/vocabularies/jtd/elements.d.ts", - "./node_modules/ajv/dist/vocabularies/jtd/properties.d.ts", - "./node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts", - "./node_modules/ajv/dist/vocabularies/jtd/values.d.ts", - "./node_modules/ajv/dist/vocabularies/jtd/index.d.ts", - "./node_modules/ajv/dist/jtd.d.ts", - "./node_modules/@fastify/ajv-compiler/types/index.d.ts", - "./node_modules/@fastify/error/types/index.d.ts", - "./node_modules/fast-json-stringify/types/index.d.ts", - "./node_modules/@fastify/fast-json-stringify-compiler/types/index.d.ts", - "./node_modules/find-my-way/index.d.ts", - "./node_modules/light-my-request/types/index.d.ts", - "./node_modules/fastify/types/utils.d.ts", - "./node_modules/fastify/types/schema.d.ts", - "./node_modules/fastify/types/type-provider.d.ts", - "./node_modules/fastify/types/reply.d.ts", - "./node_modules/pino-std-serializers/index.d.ts", - "./node_modules/sonic-boom/types/index.d.ts", - "./node_modules/pino/pino.d.ts", - "./node_modules/fastify/types/logger.d.ts", - "./node_modules/fastify/types/plugin.d.ts", - "./node_modules/fastify/types/register.d.ts", - "./node_modules/fastify/types/instance.d.ts", - "./node_modules/fastify/types/hooks.d.ts", - "./node_modules/fastify/types/route.d.ts", - "./node_modules/fastify/types/context.d.ts", - "./node_modules/fastify/types/request.d.ts", - "./node_modules/fastify/types/content-type-parser.d.ts", - "./node_modules/fastify/types/errors.d.ts", - "./node_modules/fastify/types/serverfactory.d.ts", - "./node_modules/fastify/fastify.d.ts", - "./node_modules/@react-native/dev-middleware/dist/inspector-proxy/types.d.ts", - "./node_modules/@react-native/dev-middleware/dist/inspector-proxy/custommessagehandler.d.ts", - "./node_modules/@react-native/dev-middleware/dist/types/browserlauncher.d.ts", - "./node_modules/@react-native/dev-middleware/dist/types/eventreporter.d.ts", - "./node_modules/@react-native/dev-middleware/dist/types/experiments.d.ts", - "./node_modules/@react-native/dev-middleware/dist/types/logger.d.ts", - "./node_modules/@react-native/dev-middleware/dist/createdevmiddleware.d.ts", - "./node_modules/@react-native/dev-middleware/dist/utils/defaultbrowserlauncher.d.ts", - "./node_modules/@react-native/dev-middleware/dist/index.d.ts", - "./node_modules/@types/http-proxy/index.d.ts", - "./node_modules/http-proxy-middleware/dist/types.d.ts", - "./node_modules/http-proxy-middleware/dist/factory.d.ts", - "./node_modules/http-proxy-middleware/dist/handlers/response-interceptor.d.ts", - "./node_modules/http-proxy-middleware/dist/handlers/fix-request-body.d.ts", - "./node_modules/http-proxy-middleware/dist/handlers/public.d.ts", - "./node_modules/http-proxy-middleware/dist/handlers/index.d.ts", - "./node_modules/http-proxy-middleware/dist/plugins/default/debug-proxy-errors-plugin.d.ts", - "./node_modules/http-proxy-middleware/dist/plugins/default/error-response-plugin.d.ts", - "./node_modules/http-proxy-middleware/dist/plugins/default/logger-plugin.d.ts", - "./node_modules/http-proxy-middleware/dist/plugins/default/proxy-events.d.ts", - "./node_modules/http-proxy-middleware/dist/plugins/default/index.d.ts", - "./node_modules/http-proxy-middleware/dist/legacy/types.d.ts", - "./node_modules/http-proxy-middleware/dist/legacy/create-proxy-middleware.d.ts", - "./node_modules/http-proxy-middleware/dist/legacy/public.d.ts", - "./node_modules/http-proxy-middleware/dist/legacy/index.d.ts", - "./node_modules/http-proxy-middleware/dist/index.d.ts", - "./node_modules/@callstack/repack-dev-server/dist/plugins/compiler/types.d.ts", - "./node_modules/@callstack/repack-dev-server/dist/plugins/symbolicate/types.d.ts", - "./node_modules/@callstack/repack-dev-server/dist/utils/normalizeoptions.d.ts", - "./node_modules/@callstack/repack-dev-server/dist/types.d.ts", - "./node_modules/@callstack/repack-dev-server/dist/createserver.d.ts", - "./node_modules/@callstack/repack-dev-server/dist/index.d.ts", - "./node_modules/@callstack/repack/dist/utils/defineconfig.d.ts", - "./node_modules/@callstack/repack/dist/utils/federated.d.ts", - "./node_modules/@callstack/repack/dist/utils/getdirname.d.ts", - "./node_modules/@callstack/repack/dist/utils/getpublicpath.d.ts", - "./node_modules/@callstack/repack/dist/utils/getresolveoptions.d.ts", - "./node_modules/@callstack/repack/dist/utils/getmodulepaths.d.ts", - "./node_modules/@callstack/repack/dist/utils/getjstransformrules.d.ts", - "./node_modules/@callstack/repack/dist/utils/getswcloaderoptions.d.ts", - "./node_modules/@callstack/repack/dist/utils/getflowtransformrules.d.ts", - "./node_modules/@callstack/repack/dist/utils/getcodegentransformrules.d.ts", - "./node_modules/@callstack/repack/dist/loaders/assetsloader/options.d.ts", - "./node_modules/@callstack/repack/dist/utils/getassettransformrules.d.ts", - "./node_modules/@callstack/repack/dist/utils/index.d.ts", - "./node_modules/@callstack/repack/dist/index.d.ts", - "./node_modules/@callstack/repack-plugin-reanimated/dist/plugin.d.ts", - "./node_modules/@callstack/repack-plugin-reanimated/dist/rules.d.ts", - "./node_modules/@callstack/repack-plugin-reanimated/dist/index.d.ts", - "./rspack.config.js", - "./node_modules/@types/istanbul-lib-coverage/index.d.ts", - "./node_modules/chalk/index.d.ts", - "./node_modules/@types/istanbul-lib-report/index.d.ts", - "./node_modules/@types/istanbul-reports/index.d.ts", - "./node_modules/@sinclair/typebox/typebox.d.ts", - "./node_modules/@jest/schemas/build/index.d.ts", - "./node_modules/@jest/types/build/index.d.ts", - "./node_modules/jest-mock/build/index.d.ts", - "./node_modules/@types/stack-utils/index.d.ts", - "./node_modules/jest-message-util/build/index.d.ts", - "./node_modules/@jest/fake-timers/build/index.d.ts", - "./node_modules/@jest/environment/build/index.d.ts", - "./node_modules/@jest/expect-utils/build/index.d.ts", - "./node_modules/jest-diff/node_modules/pretty-format/build/index.d.ts", - "./node_modules/jest-diff/build/index.d.ts", - "./node_modules/jest-matcher-utils/build/index.d.ts", - "./node_modules/expect/build/index.d.ts", - "./node_modules/jest-snapshot/node_modules/pretty-format/build/index.d.ts", - "./node_modules/jest-snapshot/build/index.d.ts", - "./node_modules/@jest/expect/build/index.d.ts", - "./node_modules/@jest/globals/build/index.d.ts", - "./__tests__/app-test.js", - "./app/components/auth/change-password.tsx", - "./app/components/auth/forgot-password.tsx", - "./app/components/auth/header.tsx", - "./app/hooks/use-sync-progress.ts", - "./app/components/sheets/progress/index.tsx", - "./app/components/auth/login.tsx", - "./app/components/loading/index.tsx", - "./app/components/auth/signup-context.ts", - "./app/components/auth/signup.tsx", - "./app/components/auth/index.tsx", - "./app/components/container/index.tsx", - "./app/components/ui/tag/index.tsx", - "./app/components/header/title.tsx", - "./app/components/intro/index.tsx", - "./node_modules/typesafe-actions/dist/type-helpers.d.ts", - "./node_modules/typesafe-actions/dist/action.d.ts", - "./node_modules/typesafe-actions/dist/create-action.d.ts", - "./node_modules/typesafe-actions/dist/create-custom-action.d.ts", - "./node_modules/typesafe-actions/dist/create-async-action.d.ts", - "./node_modules/typesafe-actions/dist/create-reducer.d.ts", - "./node_modules/typesafe-actions/dist/get-type.d.ts", - "./node_modules/typesafe-actions/dist/is-of-type.d.ts", - "./node_modules/typesafe-actions/dist/is-action-of.d.ts", - "./node_modules/typesafe-actions/dist/deprecated/create-action.d.ts", - "./node_modules/typesafe-actions/dist/deprecated/create-custom-action.d.ts", - "./node_modules/typesafe-actions/dist/deprecated/create-standard-action.d.ts", - "./node_modules/typesafe-actions/dist/deprecated/index.d.ts", - "./node_modules/typesafe-actions/dist/index.d.ts", - "./node_modules/react-native-drax/build/types.d.ts", - "./node_modules/react-native-drax/build/draxcontext.d.ts", - "./node_modules/react-native-drax/build/draxlist.d.ts", - "./node_modules/react-native-drax/build/draxprovider.d.ts", - "./node_modules/react-native-drax/build/draxscrollview.d.ts", - "./node_modules/react-native-drax/build/draxsubprovider.d.ts", - "./node_modules/react-native-drax/build/draxview.d.ts", - "./node_modules/react-native-drax/build/index.d.ts", - "./app/components/list/reorderable-list.tsx", - "./app/components/list-items/footer/index.tsx", - "./app/components/list-items/selection-wrapper/back-fill.tsx", - "./app/components/list-items/selection-wrapper/selection.tsx", - "./app/components/sheets/buy-plan/index.tsx", - "./app/components/paywall/index.tsx", - "./app/components/properties/synced.jsx", - "./app/components/sheets/editor-tabs/index.tsx", - "./app/components/sheets/link-note/index.tsx", - "./app/components/sheets/menu-item-properties/index.tsx", - "./app/components/sheets/plan-limits/index.tsx", - "./app/components/sheets/reminder-notify/index.tsx", - "./app/components/sheets/toc/index.tsx", - "./app/screens/settings/logout.ts", - "./app/components/sheets/user/index.tsx", - "./app/screens/notes/colored.tsx", - "./app/components/side-menu/menu-item.tsx", - "./app/components/side-menu/color-section.tsx", - "./node_modules/react-native-pager-view/lib/typescript/pagerviewnativecomponent.d.ts", - "./node_modules/react-native-pager-view/lib/typescript/pagerview.d.ts", - "./node_modules/react-native-pager-view/lib/typescript/usepagerview.d.ts", - "./node_modules/react-native-pager-view/lib/typescript/index.d.ts", - "./node_modules/react-native-tab-view/lib/typescript/src/types.d.ts", - "./node_modules/@types/react/jsx-runtime.d.ts", - "./node_modules/react-native-tab-view/lib/typescript/src/scenemap.d.ts", - "./node_modules/react-native-tab-view/lib/typescript/src/tabbarindicator.d.ts", - "./node_modules/react-native-tab-view/lib/typescript/src/tabbaritem.d.ts", - "./node_modules/react-native-tab-view/lib/typescript/src/tabbar.d.ts", - "./node_modules/react-native-tab-view/lib/typescript/src/tabview.d.ts", - "./node_modules/react-native-tab-view/lib/typescript/src/index.d.ts", - "./app/components/side-menu/pinned-section.tsx", - "./app/components/side-menu/side-menu-header.tsx", - "./app/components/side-menu/side-menu-home.tsx", - "./app/components/side-menu/side-menu-list-empty.tsx", - "./app/components/side-menu/side-menu-notebooks.tsx", - "./app/components/side-menu/side-menu-tags.tsx", - "./app/components/side-menu/index.tsx", - "./app/hooks/use-immediate.ts", - "./node_modules/react-native-actions-shortcuts/lib/typescript/src/index.d.ts", - "./app/hooks/use-shortcut-manager.ts", - "./app/hooks/use-vault-status.ts", - "./app/navigation/fluid-panels-view.tsx", - "./app/screens/archive/index.tsx", - "./app/screens/editor/loading.tsx", - "./app/screens/editor/tiptap/use-editor-events.tsx", - "./app/screens/editor/index.tsx", - "./app/screens/editor/progress.tsx", - "./app/screens/editor/wrapper.tsx", - "./app/screens/favorites/index.tsx", - "./app/screens/home/filter-bar.tsx", - "./app/screens/home/index.tsx", - "./app/screens/link-notebooks/index.tsx", - "./app/screens/move-notes/index.tsx", - "./app/screens/reminders/index.tsx", - "./app/screens/search/search-bar.tsx", - "./app/screens/search/index.tsx", - "./app/screens/settings/2fa.tsx", - "./app/screens/settings/change-email/index.tsx", - "./app/screens/settings/debug.tsx", - "./app/screens/settings/editor/tool-sheet.tsx", - "./app/screens/settings/editor/tool.tsx", - "./app/screens/settings/editor/common.tsx", - "./app/screens/settings/editor/group.tsx", - "./app/screens/settings/editor/configure-toolbar.tsx", - "./app/screens/settings/license-data.js", - "./app/screens/settings/licenses.tsx", - "./app/screens/settings/picker/index.tsx", - "./app/screens/settings/picker/pickers.jsx", - "./app/screens/settings/types.ts", - "./app/screens/settings/section-item.tsx", - "./app/screens/settings/restore-backup/index.tsx", - "./app/screens/settings/server-config.tsx", - "./app/screens/settings/sound-picker.tsx", - "./app/screens/settings/title-format.tsx", - "./app/screens/settings/notesnook-circle.tsx", - "./app/screens/settings/components.tsx", - "./app/screens/settings/group.tsx", - "./app/screens/settings/section-group.tsx", - "./app/screens/settings/user-section.jsx", - "./app/screens/settings/settings-data.tsx", - "./app/screens/settings/home.tsx", - "./app/screens/settings/index.tsx", - "./app/screens/trash/index.tsx", - "./app/services/intent.ts", - "./app/stores/use-search-store.ts", - "./app/services/search.js", - "./app/stores/use-editor-store.ts", - "./app/utils/errors.ts", - "./app/utils/types.ts", - "./scripts/clean.mjs", - "./node_modules/@nodelib/fs.stat/out/types/index.d.ts", - "./node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts", - "./node_modules/@nodelib/fs.stat/out/settings.d.ts", - "./node_modules/@nodelib/fs.stat/out/providers/async.d.ts", - "./node_modules/@nodelib/fs.stat/out/index.d.ts", - "./node_modules/@nodelib/fs.scandir/out/types/index.d.ts", - "./node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts", - "./node_modules/@nodelib/fs.scandir/out/settings.d.ts", - "./node_modules/@nodelib/fs.scandir/out/providers/async.d.ts", - "./node_modules/@nodelib/fs.scandir/out/index.d.ts", - "./node_modules/@nodelib/fs.walk/out/types/index.d.ts", - "./node_modules/@nodelib/fs.walk/out/settings.d.ts", - "./node_modules/@nodelib/fs.walk/out/readers/reader.d.ts", - "./node_modules/@nodelib/fs.walk/out/readers/async.d.ts", - "./node_modules/@nodelib/fs.walk/out/providers/async.d.ts", - "./node_modules/@nodelib/fs.walk/out/index.d.ts", - "./node_modules/fast-glob/out/types/index.d.ts", - "./node_modules/fast-glob/out/settings.d.ts", - "./node_modules/fast-glob/out/managers/tasks.d.ts", - "./node_modules/fast-glob/out/index.d.ts", - "./node_modules/fonteditor-core/index.d.ts", - "./scripts/optimize-fonts.mjs", - "./node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts", - "./node_modules/@types/jest/index.d.ts", - "./node_modules/bunyan-debug-stream/lib/bunyandebugstream.d.ts", - "./node_modules/@wix-pilot/core/dist/types/framework.d.ts", - "./node_modules/@wix-pilot/core/dist/types/prompt.d.ts", - "./node_modules/@wix-pilot/core/dist/types/logger.d.ts", - "./node_modules/@wix-pilot/core/dist/types/core.d.ts", - "./node_modules/@wix-pilot/core/dist/types/auto.d.ts", - "./node_modules/@wix-pilot/core/dist/types/common.d.ts", - "./node_modules/@wix-pilot/core/dist/types/index.d.ts", - "./node_modules/@wix-pilot/core/dist/pilot.d.ts", - "./node_modules/@wix-pilot/core/dist/common/testcontext/testcontext.d.ts", - "./node_modules/@wix-pilot/core/dist/common/testcontext/index.d.ts", - "./node_modules/@wix-pilot/core/dist/common/logger/index.d.ts", - "./node_modules/@wix-pilot/core/dist/index.d.ts", - "./node_modules/detox/detox.d.ts", - "./node_modules/detox/globals.d.ts", - "./node_modules/detox/index.d.ts", - "../../packages/common/node_modules/@types/react/global.d.ts", - "../../packages/editor/node_modules/@types/react/global.d.ts" - ], - "fileIdsList": [ - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 848, - 1403, - 1404, - 1473, - 1844, - 1898, - 1915, - 1916, - 2553 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 66, - 70, - 72, - 73, - 78, - 167, - 182, - 266, - 657, - 658, - 659, - 929, - 1394, - 1397, - 1400, - 1410, - 1463, - 1473, - 1495, - 1664, - 1665, - 1668, - 1669, - 1695, - 1696, - 1697, - 1700, - 1844, - 1898, - 1915, - 1916, - 2091, - 2094 - ], - [ - 70, - 72, - 73, - 167, - 276, - 657, - 658, - 659, - 933, - 955, - 962, - 1412, - 1414, - 1415, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 167, - 516, - 623, - 653, - 657, - 658, - 659, - 666, - 668, - 669, - 1397, - 1416, - 1417, - 1438, - 1440, - 1441, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 516, - 623, - 657, - 658, - 659, - 1440, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 955, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 516, - 657, - 658, - 659, - 1439, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 623, - 657, - 658, - 659, - 955, - 962, - 1416, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 654, - 657, - 658, - 659, - 1445, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 623, - 654, - 657, - 658, - 659, - 933, - 1277, - 1414, - 1432, - 1433, - 1434, - 1435, - 1438, - 1442, - 1473, - 1633, - 1635, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 623, - 654, - 657, - 658, - 659, - 671, - 933, - 1432, - 1434, - 1435, - 1442, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 623, - 657, - 658, - 659, - 1434, - 1435, - 1436, - 1437, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 276, - 623, - 654, - 657, - 658, - 659, - 933, - 1414, - 1433, - 1434, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 623, - 654, - 657, - 658, - 659, - 933, - 1432, - 1433, - 1434, - 1435, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 623, - 654, - 657, - 658, - 659, - 1277, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1391, - 1392, - 1401, - 1403, - 1405, - 1473, - 1488, - 1504, - 1683, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1392, - 1404, - 1504, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 932, - 933, - 1391, - 1392, - 1405, - 1409, - 1473, - 1488, - 1497, - 1504, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1391, - 1392, - 1404, - 1504, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1392, - 1473, - 1488, - 1492, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 932, - 933, - 1283, - 1392, - 1473, - 1488, - 1491, - 1504, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 663, - 1392, - 1404, - 1473, - 1504, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1473, - 1504, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1391, - 1392, - 1403, - 1504, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1391, - 1392, - 1403, - 1473, - 1504, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 933, - 962, - 966, - 1278, - 1391, - 1394, - 1397, - 1403, - 1404, - 1405, - 1416, - 1418, - 1430, - 1431, - 1442, - 1473, - 1495, - 1509, - 1615, - 1618, - 1844, - 1898, - 1915, - 1916, - 2092, - 2093 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 657, - 658, - 659, - 674, - 929, - 931, - 932, - 933, - 1391, - 1392, - 1402, - 1403, - 1404, - 1405, - 1406, - 1409, - 1430, - 1431, - 1432, - 1438, - 1442, - 1473, - 1487, - 1497, - 1620, - 1623, - 1636, - 1637, - 1844, - 1898, - 1915, - 1916, - 2027, - 2041, - 2080 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 657, - 658, - 659, - 1391, - 1392, - 1402, - 1404, - 1442, - 1443, - 1473, - 1605, - 1615, - 1637, - 1844, - 1898, - 1915, - 1916, - 2042 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 663, - 931, - 933, - 936, - 1391, - 1392, - 1403, - 1404, - 1405, - 1406, - 1432, - 1438, - 1442, - 1473, - 1497, - 1509, - 1615, - 1618, - 1623, - 1636, - 1686, - 1844, - 1898, - 1915, - 1916, - 2016, - 2037, - 2043 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 929, - 932, - 933, - 1372, - 1392, - 1394, - 1405, - 1442, - 1473, - 1618, - 1620, - 1623, - 1670, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 932, - 933, - 1362, - 1372, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 931, - 933, - 1283, - 1392, - 1397, - 1403, - 1404, - 1405, - 1442, - 1473, - 1509, - 1615, - 1618, - 1622, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1332, - 1362, - 1405, - 1473, - 1506, - 1615, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 182, - 266, - 657, - 658, - 659, - 1372, - 1495, - 1506, - 1688, - 1844, - 1898, - 1915, - 1916, - 2560, - 2563 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 931, - 932, - 933, - 1283, - 1332, - 1362, - 1372, - 1391, - 1392, - 1394, - 1397, - 1403, - 1404, - 1405, - 1409, - 1473, - 1487, - 1506, - 1612, - 1618, - 1623, - 1626, - 1844, - 1898, - 1915, - 1916, - 2093, - 2556, - 2557, - 2559 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 932, - 933, - 962, - 1391, - 1392, - 1394, - 1397, - 1403, - 1404, - 1405, - 1406, - 1409, - 1418, - 1424, - 1442, - 1473, - 1491, - 1495, - 1497, - 1609, - 1611, - 1612, - 1615, - 1618, - 1623, - 1626, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 933, - 1283, - 1332, - 1362, - 1372, - 1391, - 1392, - 1394, - 1397, - 1403, - 1404, - 1405, - 1424, - 1442, - 1473, - 1609, - 1618, - 1844, - 1898, - 1915, - 1916, - 2093, - 2557, - 2561, - 2562 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 931, - 932, - 933, - 1391, - 1392, - 1402, - 1403, - 1404, - 1405, - 1406, - 1442, - 1473, - 1615, - 1618, - 1624, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 932, - 933, - 1394, - 1397, - 1442, - 1473, - 1487, - 1609, - 1625, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 865, - 1278, - 1332, - 1391, - 1392, - 1401, - 1430, - 1454, - 1473, - 1493, - 1683, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1279, - 1473, - 1494, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1391, - 1392, - 1401, - 1473, - 1488, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916, - 2012, - 2013, - 2014 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1391, - 1392, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 266, - 657, - 658, - 659, - 1278, - 1497, - 1505, - 1623, - 1627, - 1628, - 1629, - 1630, - 1638, - 1645, - 1649, - 1660, - 1661, - 1662, - 1663, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1278, - 1394, - 1473, - 1489, - 1490, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 1391, - 1392, - 1401, - 1404, - 1405, - 1473, - 1493, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1283, - 1401, - 1454, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1391, - 1392, - 1402, - 1403, - 1404, - 1405, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 932, - 933, - 1405, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 932, - 933, - 1283, - 1391, - 1392, - 1401, - 1405, - 1406, - 1409, - 1454, - 1473, - 1491, - 1495, - 1509, - 1618, - 1620, - 1621, - 1622, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 932, - 933, - 1278, - 1283, - 1391, - 1392, - 1397, - 1405, - 1409, - 1416, - 1418, - 1442, - 1454, - 1473, - 1491, - 1495, - 1509, - 1615, - 1618, - 1621, - 1622, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 653, - 657, - 658, - 659, - 933, - 1391, - 1392, - 1404, - 1405, - 1473, - 1615, - 1620, - 1844, - 1898, - 1915, - 1916, - 2039 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 933, - 1278, - 1392, - 1402, - 1405, - 1407, - 1420, - 1442, - 1473, - 1491, - 1495, - 1618, - 1653, - 1666, - 1844, - 1898, - 1915, - 1916, - 2072 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 932, - 933, - 1283, - 1391, - 1392, - 1402, - 1404, - 1454, - 1473, - 1488, - 1491, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 932, - 933, - 1392, - 1473, - 1491, - 1605, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 933, - 962, - 1279, - 1391, - 1392, - 1404, - 1406, - 1409, - 1434, - 1435, - 1473, - 1491, - 1497, - 1605, - 1615, - 1623, - 1631, - 1632, - 1636, - 1637, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 933, - 1391, - 1392, - 1403, - 1404, - 1405, - 1473, - 1491, - 1605, - 1623, - 1653, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 674, - 932, - 933, - 1283, - 1370, - 1372, - 1392, - 1404, - 1405, - 1408, - 1409, - 1418, - 1424, - 1442, - 1454, - 1473, - 1491, - 1493, - 1495, - 1509, - 1618, - 1621, - 1622, - 1644, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 182, - 657, - 658, - 659, - 1623, - 1665, - 1667, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 865, - 929, - 932, - 933, - 1278, - 1368, - 1370, - 1430, - 1431, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 182, - 657, - 658, - 659, - 1278, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 932, - 933, - 1362, - 1391, - 1392, - 1402, - 1403, - 1404, - 1473, - 1615, - 1683, - 1684, - 1685, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 266, - 657, - 658, - 659, - 1278, - 1370, - 1372, - 1493, - 1615, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1473, - 1615, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 932, - 933, - 1391, - 1403, - 1473, - 1844, - 1898, - 1915, - 1916, - 2566 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 654, - 657, - 658, - 659, - 933, - 1272, - 1278, - 1279, - 1392, - 1414, - 1434, - 1442, - 1473, - 1491, - 1605, - 1615, - 1636, - 1644, - 1648, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 182, - 266, - 657, - 658, - 659, - 1279, - 1372, - 1391, - 1392, - 1397, - 1403, - 1404, - 1405, - 1473, - 1506, - 1844, - 1898, - 1915, - 1916, - 2036 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 266, - 657, - 658, - 659, - 1362, - 1488, - 1844, - 1898, - 1915, - 1916, - 2018, - 2019 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 657, - 658, - 659, - 1391, - 1392, - 1402, - 1403, - 1404, - 1442, - 1473, - 1615, - 1619, - 1844, - 1898, - 1915, - 1916, - 2069 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 933, - 1362, - 1391, - 1392, - 1397, - 1402, - 1403, - 1473, - 1615, - 1844, - 1898, - 1915, - 1916, - 2023, - 2024 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 657, - 658, - 659, - 663, - 1362, - 1385, - 1390, - 1391, - 1392, - 1403, - 1404, - 1407, - 1431, - 1473, - 1493, - 1615, - 1619, - 1683, - 1687, - 1844, - 1898, - 1915, - 1916, - 2023, - 2026, - 2076, - 2077 - ], - [ - 70, - 72, - 73, - 78, - 623, - 653, - 657, - 658, - 659, - 932, - 933, - 1283, - 1362, - 1370, - 1442, - 1493, - 1844, - 1898, - 1915, - 1916, - 2045, - 2078, - 2079 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 657, - 658, - 659, - 663, - 1391, - 1392, - 1403, - 1404, - 1473, - 1493, - 1615, - 1619, - 1683, - 1844, - 1898, - 1915, - 1916, - 2023, - 2026, - 2076 - ], - [ - 64, - 70, - 72, - 73, - 78, - 623, - 657, - 658, - 659, - 933, - 1367, - 1372, - 1406, - 1442, - 1683, - 1844, - 1898, - 1915, - 1916, - 2069, - 2079, - 2081 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 663, - 932, - 933, - 1391, - 1392, - 1403, - 1404, - 1473, - 1493, - 1615, - 1619, - 1683, - 1687, - 1689, - 1844, - 1898, - 1915, - 1916, - 2026, - 2076, - 2079 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 932, - 933, - 1370, - 1391, - 1392, - 1402, - 1403, - 1404, - 1442, - 1473, - 1615, - 1844, - 1898, - 1915, - 1916, - 2076 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 1431, - 1473, - 1844, - 1898, - 1915, - 1916, - 2026 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 1392, - 1402, - 1431, - 1473, - 1683, - 1844, - 1898, - 1915, - 1916, - 2023 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 663, - 1391, - 1473, - 1683, - 1844, - 1898, - 1915, - 1916, - 2023, - 2026 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 1391, - 1392, - 1403, - 1404, - 1473, - 1493, - 1615, - 1844, - 1898, - 1915, - 1916, - 2071, - 2076, - 2079 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 1391, - 1392, - 1402, - 1404, - 1473, - 1488, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1278, - 1362, - 1391, - 1403, - 1404, - 1405, - 1473, - 1493, - 1509, - 1697, - 1844, - 1898, - 1915, - 1916, - 2021 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 931, - 932, - 933, - 1278, - 1362, - 1370, - 1473, - 1493, - 1612, - 1844, - 1898, - 1915, - 1916, - 2016, - 2017, - 2020, - 2022, - 2086 - ], - [ - 70, - 72, - 73, - 78, - 167, - 623, - 653, - 657, - 658, - 659, - 932, - 933, - 1362, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916, - 2023, - 2025, - 2080, - 2082, - 2083, - 2084, - 2085 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 653, - 657, - 658, - 659, - 933, - 1368, - 1370, - 1391, - 1473, - 1615, - 1675, - 1844, - 1898, - 1915, - 1916, - 2590 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 1403, - 1404, - 1473, - 1605, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 653, - 657, - 658, - 659, - 865, - 932, - 933, - 1278, - 1279, - 1283, - 1372, - 1391, - 1392, - 1404, - 1405, - 1430, - 1431, - 1442, - 1473, - 1491, - 1509, - 1612, - 1615, - 1621, - 1622, - 1650, - 1652, - 1653, - 1659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 657, - 658, - 659, - 663, - 931, - 933, - 1391, - 1392, - 1402, - 1404, - 1424, - 1442, - 1443, - 1473, - 1497, - 1509, - 1622, - 1844, - 1898, - 1915, - 1916, - 2016, - 2045 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 932, - 933, - 1367, - 1372, - 1392, - 1404, - 1405, - 1406, - 1430, - 1431, - 1442, - 1473, - 1622, - 1623, - 1652, - 1659, - 1683, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 67, - 70, - 72, - 73, - 78, - 167, - 182, - 266, - 623, - 653, - 657, - 658, - 659, - 663, - 1372, - 1391, - 1392, - 1403, - 1404, - 1405, - 1424, - 1454, - 1473, - 1486, - 1487, - 1495, - 1506, - 1606, - 1615, - 1619, - 1674, - 1676, - 1686, - 1688, - 1844, - 1898, - 1915, - 1916, - 2595 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 657, - 658, - 659, - 663, - 932, - 933, - 1278, - 1372, - 1391, - 1392, - 1402, - 1405, - 1407, - 1420, - 1442, - 1473, - 1493, - 1675, - 1844, - 1898, - 1915, - 1916, - 2016, - 2073 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 653, - 657, - 658, - 659, - 1391, - 1392, - 1404, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 931, - 932, - 933, - 1283, - 1370, - 1391, - 1392, - 1402, - 1403, - 1404, - 1442, - 1473, - 1497, - 1615, - 1687, - 1844, - 1898, - 1915, - 1916, - 2027, - 2058, - 2070, - 2075 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 663, - 1278, - 1283, - 1391, - 1392, - 1402, - 1404, - 1405, - 1473, - 1619, - 1666, - 1844, - 1898, - 1915, - 1916, - 2036, - 2057 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 932, - 933, - 1391, - 1392, - 1402, - 1403, - 1405, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916, - 2069 - ], - [ - 70, - 72, - 73, - 78, - 266, - 657, - 658, - 659, - 1391, - 1392, - 1394, - 1405, - 1409, - 1424, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1391, - 1392, - 1405, - 1409, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916, - 2066, - 2071, - 2074 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 933, - 1362, - 1367, - 1370, - 1372, - 1391, - 1392, - 1393, - 1406, - 1409, - 1424, - 1442, - 1473, - 1615, - 1683, - 1844, - 1898, - 1915, - 1916, - 2047, - 2052, - 2063, - 2065, - 2066 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 932, - 933, - 1391, - 1392, - 1403, - 1404, - 1405, - 1409, - 1430, - 1473, - 1496, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 932, - 933, - 1278, - 1283, - 1363, - 1372, - 1391, - 1401, - 1406, - 1407, - 1420, - 1442, - 1454, - 1473, - 1493, - 1618, - 1621, - 1622, - 1844, - 1898, - 1915, - 1916, - 2047 - ], - [ - 64, - 67, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 663, - 933, - 965, - 1385, - 1391, - 1392, - 1403, - 1404, - 1405, - 1424, - 1442, - 1473, - 1486, - 1674, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 663, - 931, - 932, - 933, - 1391, - 1392, - 1402, - 1403, - 1404, - 1430, - 1431, - 1442, - 1443, - 1473, - 1615, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 933, - 1278, - 1391, - 1392, - 1402, - 1403, - 1404, - 1405, - 1409, - 1442, - 1454, - 1473, - 1493, - 1509, - 1615, - 1622, - 1623, - 1634, - 1644, - 1844, - 1898, - 1915, - 1916, - 2050, - 2051 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 933, - 1391, - 1392, - 1405, - 1473, - 1634, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 67, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 933, - 1282, - 1391, - 1392, - 1394, - 1403, - 1404, - 1405, - 1424, - 1473, - 1487, - 1509, - 1622, - 1666, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 657, - 658, - 659, - 931, - 933, - 1272, - 1274, - 1391, - 1392, - 1402, - 1404, - 1405, - 1430, - 1442, - 1443, - 1473, - 1618, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 653, - 657, - 658, - 659, - 932, - 933, - 1368, - 1391, - 1392, - 1397, - 1402, - 1404, - 1473, - 1619, - 1675, - 1844, - 1898, - 1915, - 1916, - 2090 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 932, - 933, - 962, - 1392, - 1394, - 1397, - 1404, - 1405, - 1409, - 1442, - 1473, - 1497, - 1509, - 1605, - 1622, - 1623, - 1667, - 1670, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 931, - 932, - 933, - 1282, - 1391, - 1392, - 1397, - 1403, - 1404, - 1405, - 1473, - 1509, - 1672, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 657, - 658, - 659, - 932, - 933, - 1362, - 1391, - 1392, - 1404, - 1409, - 1422, - 1442, - 1473, - 1615, - 1623, - 1675, - 1844, - 1898, - 1915, - 1916, - 2048, - 2064, - 2069, - 2076 - ], - [ - 64, - 67, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 657, - 658, - 659, - 932, - 933, - 1372, - 1391, - 1392, - 1394, - 1397, - 1403, - 1404, - 1405, - 1473, - 1487, - 1506, - 1619, - 1674, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 657, - 658, - 659, - 931, - 932, - 933, - 1372, - 1391, - 1392, - 1394, - 1397, - 1403, - 1404, - 1405, - 1473, - 1487, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 933, - 1391, - 1403, - 1404, - 1473, - 1509, - 1605, - 1844, - 1898, - 1915, - 1916, - 2558 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 657, - 658, - 659, - 663, - 674, - 933, - 1372, - 1391, - 1392, - 1403, - 1404, - 1405, - 1424, - 1432, - 1442, - 1473, - 1615, - 1618, - 1622, - 1844, - 1898, - 1915, - 1916, - 2050, - 2053 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 932, - 933, - 1391, - 1392, - 1397, - 1403, - 1404, - 1405, - 1433, - 1473, - 1496, - 1509, - 1609, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 653, - 654, - 657, - 658, - 659, - 674, - 932, - 933, - 1277, - 1391, - 1392, - 1397, - 1404, - 1405, - 1409, - 1438, - 1442, - 1473, - 1496, - 1509, - 1605, - 1609, - 1622, - 1634, - 1644, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 931, - 932, - 933, - 936, - 1370, - 1391, - 1392, - 1402, - 1404, - 1405, - 1407, - 1442, - 1443, - 1473, - 1497, - 1615, - 1844, - 1898, - 1915, - 1916, - 2016 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 663, - 931, - 933, - 1391, - 1392, - 1404, - 1405, - 1407, - 1442, - 1473, - 1497, - 1622, - 1844, - 1898, - 1915, - 1916, - 2087 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 663, - 931, - 933, - 1385, - 1391, - 1392, - 1403, - 1404, - 1405, - 1410, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916, - 2087 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 932, - 933, - 1362, - 1363, - 1366, - 1372, - 1391, - 1392, - 1402, - 1403, - 1404, - 1405, - 1433, - 1442, - 1473, - 1619, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 931, - 933, - 1391, - 1392, - 1402, - 1403, - 1404, - 1430, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 67, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 931, - 1282, - 1391, - 1392, - 1401, - 1403, - 1404, - 1405, - 1433, - 1473, - 1508, - 1509, - 1605, - 1606, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 671, - 674, - 931, - 933, - 1372, - 1391, - 1392, - 1394, - 1402, - 1404, - 1409, - 1424, - 1473, - 1506, - 1612, - 1619, - 1844, - 1898, - 1915, - 1916, - 2019, - 2077, - 2558, - 2604 - ], - [ - 70, - 72, - 73, - 78, - 167, - 623, - 657, - 658, - 659, - 1278, - 1368, - 1372, - 1420, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916, - 2076, - 2090, - 2591, - 2606, - 2607 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 936, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 182, - 266, - 653, - 657, - 658, - 659, - 663, - 933, - 1366, - 1368, - 1372, - 1391, - 1392, - 1397, - 1400, - 1402, - 1404, - 1405, - 1406, - 1423, - 1424, - 1442, - 1473, - 1615, - 1675, - 1844, - 1898, - 1915, - 1916, - 2017, - 2024, - 2048, - 2620, - 2623, - 2625, - 2626 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 932, - 933, - 1362, - 1368, - 1372, - 1391, - 1392, - 1402, - 1404, - 1442, - 1443, - 1473, - 1844, - 1898, - 1915, - 1916, - 2090 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 932, - 933, - 936, - 1391, - 1392, - 1402, - 1404, - 1421, - 1422, - 1443, - 1473, - 1615, - 1619, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 1278, - 1372, - 1392, - 1420, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916, - 2069, - 2071, - 2090, - 2591, - 2607 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1368, - 1391, - 1392, - 1394, - 1402, - 1403, - 1473, - 1606, - 1615, - 1619, - 1676, - 1844, - 1898, - 1915, - 1916, - 2605 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 1278, - 1372, - 1392, - 1394, - 1397, - 1405, - 1420, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916, - 2090, - 2590, - 2591, - 2600, - 2607, - 2608, - 2621, - 2622 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1391, - 1392, - 1404, - 1473, - 1844, - 1898, - 1915, - 1916, - 2622 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 1362, - 1363, - 1372, - 1391, - 1392, - 1422, - 1423, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916, - 2016, - 2064, - 2069, - 2076, - 2622, - 2624 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 1362, - 1366, - 1372, - 1391, - 1392, - 1402, - 1404, - 1423, - 1442, - 1443, - 1473, - 1619, - 1844, - 1898, - 1915, - 1916, - 2016, - 2071, - 2076, - 2622, - 2624 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1421, - 1422, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 932, - 933, - 962, - 1391, - 1392, - 1404, - 1405, - 1473, - 1509, - 1697, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 932, - 933, - 1279, - 1283, - 1391, - 1392, - 1403, - 1404, - 1405, - 1454, - 1473, - 1493, - 1494, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 1391, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 663, - 1391, - 1392, - 1393, - 1402, - 1403, - 1404, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 1391, - 1393, - 1401, - 1402, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 664, - 1391, - 1392, - 1404, - 1454, - 1473, - 1614, - 1615, - 1617, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1391, - 1392, - 1401, - 1404, - 1473, - 1619, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1391, - 1401, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 657, - 658, - 659, - 1391, - 1392, - 1405, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 931, - 966, - 1278, - 1279, - 1394, - 1401, - 1473, - 1495, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1473, - 1605, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1604, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1510, - 1602, - 1603, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1391, - 1392, - 1404, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 653, - 657, - 658, - 659, - 1403, - 1404, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 865, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1391, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 932, - 933, - 962, - 1391, - 1392, - 1403, - 1404, - 1405, - 1409, - 1473, - 1678, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 663, - 932, - 933, - 1391, - 1392, - 1394, - 1401, - 1403, - 1404, - 1405, - 1433, - 1454, - 1473, - 1509, - 1606, - 1619, - 1676, - 1677, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1673, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 657, - 658, - 659, - 674, - 932, - 933, - 1278, - 1362, - 1366, - 1368, - 1371, - 1372, - 1382, - 1394, - 1397, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1420, - 1424, - 1431, - 1442, - 1473, - 1506, - 1644, - 1675, - 1683, - 1689, - 1699, - 1844, - 1898, - 1915, - 1916, - 2044, - 2046, - 2048, - 2052, - 2054, - 2055, - 2056 - ], - [ - 64, - 67, - 70, - 72, - 73, - 78, - 167, - 623, - 653, - 657, - 658, - 659, - 671, - 932, - 933, - 962, - 966, - 1278, - 1360, - 1370, - 1372, - 1382, - 1394, - 1397, - 1401, - 1409, - 1410, - 1418, - 1430, - 1431, - 1432, - 1433, - 1441, - 1442, - 1473, - 1486, - 1487, - 1488, - 1508, - 1608, - 1609, - 1611, - 1612, - 1663, - 1670, - 1671, - 1673, - 1675, - 1679, - 1689, - 1693, - 1694, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 623, - 657, - 658, - 659, - 1432, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 623, - 657, - 658, - 659, - 932, - 933, - 1278, - 1442, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 653, - 657, - 658, - 659, - 932, - 933, - 1372, - 1394, - 1397, - 1406, - 1410, - 1442, - 1693, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1278, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 932, - 933, - 1278, - 1372, - 1442, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 623, - 657, - 658, - 659, - 1278, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1317, - 1359, - 1362, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 623, - 657, - 658, - 659, - 932, - 933, - 1442, - 1443, - 1844, - 1898, - 1915, - 1916 - ], - [ - 67, - 70, - 72, - 73, - 78, - 167, - 623, - 657, - 658, - 659, - 1278, - 1394, - 1397, - 1442, - 1473, - 1486, - 1487, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 623, - 657, - 658, - 659, - 1683, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1282, - 1473, - 1844, - 1898, - 1915, - 1916, - 2629 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 962, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 623, - 657, - 658, - 659, - 1442, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 933, - 1473, - 1494, - 1697, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 933, - 1278, - 1418, - 1442, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 182, - 266, - 657, - 658, - 659, - 865, - 932, - 933, - 1278, - 1279, - 1283, - 1368, - 1369, - 1370, - 1430, - 1431, - 1442, - 1473, - 1493, - 1631, - 1650, - 1698, - 1700, - 1844, - 1898, - 1915, - 1916, - 2630 - ], - [ - 70, - 72, - 73, - 78, - 266, - 653, - 657, - 658, - 659, - 1278, - 1332, - 1359, - 1362, - 1370, - 1372, - 1397, - 1442, - 1683, - 1698, - 1699, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 182, - 266, - 623, - 653, - 657, - 658, - 659, - 933, - 1283, - 1372, - 1385, - 1391, - 1392, - 1397, - 1404, - 1405, - 1407, - 1410, - 1442, - 1473, - 1487, - 1618, - 1623, - 1675, - 1680, - 1682, - 1686, - 1687, - 1688, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1362, - 1371, - 1372, - 1397, - 1442, - 1686, - 1688, - 1844, - 1898, - 1915, - 1916, - 2015, - 2067, - 2087 - ], - [ - 64, - 66, - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 932, - 933, - 964, - 965, - 1370, - 1418, - 1424, - 1428, - 1429, - 1430, - 1431, - 1442, - 1473, - 1493, - 1651, - 1844, - 1898, - 1915, - 1916, - 2631, - 2634, - 2635 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 865, - 932, - 933, - 1278, - 1279, - 1391, - 1392, - 1404, - 1405, - 1428, - 1430, - 1473, - 1615, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1279, - 1431, - 1432, - 1473, - 1605, - 1844, - 1898, - 1915, - 1916 - ], - [ - 66, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 964, - 965, - 1272, - 1273, - 1274, - 1279, - 1391, - 1392, - 1424, - 1429, - 1442, - 1473, - 1636, - 1651, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 182, - 623, - 657, - 658, - 659, - 965, - 1272, - 1409, - 1429, - 1430, - 1431, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 167, - 623, - 653, - 654, - 657, - 658, - 659, - 932, - 933, - 1278, - 1394, - 1414, - 1430, - 1431, - 1438, - 1442, - 1446, - 1473, - 1487, - 1790, - 1844, - 1898, - 1915, - 1916, - 2038, - 2039, - 2040 - ], - [ - 70, - 72, - 73, - 653, - 657, - 658, - 659, - 1272, - 1428, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 623, - 653, - 657, - 658, - 659, - 674, - 932, - 933, - 965, - 1272, - 1273, - 1274, - 1278, - 1283, - 1362, - 1366, - 1370, - 1372, - 1394, - 1397, - 1407, - 1409, - 1424, - 1429, - 1430, - 1431, - 1442, - 1473, - 1506, - 1636, - 1667, - 1675, - 1689, - 1691, - 1693, - 1844, - 1898, - 1915, - 1916, - 2056, - 2066, - 2076, - 2598, - 2599, - 2603 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 588, - 623, - 653, - 657, - 658, - 659, - 932, - 933, - 965, - 1273, - 1274, - 1278, - 1279, - 1283, - 1366, - 1370, - 1372, - 1373, - 1397, - 1409, - 1410, - 1419, - 1425, - 1426, - 1427, - 1429, - 1430, - 1431, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 623, - 653, - 657, - 658, - 659, - 932, - 933, - 936, - 955, - 961, - 962, - 1430, - 1442, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 623, - 657, - 658, - 659, - 932, - 933, - 965, - 966, - 1274, - 1429, - 1431, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1278, - 1279, - 1282, - 1283, - 1370, - 1430, - 1473, - 1489, - 1494, - 1844, - 1898, - 1915, - 1916, - 2636 - ], - [ - 64, - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1361, - 1362, - 1372, - 1397, - 1442, - 1686, - 1688, - 1844, - 1898, - 1915, - 1916, - 2015, - 2067, - 2087 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1391, - 1392, - 1405, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1362, - 1364, - 1372, - 1397, - 1425, - 1686, - 1688, - 1844, - 1898, - 1915, - 1916, - 2011, - 2015, - 2067, - 2087 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 182, - 266, - 623, - 653, - 657, - 658, - 659, - 931, - 933, - 1363, - 1372, - 1391, - 1392, - 1404, - 1407, - 1421, - 1422, - 1442, - 1473, - 1618, - 1620, - 1675, - 1686, - 1688, - 1844, - 1898, - 1915, - 1916, - 2011, - 2047, - 2048, - 2064 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 182, - 266, - 623, - 653, - 657, - 658, - 659, - 663, - 931, - 933, - 1366, - 1372, - 1391, - 1392, - 1402, - 1403, - 1404, - 1407, - 1421, - 1442, - 1443, - 1473, - 1618, - 1686, - 1688, - 1844, - 1898, - 1915, - 1916, - 2016 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 182, - 266, - 623, - 653, - 657, - 658, - 659, - 931, - 932, - 933, - 1363, - 1372, - 1392, - 1405, - 1406, - 1422, - 1423, - 1442, - 1473, - 1618, - 1675, - 1686, - 1688, - 1844, - 1898, - 1915, - 1916, - 2047, - 2048, - 2064 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 182, - 266, - 623, - 657, - 658, - 659, - 1372, - 1391, - 1392, - 1402, - 1403, - 1404, - 1421, - 1442, - 1443, - 1473, - 1618, - 1619, - 1620, - 1686, - 1688, - 1844, - 1898, - 1915, - 1916, - 2011, - 2047 - ], - [ - 70, - 72, - 73, - 78, - 167, - 182, - 266, - 623, - 657, - 658, - 659, - 966, - 1278, - 1279, - 1392, - 1404, - 1442, - 1443, - 1473, - 1618, - 1686, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 623, - 653, - 657, - 658, - 659, - 932, - 933, - 1278, - 1362, - 1370, - 1372, - 1392, - 1425, - 1442, - 1473, - 1686, - 1688, - 1844, - 1898, - 1915, - 1916, - 2011, - 2015, - 2047, - 2059, - 2067, - 2068, - 2076, - 2087 - ], - [ - 70, - 72, - 73, - 78, - 623, - 657, - 658, - 659, - 1362, - 1372, - 1425, - 1442, - 1844, - 1898, - 1915, - 1916, - 2088 - ], - [ - 64, - 70, - 72, - 73, - 657, - 658, - 659, - 932, - 933, - 1283, - 1366, - 1370, - 1372, - 1407, - 1420, - 1424, - 1430, - 1442, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 623, - 653, - 657, - 658, - 659, - 933, - 1278, - 1362, - 1370, - 1372, - 1425, - 1442, - 1686, - 1688, - 1844, - 1898, - 1915, - 1916, - 2011, - 2015, - 2022, - 2067, - 2087 - ], - [ - 64, - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1362, - 1372, - 1425, - 1442, - 1844, - 1898, - 1915, - 1916, - 2088 - ], - [ - 64, - 70, - 72, - 73, - 78, - 653, - 657, - 658, - 659, - 933, - 1362, - 1365, - 1372, - 1397, - 1675, - 1686, - 1688, - 1689, - 1844, - 1898, - 1915, - 1916, - 2011, - 2015, - 2067, - 2087 - ], - [ - 64, - 70, - 72, - 73, - 78, - 623, - 657, - 658, - 659, - 932, - 933, - 1362, - 1372, - 1442, - 1688, - 1844, - 1898, - 1915, - 1916, - 2067, - 2087, - 2645 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 929, - 1279, - 1362, - 1372, - 1391, - 1392, - 1473, - 1615, - 1683, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 653, - 654, - 657, - 658, - 659, - 674, - 929, - 932, - 933, - 1277, - 1391, - 1392, - 1394, - 1402, - 1403, - 1404, - 1405, - 1409, - 1438, - 1442, - 1473, - 1509, - 1606, - 1615, - 1618, - 1622, - 1624, - 1675, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 653, - 657, - 658, - 659, - 663, - 1391, - 1392, - 1404, - 1432, - 1442, - 1443, - 1473, - 1605, - 1615, - 1637, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 932, - 933, - 1392, - 1405, - 1442, - 1473, - 1618, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1392, - 1473, - 1844, - 1898, - 1915, - 1916, - 2037, - 2044, - 2091, - 2555, - 2648, - 2649, - 2654, - 2656, - 2658, - 2661, - 2662, - 2663, - 2664, - 2665 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 518, - 623, - 653, - 654, - 657, - 658, - 659, - 674, - 933, - 1277, - 1392, - 1401, - 1404, - 1406, - 1438, - 1473, - 1615, - 1620, - 1624, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1693, - 1844, - 1898, - 1915, - 1916, - 2651, - 2653 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 653, - 657, - 658, - 659, - 865, - 933, - 1391, - 1392, - 1404, - 1405, - 1473, - 1487, - 1620, - 1675, - 1693, - 1844, - 1898, - 1915, - 1916, - 2590, - 2653 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 653, - 657, - 658, - 659, - 663, - 865, - 933, - 1272, - 1391, - 1392, - 1404, - 1406, - 1454, - 1473, - 1615, - 1693, - 1844, - 1898, - 1915, - 1916, - 2590, - 2650, - 2652 - ], - [ - 70, - 72, - 73, - 653, - 657, - 658, - 659, - 936, - 961, - 962, - 1272, - 1278, - 1442, - 1692, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 931, - 933, - 1272, - 1391, - 1392, - 1402, - 1404, - 1473, - 1606, - 1692, - 1693, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 653, - 657, - 658, - 659, - 663, - 865, - 933, - 1272, - 1391, - 1392, - 1404, - 1406, - 1454, - 1473, - 1606, - 1615, - 1692, - 1693, - 1844, - 1898, - 1915, - 1916, - 2590, - 2650, - 2652 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1272, - 1690, - 1691, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 657, - 658, - 659, - 933, - 1394, - 1397, - 1406, - 1409, - 1416, - 1418, - 1442, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 865, - 1359, - 1362, - 1473, - 1686, - 1688, - 1844, - 1898, - 1915, - 1916, - 2015, - 2093, - 2659, - 2660, - 2666 - ], - [ - 64, - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1359, - 1362, - 1686, - 1688, - 1844, - 1898, - 1915, - 1916, - 2015, - 2016, - 2659, - 2668, - 2669, - 2670 - ], - [ - 70, - 72, - 73, - 78, - 182, - 266, - 657, - 658, - 659, - 1359, - 1362, - 1844, - 1898, - 1915, - 1916, - 2659, - 2667, - 2671 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1391, - 1392, - 1402, - 1403, - 1404, - 1473, - 1844, - 1898, - 1915, - 1916, - 2016, - 2655 - ], - [ - 64, - 70, - 72, - 73, - 657, - 658, - 659, - 932, - 933, - 1372, - 1406, - 1442, - 1663, - 1670, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 674, - 933, - 1372, - 1391, - 1392, - 1394, - 1402, - 1403, - 1404, - 1405, - 1424, - 1442, - 1473, - 1487, - 1619, - 1620, - 1844, - 1898, - 1915, - 1916, - 2053 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 1391, - 1392, - 1401, - 1402, - 1404, - 1409, - 1473, - 1487, - 1507, - 1623, - 1844, - 1898, - 1915, - 1916, - 2063 - ], - [ - 64, - 70, - 72, - 73, - 623, - 653, - 657, - 658, - 659, - 933, - 1278, - 1385, - 1394, - 1397, - 1442, - 1507, - 1675, - 1844, - 1898, - 1915, - 1916, - 2090, - 2657 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 654, - 657, - 658, - 659, - 933, - 1277, - 1360, - 1372, - 1391, - 1392, - 1394, - 1397, - 1403, - 1404, - 1405, - 1406, - 1434, - 1435, - 1438, - 1442, - 1473, - 1633, - 1663, - 1790, - 1844, - 1898, - 1915, - 1916, - 2016, - 2660 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1391, - 1392, - 1403, - 1473, - 1844, - 1898, - 1915, - 1916, - 2659, - 2660 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 653, - 657, - 658, - 659, - 663, - 1278, - 1332, - 1362, - 1391, - 1392, - 1397, - 1402, - 1403, - 1404, - 1473, - 1509, - 1615, - 1618, - 1619, - 1675, - 1844, - 1898, - 1915, - 1916, - 2659, - 2666 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 933, - 1278, - 1392, - 1394, - 1397, - 1404, - 1405, - 1406, - 1473, - 1618, - 1620, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 623, - 653, - 657, - 658, - 659, - 674, - 932, - 933, - 966, - 1282, - 1372, - 1382, - 1385, - 1394, - 1396, - 1397, - 1400, - 1406, - 1409, - 1410, - 1418, - 1438, - 1442, - 1460, - 1473, - 1486, - 1487, - 1507, - 1607, - 1612, - 1628, - 1663, - 1667, - 1670, - 1693, - 1844, - 1898, - 1915, - 1916, - 2052, - 2559, - 2604, - 2631, - 2647, - 2659, - 2669 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 1276, - 1278, - 1391, - 1392, - 1397, - 1402, - 1404, - 1410, - 1473, - 1615, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 933, - 1391, - 1392, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1442, - 1454, - 1473, - 1497, - 1615, - 1618, - 1779, - 1790, - 1828, - 1844, - 1898, - 1915, - 1916, - 1985, - 2010, - 2016, - 2090 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1391, - 1392, - 1404, - 1442, - 1473, - 1618, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 653, - 657, - 658, - 659, - 1278, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 653, - 657, - 658, - 659, - 663, - 671, - 933, - 1372, - 1385, - 1391, - 1392, - 1394, - 1397, - 1400, - 1404, - 1405, - 1406, - 1433, - 1442, - 1473, - 1487, - 1619, - 1844, - 1898, - 1915, - 1916, - 2039, - 2077, - 2601, - 2660 - ], - [ - 64, - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 933, - 1362, - 1367, - 1372, - 1406, - 1442, - 1683, - 1686, - 1688, - 1844, - 1898, - 1915, - 1916, - 2011, - 2015, - 2067, - 2087 - ], - [ - 67, - 70, - 72, - 73, - 657, - 658, - 659, - 962, - 1394, - 1442, - 1844, - 1898, - 1915, - 1916, - 2049 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1373, - 1394, - 1397, - 1410, - 1435, - 1442, - 1459, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 167, - 623, - 653, - 654, - 657, - 658, - 659, - 932, - 933, - 1277, - 1397, - 1406, - 1409, - 1434, - 1435, - 1438, - 1442, - 1473, - 1633, - 1634, - 1644, - 1663, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 933, - 962, - 1278, - 1394, - 1411, - 1412, - 1417, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1282, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 67, - 70, - 72, - 73, - 78, - 623, - 657, - 658, - 659, - 674, - 931, - 932, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 167, - 623, - 653, - 654, - 657, - 658, - 659, - 1277, - 1394, - 1419, - 1434, - 1438, - 1442, - 1473, - 1633, - 1636, - 1844, - 1898, - 1915, - 1916, - 2038 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 932, - 933, - 966, - 1370, - 1430, - 1442, - 1473, - 1689, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 932, - 933, - 1372, - 1397, - 1473, - 1487, - 1488, - 1506, - 1507, - 1508, - 1607, - 1608, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 932, - 933, - 1332, - 1359, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1370, - 1371, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 623, - 657, - 658, - 659, - 966, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 167, - 623, - 653, - 657, - 658, - 659, - 671, - 932, - 933, - 962, - 966, - 1278, - 1283, - 1365, - 1370, - 1372, - 1382, - 1385, - 1390, - 1394, - 1397, - 1406, - 1407, - 1408, - 1409, - 1430, - 1431, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 67, - 70, - 72, - 73, - 167, - 623, - 657, - 658, - 659, - 933, - 962, - 1394, - 1397, - 1433, - 1442, - 1473, - 1486, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1442, - 1844, - 1898, - 1915, - 1916, - 2675 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 962, - 966, - 1278, - 1391, - 1394, - 1396, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 671, - 933, - 1394, - 1397, - 1442, - 1460, - 1611, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 962, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 657, - 658, - 659, - 1613, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 663, - 1391, - 1443, - 1448, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 932, - 933, - 964, - 965, - 1391, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 654, - 657, - 658, - 659, - 965, - 1442, - 1448, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 657, - 658, - 659, - 1448, - 1456, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 266, - 623, - 657, - 658, - 659, - 663, - 936, - 1392, - 1404, - 1442, - 1443, - 1448, - 1453, - 1454, - 1473, - 1844, - 1898, - 1915, - 1916, - 1919 - ], - [ - 70, - 72, - 73, - 78, - 167, - 182, - 266, - 267, - 271, - 623, - 653, - 654, - 657, - 658, - 659, - 663, - 664, - 932, - 933, - 966, - 1282, - 1391, - 1403, - 1404, - 1405, - 1417, - 1442, - 1443, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1455, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 266, - 657, - 658, - 659, - 936, - 962, - 1278, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 623, - 653, - 657, - 658, - 659, - 933, - 936, - 1278, - 1442, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 623, - 657, - 658, - 659, - 936, - 961, - 962, - 1421, - 1442, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 932, - 933, - 1361, - 1363, - 1364, - 1365, - 1366, - 1367, - 1372, - 1373, - 1394, - 1407, - 1410, - 1420, - 1442, - 1610, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 623, - 657, - 658, - 659, - 936, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1360, - 1442, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 936, - 1430, - 1431, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 623, - 657, - 658, - 659, - 936, - 1442, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 623, - 657, - 658, - 659, - 936, - 962, - 1282, - 1442, - 1473, - 1487, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 623, - 657, - 658, - 659, - 936, - 1317, - 1844, - 1898, - 1915, - 1916 - ], - [ - 67, - 70, - 72, - 73, - 167, - 182, - 266, - 623, - 657, - 658, - 659, - 936, - 1276, - 1277, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 266, - 657, - 658, - 659, - 936, - 1397, - 1398, - 1399, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 623, - 653, - 657, - 658, - 659, - 932, - 933, - 936, - 1372, - 1397, - 1406, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1400, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 167, - 623, - 657, - 658, - 659, - 1282, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 167, - 623, - 657, - 658, - 659, - 932, - 933, - 1363, - 1366, - 1372, - 1406, - 1407, - 1419, - 1420, - 1423, - 1442, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1282, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1332, - 1362, - 1369, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 623, - 657, - 658, - 659, - 1372, - 1844, - 1898, - 1915, - 1916, - 2089 - ], - [ - 70, - 72, - 73, - 167, - 623, - 654, - 657, - 658, - 659, - 1414, - 1433, - 1442, - 1446, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 623, - 657, - 658, - 659, - 1442, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 623, - 657, - 658, - 659, - 932, - 933, - 1363, - 1442, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1283, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 667, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1370, - 1391, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 657, - 658, - 659, - 933, - 1278, - 1406, - 1418, - 1442, - 1844, - 1898, - 1915, - 1916 - ], - [ - 55, - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 57, - 58, - 59, - 61, - 64, - 66, - 67, - 68, - 70, - 72, - 73, - 175, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 61, - 70, - 72, - 73, - 78, - 167, - 176, - 182, - 657, - 658, - 659, - 1457, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 67, - 70, - 72, - 73, - 78, - 167, - 176, - 182, - 657, - 658, - 659, - 671, - 1355, - 1410, - 1457, - 1460, - 1461, - 1473, - 1844, - 1898, - 1915, - 1916, - 2095 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1920, - 2168, - 2169 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1374, - 1375, - 1377, - 1378, - 1380, - 1381, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1374, - 1375, - 1377, - 1378, - 1379, - 1382, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1374, - 1375, - 1376, - 1382, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1377, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1413, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 50, - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1444, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1915, - 1916, - 2482, - 2512 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2512, - 2513 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2512 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1914, - 1915, - 1916, - 2482, - 2491, - 2508, - 2509, - 2510, - 2511 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1914, - 1915, - 1916, - 2491, - 2508, - 2512 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2529, - 2530 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2352 - ], - [ - 70, - 72, - 73, - 174, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2175 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2172 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2173, - 2174 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2171 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2171, - 2357, - 2446, - 2447, - 2527 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2352, - 2439 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2354 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2354, - 2355, - 2356 - ], - [ - 70, - 72, - 73, - 169, - 170, - 171, - 172, - 173, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 168, - 169, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 168, - 169, - 170, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2352, - 2440 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2439 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2440, - 2441 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2352, - 2443 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2171, - 2352 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2443, - 2444 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2353, - 2358, - 2359, - 2360, - 2363, - 2365, - 2366, - 2367, - 2390, - 2442, - 2445 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2352, - 2357 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2352, - 2366 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2352, - 2389 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2361, - 2362 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2352, - 2361 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2352, - 2358, - 2363 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2364 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2171, - 2352, - 2514 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2525 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2448, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2526 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2433, - 2437, - 2457 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2460 - ], - [ - 70, - 72, - 73, - 268, - 269, - 270, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 268, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 268, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1944, - 1948, - 2539, - 2540, - 2543 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2549, - 2551 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2539, - 2540, - 2542 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2539, - 2540, - 2544, - 2552 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2537 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1948, - 2144, - 2533, - 2534, - 2536, - 2538 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 865, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 65, - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 66, - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1462, - 1844, - 1898, - 1915, - 1916 - ], - [ - 66, - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2388 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2377 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2379 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2368, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2369, - 2370, - 2371, - 2372, - 2377, - 2378 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2369, - 2370 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2373, - 2374, - 2375, - 2376 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2370, - 2371 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2370 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2369 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2685, - 2686 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2686, - 2687, - 2688, - 2689 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1948, - 2686, - 2688 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2685, - 2687 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1910, - 1915, - 1916, - 1948 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1910, - 1915, - 1916, - 1948, - 2681 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2681, - 2682, - 2683, - 2684 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2681, - 2683 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2682 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1930, - 1948, - 2690, - 2691, - 2692, - 2695 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2691, - 2692, - 2694 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1915, - 1916, - 1948, - 2690, - 2691, - 2692, - 2693 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2692 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2690, - 2691 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1948, - 2690 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 672, - 673, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 670, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1781, - 1782, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1781, - 1784, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1781, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1473, - 1781, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2484, - 2485, - 2486, - 2487, - 2488 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2484, - 2485, - 2486, - 2489, - 2490 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2483 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2485 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2491 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2167 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1290, - 1291, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1291, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1290, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1290, - 1291, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1290, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1305, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1356, - 1357, - 1358, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1332, - 1356, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1332, - 1355, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1317, - 1318, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1317, - 1320, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1320, - 1323, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1320, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1320, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1332, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1317, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1284, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1284, - 1287, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1284, - 1285, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1285, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2178 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1915, - 1916, - 1948, - 2190 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2181, - 2192, - 2199, - 2207, - 2208, - 2309, - 2313 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2343, - 2344, - 2346 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2343, - 2344, - 2345 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2207, - 2208, - 2309, - 2313, - 2352 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2188, - 2192, - 2199, - 2207, - 2208, - 2226, - 2309, - 2313, - 2316 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2207, - 2208, - 2233, - 2309, - 2313, - 2352 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2188, - 2192, - 2199, - 2207, - 2208, - 2309, - 2313 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2188, - 2192, - 2199, - 2207, - 2208, - 2212, - 2226, - 2309, - 2313 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2207, - 2208, - 2226, - 2309, - 2313, - 2350 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2188, - 2192, - 2199, - 2207, - 2208, - 2309, - 2313, - 2352 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2207, - 2208, - 2212, - 2309, - 2313, - 2352 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2226 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2188, - 2192, - 2199, - 2207, - 2208, - 2226, - 2309, - 2313 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2180, - 2192, - 2199, - 2207, - 2208, - 2258, - 2309, - 2313, - 2316 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2258, - 2260 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2316 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2207, - 2208, - 2226, - 2258, - 2259, - 2309, - 2313, - 2316 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2197, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2180, - 2188, - 2192, - 2195, - 2199, - 2207, - 2208, - 2309, - 2313, - 2316 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2207, - 2208, - 2226, - 2309, - 2313 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2202, - 2352 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2207, - 2208, - 2268, - 2269, - 2309, - 2313, - 2352 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2180, - 2192, - 2199, - 2207, - 2208, - 2226, - 2291, - 2309, - 2313, - 2316 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2180, - 2192, - 2199, - 2207, - 2208, - 2291, - 2309, - 2313, - 2316, - 2352 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2207, - 2208, - 2269, - 2309, - 2313, - 2352 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2207, - 2208, - 2309, - 2313 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2198, - 2199, - 2207, - 2208, - 2309, - 2313 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2180, - 2181, - 2192, - 2194, - 2195, - 2196, - 2199, - 2201, - 2207, - 2208, - 2209, - 2212, - 2216, - 2217, - 2218, - 2221, - 2223, - 2224, - 2226, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2180, - 2181, - 2191, - 2192, - 2194, - 2199, - 2207, - 2208, - 2209, - 2212, - 2213, - 2214, - 2216, - 2217, - 2218, - 2219, - 2223, - 2224, - 2225, - 2309, - 2313, - 2316, - 2352 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2203, - 2204, - 2205, - 2207, - 2208, - 2226, - 2309, - 2313 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2193, - 2194, - 2195, - 2199, - 2203, - 2204, - 2206, - 2207, - 2208, - 2226, - 2309, - 2313, - 2316 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2204 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1910, - 1912, - 1914, - 1915, - 1916, - 1918, - 1938, - 1941, - 2352 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2203, - 2204, - 2205, - 2210, - 2211 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2196, - 2203, - 2307, - 2316 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2196, - 2197, - 2199, - 2201, - 2202, - 2205, - 2207, - 2208, - 2226, - 2309, - 2313, - 2316, - 2350 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2226, - 2339 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2212, - 2226, - 2336, - 2337, - 2338 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2180, - 2208 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2181, - 2192, - 2195, - 2199, - 2201, - 2207, - 2208, - 2212, - 2218, - 2222, - 2223, - 2224, - 2225, - 2226, - 2268, - 2307, - 2309, - 2310, - 2311, - 2313, - 2316, - 2317, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2347, - 2348, - 2349 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2350, - 2351 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2180, - 2196 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2195 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2196, - 2214, - 2215 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2307, - 2352 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2226, - 2325 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2212, - 2226 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2181, - 2192, - 2199, - 2206, - 2207, - 2208, - 2309, - 2313 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2200, - 2207, - 2208, - 2309, - 2313 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1910, - 1915, - 1916, - 2180, - 2194, - 2212, - 2224, - 2317, - 2318, - 2352 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2222, - 2223 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2180, - 2225, - 2319 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2212, - 2352 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2180, - 2192, - 2199, - 2207, - 2208, - 2212, - 2309, - 2313, - 2316 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2180, - 2192, - 2199, - 2207, - 2208, - 2217, - 2309, - 2313 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2205, - 2207, - 2208, - 2309, - 2313 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2206, - 2207, - 2208, - 2212, - 2309, - 2313 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2180, - 2212, - 2223, - 2226, - 2317, - 2319 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2207, - 2208, - 2309, - 2313, - 2316 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2212, - 2222, - 2316 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2180, - 2192, - 2199, - 2207, - 2208, - 2220, - 2309, - 2313, - 2316 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2207, - 2208, - 2212, - 2221, - 2309, - 2313, - 2316 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2180, - 2222 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2207, - 2208, - 2309, - 2313, - 2345 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2192, - 2199, - 2207, - 2208, - 2291, - 2309, - 2313 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2179, - 2180, - 2192, - 2199, - 2207, - 2208, - 2226, - 2309, - 2313 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1915, - 1916, - 2212 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2180, - 2212, - 2224, - 2352 - ], - [ - 70, - 72, - 73, - 278, - 279, - 280, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 357, - 359, - 360, - 361, - 362, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 375, - 376, - 377, - 379, - 380, - 382, - 384, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 397, - 398, - 400, - 401, - 402, - 404, - 405, - 406, - 407, - 408, - 409, - 411, - 412, - 413, - 414, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 427, - 428, - 429, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 449, - 450, - 451, - 452, - 453, - 454, - 457, - 458, - 462, - 463, - 464, - 465, - 466, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1793, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1796, - 1799, - 1802, - 1803, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1794, - 1796, - 1799, - 1803, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1792, - 1795, - 1800, - 1801, - 1803, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1793, - 1797, - 1799, - 1800, - 1802, - 1803, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1793, - 1799, - 1802, - 1803, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1793, - 1794, - 1796, - 1799, - 1803, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1792, - 1794, - 1795, - 1798, - 1803, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1793, - 1794, - 1796, - 1797, - 1799, - 1803, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1795, - 1796, - 1797, - 1798, - 1801, - 1803, - 1811, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1793, - 1796, - 1799, - 1803, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1803, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1795, - 1796, - 1797, - 1798, - 1801, - 1802, - 1804, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1796, - 1802, - 1803, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1811, - 1812, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1791, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1811, - 1812, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1811, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1837, - 1844, - 1898, - 1915, - 1916, - 1950, - 1952, - 1969, - 1981 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1837, - 1844, - 1898, - 1915, - 1916, - 1950, - 1952, - 1953, - 1969, - 1982 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916, - 1952 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1949 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1950, - 1953, - 1981, - 1982, - 1983, - 1984 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1837, - 1844, - 1898, - 1915, - 1916, - 1950, - 1951 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1948 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916, - 1951, - 1972 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1949, - 1951, - 1971 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916, - 1951, - 1970, - 1972 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916, - 1951, - 1975 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916, - 1951, - 1971 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1951, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1979, - 1980 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1841, - 1844, - 1898, - 1915, - 1916, - 1949, - 1951, - 1970 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916, - 1951, - 1985 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916, - 1951 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1837, - 1841, - 1844, - 1898, - 1915, - 1916, - 1949, - 1950 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1837, - 1841, - 1844, - 1898, - 1915, - 1916, - 1950, - 1951, - 1978 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1841, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1828, - 1844, - 1898, - 1915, - 1916, - 1969, - 1985, - 1986, - 1988, - 1989, - 1991, - 1994, - 2007 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1985, - 1998, - 2000, - 2008, - 2009 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1776, - 1828, - 1844, - 1898, - 1915, - 1916, - 1969, - 1985 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2008 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916, - 1986, - 2007 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1828, - 1844, - 1898, - 1915, - 1916, - 2007 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916, - 1994, - 1998, - 2007 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1837, - 1844, - 1898, - 1915, - 1916, - 1985, - 1987, - 1988, - 1989, - 1991 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1992, - 1993 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1837, - 1844, - 1898, - 1915, - 1916, - 1969, - 1985, - 1987, - 1988, - 1989, - 1991 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1776, - 1828, - 1844, - 1898, - 1915, - 1916, - 1985, - 1987, - 1990 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1987, - 1988, - 1989, - 1991, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2005, - 2006 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2001, - 2002, - 2003, - 2004 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916, - 1969, - 2000 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916, - 2001, - 2002 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916, - 1996 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916, - 1994 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916, - 1969, - 1985, - 1988 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1828, - 1844, - 1898, - 1915, - 1916, - 1969, - 1985, - 1986, - 1987 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1828, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1776, - 1828, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916, - 1969, - 1985, - 2007 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1758, - 1762, - 1763, - 1765, - 1767, - 1769, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1741, - 1744, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1771, - 1772, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1743, - 1744, - 1759, - 1762, - 1763, - 1764, - 1766, - 1772, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1762, - 1764, - 1766, - 1772, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1743, - 1762, - 1763, - 1766, - 1772, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1752, - 1761, - 1763, - 1767, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1742, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1741, - 1743, - 1744, - 1770, - 1774, - 1775, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1764, - 1765, - 1766, - 1768, - 1771, - 1772, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1745, - 1746, - 1751, - 1835, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1745, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1747, - 1748, - 1749, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1742, - 1774, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1742, - 1753, - 1754, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1741, - 1753, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1743, - 1775, - 1844, - 1898, - 1915, - 1916, - 1965 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1760, - 1761, - 1844, - 1898, - 1915, - 1916, - 1954, - 1957, - 1967, - 1968 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1744, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1741, - 1752, - 1760, - 1770, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1775, - 1841, - 1844, - 1898, - 1915, - 1916 - ], - [ - 50, - 51, - 52, - 53, - 54, - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 50, - 52, - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1912, - 1914, - 1915, - 1916, - 1918, - 1930, - 1941, - 1948 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2533 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2535 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2546, - 2549 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2538 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1895, - 1896, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1897, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1903, - 1915, - 1916, - 1933 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1899, - 1904, - 1909, - 1915, - 1916, - 1918, - 1930, - 1941 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1899, - 1900, - 1909, - 1915, - 1916, - 1918 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1901, - 1915, - 1916, - 1942 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1902, - 1903, - 1910, - 1915, - 1916, - 1919 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1903, - 1915, - 1916, - 1930, - 1938 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1904, - 1906, - 1909, - 1915, - 1916, - 1918 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1897, - 1898, - 1905, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1906, - 1907, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1908, - 1909, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1897, - 1898, - 1909, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1910, - 1911, - 1915, - 1916, - 1930, - 1941 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1910, - 1911, - 1915, - 1916, - 1925, - 1930, - 1933 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1890, - 1898, - 1906, - 1909, - 1912, - 1915, - 1916, - 1918, - 1930, - 1941 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1910, - 1912, - 1913, - 1915, - 1916, - 1918, - 1930, - 1938, - 1941 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1914, - 1915, - 1916, - 1930, - 1938, - 1941 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1917, - 1941 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1906, - 1909, - 1915, - 1916, - 1918, - 1930 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1919 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1920 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1897, - 1898, - 1915, - 1916, - 1921 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1923 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1924 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1915, - 1916, - 1925, - 1926 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1925, - 1927, - 1942, - 1944 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1910, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1915, - 1916, - 1930, - 1931, - 1933 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1932, - 1933 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1930, - 1931 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1933 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1934 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1895, - 1898, - 1915, - 1916, - 1930, - 1935 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1915, - 1916, - 1936, - 1937 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1936, - 1937 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1903, - 1915, - 1916, - 1918, - 1930, - 1938 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1939 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1918, - 1940 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1915, - 1916, - 1924, - 1941 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1903, - 1915, - 1916, - 1942 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1930, - 1943 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1917, - 1944 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1945 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1903, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1890, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1946 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1890, - 1898, - 1909, - 1911, - 1915, - 1916, - 1921, - 1930, - 1933, - 1941, - 1943, - 1944, - 1946 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1930, - 1947 - ], - [ - 70, - 72, - 73, - 78, - 656, - 657, - 658, - 659, - 661, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 662, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 656, - 657, - 659, - 661, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 655, - 656, - 657, - 658, - 659, - 660, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 656, - 657, - 658, - 659, - 661, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 76, - 77, - 266, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2143 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2142 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2708, - 2715 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2714 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2709 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2712, - 2713, - 2716 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2710, - 2712 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2706, - 2707, - 2708 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2396, - 2397, - 2401, - 2428, - 2429, - 2431, - 2432, - 2433, - 2435, - 2436 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2394, - 2395 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2394 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2396, - 2436 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2396, - 2397, - 2433, - 2434, - 2436 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2436 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2393, - 2436, - 2437 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2396, - 2397, - 2435, - 2436 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2396, - 2397, - 2399, - 2400, - 2435, - 2436 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2396, - 2397, - 2398, - 2435, - 2436 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2396, - 2397, - 2401, - 2428, - 2429, - 2430, - 2431, - 2432, - 2435, - 2436 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2396, - 2401, - 2430, - 2431, - 2432, - 2433, - 2435, - 2436, - 2456 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2393, - 2396, - 2397, - 2401, - 2433, - 2435 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2401, - 2436 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2436 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2426, - 2436 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2402, - 2413, - 2421, - 2422, - 2423, - 2424, - 2425, - 2427 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2426, - 2436, - 2449 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2436, - 2449 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2436, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2401, - 2436, - 2449 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2406, - 2436 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2436 - ], - [ - 70, - 72, - 73, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1930, - 1940, - 1948 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1384, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1383, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2705, - 2717 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2718 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2718, - 2719 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1654, - 1655, - 1656, - 1657, - 1658, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1654, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1387, - 1388, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1386, - 1389, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2545, - 2548 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1948, - 2697, - 2698, - 2699 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2697, - 2698 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2697 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1948, - 2696 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2437 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1913, - 1914, - 1915, - 1916, - 1918, - 2458, - 2459, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2464, - 2465, - 2466, - 2476, - 2478 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2464, - 2476 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2459 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1930, - 2459, - 2464, - 2465, - 2466, - 2467, - 2471, - 2472, - 2473, - 2474, - 2476, - 2478 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1915, - 1916, - 1918, - 2459, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2471, - 2473, - 2475, - 2476, - 2478, - 2479 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2459, - 2464, - 2465, - 2466, - 2467, - 2470, - 2474, - 2476, - 2478 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2464, - 2466, - 2471, - 2474 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2464, - 2471, - 2472, - 2474, - 2482 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2464, - 2465, - 2466, - 2471, - 2474, - 2476, - 2477, - 2478 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2458, - 2464, - 2465, - 2466, - 2471, - 2474, - 2476, - 2477 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2459, - 2462, - 2464, - 2465, - 2466, - 2467, - 2471, - 2474, - 2475, - 2477, - 2478 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2458, - 2461, - 2482 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1913, - 1914, - 1915, - 1916, - 2464 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2464, - 2465, - 2476 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1913, - 1914, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1913, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1915, - 1916, - 2493 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2497 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2495, - 2496 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2493, - 2494, - 2498, - 2503, - 2507 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1915, - 1916, - 2493, - 2504 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2506 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2504, - 2505 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2493 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2499, - 2500, - 2501, - 2502 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1915, - 1916, - 1918, - 2492 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2546 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2534, - 2547 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2539, - 2541 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2539, - 2546, - 2549 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1915, - 1916, - 1930 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2098 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2098, - 2099, - 2100, - 2101, - 2102, - 2105, - 2106 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2101 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2105 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2103, - 2104 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2164 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2164, - 2165, - 2166 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2107, - 2112, - 2140, - 2141, - 2152, - 2153, - 2161, - 2163 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2112 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2161 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2145, - 2146, - 2147, - 2148 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2131 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1918, - 1930 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2108 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1915, - 1916, - 2108, - 2109, - 2110, - 2111 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2154 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2153 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2130 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2119 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2120, - 2121, - 2130 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2124 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2119, - 2120 - ], - [ - 50, - 55, - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2130 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2128, - 2130 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2121, - 2122, - 2123, - 2125, - 2126, - 2127, - 2129 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2118, - 2130, - 2135, - 2151, - 2153 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1915, - 1916, - 2135, - 2136, - 2137, - 2167 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1915, - 1916, - 2153 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2130, - 2153 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2113, - 2114, - 2115, - 2116, - 2152 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2152, - 2153 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2131, - 2133, - 2135, - 2138, - 2153, - 2167 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1912, - 1914, - 1915, - 1916, - 1930, - 2113, - 2117, - 2118, - 2131, - 2140, - 2141, - 2144, - 2149, - 2150, - 2153, - 2167 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2113 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2141, - 2149 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1915, - 1916, - 2131, - 2153, - 2167 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1915, - 1916, - 2117, - 2118, - 2131, - 2132, - 2133, - 2134, - 2139, - 2161, - 2167 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2162, - 2167 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2118, - 2130, - 2152, - 2153, - 2161 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1616, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1912, - 1915, - 1916, - 1948 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1915, - 1916, - 1946, - 2468, - 2469 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 866, - 867, - 868, - 869, - 870, - 872, - 873, - 930, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 675, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 865, - 867, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 675, - 871, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 867, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 675, - 866, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 929, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1280, - 1281, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1280, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2583 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916, - 2583 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 929, - 1473, - 1844, - 1898, - 1915, - 1916, - 2582 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 881, - 890, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 908, - 909, - 929, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 896, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 908, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 924, - 925, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 924, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 923, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 890, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 881, - 884, - 912, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 881, - 911, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 913, - 914, - 916, - 917, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 912, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 912, - 915, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 885, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 896, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 881, - 884, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 875, - 876, - 879, - 880, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 883, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 881, - 884, - 886, - 887, - 889, - 890, - 892, - 894, - 895, - 896, - 908, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 884, - 885, - 895, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 881, - 884, - 885, - 887, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 881, - 882, - 884, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 881, - 885, - 898, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 885, - 888, - 891, - 893, - 898, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 881, - 884, - 885, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 884, - 885, - 889, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 881, - 885, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 884, - 885, - 896, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 881, - 884, - 885, - 890, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 884, - 885, - 886, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 874, - 875, - 876, - 877, - 878, - 881, - 882, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 910, - 918, - 919, - 920, - 921, - 922, - 926, - 927, - 928, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 874, - 875, - 876, - 881, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1470, - 1471, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1470, - 1473, - 1480, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1470, - 1471, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1466, - 1468, - 1472, - 1473, - 1475, - 1479, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1469, - 1470, - 1473, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1476, - 1477, - 1478, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1472, - 1486, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1465, - 1473, - 1474, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1464, - 1465, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1465, - 1466, - 1468, - 1475, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1465, - 1467, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1465, - 1471, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1467, - 1470, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1467, - 1469, - 1472, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1646, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1646, - 1647, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2060, - 2061, - 2062 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 945, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 945, - 947, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 947, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 939, - 940, - 941, - 942, - 943, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 937, - 938, - 944, - 945, - 946, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 945, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1473, - 1681, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916, - 2609, - 2610, - 2611 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2609 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916, - 2609, - 2610 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1473, - 1602, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 717, - 718, - 719, - 720, - 721, - 734, - 802, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 713, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 713, - 806, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 806, - 807, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 804, - 805, - 808, - 809, - 810, - 811, - 815, - 816, - 817, - 818, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 812, - 813, - 814, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 713, - 812, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 713, - 805, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 712, - 713, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 712, - 713, - 805, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 693, - 722, - 723, - 724, - 728, - 732, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 725, - 726, - 727, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 693, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 693, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 729, - 730, - 731, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 692, - 693, - 706, - 711, - 712, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 713, - 716, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 733, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 713, - 823, - 824, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 713, - 735, - 736, - 795, - 797, - 798, - 799, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 713, - 736, - 757, - 794, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 716, - 800, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 801, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 713, - 794, - 795, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 795, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 706, - 795, - 796, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 706, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 707, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 694, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 694, - 695, - 696, - 697, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 706, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 698, - 706, - 708, - 710, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 758, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 762, - 765, - 767, - 777, - 786, - 787, - 788, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 706, - 763, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 706, - 759, - 762, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 763, - 764, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 705, - 706, - 795, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 766, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 778, - 779, - 780, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 706, - 762, - 777, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 706, - 762, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 782, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 698, - 706, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 781, - 783, - 785, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 784, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 713, - 762, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 777, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 706, - 768, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 768, - 769, - 770, - 776, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 733, - 768, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 768, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 771, - 772, - 773, - 774, - 775, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 768, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 706, - 733, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 760, - 761, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 698, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 789, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 709, - 711, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 698, - 699, - 700, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 700, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 701, - 702, - 704, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 699, - 700, - 701, - 702, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 827, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 706, - 711, - 713, - 714, - 715, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 692, - 713, - 792, - 794, - 795, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 793, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 713, - 793, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 793, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 793, - 833, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 833, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 676, - 711, - 712, - 713, - 716, - 717, - 719, - 733, - 734, - 736, - 757, - 803, - 819, - 820, - 821, - 822, - 823, - 825, - 826, - 828, - 844, - 845, - 846, - 847, - 849, - 850, - 857, - 858, - 859, - 863, - 864, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 713, - 845, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 793, - 848, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 712, - 713, - 714, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 714, - 715, - 737, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 713, - 738, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 712, - 713, - 738, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 750, - 751, - 752, - 753, - 754, - 755, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 735, - 738, - 749, - 756, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 851, - 852, - 853, - 854, - 855, - 856, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 713, - 791, - 795, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 790, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 692, - 713, - 789, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 860, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 860, - 861, - 862, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 692, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 178, - 179, - 180, - 181, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 178, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 177, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 178, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 177, - 178, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1395, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1336, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1337, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1335, - 1338, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1338, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1338, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1338, - 1341, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1333, - 1338, - 1339, - 1340, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1332, - 1338, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1334, - 1335, - 1336, - 1337, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1639, - 1640, - 1641, - 1642, - 1643, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1513, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1535, - 1536, - 1537, - 1538, - 1540, - 1541, - 1542, - 1543, - 1544, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1511, - 1512, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1512, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1539, - 1602, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1511, - 1539, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1511, - 1539, - 1545, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1511, - 1539, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1511, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1473, - 1511, - 1539, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1539, - 1602, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1539, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1473, - 1511, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1511, - 1513, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1473, - 1511, - 1512, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1473, - 1511, - 1512, - 1513, - 1514, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1511, - 1512, - 1535, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1511, - 1512, - 1534, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1473, - 1511, - 1514, - 1568, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1514, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1511, - 1514, - 1568, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1601, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1511, - 1512, - 1513, - 1515, - 1516, - 1517, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1566, - 1567, - 1599, - 1600, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1515, - 1565, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1564, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2035 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2031, - 2032, - 2033, - 2034 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916, - 2030, - 2031 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916, - 2032, - 2033 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916, - 2031 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2028, - 2029 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2613, - 2615, - 2616, - 2617, - 2618, - 2619 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2613, - 2614 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916, - 2613, - 2614, - 2616, - 2617 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916, - 2613, - 2614 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916, - 2613, - 2614 - ], - [ - 70, - 72, - 73, - 167, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916, - 2612 - ], - [ - 70, - 72, - 73, - 78, - 657, - 658, - 659, - 964, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 167, - 657, - 658, - 659, - 963, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 679, - 680, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 691, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 683, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 677, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 679, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 689, - 690, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 689, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 679, - 683, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 101, - 102, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 82, - 88, - 89, - 92, - 95, - 97, - 98, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 99, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 108, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 71, - 72, - 73, - 81, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 79, - 81, - 82, - 86, - 100, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 101, - 130, - 131, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 79, - 81, - 82, - 86, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 71, - 72, - 73, - 115, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 79, - 86, - 100, - 101, - 117, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 80, - 82, - 85, - 86, - 88, - 100, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 79, - 81, - 86, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 79, - 81, - 86, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 79, - 80, - 81, - 82, - 84, - 86, - 87, - 88, - 100, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 100, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 71, - 72, - 73, - 78, - 79, - 81, - 82, - 85, - 86, - 100, - 101, - 117, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 80, - 82, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 88, - 100, - 101, - 128, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 79, - 84, - 101, - 128, - 130, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 88, - 128, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 79, - 80, - 82, - 84, - 85, - 100, - 101, - 117, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 82, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 80, - 82, - 83, - 84, - 85, - 100, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 71, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 107, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 79, - 80, - 81, - 82, - 85, - 90, - 91, - 100, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 82, - 83, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 88, - 89, - 94, - 100, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 89, - 94, - 96, - 100, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 82, - 86, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 100, - 143, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 81, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 81, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 100, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 90, - 99, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 78, - 79, - 81, - 82, - 85, - 100, - 101, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 153, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 71, - 72, - 73, - 167, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 115, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 93, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 74, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 71, - 72, - 73, - 74, - 75, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 71, - 73, - 167, - 657, - 658, - 659, - 1473, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2438 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2391, - 2392, - 2437 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2391, - 2438 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1909, - 1915, - 1916, - 1948 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2569 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2578, - 2579, - 2580 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2581 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1856, - 1859, - 1862, - 1863, - 1898, - 1915, - 1916, - 1941 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1859, - 1898, - 1915, - 1916, - 1930, - 1941 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1859, - 1863, - 1898, - 1915, - 1916, - 1941 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1930 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1853, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1857, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1855, - 1856, - 1859, - 1898, - 1915, - 1916, - 1941 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1918, - 1938 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1853, - 1898, - 1915, - 1916, - 1948 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1855, - 1859, - 1898, - 1915, - 1916, - 1918, - 1941 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1850, - 1851, - 1852, - 1854, - 1858, - 1898, - 1909, - 1915, - 1916, - 1930, - 1941 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1859, - 1867, - 1875, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1851, - 1857, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1859, - 1884, - 1885, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1851, - 1854, - 1859, - 1898, - 1915, - 1916, - 1933, - 1941, - 1948 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1859, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1855, - 1859, - 1898, - 1915, - 1916, - 1941 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1850, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1853, - 1854, - 1855, - 1857, - 1858, - 1859, - 1860, - 1861, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1885, - 1886, - 1887, - 1888, - 1889, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1859, - 1877, - 1880, - 1898, - 1906, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1859, - 1867, - 1868, - 1869, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1857, - 1859, - 1868, - 1870, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1858, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1851, - 1853, - 1859, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1859, - 1863, - 1868, - 1870, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1863, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1857, - 1859, - 1862, - 1898, - 1915, - 1916, - 1941 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1851, - 1855, - 1859, - 1867, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1859, - 1877, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1870, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1853, - 1859, - 1884, - 1898, - 1915, - 1916, - 1933, - 1946, - 1948 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 934, - 935, - 956, - 957, - 958, - 960, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 956, - 957, - 958, - 959, - 960, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 934, - 956, - 957, - 958, - 960, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2176 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 1920, - 2352, - 2528, - 2531 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1899, - 1910, - 1915, - 1916, - 1919, - 1920, - 1925 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1910, - 1911, - 1915, - 1916, - 1919, - 1920, - 1941, - 2700, - 2701 - ], - [ - 70, - 72, - 73, - 651, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 623, - 647, - 650, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 623, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 644, - 646, - 647, - 648, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 638, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 199, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 643, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 624, - 638, - 649, - 652, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 77, - 198, - 266, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2721 - ], - [ - 70, - 72, - 73, - 639, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 639, - 640, - 641, - 642, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 519, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 516, - 517, - 519, - 522, - 525, - 529, - 546, - 553, - 555, - 556, - 557, - 558, - 588, - 590, - 591, - 592, - 593, - 594, - 595, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 607, - 608, - 609, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 545, - 554, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 519, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 276, - 277, - 620, - 623, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 609, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 518, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 518, - 559, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 519, - 522, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 276, - 518, - 559, - 560, - 578, - 579, - 580, - 588, - 589, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 518, - 559, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 276, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 518, - 522, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 276, - 277, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 276, - 277, - 522, - 552, - 554, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 552, - 554, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 552, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 552, - 554, - 606, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 516, - 517, - 552, - 554, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 552, - 554, - 620, - 623, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 516, - 552, - 554, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 552, - 610, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 545, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 529, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 549, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 526, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 276, - 277, - 596, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 522, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 517, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 276, - 519, - 522, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 516, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 517, - 519, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 517, - 620, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 517, - 518, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 516, - 517, - 529, - 553, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 516, - 517, - 529, - 545, - 553, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 277, - 517, - 522, - 548, - 549, - 550, - 551, - 554, - 590, - 591, - 592, - 593, - 595, - 597, - 601, - 605, - 609, - 612, - 614, - 619, - 620, - 621, - 622, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 276, - 520, - 521, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 516, - 517, - 518, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 276, - 522, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 564, - 566, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 562, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 561, - 565, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 570, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 562, - 564, - 565, - 568, - 569, - 571, - 572, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 562, - 564, - 565, - 566, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 562, - 564, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 562, - 564, - 565, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 564, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 564, - 566, - 568, - 570, - 576, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 371, - 465, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 465, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 366, - 369, - 370, - 371, - 465, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 465, - 481, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 366, - 369, - 370, - 371, - 372, - 465, - 501, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 367, - 368, - 369, - 501, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 370, - 465, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 294, - 295, - 308, - 339, - 353, - 477, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 371, - 465, - 481, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 368, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 366, - 369, - 370, - 371, - 372, - 465, - 488, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 367, - 368, - 369, - 488, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 310, - 477, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 366, - 369, - 370, - 371, - 372, - 465, - 494, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 367, - 368, - 369, - 494, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 477, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 366, - 369, - 370, - 371, - 372, - 465, - 482, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 368, - 369, - 482, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 471, - 477, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 367, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 368, - 369, - 373, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 368, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 368, - 369, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 368, - 373, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 314, - 324, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 396, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 281, - 283, - 315, - 376, - 381, - 388, - 390, - 391, - 392, - 393, - 408, - 409, - 418, - 420, - 425, - 426, - 428, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 281, - 283, - 284, - 313, - 315, - 393, - 405, - 406, - 407, - 428, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 313, - 314, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 315, - 367, - 368, - 369, - 370, - 372, - 374, - 375, - 376, - 377, - 418, - 420, - 439, - 458, - 462, - 463, - 464, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 506, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 293, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 302, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 285, - 297, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 309, - 413, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 287, - 297, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 285, - 291, - 294, - 295, - 296, - 298, - 303, - 304, - 305, - 306, - 307, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 352, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 285, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 286, - 287, - 288, - 289, - 292, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 287, - 291, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 328, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 286, - 299, - 300, - 301, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 285, - 291, - 297, - 309, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 284, - 291, - 293, - 302, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 285, - 291, - 354, - 355, - 356, - 357, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 290, - 348, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 287, - 290, - 297, - 346, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 309, - 317, - 321, - 326, - 327, - 330, - 332, - 337, - 338, - 340, - 341, - 350, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 287, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 290, - 291, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 291, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 290, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 316, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 344, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 285, - 287, - 291, - 292, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 333, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 287, - 291, - 317, - 319, - 320, - 321, - 326, - 327, - 330, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 336, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 344, - 390, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 390, - 421, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 323, - 422, - 423, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 291, - 313, - 321, - 327, - 330, - 337, - 352, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 285, - 287, - 309, - 318, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 318, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 380, - 389, - 390, - 405, - 406, - 407, - 411, - 412, - 413, - 414, - 419, - 421, - 422, - 423, - 424, - 445, - 470, - 471, - 472, - 473, - 474, - 475, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 340, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 340, - 341, - 411, - 412, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 324, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 411, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 285, - 287, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 309, - 315, - 316, - 317, - 321, - 325, - 326, - 327, - 331, - 337, - 346, - 349, - 351, - 353, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 287, - 291, - 322, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 284, - 287, - 291, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 325, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 309, - 317, - 325, - 327, - 330, - 332, - 333, - 334, - 335, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 345, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 291, - 313, - 322, - 324, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 287, - 323, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 309, - 317, - 318, - 321, - 326, - 327, - 330, - 332, - 337, - 338, - 347, - 348, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 347, - 348, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 329, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 314, - 315, - 389, - 390, - 391, - 392, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 315, - 380, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 315, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 313, - 315, - 387, - 427, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 333, - 427, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 287, - 391, - 392, - 427, - 445, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 337, - 388, - 394, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 315, - 340, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 396, - 411, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 284, - 287, - 313, - 315, - 323, - 324, - 387, - 390, - 392, - 396, - 398, - 424, - 428, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 278, - 279, - 280, - 282, - 397, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 315, - 325, - 392, - 396, - 409, - 427, - 428, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 315, - 343, - 427, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 284, - 291, - 313, - 315, - 428, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 391, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 390, - 428, - 429, - 472, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 318, - 391, - 392, - 427, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 315, - 344, - 387, - 428, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 315, - 329, - 452, - 453, - 454, - 455, - 458, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 366, - 368, - 375, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 366, - 368, - 374, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 313, - 315, - 393, - 414, - 416, - 428, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 281, - 315, - 391, - 393, - 408, - 419, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 314, - 329, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 279, - 281, - 283, - 314, - 315, - 316, - 351, - 354, - 367, - 374, - 375, - 376, - 377, - 388, - 391, - 393, - 395, - 397, - 398, - 400, - 401, - 404, - 428, - 429, - 448, - 449, - 451, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 281, - 283, - 315, - 387, - 392, - 408, - 410, - 417, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 393, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 278, - 281, - 283, - 314, - 315, - 316, - 331, - 354, - 367, - 374, - 375, - 376, - 377, - 392, - 397, - 401, - 404, - 428, - 446, - 447, - 448, - 449, - 450, - 451, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 314, - 337, - 393, - 428, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 313, - 315, - 422, - 424, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 282, - 283, - 314, - 315, - 353, - 354, - 367, - 374, - 376, - 377, - 388, - 391, - 393, - 395, - 401, - 428, - 429, - 446, - 447, - 448, - 451, - 454, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 354, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 314, - 315, - 319, - 392, - 393, - 400, - 428, - 429, - 447, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 427, - 428, - 448, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 314, - 396, - 398, - 413, - 415, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 392, - 397, - 448, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 315, - 346, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 281, - 283, - 315, - 316, - 327, - 345, - 346, - 354, - 367, - 374, - 375, - 376, - 377, - 387, - 388, - 391, - 392, - 393, - 395, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 408, - 428, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 280, - 281, - 283, - 314, - 315, - 316, - 349, - 354, - 367, - 374, - 375, - 376, - 377, - 388, - 391, - 393, - 395, - 397, - 400, - 401, - 404, - 428, - 429, - 447, - 448, - 449, - 451, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 393, - 428, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 366, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 380, - 389, - 390, - 405, - 406, - 407, - 411, - 412, - 413, - 414, - 419, - 421, - 422, - 423, - 424, - 445, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 297, - 306, - 308, - 310, - 311, - 312, - 353, - 354, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 367, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 278, - 279, - 280, - 282, - 330, - 375, - 376, - 388, - 397, - 409, - 452, - 453, - 454, - 455, - 456, - 457, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 366, - 367, - 368, - 371, - 373, - 375, - 467, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 367, - 371, - 375, - 467, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 366, - 367, - 368, - 371, - 373, - 374, - 375, - 376, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 376, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 366, - 367, - 368, - 371, - 373, - 374, - 375, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 297, - 315, - 367, - 368, - 374, - 375, - 439, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 440, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 298, - 314, - 378, - 381, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 292, - 308, - 314, - 367, - 374, - 376, - 377, - 384, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 308, - 310, - 314, - 315, - 367, - 374, - 376, - 377, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 308, - 314, - 315, - 367, - 374, - 376, - 377, - 379, - 381, - 382, - 383, - 385, - 386, - 430, - 431, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 308, - 314, - 367, - 374, - 376, - 377, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 292, - 293, - 314, - 315, - 378, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 310, - 314, - 315, - 367, - 374, - 376, - 377, - 393, - 427, - 429, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 311, - 314, - 367, - 374, - 376, - 377, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 312, - 314, - 315, - 367, - 374, - 376, - 377, - 379, - 381, - 384, - 431, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 314, - 355, - 358, - 367, - 374, - 376, - 377, - 393, - 428, - 429, - 459, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 314, - 359, - 367, - 374, - 376, - 377, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 314, - 360, - 367, - 374, - 376, - 377, - 409, - 440, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 306, - 314, - 367, - 374, - 376, - 377, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 314, - 361, - 367, - 374, - 376, - 377, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 314, - 362, - 367, - 374, - 376, - 377, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 314, - 363, - 367, - 374, - 376, - 377, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 314, - 364, - 367, - 374, - 376, - 377, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 314, - 365, - 367, - 374, - 376, - 377, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 292, - 299, - 314, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 375, - 376, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 441, - 442, - 443, - 444, - 460, - 461, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 301, - 314, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 278, - 279, - 280, - 375, - 388, - 397, - 409, - 452, - 453, - 454, - 458, - 460, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 315, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 278, - 279, - 280, - 282, - 283, - 367, - 377, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 283, - 367, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 278, - 279, - 280, - 281, - 282, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 581, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 583, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 581, - 583, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 275, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 64, - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1139, - 1143, - 1145, - 1147, - 1184, - 1186, - 1188, - 1190, - 1220, - 1222, - 1224, - 1226, - 1228, - 1230, - 1232, - 1234, - 1236, - 1238, - 1240, - 1242, - 1246, - 1250, - 1253, - 1255, - 1258, - 1260, - 1262, - 1264, - 1266, - 1268, - 1270, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1137, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1137, - 1138, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1196, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1231, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1269, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1267, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1256, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1257, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 972, - 973, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1140, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1145, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1254, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1227, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1139, - 1140, - 1142, - 1144, - 1145, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1146, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1135, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1259, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1212, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1233, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1214, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1263, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1261, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1252, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1251, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1239, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1241, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1265, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 974, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1249, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1248, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1245, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1244, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1144, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1143, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1148, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1139, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 968, - 972, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1136, - 1138, - 1139, - 1140, - 1141, - 1142, - 1144, - 1146, - 1147, - 1149, - 1150, - 1152, - 1153, - 1177, - 1178, - 1180, - 1181, - 1182, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1271, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1156, - 1173, - 1174, - 1175, - 1176, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 223, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 223, - 657, - 658, - 659, - 1153, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1173, - 1174, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 263, - 650, - 657, - 658, - 659, - 1152, - 1155, - 1174, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 650, - 657, - 658, - 659, - 1174, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 199, - 650, - 657, - 658, - 659, - 1156, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1174, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 650, - 657, - 658, - 659, - 1156, - 1174, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1152, - 1156, - 1173, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 968, - 971, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1179, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 262, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 972, - 981, - 1047, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 972, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 972, - 973, - 974, - 975, - 981, - 982, - 983, - 1046, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 972, - 976, - 977, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1047, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 972, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1047, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 980, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 980, - 1040, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 984, - 1041, - 1042, - 1043, - 1044, - 1045, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 972, - 973, - 1049, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 972, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 981, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 968, - 972, - 981, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 981, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 981, - 1049, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 981, - 1047, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 974, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 972, - 973, - 981, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 981, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 976, - 977, - 978, - 979, - 980, - 981, - 983, - 1046, - 1047, - 1048, - 1100, - 1106, - 1107, - 1111, - 1112, - 1133, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1101, - 1102, - 1103, - 1104, - 1105, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 976, - 981, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 976, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 976, - 981, - 1047, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 972, - 973, - 976, - 977, - 978, - 979, - 980, - 981, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1047, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 974, - 978, - 981, - 1047, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1108, - 1109, - 1110, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 973, - 977, - 981, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 977, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 972, - 973, - 974, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1047, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1189, - 1191, - 1193, - 1195, - 1197, - 1199, - 1203, - 1205, - 1207, - 1209, - 1213, - 1215, - 1217, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1191, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1195, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1185, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1197, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1235, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1229, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1205, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1183, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1207, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1211, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1213, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1187, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1223, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1225, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1237, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1247, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1243, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1221, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1142, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1189, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 968, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 971, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 969, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 970, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1219, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 978, - 979, - 980, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1134, - 1135, - 1138, - 1140, - 1142, - 1144, - 1146, - 1183, - 1184, - 1189, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1221, - 1223, - 1225, - 1227, - 1229, - 1235, - 1243, - 1252, - 1254, - 1257, - 1261, - 1265, - 1267, - 1272, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1193, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1199, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1201, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1203, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1209, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1215, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1217, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 77, - 198, - 266, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916, - 2722 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 967, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 968, - 969, - 970, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 968, - 969, - 971, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 221, - 222, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 63, - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 62, - 70, - 72, - 73, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 273, - 274, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 273, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 272, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 264, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 184, - 199, - 218, - 263, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 77, - 184, - 218, - 224, - 265, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 184, - 199, - 219, - 220, - 223, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 77, - 266, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 184, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 210, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 184, - 208, - 209, - 211, - 212, - 217, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 184, - 216, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 208, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 190, - 191, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 192, - 193, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 192, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 203, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 194, - 196, - 199, - 200, - 201, - 202, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 196, - 199, - 203, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 199, - 201, - 205, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 204, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 77, - 190, - 266, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 195, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 186, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 188, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 187, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 189, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 225, - 226, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 225, - 234, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 199, - 205, - 208, - 225, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 199, - 225, - 226, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 199, - 225, - 251, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 199, - 237, - 244, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 208, - 225, - 226, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 225, - 230, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 199, - 208, - 213, - 214, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 199, - 213, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 205, - 208, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 215, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 206, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 77, - 185, - 205, - 266, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 207, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 77, - 197, - 198, - 266, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 221, - 657, - 658, - 659, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1727, - 1728, - 1731, - 1732, - 1733, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1718, - 1726, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1718, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1718, - 1729, - 1730, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1717, - 1718, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1734, - 1736, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1726, - 1729, - 1730, - 1735, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1717, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1755, - 1771, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1758, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1767, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1744, - 1758, - 1762, - 1763, - 1764, - 1765, - 1772, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1744, - 1763, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1743, - 1774, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1744, - 1756, - 1774, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1741, - 1755, - 1757, - 1763, - 1767, - 1772, - 1774, - 1776, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1741, - 1743, - 1744, - 1752, - 1755, - 1756, - 1757, - 1773, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1743, - 1755, - 1770, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1745, - 1746, - 1750, - 1751, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1712, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1703, - 1704, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1701, - 1702, - 1703, - 1705, - 1706, - 1710, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1702, - 1703, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1711, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1703, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1701, - 1702, - 1703, - 1706, - 1707, - 1708, - 1709, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1701, - 1702, - 1712, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 266, - 657, - 658, - 659, - 1713, - 1716, - 1738, - 1739, - 1740, - 1777, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1715, - 1844, - 1898, - 1915, - 1916, - 1920 - ], - [ - 70, - 72, - 73, - 588, - 657, - 658, - 659, - 1844, - 1898, - 1911, - 1915, - 1916, - 1920 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1738, - 1778, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1737, - 1738, - 1739, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 266, - 657, - 658, - 659, - 1713, - 1844, - 1898, - 1915, - 1916 - ], - [ - 70, - 72, - 73, - 266, - 657, - 658, - 659, - 1716, - 1737, - 1740, - 1844, - 1898, - 1899, - 1910, - 1911, - 1915, - 1916, - 1920 - ], - [ - 70, - 72, - 73, - 657, - 658, - 659, - 1776, - 1844, - 1898, - 1915, - 1916 - ] - ], - "fileInfos": [ - { - "version": "c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4", - "impliedFormat": 1 - }, - { - "version": "3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75", - "impliedFormat": 1 - }, - { - "version": "e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962", - "impliedFormat": 1 - }, - { - "version": "5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8", - "impliedFormat": 1 - }, - { - "version": "68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7", - "impliedFormat": 1 - }, - { - "version": "5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4", - "impliedFormat": 1 - }, - { - "version": "080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "c2c2a861a338244d7dd700d0c52a78916b4bb75b98fc8ca5e7c501899fc03796", - "impliedFormat": 1 - }, - { - "version": "b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43", - "impliedFormat": 1 - }, - { - "version": "adb467429462e3891de5bb4a82a4189b92005d61c7f9367c089baf03997c104e", - "impliedFormat": 1 - }, - { - "version": "670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed", - "impliedFormat": 1 - }, - { - "version": "13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62", - "impliedFormat": 1 - }, - { - "version": "069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9", - "impliedFormat": 1 - }, - "6a38eeec7a3c9745478239b51a57ac48fc8aa7f79abe3ff82fe866c5ae559dc4", - { - "version": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881", - "impliedFormat": 1 - }, - { - "version": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881", - "impliedFormat": 1 - }, - { - "version": "f4c5cf9bb78e85f15dc27180260637cf24b2a24bc39e0788783a3accc4dde614", - "impliedFormat": 1 - }, - { - "version": "f8aa5e4adfb4f9be4c770a10413bebcade004e18a3cbe23918470aaf48c48d65", - "affectsGlobalScope": true - }, - { - "version": "b623ea4bf5ee763294a03e348ff303b06fe9b168ef0873e5e9a06139e6fef071", - "affectsGlobalScope": true - }, - { - "version": "bed89253ece0bb183c07ddede67a70917b8bbb84e37f24427123fa269834b990", - "impliedFormat": 99 - }, - { - "version": "5abe279c3717db9fd50d1f68344e07631bcc11ed2bc754b282325088f489b7e9", - "impliedFormat": 99 - }, - "3eeb1b4ca0d61a5f5c096eed5f26ffa1f417adc8aaf7a92db95aeab63c13c887", - { - "version": "e54127956052f666d2255bd806e67775594206dd5771d83244b54f37b72d2543", - "impliedFormat": 99 - }, - { - "version": "5abe279c3717db9fd50d1f68344e07631bcc11ed2bc754b282325088f489b7e9", - "impliedFormat": 99 - }, - { - "version": "6b713e7a765e9b62bc4e032ddfb153a7dbc106102bb7c79348624f7d9a45cc17", - "impliedFormat": 1 - }, - "ffdb35e554b3e7ca09f591d80833f321b7e5793d1b8a9c468994be599ab2e8f2", - { - "version": "4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188", - "impliedFormat": 1 - }, - { - "version": "3a909e8789a4f8b5377ef3fb8dc10d0c0a090c03f2e40aab599534727457475a", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "fd412dd6372493eb8e3e95cae8687d35e4d34dde905a33e0ee47b74224cdd6ab", - "impliedFormat": 1 - }, - { - "version": "9d3b119c15e8eeb9a8fbeca47e0165ca7120704d90bf123b16ee5b612e2ecc9d", - "impliedFormat": 1 - }, - { - "version": "9f66eb21b8f041974625ec8f8ab3c6c36990b900b053ba962bb8b233301c8e47", - "impliedFormat": 1 - }, - { - "version": "005319c82222e57934c7b211013eb6931829e46b2a61c5d9a1c3c25f8dc3ea90", - "impliedFormat": 1 - }, - { - "version": "54ccb63049fb6d1d3635f3dc313ebfe3a8059f6b6afa8b9d670579534f6e25a6", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9", - "impliedFormat": 1 - }, - { - "version": "0ff1b165090b491f5e1407ae680b9a0bc3806dc56827ec85f93c57390491e732", - "impliedFormat": 1 - }, - { - "version": "232f660363b3b189f7be7822ed71e907195d1a85bc8d55d2b7ce3f09b2136938", - "impliedFormat": 1 - }, - { - "version": "e745388cfad9efb4e5a9a15a2c6b66d54094dd82f8d0c2551064e216f7b51526", - "impliedFormat": 1 - }, - { - "version": "d11cbcaf3a54861b1d348ba2adeeba67976ce0b33eef5ea6e4bddc023d2ac4b2", - "impliedFormat": 1 - }, - { - "version": "cf1e23408bb2e38cb90d109cf8027c829f19424ad7a611c74edf39e1f195fe22", - "impliedFormat": 1 - }, - { - "version": "8ebf448e9837fda1a368acbb575b0e28843d5b2a3fda04bce76248b64326ea49", - "impliedFormat": 1 - }, - { - "version": "91b9f6241fca7843985aa31157cfa08cc724c77d91145a4d834d27cdde099c05", - "impliedFormat": 1 - }, - { - "version": "c5dc49c81f9cb20dff16b7933b50e19ac3565430cf685bbe51bcbcdb760fc03f", - "impliedFormat": 1 - }, - { - "version": "d78d4bc8bbda13ed147b23e63ff4ac83e3dcf4f07012afadd59e8a62473b5894", - "impliedFormat": 1 - }, - { - "version": "3dfa3a6f2a62259b56fa7bcebfbacf886848dfa037298be5bed07c7a0381ee4f", - "impliedFormat": 1 - }, - { - "version": "1882680f8c88c5648d603408dd1943857ca831a815e33d3126be8368f7a69252", - "impliedFormat": 1 - }, - { - "version": "24b6109bdf5e2027f0a4366b9e1f988d648f08ea3748ebd690e76bba65115bf9", - "impliedFormat": 1 - }, - { - "version": "e7d56fa3c64c44b29fa11d840b1fe04f6d782fc2e341a1f01b987f5e59f34266", - "impliedFormat": 1 - }, - { - "version": "0f86beb951b048eb7e0a17609e934a59a8686683b2134632975baeacaf53c23d", - "impliedFormat": 1 - }, - { - "version": "e1835114d3449689778b4d41a5dde326cf82c5d13ddd902a9b71f5bf223390fb", - "impliedFormat": 1 - }, - { - "version": "16000ce3a50ff9513f802cef9ec1ce95d4b93ce251d01fd82d5c61a34e0e35bd", - "impliedFormat": 1 - }, - { - "version": "42bacb33cddecbcfe3e043ee1117ba848801749e44f947626765b3e0aec74b1c", - "impliedFormat": 1 - }, - { - "version": "4e1bfec0f44a463f25cc26528a4505bc592feef555706311a143481f69a21d6f", - "impliedFormat": 1 - }, - { - "version": "cd2156bc8e4d54d52a2817d1b6f4629a5dd3173b1d8bb0fc893ee678d6a78ecd", - "impliedFormat": 1 - }, - { - "version": "60526d9010e8ccb2a76a59821061463464c3acd5bc7a50320df6d2e4e0d6e4f7", - "impliedFormat": 1 - }, - { - "version": "35e068ea47e779f232417d5c9fd595af9a85d26b2b77f89ae6afce17343d31e7", - "impliedFormat": 1 - }, - { - "version": "963dfba66d1744c7b35ae81cf6ebda2921df916806b6958ba093b63b0ef8c74a", - "impliedFormat": 1 - }, - { - "version": "70533e87167cf88facbec8ef771f9ad98021d796239c1e6f7826e0f386a725be", - "impliedFormat": 1 - }, - { - "version": "0600b6952abba5696c5079a62cc14430ba48682b1e1b7fbade74290c9857cd9a", - "impliedFormat": 1 - }, - { - "version": "9054417b5760061bc5fe31f9eee5dc9bf018339b0617d3c65dd1673c8e3c0f25", - "impliedFormat": 1 - }, - { - "version": "c6b68cd2e7838e91e05ede0a686815f521024281768f338644f6c0e0ad8e63cd", - "impliedFormat": 1 - }, - { - "version": "20c7a8cb00fda35bf50333488657c20fd36b9af9acb550f8410ef3e9bef51ef0", - "impliedFormat": 1 - }, - { - "version": "c94f70562ae60797cce564c3bebbaaf1752c327d5063d6ac152aa5ca1616c267", - "impliedFormat": 1 - }, - { - "version": "2aeb5fcdfc884b16015617d263fd8d1a8513f7efe23880be4e5f0bdb3794b37c", - "impliedFormat": 1 - }, - { - "version": "b561170fbe8d4292425e1dfa52406c8d97575681f7a5e420d11d9f72f7c29e38", - "impliedFormat": 1 - }, - { - "version": "5fe94f3f6411a0f6293f16fdc8e02ee61138941847ce91d6f6800c97fac22fcd", - "impliedFormat": 1 - }, - { - "version": "7f7c0ecc3eeeef905a3678e540947f4fbbc1a9c76075419dcc5fbfc3df59cb0b", - "impliedFormat": 1 - }, - { - "version": "df3303018d45c92be73fb4a282d5a242579f96235f5e0f8981983102caf5feca", - "impliedFormat": 1 - }, - { - "version": "92c10b9a2fcc6e4e4a781c22a97a0dac735e29b9059ecb6a7fa18d5b6916983b", - "impliedFormat": 1 - }, - { - "version": "8205e62a7310ac0513747f6d84175400680cff372559bc5fbe2df707194a295d", - "impliedFormat": 1 - }, - { - "version": "084d0df6805570b6dc6c8b49c3a71d5bdfe59606901e0026c63945b68d4b080a", - "impliedFormat": 1 - }, - { - "version": "9235e7b554d1c15ea04977b69cd123c79bd10f81704479ad5145e34d0205bf07", - "impliedFormat": 1 - }, - { - "version": "0f066f9654e700a9cf79c75553c934eb14296aa80583bd2b5d07e2d582a3f4ee", - "impliedFormat": 1 - }, - { - "version": "269c5d54104033b70331343bd931c9933852a882391ed6bd98c3d8b7d6465d22", - "impliedFormat": 1 - }, - { - "version": "a56b8577aaf471d9e60582065a8193269310e8cae48c1ce4111ed03216f5f715", - "impliedFormat": 1 - }, - { - "version": "486ae83cd51b813095f6716f06cc9b2cf480ad1d6c7f8ec59674d6c858cd2407", - "impliedFormat": 1 - }, - { - "version": "039f0a1f6d67514bbfea62ffbb0822007ce35ba180853ec9034431f60f63dbe6", - "impliedFormat": 1 - }, - { - "version": "fff527e2567a24dd634a30268f1aa8a220315fed9c513d70ee872e54f67f27f3", - "impliedFormat": 1 - }, - { - "version": "5dd0ff735b3f2e642c3f16bcfb3dc4ecebb679a70e43cfb19ab5fd84d8faaeed", - "impliedFormat": 1 - }, - { - "version": "71a9a3cf1e644ec071aa3ec6417ad05aae80c7bd55ef49b011be3cf1f17b7421", - "impliedFormat": 1 - }, - { - "version": "b7d1cdc9810b334734a7d607c195daa721df6d114d99e96d595ff52db1df627b", - "impliedFormat": 1 - }, - { - "version": "79150b9d6ee93942e4e45dddf3ef823b7298b3dda0a894ac8235206cf2909587", - "impliedFormat": 1 - }, - { - "version": "77282216c61bcef9a700db98e142301d5a7d988d3076286029da63e415e98a42", - "impliedFormat": 1 - }, - { - "version": "57b242af775e000ef0e0abb946542b0094fdb761ea52affb69b59b85ad83d34f", - "impliedFormat": 1 - }, - { - "version": "75ff8ea2c0c632719c14f50849c1fc7aa2d49f42b08c54373688536b3f995ee7", - "impliedFormat": 1 - }, - { - "version": "85a915dbb768b89cb92f5e6c165d776bfebd065883c34fee4e0219c3ed321b47", - "impliedFormat": 1 - }, - { - "version": "83df2f39cb14971adea51d1c84e7d146a34e9b7f84ad118450a51bdc3138412c", - "impliedFormat": 1 - }, - { - "version": "96d6742b440a834780d550fffc57d94d0aece2e04e485bce8d817dc5fb9b05d7", - "impliedFormat": 1 - }, - { - "version": "bdb2b70c74908c92ec41d8dd8375a195cb3bb07523e4de642b2b2dfbde249ca6", - "impliedFormat": 1 - }, - { - "version": "7b329f4137a552073f504022acbf8cd90d49cc5e5529791bef508f76ff774854", - "impliedFormat": 1 - }, - { - "version": "f63bbbffcfc897d22f34cf19ae13405cd267b1783cd21ec47d8a2d02947c98c1", - "impliedFormat": 1 - }, - { - "version": "9da2649fb89af9bd08b2215621ad1cfda50f798d0acbd0d5fee2274ee940c827", - "impliedFormat": 1 - }, - { - "version": "df55b9be6ba19a6f77487e09dc7a94d7c9bf66094d35ea168dbd4bac42c46b8f", - "impliedFormat": 1 - }, - { - "version": "595125f3e088b883d104622ef10e6b7d5875ff6976bbe4d7dca090a3e2dca513", - "impliedFormat": 1 - }, - { - "version": "737fc8159cb99bf39a201c4d7097e92ad654927da76a1297ace7ffe358a2eda3", - "impliedFormat": 1 - }, - { - "version": "e0d7eed4ba363df3faadb8e617f95f9fc8adfbb00b87db7ade4a1098d6cf1e90", - "impliedFormat": 1 - }, - { - "version": "676088e53ca31e9e21e53f5a8996345d1b8a7d153737208029db964279004c3e", - "impliedFormat": 1 - }, - { - "version": "de115595321ce012c456f512a799679bfc874f0ac0a4928a8429557bb25086aa", - "impliedFormat": 1 - }, - { - "version": "896e4b676a6f55ca66d40856b63ec2ff7f4f594d6350f8ae04eaee8876da0bc5", - "impliedFormat": 1 - }, - { - "version": "0524cab11ba9048d151d93cc666d3908fda329eec6b1642e9a936093e6d79f28", - "impliedFormat": 1 - }, - { - "version": "869073d7523e75f45bd65b2072865c60002d5e0cbd3d17831e999cf011312778", - "impliedFormat": 1 - }, - { - "version": "bc7b5906a6ce6c5744a640c314e020856be6c50a693e77dc12aff2d77b12ca76", - "impliedFormat": 1 - }, - { - "version": "56503e377bc1344f155e4e3115a772cb4e59350c0b8131e3e1fb2750ac491608", - "impliedFormat": 1 - }, - { - "version": "6b579287217ee1320ee1c6cfec5f6730f3a1f91daab000f7131558ee531b2bf8", - "impliedFormat": 1 - }, - { - "version": "2586bc43511ba0f0c4d8e35dacf25ed596dde8ec50b9598ecd80194af52f992f", - "impliedFormat": 1 - }, - { - "version": "a793636667598e739a52684033037a67dc2d9db37fab727623626ef19aa5abb9", - "impliedFormat": 1 - }, - { - "version": "b15d6238a86bc0fc2368da429249b96c260debc0cec3eb7b5f838ad32587c129", - "impliedFormat": 1 - }, - { - "version": "9a9fba3a20769b0a74923e7032997451b61c1bd371c519429b29019399040d74", - "impliedFormat": 1 - }, - { - "version": "4b10e2fe52cb61035e58df3f1fdd926dd0fe9cf1a2302f92916da324332fb4e0", - "impliedFormat": 1 - }, - { - "version": "d1092ae8d6017f359f4758115f588e089848cc8fb359f7ba045b1a1cf3668a49", - "impliedFormat": 1 - }, - { - "version": "ddae9195b0da7b25a585ef43365f4dc5204a746b155fbee71e6ee1a9193fb69f", - "impliedFormat": 1 - }, - { - "version": "32dbced998ce74c5e76ce87044d0b4071857576dde36b0c6ed1d5957ce9cf5b5", - "impliedFormat": 1 - }, - { - "version": "29befd9bb08a9ed1660fd7ac0bc2ad24a56da550b75b8334ac76c2cfceda974a", - "impliedFormat": 1 - }, - { - "version": "ed8a8dedbd26d5c101bcc2d1691535d1fd0470dc82d7e866391e9b31b851ea8c", - "impliedFormat": 1 - }, - { - "version": "0aba767f26742d337f50e46f702a95f83ce694101fa9b8455786928a5672bb9b", - "impliedFormat": 1 - }, - { - "version": "8db57d8da0ab49e839fb2d0874cfe456553077d387f423a7730c54ef5f494318", - "impliedFormat": 1 - }, - { - "version": "ecc1b8878c8033bde0204b85e26fe1af6847805427759e5723882c848a11e134", - "impliedFormat": 1 - }, - { - "version": "cfc9c32553ad3b5be38342bc8731397438a93531118e1a226a8c79ad255b4f0c", - "impliedFormat": 1 - }, - { - "version": "16e5b5b023c2a1119c1878a51714861c56255778de0a7fe378391876a15f7433", - "impliedFormat": 1 - }, - { - "version": "f65096bb6555aad0429c5b6b21b92683398434be9b2ce0d3a1fdbb651c1243f1", - "impliedFormat": 1 - }, - { - "version": "a090a8a3b0ef2cceeb089acf4df95df72e7d934215896afe264ff6f734d66d15", - "impliedFormat": 1 - }, - { - "version": "151f422f08c8ca67b77c5c39d49278b4df452ef409237c8219be109ae3cdae9d", - "impliedFormat": 1 - }, - { - "version": "412a06aa68e902bc67d69f381c06f8fd52497921c5746fabddadd44f624741f5", - "impliedFormat": 1 - }, - { - "version": "c469120d20804fda2fc836f4d7007dfd5c1cef70443868858cb524fd6e54def1", - "impliedFormat": 1 - }, - { - "version": "a32cc760d7c937dde05523434e3d7036dd6ca0ba8cb69b8f4f9557ffd80028b7", - "impliedFormat": 1 - }, - { - "version": "00c7ab5888c75baf6d492a8ffc269ffca585dee86bc0cdf62f06a5e7d27f6161", - "impliedFormat": 1 - }, - { - "version": "cee9bddb4afbcf856ef29ea5d9494060f664c6825f4d83eb27a5dbd70d587f74", - "impliedFormat": 1 - }, - { - "version": "aa070c46b09394ca34c144dac1a0699a197f045306e983ef2af01c00d1b5b515", - "impliedFormat": 1 - }, - { - "version": "42194319978a35fe926b74c19aae29a16352f39fb5a8cfd1fd0dc82fccfb88d7", - "impliedFormat": 1 - }, - { - "version": "6f309ed571d126cf8908c1b35d0e4b4a0a6a0a27f0ff53507e98e52ea798ccce", - "impliedFormat": 1 - }, - { - "version": "3db5a13e1f7194e0acb1f2acf705f968acbdd3c1ee3be7d8181f331bc8348413", - "impliedFormat": 1 - }, - { - "version": "0f651c7fd0543398fdb505b5caad6f1e69a8730d7577053090e1eae9a0f697e6", - "impliedFormat": 1 - }, - { - "version": "00fc117f05aa7a840c54a942685ba51406d14c2883719e2a1d4e1d2dd5ff82a7", - "impliedFormat": 1 - }, - "ee2766eaf0e6f10efa870617474af45bf5788c6c15be34d38f0c834e7f2d95d9", - { - "version": "e8e7db72a298245092d46b0f5957c0bf4b5ef8c31d849d82431f22c32b77cf30", - "impliedFormat": 1 - }, - { - "version": "fbe0b74882e6b44032f60be28dfe756ccd90c2a76d0a545f6cf7eadc8b1ccf2a", - "impliedFormat": 1 - }, - { - "version": "e431c2b334f9c1f822b4eb4cdc70f999ae4ccd3bce0b6bb93ad5e46ece08cbb0", - "impliedFormat": 1 - }, - { - "version": "c3e91c5161d6a6d5383e7866e20b088b09f47dbc6dc95a6e25588a6802d52cd3", - "impliedFormat": 1 - }, - { - "version": "d45bc498046ac0f0bc015424165a70d42724886e352e76ba1d460ebc431239a5", - "impliedFormat": 1 - }, - { - "version": "9f638d020ab5712be98b527859598539c36737e98a1a4954785d2eb7d9f8e6f8", - "impliedFormat": 1 - }, - { - "version": "8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9", - "impliedFormat": 1 - }, - "2533127044627ce9bfefba8f4b9e26ef2503da338edd6b2e30f54022b1549ea9", - { - "version": "e565b2115f3e2b5f1b1f8afee55ea38676e4ab777f301d3ae6b2573a5359abeb", - "impliedFormat": 1 - }, - { - "version": "4dcdbdbc992d114e52247e2f960b05cf9d65d3142114bf08552b18938cb3d56b", - "impliedFormat": 1 - }, - { - "version": "b75d56703daaffcb31a7cdebf190856e07739a9481f01c2919f95bde99be9424", - "impliedFormat": 99 - }, - { - "version": "ddb5454371b8da3a72ec536ad319f9f4e0a9851ffa961ae174484296a88a70db", - "impliedFormat": 1 - }, - { - "version": "fb7c8a2d7e2b50ada1e15b223d3bb83690bd34fd764aa0e009918549e440db1d", - "impliedFormat": 1 - }, - { - "version": "b75d56703daaffcb31a7cdebf190856e07739a9481f01c2919f95bde99be9424", - "impliedFormat": 99 - }, - { - "version": "9c909c17f69f125976e5c320eded3e693890d21b18cbc4caa246ec4fda260dcd", - "impliedFormat": 1 - }, - { - "version": "7915d50018073244a9bcb3621e79b8e0ad4eedfb6b053fc945cad60c983bb11b", - "impliedFormat": 1 - }, - { - "version": "ea7b47bc357858506e6161065b1a8997cfbc5d1dcdf233966da9d01d74721ef8", - "impliedFormat": 1 - }, - { - "version": "50444daaee4bf4ad85ad8eb52e3ad5c6bba420aad9e2a800043a78f4d8bc436c", - "impliedFormat": 99 - }, - { - "version": "1fa33d8db2a9d2a7dbfb7a24718cccbcde8364d10cce29b1a7eea4cf3a530cbb", - "impliedFormat": 1 - }, - { - "version": "b75d56703daaffcb31a7cdebf190856e07739a9481f01c2919f95bde99be9424", - "impliedFormat": 99 - }, - { - "version": "36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "65ff5a0aefd7817a03c1ad04fee85c9cdd3ec415cc3c9efec85d8008d4d5e4ee", - "impliedFormat": 1 - }, - { - "version": "c469d07daf4f88b613f0c99d95389e049e85c14f28f58120abca6785a0b3813d", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "cd805bb241b70dcb5eb3ddf78a23c561c81528a0e4baeb10ccfb967705c9132b", - "impliedFormat": 1 - }, - { - "version": "83e56d3337e1a6dbafdbe5a2502a84c330b1a328ed2860d689b2ded82b1f5c95", - "impliedFormat": 1 - }, - { - "version": "f186de91b1c50640e4d2bef41307ee06446d7ec76f787d4384ef808981025546", - "impliedFormat": 1 - }, - { - "version": "4886055af73784b27ea115b68763c1c0c30df8528ba50e7d1d3e0922c6e7d8e3", - "impliedFormat": 1 - }, - { - "version": "3288d226aeef7a603df43231c9df0f951b00e9137114edfd9832480bfd1a047c", - "impliedFormat": 1 - }, - { - "version": "b75d56703daaffcb31a7cdebf190856e07739a9481f01c2919f95bde99be9424", - "impliedFormat": 99 - }, - { - "version": "4712458223359f81d69f8d244590a097d913abd33fc71aa6de2913fc20ec6ec0", - "impliedFormat": 1 - }, - { - "version": "4044be033f8bbbacdb5839d712e882d6fedb3d1c33fe4837a6dcc4b000e22e7c", - "impliedFormat": 1 - }, - { - "version": "b4fbfaa34aacd768965b0135a0c4e7dbaa055a8a4d6ffe7bedf1786d3dc614de", - "impliedFormat": 1 - }, - "f653870f223631bd516502c87117fcc8563bc8bdaebb6f67a241c8b30b5afef4", - "b3c74fd824e07445c53453eefc2affe8586fca0ad1816cdee885eb757c6c577c", - "b2c0358f86a056aef3b51d82cbb110ce06cdc08657c2e17ebe28e939bce38fe2", - "365a914d8dbf76c99b2bc0a9fcd67d2fc59086aaf0b79d456d6a79af9f5e9fa5", - { - "version": "8fdb1dec971bdb6873cd098e8f6db7fe46859a14fecd4f473d573830cff59246", - "impliedFormat": 1 - }, - { - "version": "11d67ba9494b270a088edf59ceeb153153482b0d60daef15400ad10bb85c6bf1", - "impliedFormat": 1 - }, - { - "version": "e3c621dae18e69ccd7ba445bc5313052603bcd237387150fa5f74c7716adc0fb", - "impliedFormat": 1 - }, - { - "version": "b4fbfaa34aacd768965b0135a0c4e7dbaa055a8a4d6ffe7bedf1786d3dc614de", - "impliedFormat": 1 - }, - "535ab92b73092591d3eb841f88e4a8be1ce9ec67fae9ac2c295031f292579b5e", - "1eed8ba05e21db230d84c438746bdea35792ef0ea7d1fcf7a41328895287f5b7", - "ba6e47109207a3b673464a931a7974aa19a503ae4e6cc41051762428d4188985", - "9c915c626e44ec54f1adcd3b19b2a5b85288b810f6f161017a7c1e3ef23228d4", - { - "version": "41f45ed6b4cd7b8aec2e4888a47d5061ee1020f89375b57d388cfe1f05313991", - "impliedFormat": 99 - }, - { - "version": "98bb67aa18a720c471e2739441d8bdecdae17c40361914c1ccffab0573356a85", - "impliedFormat": 99 - }, - { - "version": "8258b4ec62cf9f136f1613e1602156fdd0852bb8715dde963d217ad4d61d8d09", - "impliedFormat": 99 - }, - "e55d4c86293302e5a7b8319deb257de5b25386b6d65a7854b061d94286ae60da", - { - "version": "3b659dddbc3a5406cd89501fae952ca69dded0df1c7a41bbfedf59f1b7e3a0e1", - "impliedFormat": 1 - }, - { - "version": "221cf9a566ceba4c0ef1f157aa2b735d982ae291435d3122a4e319af6812d084", - "impliedFormat": 1 - }, - { - "version": "62354efe30ce0e25c8b94e4288684dfe06a2866d330f71b80ee6811955efd3db", - "impliedFormat": 1 - }, - { - "version": "cc3b0b707be028d72050c6b1eddb91bf17608de8cfc5850faf0dd91b96ee5056", - "impliedFormat": 1 - }, - { - "version": "ffe8c50a97e93027b923d4f4695edb8b77cd54c9480e43a1fafc2a83f81a17af", - "impliedFormat": 1 - }, - { - "version": "ae853fd596e71ea91f85542e63cb8469073af02d145b0da6a6f0905ec327d358", - "impliedFormat": 1 - }, - { - "version": "0770431c9cce252c60beab0daddc5b8f52643d8d779836f7e2a1ea061c791879", - "impliedFormat": 1 - }, - { - "version": "e3b61baa3f81c3221cfb8b4a7f6b8bd08584eef5e24fc14985acbc5e42ecd79c", - "impliedFormat": 1 - }, - { - "version": "a827f37b90d947f7ccc746034073d548cb6b29b582b25b31a49973da5ebb55ce", - "impliedFormat": 1 - }, - { - "version": "46ce94a7115d432efe8c9207739e3f780d7f80f4abe30f349f0f715ec6428692", - "impliedFormat": 1 - }, - { - "version": "5f9f3f7f40c307deeff1f82eaaf5e1a17f1c5457500ac8e39307404fe26aba86", - "impliedFormat": 1 - }, - { - "version": "09a36db8a78e8e66dc874338200849636f82f62e359c599e5e4bb24f4b9f22b8", - "impliedFormat": 1 - }, - { - "version": "2dec7873d5d1a128fd22b66d1fbcb8085ee0d8028126ed693999df82e134bd6a", - "impliedFormat": 1 - }, - { - "version": "e62cee446524622a0942b66b5ed27cc05ec389899772864d145c9d350ff7a0d5", - "impliedFormat": 1 - }, - { - "version": "620b72dff95c135c35e3ce8a3ae76b07d58165fc052b02725fdfba691b0bc4d7", - "impliedFormat": 1 - }, - { - "version": "b3005ba6325fd5f960c11a26d23f6066ce4e291527afd1a4d446853e9aa9cd17", - "impliedFormat": 1 - }, - { - "version": "452c13b56b5ffcd295985afc3146e3e874368c506a195f0bd7938bb783d5c9f1", - "impliedFormat": 1 - }, - { - "version": "f14a9716f06b83f9ec6731749378dd6b04e3e7844e2976d4dae15c6c8afe91f8", - "impliedFormat": 1 - }, - { - "version": "07009b6f90d6ccb17a88560c441bc7830c355933caaff9bb4c405afd76362410", - "impliedFormat": 1 - }, - { - "version": "df33402503c1d9803adc338035516825d9aecd3698102f033f67cf17649990f2", - "impliedFormat": 1 - }, - { - "version": "058aa6ddf4f241687a68259178e8ab97a52efd93972beb7a4f716fd292ce0809", - "impliedFormat": 1 - }, - { - "version": "1234e09c6252a4a720516b5a7afebae3227e088f638bfb87b30aabc583ec4642", - "impliedFormat": 1 - }, - { - "version": "84791183a253d339bcaa24a0491cc2d64ab3377aa66fd24abf944e538c020c51", - "impliedFormat": 1 - }, - { - "version": "6277c3025ca713736ad0ea4426f8737d6927fe08c7fe700e8ccbe7be4afbb1e4", - "impliedFormat": 1 - }, - { - "version": "15a61c6bc3f32eb32bf2708cf58ba698d1e8a85a90ae26a259b9d6d626ac3a85", - "impliedFormat": 1 - }, - { - "version": "d04b5364ea9b58d4c2ddcf6c8acd45437dfbcd1e39389c7af26eaf758845a958", - "impliedFormat": 1 - }, - { - "version": "ca98fb6ae0232adab967ffda4dd229b36e5816fce48add5d5b709c1876064438", - "impliedFormat": 1 - }, - { - "version": "f79bb3dbae1185900fb22f6d2cf7ddde504a219b1d57ababcdc571623afc190d", - "impliedFormat": 1 - }, - { - "version": "40a2cfbe8bf261117fb6250534e1fa82ebe1c6c9a082f8a73d6453cf9eee12c0", - "impliedFormat": 1 - }, - { - "version": "c9c5b3ddf558dd6ef2a7c733bf064f4e1925b420d2fbd45e33784ccc395b225b", - "impliedFormat": 1 - }, - { - "version": "9fb81bf2216500dc2e2c2ca5285b77f13659de9a71e6f4f01169d1eed452af28", - "impliedFormat": 1 - }, - { - "version": "33deeafcc4594f7d2d2f87a48d9a6a5c4f61d5762013d2de10d0541e2b165eb3", - "impliedFormat": 1 - }, - { - "version": "02e80a44b77aaa502a6a8d5c685d36e2093a66e348df13be74ae4d3c18df34f6", - "impliedFormat": 1 - }, - { - "version": "93f3e5e4f516eca16d6780f8da84adb0faecf6018ebe505937286e4b6dbd48c5", - "impliedFormat": 1 - }, - { - "version": "618c2d0755a3572de12660b42ae5b0535f967bfa11cc0b93890f45676a7801d4", - "impliedFormat": 1 - }, - { - "version": "2e824ad4eaa93b6e7ffe428589253f6243be70642657dc7ce454defb35b87b59", - "impliedFormat": 1 - }, - { - "version": "6b7eaa8a827e025d9bc4181ab930e21830eedb8713bf86dd7989f6e043947450", - "impliedFormat": 1 - }, - { - "version": "ba374c4b2ab2c3f4bd1b6aff1adf8686cd48699e8f4015f253cf038fd2d64ffc", - "impliedFormat": 1 - }, - { - "version": "b4fbfaa34aacd768965b0135a0c4e7dbaa055a8a4d6ffe7bedf1786d3dc614de", - "impliedFormat": 1 - }, - "25a69daf2a470cf88ab3ee75ac9fa99929a147ca78172a7157af5b64785c677a", - "66886121d687ba36ab07675d0f62d667047b61322fa6c3b2338dfaa14dc79b98", - { - "version": "f94b15af0cbde5d5297dcd5a2a1ca2b9b404c3d26abe9274d973374fd00ac9f7", - "affectsGlobalScope": true - }, - { - "version": "96d661cc4fa3b12bf80b89eae092f3631da870bcb0b9aae48062b272debfa8b9", - "impliedFormat": 1 - }, - { - "version": "33920badca0c866c0f4a6c33609b2ebd6fc5a02f8ef26f757be5e728db8c0a04", - "impliedFormat": 1 - }, - { - "version": "741b9e9ea9cac1ad33bfb6f68160c7d500d1b029ac38981fd89e0ee1d576a4e0", - "impliedFormat": 1 - }, - { - "version": "df79bba9981a732901c66726aca5134e4cf5ba80a12156fc1eddc119a99ce3e5", - "impliedFormat": 1 - }, - { - "version": "33c3923482590028a702748cc1d1daf42a65fcc6e328197696fe23a9a0f93d1d", - "impliedFormat": 1 - }, - { - "version": "5a236f163c1e5aeda28ab6668404da9f7fc6f5631c1428804057880ac099b579", - "impliedFormat": 1 - }, - { - "version": "d2f1b9c92eee79f2fb46bed558dd2c3c51306c3a864b472908ed6d4a2920753f", - "impliedFormat": 1 - }, - { - "version": "8315e95ab6965118f0b85f20a9fe4ca5ab47ed7455eedf73ab5265517ba0731e", - "impliedFormat": 99 - }, - { - "version": "757dfd5f2f9346eab2d0ab4fcf9d3c00b10e4387b1e7cb681d1e5a53f2fde14f", - "impliedFormat": 99 - }, - { - "version": "9543f7ff8a3dd649304fc2d3942a9ae1a106ac81700df7353fea4e9f15be0efe", - "impliedFormat": 99 - }, - "b4fa6fbb32d2d3b75d879a994aa4175be6ed19e8e8437b4045d3caad80124b0b", - { - "version": "ce204b35155aba46f9365e408abc48d903c8624c46fa9c6774a75ed04f0cebeb", - "impliedFormat": 99 - }, - { - "version": "2fc9c7c6695b151ffd3ed667d6d793c2f656461978e840eff1d1350fc0bb1ebb", - "impliedFormat": 99 - }, - { - "version": "4d590f0e0b4abaf693f94d08b5c414928f2571aea5ac6efb97e4646e195dac48", - "impliedFormat": 99 - }, - { - "version": "bf1655c135bd654637f98f934f9a9eb4d6450194ca2f4968b79263608da59fdd", - "impliedFormat": 99 - }, - { - "version": "1ebe079cc9ed9ec4cd11d02c70f209caf16e9dd8e1e801a36648ce711bb3c404", - "impliedFormat": 99 - }, - { - "version": "b3fbfe08fd74b7dadda7ede285cfeedd07db2428725d16666fb24ff1c5d08d99", - "impliedFormat": 99 - }, - { - "version": "c465804e58f429ab621043025e381dc028d14446e68c557c558e7153d4a59054", - "impliedFormat": 99 - }, - { - "version": "c5acf9061cb86da7716d98e12d6e96e2e356641eb0a21b33165653fb2cd6680f", - "impliedFormat": 99 - }, - { - "version": "ebd02963d7c47cf26f254068e7ad81858433e51e0e5c4ffd7b3b2f6fd0bce17a", - "impliedFormat": 99 - }, - { - "version": "3a648a8b64b69923c0930df4fa3b390dfa9d61ac0d17cfca55a29d6703db1b42", - "impliedFormat": 99 - }, - { - "version": "55bb540169182762bc332474d3547675dc00627e00a491b80b01dbc6c9e018fa", - "impliedFormat": 99 - }, - { - "version": "0f11987bd734a55e04f7ee8376a8f5be9374d887b67a670d076c6a5cc7211226", - "impliedFormat": 99 - }, - { - "version": "45a02ead1994cac3ac844522b01d603c5c36289259488b794e616f1655ecb7db", - "impliedFormat": 99 - }, - { - "version": "4dc4c3eca0a15be5bafa5ac220d839188097dfcfb44951221459b9b11e733352", - "impliedFormat": 99 - }, - { - "version": "db367fd2faba92ed81ca1cb947d94d7bf104dc55caf18c44d2a2b6ac1b1dfafd", - "impliedFormat": 99 - }, - { - "version": "c18b9de619509cb2e83fb6db359d017de6cb5e9fe2838aed5361623ea44ef56a", - "impliedFormat": 99 - }, - { - "version": "e0ad85268102b4d552b53de0f93f8d27dc52cebe2ee6ca3f3f4cb88131c6a3a3", - "impliedFormat": 99 - }, - { - "version": "f6f03c94d64776248cad31d4503b9a5ee102bb1ce99b830a5a74c908927d2459", - "impliedFormat": 99 - }, - { - "version": "9ba212cc8d5f5e0bbbcdc8b31c1969dcace0d4bb0dc1dbbe14a288617d68a6db", - "impliedFormat": 99 - }, - { - "version": "d4b914632888f47bee35d94706dce53e9c35481d38a560180779469f4ee9159e", - "impliedFormat": 99 - }, - { - "version": "c19d8eb43817185ce1210471e1b59269112f6c25fc63fb455fba7b6c74a25bfe", - "impliedFormat": 99 - }, - { - "version": "a1c67ed6b95884898b1b6bf7ddc0d6f7236de11836d2d3ba57d12f97ffbd571d", - "impliedFormat": 99 - }, - { - "version": "a3d150bd1c3c1f43d3b389f148fc224aa5bd372d0f513d2b379099acc7c08551", - "impliedFormat": 99 - }, - { - "version": "c22d27ef7cee80270300b6b36af51cd3e3a57b4df569349721036a1738de525e", - "impliedFormat": 99 - }, - { - "version": "3c1744f5cfe172914996a588a4a791221868be5f21419473b870cb67681eb787", - "impliedFormat": 99 - }, - { - "version": "05301dc91249ca23b960eaf3e5efcd7aa99d493807cc18ddd955a4d0fe113f5c", - "impliedFormat": 99 - }, - { - "version": "fa473ebc4a55939b20e229501fd9d3aac5f578e4779f0f8f6a6306c848e1632a", - "impliedFormat": 99 - }, - { - "version": "e7a6ee2d07d956992ee90bf2d4055ca3a15342ba05cc5b7e2e7fd15f69cbfe61", - "impliedFormat": 99 - }, - { - "version": "487b0dbdebde79164f7b2ea782788737a4252b9040781db6c3a9722e2bb9ecc8", - "impliedFormat": 99 - }, - { - "version": "b71bbca9b845474bcd410aa47ef73dc14f55384e614e1558d588809f3413374e", - "impliedFormat": 99 - }, - { - "version": "fd31c7e0d6921e9a919e419404c50b1cfc257f10dab2b2b0f191738aa67dc674", - "impliedFormat": 99 - }, - { - "version": "b67227c32b487f6d4f76b6cfecfef75034390d2b14aed5ee33d1f01b2ac584df", - "impliedFormat": 99 - }, - { - "version": "663eb800efde225856c1e789ba85b6ec6603e12028473670221333c2c7f3bbb8", - "impliedFormat": 99 - }, - { - "version": "3936a5aaeb9d200a9b00225d230881437d29002a9b6e9719b4f782a44e215150", - "impliedFormat": 99 - }, - { - "version": "3fc35b978a159e75f36c8b9f5ae51c95de011eac0a994befd85a03972e06906f", - "impliedFormat": 99 - }, - { - "version": "fcbc330594ee211b8e7eb56f4ec59175ab239288ecc7749634e665dee33ca181", - "impliedFormat": 99 - }, - { - "version": "fd1a6d390ef510226ddf46350854d278a53738921cbb9e4de78bf7b6105df48d", - "impliedFormat": 99 - }, - { - "version": "fff0a5e5aee54af6c47b7c1acf0799fb3c55686ca5d589be31ef179e9d7302b6", - "impliedFormat": 99 - }, - { - "version": "53c89482e50d4edcb80e217cf20d9126c6a595bc204ee834131d372895160018", - "impliedFormat": 99 - }, - { - "version": "7322a3401773f0c9fa87c7ef2ee13e0c660a5a926507ae8aca263bb3f4b2334e", - "impliedFormat": 99 - }, - { - "version": "a513595cad81255731831101bd714d77c3c7fadb3d5ebf1829d77fe025124b77", - "impliedFormat": 99 - }, - { - "version": "4ee05c416af71157410043a44a0803671e03c8bfca346d6f832ea047334b1cb6", - "impliedFormat": 99 - }, - { - "version": "1e74e54ccc165f3ddbe5460e2c6cc6c8aa2d3145a094d1b67c237303f61bb022", - "impliedFormat": 99 - }, - { - "version": "c940f913dc8325a06b5abdaaa3a10651aeb6af99ccf2dd91cae6c3729fef8f81", - "impliedFormat": 99 - }, - { - "version": "5743905ac2de3204bcd9768fdeaec993fed8291bde54094ddabfa7f28573936d", - "impliedFormat": 99 - }, - { - "version": "643700414df81efee3059191cc2759c29623ff95f462190a0e4a6afe2c1640eb", - "impliedFormat": 99 - }, - { - "version": "707669372976b9a569b6ac40c5aafd61b6f9d03c12f60c06cfad234c73d18369", - "impliedFormat": 99 - }, - { - "version": "20640c93feb6d5f926e147456f6d19bcf3648d52d17ed1d62bd11cdee59761ca", - "impliedFormat": 99 - }, - { - "version": "3fd14efbc5a75b0a0ca5d581549b796f6e19b50d40a0ad4f67205fcb19274ee6", - "impliedFormat": 99 - }, - { - "version": "c65d7fae88667583386f30789ef1a77041df5a210f73338c34125a1bd4d98f7e", - "impliedFormat": 99 - }, - { - "version": "ea88eb7247f90f0de73f3617a700625fc1b8c037ff03f4665534b978f3c3fd01", - "impliedFormat": 99 - }, - { - "version": "d6cb4d8b3499d80fb3d17e1911c6290928ef5a4d1a7751bca143bbef441012d9", - "impliedFormat": 99 - }, - { - "version": "b2ec10940611f3311aa42fce3bb65d3476b4eb48a00e9a93d1f85b6989c79500", - "impliedFormat": 99 - }, - { - "version": "90afc0e0333be68a5fc2ceaabc31d1772836f38011259206dcb73a13c13211f8", - "impliedFormat": 99 - }, - { - "version": "d6513ddef6323a64583ee62ed1a8c9f2dd0ddb755772702181d0855c521e41ac", - "impliedFormat": 99 - }, - { - "version": "70efc2aa2b0bad5614d70c4697e7c4efb954e868d92c4d750b009c75758ecc07", - "impliedFormat": 99 - }, - { - "version": "2f8b2550af2d98da27a168baac999bb025cc3e916711b34b03bde2cce68e9be9", - "impliedFormat": 99 - }, - { - "version": "4cbf4d996793d757ff712ae7bd96b1227a09fb95fac447090d9cce63e0eb9460", - "impliedFormat": 99 - }, - { - "version": "8cbe9368fca284e894250d336b795a83c64397b574c249d25efe40ba657db8b8", - "impliedFormat": 99 - }, - { - "version": "8bc221401fa34951834e20c7c8dc8f659e68cf368d7ec7d078b9ecebb5a9c35a", - "impliedFormat": 99 - }, - { - "version": "cbaa48aef231497ab562060d3742707984c43a9d0e2ee28da7abb2efe4a0b392", - "impliedFormat": 99 - }, - { - "version": "e1951d09be373ebc5370c0eff4af4a86e841251df119e6727e97e7ca714fc6ff", - "impliedFormat": 99 - }, - { - "version": "fb50f6ddb8016518940b3f8702562acfda9726ca4221c71a2ccbabaa96fcfcc3", - "impliedFormat": 99 - }, - { - "version": "9c70dde5822201db2c3f208eb8d95f463caa103d211b49399569dfcd0f394a92", - "impliedFormat": 99 - }, - { - "version": "b345d1cb103363741f885729eb562931b5bffb63d06acd6cf634212ea945cb9e", - "impliedFormat": 99 - }, - { - "version": "deab327003debcefe7668fa28d2373b5a3c40b258f7948496b57ced275bb3eb3", - "impliedFormat": 99 - }, - { - "version": "fca8f9bf4b3544e8f293725684ae0a982e234504ce08b5dd4a477e06c3c792c5", - "impliedFormat": 99 - }, - { - "version": "5d17ad04870e5304037f31da3cc752da331e2b70ce333fb3c14a8884709a95b3", - "impliedFormat": 99 - }, - { - "version": "a619f8d47568e0b881c2ba50d75659df8bb90f88b5b551fef75f75f72ba6d060", - "impliedFormat": 99 - }, - { - "version": "0b4ba5551e44d84fd641b8f06eb3df38aa343d2c23a1358ad1b61f001764bf5f", - "impliedFormat": 99 - }, - { - "version": "0d75677f2e01e829154f73b93af966b3437b2d9565d10fc4eb03175bdb988cb7", - "impliedFormat": 99 - }, - { - "version": "b0d05cca4f77e7b8c4d3ae29e4a4d6ccc538c4f2a1926327d6664770a9c6dd39", - "impliedFormat": 99 - }, - { - "version": "2f7c95858885b15628d20c06d1b41d2b91b6b4cd3dfc8e1389a1446420e6a74b", - "impliedFormat": 99 - }, - { - "version": "554d3bf9c7d62e5a1115417f927ee1bf129de36e2415d4bbecb94eca32764d73", - "impliedFormat": 99 - }, - { - "version": "00dd58e1e52bdfd6c0b9d4dd3756014bbb02d1c3fb377d92a70a19893e1f33cd", - "impliedFormat": 99 - }, - { - "version": "ce18553ba933ecb462b568debdce82c1831ea3034d2eca87d691c75d97a84608", - "impliedFormat": 99 - }, - { - "version": "802cf71c93b8a331e1a9929a079d5c61eaa4e847abae4b0d386ffd77a6927aa0", - "impliedFormat": 99 - }, - { - "version": "0f29ca6f17d73ce1f49b2e717ccbf0860982a0f92f3ee0fed9746f89929a2e95", - "impliedFormat": 99 - }, - { - "version": "81c34634970f44866adca064a5a00e16bcad7bb6cb4a20f71403ca9909b5eccf", - "impliedFormat": 99 - }, - { - "version": "aaf2c6a7eb583c145f1bd2491cced2654160785a4ba146dd57bb3ad8d1ad756c", - "impliedFormat": 99 - }, - { - "version": "d87ec7aa05c123631c191966e218deb6514b7658d582ba08c0892b3e0a42ae9f", - "impliedFormat": 99 - }, - { - "version": "786472a3998767cd537f73515de1ea9ee1b98b1eb2884c06bf2afd63802cb750", - "impliedFormat": 99 - }, - { - "version": "88779dc6d2d69b984969c2ac9450b512f8b4c54beae5bd51025b3e7b3909145c", - "impliedFormat": 99 - }, - { - "version": "a3a613da8d5a5b13af698d39b09fff499efdb0e8f536ab242e84c13370e3fce2", - "impliedFormat": 99 - }, - { - "version": "e161d627db35259f52c3eea227dab5483e0de833299fd7bc61823071927cda60", - "impliedFormat": 99 - }, - { - "version": "28bc3fcb29fa8cde6a00c470ff8d0a555b6a7e8968ac19cff3c9c07b53066c0a", - "impliedFormat": 99 - }, - { - "version": "0ab06534ed1471f55971306ebd9151f2843d39e926f182773edc44afae2b3035", - "impliedFormat": 99 - }, - { - "version": "17e3178d17edec81153b214b3b8b1167c8951130100919a709d8157a117a12b6", - "impliedFormat": 99 - }, - { - "version": "fcae6e433560aca81cdbcc48a1503eb99bd8d1cb76e34e777817e8931cafe2ee", - "impliedFormat": 99 - }, - { - "version": "50058d1fef5e1fd40d9923b3e932d7720744e5e85e100d853bbe2484a991f6c0", - "impliedFormat": 99 - }, - { - "version": "aeb6835b950ddfd91e84787c26dd0f44668180c8d14f657614c67c93204568f0", - "impliedFormat": 99 - }, - { - "version": "23aefc6c178f0e19494c2eeba7416669c3ecf082db14ee80a5a22ca6bd8d5709", - "impliedFormat": 99 - }, - { - "version": "4be799bfee1766047c11b3b5d371ca9e3993526d50c3e276e7cdb3943dd680a6", - "impliedFormat": 99 - }, - { - "version": "b2232321aea33213cda3b2ddbfb7332bc1d79ef37379186b6e216cef677f2287", - "impliedFormat": 99 - }, - { - "version": "3e57fd3a8f13addca1c32a9a792e63d21baa4fcf706d23930f01ea312afacb04", - "impliedFormat": 99 - }, - { - "version": "38e61720edb6523a2ff0c62d2b06160d9b1c5916f8b04d3bf31e93f370fd5a29", - "impliedFormat": 99 - }, - { - "version": "5d6ef65ccf14b0d51af503adffccdbaa846848cf0fe82310816cf82eb364d107", - "impliedFormat": 99 - }, - { - "version": "33fc357cfccc15d0c5829af2cadedb500063f1d28a917908d4a19ba87f76946e", - "impliedFormat": 99 - }, - { - "version": "5294085fe8259915fe56a66674d18cfcda5a5a4455b341060afdaa5aa640d1e7", - "impliedFormat": 99 - }, - { - "version": "456bf57ef493ec750b79ffe7849813631db7b60827f36786cb672049a131d376", - "impliedFormat": 99 - }, - { - "version": "5f94250b6f8f598b1c42e624702098872b3afdf2ae6e391a02be7c0549aa64e7", - "impliedFormat": 99 - }, - { - "version": "85350eea2d43e710d64a9aeac650cc34b24d93f11ccb098df376da99556424f2", - "impliedFormat": 99 - }, - { - "version": "a40a75b4d4010077a911591554902897e1dd013f8a85225b6037a62f7056d437", - "impliedFormat": 99 - }, - { - "version": "ee8e06eaf1522a5e00fbfaa6473fea44dd74afd6f4e95f9da1a89af671aa2918", - "impliedFormat": 99 - }, - { - "version": "1891f3abf3fa8907221cb2ef567f11f1a39ab3ac0318d48c80db6c54d007e969", - "impliedFormat": 99 - }, - { - "version": "9e22adacca7d1de31f486abe4cbce49203c103d4530700a5c6f632f1c51f03eb", - "impliedFormat": 99 - }, - { - "version": "84b450f992fbbf825e6523f07d6464c944e79aa2e67ece8888814416143f3400", - "impliedFormat": 99 - }, - { - "version": "d2f3adf5a2ddd461ff09e5562c9ed403245e905e86b5287b0d0578b9d48bfa44", - "impliedFormat": 99 - }, - { - "version": "995564ce50215678ed1a073b9eb63b5243c3b67e4edf44df299ccc0a8374cbe2", - "impliedFormat": 99 - }, - { - "version": "dcdf9db983566c2bb9fa49641bc001a72a07a3df1546d6a1bf24497b44340fd7", - "impliedFormat": 99 - }, - { - "version": "6c29c48758edb3c45cb92e892bb6d91a43477b5b940dc3aaf38c5f503b379bbd", - "impliedFormat": 99 - }, - { - "version": "5515019e3a6ebbd431a945b6a43f31d139ae4b93e0a5ae91a915e02caef1832c", - "impliedFormat": 99 - }, - { - "version": "eb0ca7737f9fbc78b265201c1ac5fb93a26a0a0c457501f23097607318da6251", - "impliedFormat": 99 - }, - { - "version": "9f054267c51ac465965d91c20fd5057fd36cea9bd4656d514f4bebcade9c911a", - "impliedFormat": 99 - }, - { - "version": "1bdd8abd4ef45e3b5e3a66826d937843ce43a2022fe245e33a96597d716255b1", - "impliedFormat": 99 - }, - { - "version": "75c4008fe916b067ee4ddef78222d33024327da376289e9cbb100f356e117a03", - "impliedFormat": 99 - }, - { - "version": "85ad7a1017cff3848472528d792291038ebaf44b049a3afcaf0db612fa1b23a0", - "impliedFormat": 99 - }, - { - "version": "c02cd1d63db6f81f665fa888a1fed6a2eb0f64ad2ee69be0ee4392b7ca9028a2", - "impliedFormat": 99 - }, - { - "version": "9096832f382f5b5cb27ba00faa8c231d562623db74fc4025b0aba6bd233b8818", - "impliedFormat": 99 - }, - { - "version": "22b54bbe3779cb65ac35e420f96ec152a90be7a785b80ef9fa499d73b1ec58f1", - "impliedFormat": 99 - }, - { - "version": "f8cd953b8a2b4dcf46d86af66f7d3f2b6a9a1ec8e10db4195d54d6f910695155", - "impliedFormat": 99 - }, - { - "version": "5fee9904e02e1475a281704b9afe8fc962e40084df5dffff4b4395dc7d552da2", - "impliedFormat": 99 - }, - { - "version": "6eb37fa34b083320aaa52e69114c2172782e42c5f157f620aa0b06eca1c1965e", - "impliedFormat": 99 - }, - { - "version": "f29d44cfd07de9939378795273c4232c8430a950ffdfac7010438b03577477e6", - "impliedFormat": 99 - }, - { - "version": "228e796062abd583bd87436562070d78425a0166aeac16b63459983b02acedb3", - "impliedFormat": 99 - }, - { - "version": "f5c623592de0fe3277e4195f52950c8d1f81e920d9be54682f609573b5503ba6", - "impliedFormat": 99 - }, - { - "version": "e7e299902501e75b2d7eb842d7fef27c3bfa14aa967e5b05456be2393486cde0", - "impliedFormat": 99 - }, - { - "version": "22ad4f64a29216936a641bc51587ad5c4d2e843643091ebea4f9d0a472b8692c", - "impliedFormat": 99 - }, - { - "version": "0661abac34d843381137240cdd238d481637f5023ad952046b24a627c256194c", - "impliedFormat": 99 - }, - { - "version": "0cf60f5f3c66ac7b22d1e4a685c0b513328688886cb879394089f42f993e43a5", - "impliedFormat": 99 - }, - { - "version": "6027b329dbfdf47dbcd105db7487cf835a3f73a1c8adbc59bfdc4ebdc31137e7", - "impliedFormat": 99 - }, - { - "version": "d400fd6302282d8f6d09af93200500669c4d3d42600b23b71ba706746413d49b", - "impliedFormat": 99 - }, - { - "version": "8887205714f61e6586adf32374134738e460b4d8cfe03d513a38999913862daf", - "impliedFormat": 99 - }, - { - "version": "e1e593588e6cf59347c7a20017b214ac4b00562f6a2ec8e5c609e0ae965075f6", - "impliedFormat": 99 - }, - { - "version": "276367f57e2b9e574e1ca1a48eb22072a60d906295c96bd7aeafad5fc3d08b77", - "impliedFormat": 99 - }, - { - "version": "31d4161e79a2eeecae8e3f859da4d3d9afb1e6f3dfe1dc66380450a54c97528f", - "impliedFormat": 99 - }, - { - "version": "daf8a97bad1755e977235196005545caf9e230413fbe0f5ce1ef360a350633d7", - "impliedFormat": 99 - }, - { - "version": "1494274584ccf5a2af0572f0c3107739ed59b15aa96990db50fd8116eb4b3ccd", - "impliedFormat": 99 - }, - { - "version": "05c6f60cfa77f8fdd202678ab3641f63baa1f23e02126bca681c6f6c4737dfc7", - "impliedFormat": 99 - }, - { - "version": "47ca66d531a64ef8b93cb07b1f3d47ecb5ead404ec6535307c58bb4aabda57e9", - "impliedFormat": 99 - }, - { - "version": "e2e481d414e3944aff2c0520edf91357971c15c34d15aaa20459a5b4aabebcbe", - "impliedFormat": 99 - }, - { - "version": "790bef520dfac9dd348fe22c53568f048c6cb3ce21a8e3f046d01e8c0a66a943", - "impliedFormat": 99 - }, - { - "version": "f201350305673baab74b8917bf96149b3322d9806c683d510267d9a139b44900", - "impliedFormat": 99 - }, - { - "version": "d1893af3d12efecdb31c4062a82a92ce789e4d34aeb2a218c301c2c486d4fc78", - "impliedFormat": 99 - }, - { - "version": "25822bc7f060daf4c5f2e5fa075b2caf7f8bdedcbbab000269a97ff45f974745", - "impliedFormat": 99 - }, - { - "version": "da9e88283164077cae7301cdbb258966dde1d8a67e6af6b05c7a18349dde6321", - "impliedFormat": 99 - }, - { - "version": "e3f384585923f83d37a4ef1b75d1642632349c27e8f629acf23ea835877ddef3", - "impliedFormat": 99 - }, - { - "version": "f97686570034aac05b2a6bec073daf81743561d2b5fdd7eba5a0d38b4f1f7be1", - "impliedFormat": 99 - }, - { - "version": "3bb5c33e46d256998d12908375054dad7d82c6ccb866fd9e0fef3dac96acc402", - "impliedFormat": 99 - }, - { - "version": "031ccb4c80f52d095127aa2a7be8998a1bfde9294edcab03e4febb741265d8a6", - "impliedFormat": 99 - }, - { - "version": "77bdf606434a7182de2ae5fe635523a95eccaf0c144f91df95e102a7c46c97a2", - "impliedFormat": 99 - }, - { - "version": "8d95114eac22e8ef4f8665a186d6608b55206f8d34a426c980dc9d2cd18b1e0d", - "impliedFormat": 99 - }, - { - "version": "17387caf3ce28d2233568b3d3aef3f8b1519693f40adcc5cec950c700d928390", - "impliedFormat": 99 - }, - { - "version": "406ece1b33fa9bd5cd7359477ee0492fc88faa7834379ae59e220271fa0fd9fc", - "impliedFormat": 99 - }, - { - "version": "24d011a27c8077bb60458105aeb30349786399dca6cea392a70db25068f54327", - "impliedFormat": 99 - }, - { - "version": "465e84b9e824d62c531c6003c66f1bc73ba508bf60aa5c9797e2e3a4ec7a108b", - "impliedFormat": 99 - }, - { - "version": "156d4e8169fa27ddebf8c26b1158180fce5fca563216c8c16bdc2c5db663296e", - "impliedFormat": 99 - }, - { - "version": "123f42d2725b338dc92c55fe8f65730af1b29fd6f63685509e057835bb83517e", - "impliedFormat": 99 - }, - { - "version": "ceff24a8c06a2b16792aae8426b706018c4234e8504acf1cbba8ee6b79390161", - "impliedFormat": 99 - }, - { - "version": "1cce3949d58c46bc0764c89482a0be2b58d0b2a94a15e3147c88e73359658a40", - "impliedFormat": 99 - }, - { - "version": "7322c128662ae51bafb78bfa85a03e3da779b52e72d164c1bf22cdc65236270c", - "impliedFormat": 99 - }, - { - "version": "9a40c1020a86217fb3131a564315af933ce48aa1ef9264545bb1a2b410adb15c", - "impliedFormat": 99 - }, - { - "version": "a01d2fff3266ca29b8df1cf7c223adf804aaa2ce8735b9f261574825261e8c1e", - "impliedFormat": 99 - }, - { - "version": "922d235d0784fdc0437ae8c038372fabb0b874486b65a47774fa34bda34dff3b", - "impliedFormat": 99 - }, - { - "version": "dc5aff116a7790b183c5f09e94f83a7c7e608c6085e6ad75b1629a83f5fc6c36", - "impliedFormat": 99 - }, - { - "version": "f783860596115cc16bce1e54c45a5f26f353a7dc8067271918e748448c168bc0", - "impliedFormat": 99 - }, - { - "version": "484b9305a7ff05e1028722f4a992db637cb6e31197490763deae399b36849d3e", - "impliedFormat": 99 - }, - { - "version": "ad0d9cecb6cf3ca943759fb015f684b455700272602349bc9754efdd5c73b2ae", - "impliedFormat": 99 - }, - { - "version": "4b75bbb5000a38175a6e728aaab07b10dda25c887c10f22c036261cba87471d2", - "impliedFormat": 99 - }, - { - "version": "653c70ed4316ca8b3bce79ef9adf800ab737ba8b3631739d5a93224662b5f0ab", - "impliedFormat": 99 - }, - { - "version": "daf0673602c9217ac44106c295b579681811096ec2fa57a3fcd4d6470eaac8b8", - "impliedFormat": 99 - }, - { - "version": "7d28f874573461de6f2edef652d689deee9dee86e02397cdbe2556dba600bac1", - "impliedFormat": 99 - }, - { - "version": "e3a20ae5a66bec485856ac56217c3656b7a7d14667796dfe0ca45b452f975475", - "impliedFormat": 99 - }, - { - "version": "7274dfc7369c4ea8f951d02346cffde1b0a20d0e47faa36306813b3081baea69", - "impliedFormat": 99 - }, - { - "version": "c3abd4d6b89e3ba4b388a9eb9f5ebc83355c81cf39eb12a48660fa196c3c2236", - "impliedFormat": 99 - }, - { - "version": "15ebfa1212ee1352194493f0bc09d09a1bfd9f5d58f49bd39bac28352c7a317b", - "impliedFormat": 99 - }, - { - "version": "1434c811267c045eed8ae5529e33404614d76ccd57bf8c175bbc5e3bb6b53302", - "impliedFormat": 99 - }, - { - "version": "3b2ac31bb38b7b625e5c5a69834dfe310248fb42edd297ca682de50d44555b1b", - "impliedFormat": 99 - }, - { - "version": "735331968e5f9c95e860641150eee5cd76e3f4d32d91d308fd31ba96bcecc49f", - "impliedFormat": 99 - }, - { - "version": "8d9cc59fd1a17ad25f44ea8e092b4385cc35ed3f5a6ddc5b8cbf1aff4f472504", - "impliedFormat": 99 - }, - { - "version": "1b018076fa6fd5c226a2567c5369e40dac0366e5aa6145e203f0749ff87747fb", - "impliedFormat": 99 - }, - { - "version": "decb9009e3ba094f7da1a969f658e4787ee5222657650771c2e805df47c2ab0c", - "impliedFormat": 99 - }, - { - "version": "c89aa2a07bb87e1476e981fcd27a88f51b2e8e972c3e539a0fc1448fd023498a", - "impliedFormat": 99 - }, - { - "version": "42af42fc4d1c2d9a00d19e71b7d4c2d7daf2e0366291a850ac15e1961c21ac36", - "impliedFormat": 99 - }, - { - "version": "a12015aa7e1f6093110916cdcc658c14cec7e8d16cf6cc0759fd0730f203d909", - "impliedFormat": 99 - }, - { - "version": "65e47bc8d076093498feba0294912692a32bcfbda2f7a4a52632d8366b66064c", - "impliedFormat": 99 - }, - { - "version": "4a2961d4a84e09c94a69e26eb58fbc4f28932a016e92a61ffa1276b9a5a0ae43", - "impliedFormat": 99 - }, - { - "version": "9f426146ac63e39c94070acdaae9a85c3fa7ea12de82848b6b319f34d9df4d45", - "impliedFormat": 99 - }, - { - "version": "fa0039a64b904b19f7938423b93e0fba751a4d31a23c4144f44b30167538de25", - "impliedFormat": 99 - }, - { - "version": "3917fde9ed0a3f904724e331f69b2eefd99f80a9a4f721c7bd41ac7c52ec424f", - "impliedFormat": 99 - }, - { - "version": "08766d8cfdaae6e2e96009fb939c8f0bb457b70ddefc24373d0e022f94dcb210", - "impliedFormat": 99 - }, - { - "version": "4033b35f38b85606d366e29401cd63bb44b11c631fbe530e7cb6dea285dbce1e", - "impliedFormat": 99 - }, - { - "version": "6fca4a007c11a2cb5cfe738643b21c59127d45d8ac3356c1fcce8d2ea5c9b2ed", - "impliedFormat": 99 - }, - { - "version": "53c5c0ad9ed0605c92add7c41b57b99dce5cdabbf7ca05748d5555883d6dd486", - "impliedFormat": 99 - }, - { - "version": "5a13364736cf0eee277e0ea30431627ad754b51c96b95da0e5cae0155ba48d6d", - "impliedFormat": 99 - }, - { - "version": "b7e920c3467c6146140f4b95c402aef269731c2ba92299efe2eec22dcc71f30b", - "impliedFormat": 99 - }, - { - "version": "adb4426a3053d8d0f06b034134b939a2ebad9a29a07c595b9c70c736e4a52911", - "impliedFormat": 99 - }, - { - "version": "945740c51603a9a460909d8a5a6e32463a5c0cc2aa09ee7b928f2d72b6090734", - "impliedFormat": 99 - }, - { - "version": "38638b101ac74c16d0f70b88c25844762d17bdda307d55aa46215f13fe00ac2d", - "impliedFormat": 99 - }, - { - "version": "eb066db25a443a8d5f333a9e4f4bcdd04d6ea3762c9797532ab1be45862003b3", - "impliedFormat": 99 - }, - { - "version": "e7c940ea5bcfe1616f567f6a505b4b6fe5caef9e34d26988ef0a1fb40a3abbe1", - "impliedFormat": 99 - }, - { - "version": "2ef6dc247554af42f4a3e3c8e21742cae4599fa05f59a9c2504e982f508adbbc", - "impliedFormat": 99 - }, - { - "version": "189bf753c5e1e03fbefee8c915f5bd48806183a329c443e1e95c6268c779f171", - "impliedFormat": 99 - }, - { - "version": "a5f9db2098ba650880bceb00aa750bbecfab946264f0fac87d185e80b4c307a3", - "impliedFormat": 99 - }, - { - "version": "4232ec8f460c0485c081f91381162bbdff18fe2de916770a4e946ce12388b4d1", - "impliedFormat": 99 - }, - { - "version": "49d3dacad2aa3680975ed967177cd45a49e0aa39811686269014941fd28356c8", - "impliedFormat": 99 - }, - { - "version": "161652af6fa3a0b2fc2bcfecfe88927f8f7f0dfd753d7166fb5f8f76d1c3575e", - "impliedFormat": 99 - }, - { - "version": "2c94d2217244dd31275ca5e404560c5c2105b5f06f8985d0f039f39caa1e9e30", - "impliedFormat": 99 - }, - { - "version": "9c88b05bdfe9898787a8776baaacc92b0499b0083905032bd9f3615a3135c26f", - "impliedFormat": 99 - }, - { - "version": "f0d37dc88ab8c863d39af6a97f57f857d10b13e0844ea34ddd5881cf90e933f7", - "impliedFormat": 99 - }, - { - "version": "507029db6003a8e49680a599deb3898856d23b218c69900d2bba4083c1a34a97", - "impliedFormat": 99 - }, - { - "version": "7eda1f0806110518d3f03d78f93925af494ac263872eea3a85a5bfebd2b48bcb", - "impliedFormat": 99 - }, - { - "version": "9d72e652abce6361d6256118706b6e58a5d4a69c10c3b492b3d1652282cfc6a4", - "impliedFormat": 99 - }, - { - "version": "afab761b301923855eb2a1849d23fe9d1dfee534fd986f6c227ed520d02a2d59", - "impliedFormat": 99 - }, - { - "version": "6da7497c314303f19ba36082297c9347ac524e7e9789714f688893fc786f4f9e", - "impliedFormat": 99 - }, - { - "version": "232bc0ccf031ebf6c8b800ec0ca161bebd59525f599a87eb9a06e00e83357b71", - "impliedFormat": 99 - }, - { - "version": "e20a390b32ff2428314c43c37b7c5b74203d4df190ba4dca78e8e583a4b1730d", - "impliedFormat": 99 - }, - { - "version": "6ec56e1d3822c311b013f38145ceee9d3f52e384f63b1cad502c7b1000582297", - "impliedFormat": 99 - }, - { - "version": "f037ed5250876c6be9ed862687f133a35242b367681db9147f03dd7de2fef358", - "impliedFormat": 99 - }, - { - "version": "09eeab65aa4dea908f57c2a0c74f782588c5e5699ef45c534c6f9297a629fcd5", - "impliedFormat": 99 - }, - { - "version": "e06d432a94dc47f95de8488b0b4bdde54b888b1b0632eb946d7b112fa5c14eac", - "impliedFormat": 99 - }, - { - "version": "5a49571bb0a0f9e06b610eaa2dd7ea867ef1b20bba1b9c36725639203145509d", - "impliedFormat": 99 - }, - { - "version": "13a9ab480675d24f21b3a3d3a4e7f659d988d84fe5f29e30ac4da1a2738e36de", - "impliedFormat": 99 - }, - { - "version": "25fffceb7ab08fc16c79698abfef8ddb89e5b00c6df45e45f9b55af99ed839f6", - "impliedFormat": 99 - }, - { - "version": "e61ccfac1b24d6feede2dd2afba891e6b288830ae71102459496f22560fcc004", - "impliedFormat": 99 - }, - { - "version": "a36dd0ef2be08622b042f3f450fefbdddc24bb10791949c5c5d71976a17a26a2", - "impliedFormat": 99 - }, - { - "version": "56cadc658182ee85d96ac84a5d31139eae2545aaf62cd1effaf0db5aa6b70e05", - "impliedFormat": 99 - }, - { - "version": "e48ff4b89eb69807c5e51a5fbc75ffc81db54807f5357b90b59ebffc0b9415e0", - "impliedFormat": 99 - }, - { - "version": "ef813791bab87fdd5d746a49a9376520517e74963b036952457f3cee55719e6f", - "impliedFormat": 99 - }, - { - "version": "07723b68de12b6d9e7071c6413e36b73287a9b747eb0ac7d5e1065d066d9649b", - "impliedFormat": 99 - }, - { - "version": "e6a704fbc2b60d8d203d49e2f2caecafffb77e363c38d255c38e229b8e22946a", - "impliedFormat": 99 - }, - { - "version": "b243a9f1986ad2a517d0fa5986ac8a4603e08a8d13995b87306caa279d1d50fe", - "impliedFormat": 99 - }, - { - "version": "06690b396726acb3836e76d185029247ceb052c61c9c7494f4a16b6ca5797a85", - "impliedFormat": 99 - }, - { - "version": "44f7b257d1c0d16e58bfb2591b9683660cf8e8fde67e182b3b05452fa99d2f10", - "impliedFormat": 99 - }, - { - "version": "67059e2f63687cceeda138077ee88b48f497557d5b9799d4b1816a77947ac864", - "impliedFormat": 99 - }, - { - "version": "6aa1382bb761d5b585a03df5d432149dfe4fa0012aa5edc99d54c52babe6801a", - "impliedFormat": 99 - }, - { - "version": "e9214291673a507e06de72638d08cb77a5a83946ff371fe3118231fd14b66148", - "impliedFormat": 99 - }, - { - "version": "6afd93aec340602a842a3fd846432339eed3581ee1328e65dc9ddf04967681d0", - "impliedFormat": 99 - }, - { - "version": "9f2f5761674a589f162e7b6f2494c4c50f6867a3de50dd3d395fecb9425f39a1", - "impliedFormat": 99 - }, - "ce3c7c3ba150faae7db46761a76bfaa8b9db00f6855d27f77e939ff9c716fe8f", - { - "version": "ca72f9c28f15b1a5c23a7ddb567852ceb99f608228234e50c127ed3cd0d973b8", - "impliedFormat": 99 - }, - "ae1fa7a9df22ff9adffeefe6e0f4b5ba10d3d1f7d4ca776895a66e2ad3e21efe", - "4ee1d290abbf1f0217d8095a7d5b03fde59d033ed6cd2144f44d00d4be253802", - "9429655b9453f05980a3b91ef39f6441cb0ef6a78b3f3e354acddfc123036e77", - "31d0ab74de1fd9fce21839c6c876787ead786d1a203d1c189eea4de6ce090eac", - "06d5d1b2431791f8962535ae80ba5e0c8401a1a144422e82360b1c6ce3f5b549", - "08b93c76e8434688573127c9bce7c714359870e4b4241b387011b95394ecd9ba", - "b52b0fcab15c980829f48682c221292eaaef670a1e61ddc476143d77d95c97aa", - "67962201e53660ba7feb584fa4d28b3bdfe153259085db0df2e4fffb003f638c", - "96e41fbc195e047eb64ffd020b0591d11128cac60634fac2dff654df8233d552", - "5ec61c761dfff985740d4713cce0b47a425e9541a88a9b01a9eacd7aaf15cc64", - "96d8c20a4255328f451d66f76ed50165c1bbbd82631b2472bc2e344d5fec976b", - "19081e8ac7bb0705122ce049f41c969d0c4e7513749238d7d61259d063b14f46", - "683aaeff15d4f52bbf061ff5f43a839ae6a1243f73ef9d10b73c514f3c362c61", - "77f249c007a9a71afb86d6116cd1cdbadb4fedcbc315bab407c76e5521ad6a7d", - "dcc60cf9860afd9c1cab8dde170fd7f98b97341ba788047fa9589a583ed37612", - "7f233ea8d4aaab3fbd48f9dee7a756c4dd35b0356f6c406d67258e769faea922", - "ca924cca346a1a3712bdbdaf36afbde25db401968931f273b228a5b67631b068", - "ae1590b9e7200a4c5c5efc28c73cd47355b87948ecd971024ce528350c6c8369", - "7095a70ca4999ade02963347448b6f0efe1549cad1ec360211fe48f9339d879c", - "cf60423dcf0125fe1dab33e267195eda0d2cdf4a94ead2f2a514d7e87c2627f7", - "3bba8d0ac1c5648a02b0f1ffcc998f613ac4033f00f94704e372f0b6d2d20377", - "bef54edb931a7c15f5b5d5cac2e5384975dcc319b83622398d1b377ff617508f", - "294eeb82cbe341a720270c0bb8c928dafce01a5d4dd1effb40393e3ab9e04bc8", - "8cfe96e5d22240ac7d68d48d8413cb30366c367ae9cd82b41f51f8b83b33915e", - "65c4a978ecc84db99f2a9fe93d2d83d3781ef14eb511e8726e258c9ac8531060", - "50c76d565255ae4fe6ff155f0e4e86820f9c9f20dd50eaa6420835f22aeeafb6", - "8c0b904cc61cc7dbb3253ca01a346ff472b54902ff1a5c93063ca89f7383c27c", - "59d9b4fde13f448e6b6a2d9d12562bd73bf295935b467140393b352aeeea8517", - "629d7f8983182de6063fd561609a6d1480808164861189255f43e4f188397b80", - "069851e20af736d6710b403bec53fbc3b2cb5cd1adadbcf0b7007376b05b54c1", - "6dfe821ee1b570f3dcc405e4b14108931b22e135e29819b6cc955e1caaa45933", - "8cf229172647204252430a1bc4e6a3c09ec88aad5e02e69248d8ff7ae1932ad6", - "195757555f5b8e4ced13b31f9202e5d005010545753fff6966d54dae57948de3", - "c02e08b95e6abace2da20e963c1398c6e53791d9d7a364a572578a4636c482f2", - "58c572bea38ee2468072ff68f7a8a78dea371dbbffa901a2739902a625ce1cb2", - "d78ee85931b652935e455149c4e9640c28456f942b143ba9520060aa40fe76f6", - "e7ee93a85bd9ddd1d5c117bbbdbc77df692efd485501ff5bf0b80e0650b479c4", - "b459e02ec0a2db4c571bc6002bbc8f503333849cf1ed43dd80b704546e75d69a", - "9a495258d624d913937e0ac3d6f861b14ef98e000adbc27f5e36667427f1f74b", - "ba1c78cb52fa44d22f1343c2965f5db96d56231c35237dacd00c39bfde5f35d0", - "160654c8a0de36598f781317287fbfbbcc47ceb1d31d00577bf5ad27b4b37c66", - "5188e534a9f349b4a80d29a19cfe8e9db8875254969632677e7bb52b21c48154", - { - "version": "ae00023c4fb6d8310666f6f047f455331ded1cd758182decd54d7f3f2bdc7e73", - "impliedFormat": 1 - }, - { - "version": "1e380bb9f7438543101f54ecd1b5c0b8216eea8d5650e98ec95e4c9aa116cdd5", - "impliedFormat": 1 - }, - { - "version": "d0b73f1df56fbd242fd78d55b29e1de340548048f19ac104fe2b201dc49529ff", - "impliedFormat": 1 - }, - { - "version": "287fa50a234cad0b96ebba3713fe57a7115f7b657dc44638fbce57c45ac71397", - "impliedFormat": 1 - }, - { - "version": "c42852405dff422a8b20dd3a9ada0130237ee9398a783151aa0f73474c246aeb", - "impliedFormat": 1 - }, - { - "version": "d3260c8d6fb8ab6b92c412c3c0b793dc524dbcc6737300cd4cf22198122479a4", - "impliedFormat": 1 - }, - { - "version": "f7ebfaa84846f84bd01665f4dd3773ff2b1c38c7992fd1042cd9132bf0afc82d", - "impliedFormat": 1 - }, - { - "version": "b03829b7141ddbc20c9da5de4f8021ef99b57b169e753d28ba5582d02bc9d5da", - "impliedFormat": 1 - }, - { - "version": "d1c49ba10ba80d18dc288f021c86c496d5581112ef6e107e9e9c20f746ee7b0a", - "impliedFormat": 1 - }, - { - "version": "f3c5ea78b54672f9440be1a2ae3f6aeb0184f6a4f641c3cca51949e9cd00a258", - "impliedFormat": 1 - }, - { - "version": "18c80d84f84c86fe54b60fcd30445c2e4ff24d9a14998bdf28109fb52eb9863c", - "impliedFormat": 1 - }, - { - "version": "d91e9e625a2903192e9a63361b89330f0d95c340d9bb4602b89f485e9f93cdd6", - "impliedFormat": 1 - }, - { - "version": "176a47d228081ad51c1d62769b77b064abbeb6827115033cce1cdeb340a8d46c", - "impliedFormat": 1 - }, - { - "version": "b5eaf1cc561810ebfb369039a6e77a4d0f74bf3162d65421a52fc5b9b5158c2c", - "impliedFormat": 1 - }, - { - "version": "7d12ec184af986cc2a0fdc97f6c7f5a547ecdd8434856a323ea7ff064e15f858", - "impliedFormat": 1 - }, - { - "version": "8535298578313ba0f71a41619e193767baec9ccf6d8fad90bc144bcba444307a", - "impliedFormat": 1 - }, - { - "version": "582c2a0f6644418778de380a059c62fbc13d8a85e78a6b7458b2e83963257870", - "impliedFormat": 1 - }, - { - "version": "7325d8a375ba3096bc9dca94c681cc8a84dba97730bae3115755ee4f11c9821e", - "impliedFormat": 1 - }, - "f1f0173f36a3ddc23d4a09b4b4189bee76b770ea8d9513b46d8810982b27de7e", - "0d2e135dec04a36281d5bc1a70466d16054e343027a7fccb46d3b738cdab75cd", - { - "version": "f3815045e126ec1b9d224782805a915ae01876a1c7d1eb9b3e320ffadbd63535", - "impliedFormat": 1 - }, - { - "version": "d07557f21b2ad690bfe37864aa28090bd7d01c7152b77938d92d97c8419c7144", - "impliedFormat": 1 - }, - { - "version": "b843ea5227a9873512aa1226b546a7e52ea5e922b89461f8b202a2f2a3f0b013", - "impliedFormat": 1 - }, - { - "version": "64b4d440f905da272e0568224ef8d62c5cd730755c6d453043f2e606e060ec5a", - "impliedFormat": 1 - }, - { - "version": "d6b58d955981bc1742501b792f1ab9f4cba0c4611f28dcf1c99376c1c33c9f9c", - "impliedFormat": 1 - }, - { - "version": "f0b9f6d5db82c3d1679f71b187c4451dbc2875ba734ce416a4804ad47390970a", - "impliedFormat": 1 - }, - { - "version": "a5c38939c3e22954a7166d80ab931ac6757283737b000f1e6dc924c6f4402b88", - "impliedFormat": 1 - }, - { - "version": "31a863da9da2a3edec16665695bdbc3134e853195f82dafec58e98c8e1bb3119", - "impliedFormat": 1 - }, - "ea6bc17b58d0f6e4b6c479c4bb21993c3ae557a7ce4a33f00954a686ecae31e4", - "7111027ef7aea1e2dd059569c47bea02e4afcbc72e2d1a7702447ed791e8de22", - "b3c7ec93ea0e40ed28275e6f301de022cbb2026d4e97fc763f79916f6141f7bb", - "01d3c2c0583182e8b66a41984e5953ea26a77057755ea0e21a24fa95d6d86271", - "b278c5bcee3ce4dbd560dc6c50a656a919d3400a8ee7c2cd6eb3460fd0d26739", - "6c64d45371b5d063456fdce13fbc55f6f053ba298f1976173cf739367a2798e4", - "1812e8b1a12bc5857e721ffc0d996d6a6fb0c12cf1f4e485bd511a1365085b5d", - "d3d313d258c1c4cb34d504fa9aeaeebefb3b9985d1e9e0f89cbe3e02a199e2cd", - "f7bc2f50c841db75dac3696b38fe2151fe9213e067b7c5fdd785ca42e1e99f29", - "5be3c087190e23af13d156b8ccb70ad29dc5ef36cee58fd28703b15e8b54bac1", - "4a65d7bb13a94ec2c3c69567fcc059778b0c348530dc42d885034a54ffd20626", - "f560bc2005a54e0242ce57051cd13bfdcfd9e574607b8c01d798c66933ecf8ed", - "ff89b56c0a9a93e40373a8ee2a24e51a1793d102156bad8883ab3ce93d5161fe", - "d8fd0efef2a82107438e9bd01bba0d2fd7c1c436476e73c9d05fc8ea27ff5d1a", - "e441470cdac825d3f8b6c28999f8693880ff9923b45619beb217aeecb56c0e23", - "41c0fb8577bc70f165f0273500d328786f52294cc29590d61cb61cd1b72de798", - "e311c492faceef366dbff60af3b59c1a438bda7943619ca3ee541313c001fd9d", - "b380c706f9de72bf933a237a1b50befeebca6ea5f534fdfb57c2d6cd1a92d522", - "2a58801bf8bc12236f3ac135f45926ad40b6242462dbaa799b4e0c90fad82f96", - "5a4304349625de99341863043e613641838ea8ae641d4a8d1da4f61ba5fdc022", - "9d7c1fc91a81529bc24dfa082f8e1090ce9e30bed1a418623341cc9dbfda7264", - "fd3e792cc8996c1704e2679e6984092b395c88867a15441a888399f6bcd69c20", - "5fe256dda45854c34992b8d5d82a73762a38ee14ee44c2230e09b3046131a1d1", - "ff5685483e06fd0e22bf16af1a1bb047494c4e5252ffd46d74296eea580685dd", - "1f1c04a6a43c3d582339961ea2faa03aac0cecae68b6b27fb9b3afcb5745b940", - "7e7b0f8df715f7e9f4c68a795c2f775d0a060ee0f44e19fefd032f569c8a6e25", - "31d144c72b645ad30dd7a5764a073589ea77b6ddb4d995abf647dbf22acbdeb7", - "64511ad1477e4f80c0481a30af4307bf2af8e1d8af5c82b3cb8cd74232b7fd71", - "df690e1ad297fb02ae0fc26f5384f487990c5089ac6563d12df91da3bb40155c", - "1283f9e9c63a1c12d7675193ec30e06b4c7e24dc46c58b86cc38ffaee162ec1f", - "511eee4e40293728b79ced7b44bc87195fa41cba1b0e9c590181e082c7be71a3", - "1ffe1b99406d51b0f36867ca94d9ab3e01f988f678d9e379f2ae4c6e2815e584", - "3632e3be47e6fd799fcfc9983e922e2f8bdd9280d67ff6507ea4df036739cff8", - "71190a059221e8ebc31bbe01bce94d3469e902ead927c35b349f8b7908e3a7a2", - "804559ed4ea15c807a9aca3dcb59b67a86c8ecd0a961ff59015dcf9532070694", - "15511126c00c2621b98581871f798af551fd09c9e8985f8cb1873deb077c4c5b", - "22bbaee7f5522608a945b0a79262d61683431c745b907bbbecb0166ca0fab408", - "03cbe6262fa484aae254ea69fd64ce70b1ea91704ddb4ef5988b0cda1446dd17", - "168b5ac44b2399ebcf5e2cb12857958df9c11e22a44f5fcada797002c0b491cd", - "61f8bbfb9e0f9aefff7d8ee385beda59f1d834cb1034f34dc178636fb594d4da", - "d24f905667e2f28f8111d80b6b588c776f7d8e0e0517b3790aa1a8570cf0f05c", - "4068aa9b9669b3cc11b8a9bdfe0dce10b1f6f0981f0506c8e35c64f6e68afda5", - "a1141b37c965ae048e424e336f875ee60415a23e5fbe2009d510de33be21724f", - "f00a705e36df17bef9679c89439be28d858d411b92f9b5274179a66642496a2c", - "32e260349b941f9522b190a0cda7166b2332c93297acd45423d735290112d7bd", - "1891ebae3da4c7d53a78303f2cd1c648d8aaacc3bb283af27662a28d38d821c4", - "834ce6a42d1f387d5c5150f30eadea4fc5d08f107e70a9568b0798ec2cadcc49", - "868e9797a22cdc89de9bdb7b83c6f327c3626d79fdf6af8bafa7b7d7cdf48658", - "e4f2b02c35cda1a7de5b805664d0f0476ab6828d000612849f14c3466b5c9709", - "e1e875d4ff17299d40fe69e9c047f844894573a05a0a87ac82048ce5e749a248", - { - "version": "90a9296d18c3bb120a49902d61865a6ba6ebad9ed5d208f5913d87beb687c32f", - "impliedFormat": 1 - }, - { - "version": "fc4841d2121456f1b3b73a883a4fbcd90eb82bca0a63103aabf4e4b9b48c1552", - "impliedFormat": 1 - }, - { - "version": "892a80669ac232c14837d2e7ef1cd29b9c4e501181440c4a995fd59c17c62295", - "impliedFormat": 1 - }, - { - "version": "835de90953b9b6133cab1664bf1ee40472a4be2a10b8faa0dd450316741761ec", - "impliedFormat": 1 - }, - { - "version": "f0f6d06f66eae1df3031325b3cc6338962fa0f9e13eabc90a0adcce76079a2ca", - "impliedFormat": 1 - }, - "0c98b172ec6e37fcb56df203e5bd09c4b0d4e587e33c1b491e75c4cf51ccc9a1", - { - "version": "c469d07daf4f88b613f0c99d95389e049e85c14f28f58120abca6785a0b3813d", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - "d2beb027655cd554b6083693f6a0207d1a7b271413dee7185a9ca4f8cf28d426", - "2b4ec135db1995cf242618d2ccb8c06305957e302e58d11ceebae727bce66b4e", - "42c14fd16b9c488867f9c1938ffb5ff61976951cb0343755aea3f10502ecb699", - "6a2f6e28b6b5d87f90e39e2926da8a4d32f65bc6054f3c44b0a7fe3e4fb11256", - { - "version": "42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3", - "impliedFormat": 1 - }, - "61baa97687c2f109f6db2a60cd41f5bc17da53ae855dc92d8903864d81b6ade1", - "0dff438a8ee392c9dd423c235d429152d4d710ba3dfcea04e91c47e636bf27c3", - "33101d6c1fc44fcaf57bd8fe67f103af9bfb8a8cad74fdb1c59f5353433ef206", - { - "version": "97f8e94dd0146423f95c860461ca82c98e4d9a8c32afc14556712b28f106c970", - "impliedFormat": 1 - }, - { - "version": "88da16eba1d14750f3b3ee00292123e52fb08f779a30fde6901d5cb72501a40a", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "879fc44ada933941a7d2b20e6d0d1749081f17b4e911237794cd2038fdb746be", - "impliedFormat": 1 - }, - { - "version": "c60f4f6cb8949ec208168c0baf7be477a3c664f058659ff6139070dc512c2d87", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "901f5d41fb92706eb4c4ca3e7dccc2671501bed1b910185611958bbda9f0c74a", - "impliedFormat": 1 - }, - { - "version": "52ae84fa49dc45cfb37f55379dd6e01b532840bd942e1c32954035f4c5b206a4", - "impliedFormat": 1 - }, - { - "version": "d08cd8b8a3615844c40641ad0eda689be45467c06c4c20d2fc9d0fcf3c96ae3f", - "impliedFormat": 1 - }, - { - "version": "8a14c2a1fe0288eebd8f827a60af906a8d055b3a137e73d1d7d52965bb9a768b", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "8092423644a68740e620384e547f254472386b6ea1e2d233a799068dee2aea99", - "impliedFormat": 1 - }, - { - "version": "c047bd5c3ad275b8649a5fdc99f4d0549584b0bd94e08a84a77b555a28e9885c", - "impliedFormat": 1 - }, - { - "version": "9f642953aba68babd23de41de85d4e97f0c39ef074cb8ab8aa7d55237f62aff6", - "impliedFormat": 1 - }, - { - "version": "9f2f5761674a589f162e7b6f2494c4c50f6867a3de50dd3d395fecb9425f39a1", - "impliedFormat": 99 - }, - { - "version": "8a6838a1bdbe6fb96d147a4ab237c66d49f2804a4ae05be916e809b9b389e1a2", - "impliedFormat": 1 - }, - { - "version": "2859adaa4f2db3d4f0fc37ad86f056045341496b58fba0dbc16a222f9d5d55b1", - "impliedFormat": 1 - }, - "10a9865f99888e7a0f386994802f5453265fae845a951ec7f17aa89d5f4b22f3", - "5f73e6bb2d002a3cf576c034cf322d276c87a52d46ea04e1afbc16787713ffa6", - { - "version": "20765168551099b20a1102b2ef34897b51aa4cdf16b6580dda5618202fb288b6", - "impliedFormat": 1 - }, - { - "version": "ff88e3403522f6104b89729cc09f28bd0ea47d3a1d5018cac1d52ba478fabfb1", - "impliedFormat": 1 - }, - { - "version": "6b2879aa1c1ed48cd3b421a546f3abb5c05536e659edbce40f09073b097fad89", - "impliedFormat": 1 - }, - { - "version": "7c5780095ed74d698e9f7b2fb59c2701854901605e606e21da0828d97d479298", - "impliedFormat": 1 - }, - { - "version": "3827fede532f1f65239e45a2d2faabf19538bf0c56f6f0f95f642eba7a30b3de", - "impliedFormat": 1 - }, - { - "version": "1e5eb88de97808474ab1e552fd1256c6765d4044633b98fb5acc662f2800895f", - "impliedFormat": 1 - }, - { - "version": "be362a31dff85020118be44789e37329db7ceda72245145122234b3c7377dc54", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "1858da773f5eaa3f3c8dc07b401e85d3057ff01771c84c905c11a34472487742", - "impliedFormat": 1 - }, - { - "version": "5f8222bae001f581d16271ffbd01c3a2f8618557b3e51121e02b021861ea4f99", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "5e008084cd098aa800af76f219bb2b72e4838e123dc0159b9ae9d9bb86a09d36", - "impliedFormat": 1 - }, - { - "version": "6aeacd5d41b88adfb2972cd80040b89646758144e867a9f7cf6409abe1a00c84", - "impliedFormat": 1 - }, - { - "version": "b1e774e80744e7778fb1e05f5ac8d4be738bda4db655c446adb92e9bd8989899", - "impliedFormat": 1 - }, - { - "version": "5da3b2f37592391ff2dd25132953444a8ec1d1fed21960ce57d2b7e15201e68d", - "impliedFormat": 1 - }, - { - "version": "594a33060a04566a6663b4bf78a5d6264a369e73a538543c27fec12d7609e84b", - "impliedFormat": 1 - }, - { - "version": "e1004c6d8a7bfd787979360f7078ddedcfbbd4f2a132d62deb3e4ba7af31ab79", - "impliedFormat": 1 - }, - { - "version": "61006fd5c902774e30ffce9865c6e213be48534b1977d922c17408a4fd872833", - "impliedFormat": 1 - }, - { - "version": "c4f93ea40377348f570e9774b0db39a1fc351f218372973d366be592d668dbee", - "impliedFormat": 1 - }, - { - "version": "88fce6617f5a99d4b571fa600a4927f4eb208c7cfb112884c5f29b0a640f5b7f", - "impliedFormat": 1 - }, - { - "version": "126f2cf435fb6001e4a0375f3e3faa28c8791b35199106f98c8697598a873c22", - "impliedFormat": 1 - }, - { - "version": "5bc286491aa3838d9d46985e6d814ff702203b3c5da190ef7a2bfe27d2dd82ff", - "impliedFormat": 1 - }, - { - "version": "d75eb2ca7a4ea34e3e328533db1a377c1b254344b5ac3afe9d87a65566623c0f", - "impliedFormat": 1 - }, - { - "version": "b1b49b7300be445bac2b9d23887bafceba69c2797c111ad5b0e04305e95eab9d", - "impliedFormat": 1 - }, - { - "version": "37f8247e57a484b78066005b9ec35c5b9f9cdb2f450a3aebe603876569228e1a", - "impliedFormat": 1 - }, - { - "version": "392543e841b7844879421519ced56b772ea5ae59c37109dde965b76d0f2f49de", - "impliedFormat": 1 - }, - { - "version": "145f6416d156ee0a4ca0d32b73a0068db1b1565f3aa5776a215f35e66abe6d3f", - "impliedFormat": 1 - }, - { - "version": "012841c703f070be20484a69c5a6b90a757a123b1b005fe8196c951217067f78", - "impliedFormat": 1 - }, - { - "version": "161e3ba2ac76d6cc324d254ede6ac484d2e9ed425348cfa87d189ea69945821f", - "impliedFormat": 1 - }, - { - "version": "0039fd95c84be02289e15fa2c4bb6c35eb934d761564bfe703a61ab14b1ee014", - "impliedFormat": 1 - }, - { - "version": "260ded48dd3435416a98aff8292889ef4aa40b1930ab94031a528ebe9ef49972", - "impliedFormat": 1 - }, - { - "version": "ea3e45f558a9a99f287fbbb0a2810550dfa8faa60e059fa24e8240de5dd9c494", - "impliedFormat": 1 - }, - { - "version": "26ebf4a27f1a10c313c1955eb7fd569c57199df685c2fb762fb05e6bbe299f82", - "impliedFormat": 1 - }, - { - "version": "fc1bce5a03955986007362507d526f8c32981596391baf7edc8e442ecb7ab91b", - "impliedFormat": 1 - }, - { - "version": "d60ad07f74606f70b48931dac8babf7edbebb51f52dd7afa477101030795b5ad", - "impliedFormat": 1 - }, - { - "version": "b1a2859cafec800c00c904d464e54bffc6fb4df5162fffe61f169a4e42912ef9", - "impliedFormat": 1 - }, - { - "version": "1d36d2993a5c7789eb9b4049e1a227024285ccf541827e10a98e319e6d5893d1", - "impliedFormat": 1 - }, - { - "version": "a36f021977924f8ba2fe2f195098e2a3bf9ae243bcddbc929b9159e03926d79a", - "impliedFormat": 1 - }, - { - "version": "a8d36752909e7b9383bf86c5ec79478b4d850bd732e8b3b08e4db613b9b8ea89", - "impliedFormat": 1 - }, - { - "version": "c811dcf9a69456c7e0d28ed5963e4e74613fb387531f4ff6a6dd52e9824b6387", - "impliedFormat": 1 - }, - { - "version": "6952ecc759c5924431b10d9bca6835fdd0ae78f2c1f82942eea96ab6a57e93e4", - "impliedFormat": 1 - }, - { - "version": "7b79b700827ada32186fe229c4808a30399f053c75cd7d1843153c78a40ce35e", - "impliedFormat": 1 - }, - { - "version": "713e89bd552ba627a8c9c684fed2a52331644d7fc683738443ee734cafd95ee7", - "impliedFormat": 1 - }, - { - "version": "a90192e01a81c4da4e3e645247a0a1f303b26c5ab700a924301b36a35e2792d6", - "impliedFormat": 1 - }, - { - "version": "4efe5bf668103e063f470bfb29456f92bb1ea45587393781e1976a42f4e7d111", - "impliedFormat": 1 - }, - { - "version": "5c668b1595061ecb341483d22496359bab6a14a22e4d99181568ab75848e1281", - "impliedFormat": 1 - }, - { - "version": "073066006ee7f63c193b14616d2980299b5506d394e367016db33862b2bbeeae", - "impliedFormat": 1 - }, - { - "version": "c093d945ff065b5256e6c3ba7033fb7372ce5158b7bb34ac4f0bf4071604afa2", - "impliedFormat": 1 - }, - { - "version": "f4980aea653a6479c0c41619b73f0c87d6e995b7b9f4dca6c9c6bd2c4eebac03", - "impliedFormat": 1 - }, - { - "version": "67ead1486dbc86c293c0c43ed92eecc167575c92c50b52d0b384680356f00ae9", - "impliedFormat": 1 - }, - { - "version": "3cc3b84f53a7650019831d29f5dddb17cc912d2334f985c29b9a920f76d5f522", - "impliedFormat": 1 - }, - { - "version": "917e4d3fe07828b9ddc935e5c7ffb63cfa255ecf056526473de8050f8d03fd95", - "impliedFormat": 1 - }, - { - "version": "dfaba7247c324189ae99d616acd570e927a641772a9db8683cad4ca30032edbe", - "impliedFormat": 1 - }, - { - "version": "603688d747b2fd5e804b8856493d1001e220be122bf68109a203317b43e3f948", - "impliedFormat": 1 - }, - { - "version": "14cb641005133f57786e27edc6ae365463ea27c4e6d6082f7a7c4f504536cea4", - "impliedFormat": 1 - }, - { - "version": "df2d3490c3a50376fc0bbc2fd9a2d2b95cb6f5a2c353d24ab4641a311791278d", - "impliedFormat": 1 - }, - { - "version": "3f5a2813dc025814ba019ac6b2169367b9b52c0ab84f5fe70778c0862db1a0eb", - "impliedFormat": 1 - }, - { - "version": "5962671fd84a193cbd9d755b28b95a1aa6ff2384da0e0d04e1edadb09705c504", - "impliedFormat": 1 - }, - { - "version": "76103dcdcee2b6db59e57757bfe2893bce68793b75d44817e4aa19e8b3b09c58", - "impliedFormat": 1 - }, - { - "version": "f8d023aa4406885374a80517bd70bce3463ca0cad70dd0c3c63b2cfddb1584a8", - "impliedFormat": 1 - }, - { - "version": "91267a77b58715c9324a47bbb2ccf5c90606e61df02dc6a01ce9949f8191f6c8", - "impliedFormat": 1 - }, - { - "version": "6e89f9d3dafd8d137b21b6f49ee8b6eb1224557ca301f296f2d106deed4eee6d", - "impliedFormat": 1 - }, - { - "version": "a2663c0878d107a5fe897e53a842fc487907741173cb9ff329988a295fa15f84", - "impliedFormat": 1 - }, - { - "version": "cbdc36d10a56cb4f8e90fd6c1969981f000c1bd2908aea5e5015ec7e71140d44", - "impliedFormat": 1 - }, - { - "version": "58a83f59bfaa8ed1ea333a683ff75282f26d5191532f63b91ba97e704da89bf1", - "impliedFormat": 1 - }, - { - "version": "9af883b883a446071918d53b4aa6f774cada185716df38288ab78a0da1b3a9de", - "impliedFormat": 1 - }, - { - "version": "cb83da5b102a0a7b8bb6138ca90b0497707c7659dabc60a77b99d1f13bdf9fa2", - "impliedFormat": 1 - }, - { - "version": "54b6a7f3dee8f6b3be09c83c7981fad5b748e996e50dfb1ee18a9e1156d38254", - "impliedFormat": 1 - }, - { - "version": "b93550d2b60509ff48c4aa237d76736971bc28bc2a044bc1c443bdf7a1314c1c", - "impliedFormat": 1 - }, - { - "version": "db7d16ef1835aa16a51befa5a68cd7f260597f775de2f443c2e20b1bd17dd3c7", - "impliedFormat": 1 - }, - { - "version": "b00375bf3294048fa0d37c1b00713f8a679a8b0801802c79bdad335fe112a14e", - "impliedFormat": 1 - }, - { - "version": "83b4a79b75090e1b35bafd68ab0fc1fa9678719d3bf9eab05b1376e4ace701c5", - "impliedFormat": 1 - }, - { - "version": "7c3c8fef31b5badb5c01645e1ed4313efef1a2f61c31792a182d59272c29d43e", - "impliedFormat": 1 - }, - { - "version": "d30146c76542db9811d76be1473e17386f444f206b92fb3e504dbd4a293d9781", - "impliedFormat": 1 - }, - { - "version": "37a299a6f7425a624b13c14326b712654495647424c0683e38ff5ff89043bdfc", - "impliedFormat": 1 - }, - { - "version": "51741ad2e093a68359030f1b37d11cae828be5fbad7da1d9497664299b36a099", - "impliedFormat": 1 - }, - { - "version": "e9edbba023c30a46cb5e20066418427780310ac9da314a589889db00f1f3f89d", - "impliedFormat": 1 - }, - { - "version": "8f6c40eff2221bbf8e156e502b612480090256eada3671fdcbd92581a4a719d3", - "impliedFormat": 1 - }, - { - "version": "e4248b0a728dfd3c9ce2b25b19394b02709c1d5e7f0036e290974c5e8a71a2f7", - "impliedFormat": 1 - }, - { - "version": "43a4a8768d59987d33f80a60c6f51cd922d0367e18a4c0f7a21e10a22d201243", - "impliedFormat": 1 - }, - { - "version": "ef67fb59776bede370e8b78a9554ccb6a1863b21fdcf41730919afbed00d0ddc", - "impliedFormat": 1 - }, - { - "version": "39746082f882a595a185e65a63b3c530c90d9a38a02723004261a9e297129c9e", - "impliedFormat": 1 - }, - { - "version": "aaa5654ffca4c560d37c5ad236df82f70810c2cca081a1849a9447abf5539ddf", - "impliedFormat": 1 - }, - { - "version": "2d5e8a00a806fa1536c4d5f314756ffdfe4f91037ac3401b44e6643c074e19d7", - "impliedFormat": 1 - }, - { - "version": "0d12963e824879f33ce26b5379aa1281413d89e86a5f1dd3a5db81c0a2fe9c4c", - "impliedFormat": 1 - }, - { - "version": "8c6713c6e4e87c4d29b1354d49675a7b4f94183b4d03358d21b7a2d8145ecdbe", - "impliedFormat": 1 - }, - { - "version": "fae1240010a374142711478e4bb4cb8c5c3833f59cce5680d3eae591ada4ae5f", - "impliedFormat": 1 - }, - { - "version": "962886aac4d1668b030cfb02cd8b4e3c7477b050a0fb363558b570cc1847a558", - "impliedFormat": 1 - }, - { - "version": "99bc8d6863512a9431df6577c5c2fe3862cb1bee8799f3d27867e93edc0dd519", - "impliedFormat": 1 - }, - { - "version": "907274822459c862348f74f30b6a0fd54140193e2bd17eab43fb39d0c1a71a11", - "impliedFormat": 1 - }, - { - "version": "4f9c59ea50c3abd0956feee27e5c1f0e235fc9a9e5e4adf03c763dbfa5cd1e85", - "impliedFormat": 1 - }, - { - "version": "9f6eb1f32a51bfe805ece0bb44d1865bcf9963e88e6c0ea1e39ecaee02fb8dfb", - "impliedFormat": 1 - }, - { - "version": "02bbc55ec795596b38ee4ec497d4362dbfe1f3bee1becef6afffa01dc224ad51", - "impliedFormat": 1 - }, - { - "version": "ba57f6882bfe7ca9d8e12319c10175ab2e0d6a548231d8c04d4b5f40650d3bb7", - "impliedFormat": 1 - }, - { - "version": "f18b4bea2d3930ce7379e9a008384d55200985a74c45a52956cf5358021eeefb", - "impliedFormat": 1 - }, - { - "version": "04fc620dbbe642d3842232037c5cbd4dcdce4ddff963deafb8aed1f46a976b63", - "impliedFormat": 1 - }, - { - "version": "6d7218f73acdd197dc68478db324f2604fd4385fb279bd97214faed16aec5d86", - "impliedFormat": 1 - }, - { - "version": "28150e454e690d820a291e3f43b2b9edd555fab29c75361f43717f8fb3128500", - "impliedFormat": 1 - }, - { - "version": "8027f19e88b2f8f37b128e643286233e8ee6d87bec59359459d84e216116d7fb", - "impliedFormat": 1 - }, - { - "version": "3c4b44c5f88256d11bcadc47eae39af72f7ec13d623ddeb2ccc4a29c3dd22da5", - "impliedFormat": 1 - }, - { - "version": "4d4a12d49b3060319f144f993a0af3d9be8d1470b47322448eeb094eb6020c07", - "impliedFormat": 1 - }, - { - "version": "ccff3027b7701da3dc227340aa815a8448ccf5785d839327bb8951e0cc40f667", - "impliedFormat": 1 - }, - { - "version": "b9d714cf286adda44d56cce0cabd4c01b2c8ddf755bccd11881f496df50bc072", - "impliedFormat": 1 - }, - { - "version": "e16e229f7517fe5f2eefde410db3b21e0da3ec62a53be2147319f91ae220f08f", - "impliedFormat": 1 - }, - { - "version": "b2cfb28be51d95c5a2effe4a0bc5871ee325a61cc9a4b394f8493915805a7921", - "impliedFormat": 1 - }, - { - "version": "668d460a742b43b9cce5de83f795f97b801ad02bdd33f84853bf301e77a3d0c3", - "impliedFormat": 1 - }, - { - "version": "eb0625d313e9ad9dcba6148285aa898d78f026f43a7c1f344012aa4c51403cef", - "impliedFormat": 1 - }, - { - "version": "20fe84ab2214c06bf34584801d8eec11306b191de2da2844f77549d6dd41f543", - "impliedFormat": 1 - }, - { - "version": "d542d9212d30391c3216ed416f0e1bdbc68dbcdd7ac894361ec998413ef0bc91", - "impliedFormat": 1 - }, - { - "version": "4447d3229f5f11ed9c21a577415c634d6f0f88c20f39d4a416ac6d359f5568d9", - "impliedFormat": 1 - }, - { - "version": "8e8d5db1b3c2d5a829c3f874d9c461778e34deab79307931a6f1e83818de7600", - "impliedFormat": 1 - }, - { - "version": "adab54c16578685abbb9d0f12d29f328dde6040c1d858b698778c63944d8b019", - "impliedFormat": 1 - }, - { - "version": "635bc99642d72c8444c5937fb6e8d8a449cef4f73824ecb3c9ff5bcd96d9d023", - "impliedFormat": 1 - }, - { - "version": "9a8118dbaed0a95b33528f4fcb1cf21c569dfde81425f72d3ecf9feab28d7720", - "impliedFormat": 1 - }, - { - "version": "2c797623016f76f4d97a445ec1a1f091e91c5e0bbde9d17f6e8bc8136270c9a5", - "impliedFormat": 1 - }, - { - "version": "0115e4e6f08b8384d2f356c8d392e1a8237cfd9105081eeecb9f0393de22e628", - "impliedFormat": 1 - }, - { - "version": "fb35442fa2fb13cb73e7b6a42f2d1db3540b7cf893078d42dbaf6cd48dd120c3", - "impliedFormat": 1 - }, - { - "version": "57810fb8b19f3f7244192a6b2f8a648e0acf36d277c026c9f842f0ab21d30eb3", - "impliedFormat": 1 - }, - { - "version": "2d7925113e1f6e495aa5b4d346d9903f0578829f6b96a44f934cd8fc139d785f", - "impliedFormat": 1 - }, - { - "version": "a9ee8731b5bec4a3497ca3f0b93b61f98243d24bc510c2612543c6294e6ed707", - "impliedFormat": 1 - }, - { - "version": "92327c628c50b0e65bd014f8e1d528559d01259d72956196bf687ff603689d72", - "impliedFormat": 1 - }, - { - "version": "5a4448b86912e33eb1f80fb159ca9e35c431fd28593b5f5c89fbe97a05a32b49", - "impliedFormat": 1 - }, - { - "version": "56a2f3dcdb7e308aecf38cefc58ac2f6a141160ca6ffd74b4de4033a1cfbef32", - "impliedFormat": 1 - }, - { - "version": "4648f637303911189851831c3686938af70072c2fee6b7c7280c1a8b9065cd92", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "f133154ae3e7e77f6ceda8026b676e67904248b09534869226e574b50f7f3beb", - "impliedFormat": 1 - }, - { - "version": "e7f879db9c1304147b0064b6f5db219064287c595ad3f8159eb392a1568511da", - "impliedFormat": 1 - }, - { - "version": "5cad2832a7a1b526ee8c879e10d9cad0069a81bedbd6ecd3a6b238bde1cafd75", - "impliedFormat": 1 - }, - { - "version": "181bfb095c74c8a445f72bb1a455b4f114f9cd7907750fcf61407fd8a84dc10f", - "impliedFormat": 1 - }, - { - "version": "c625fc7d1c4cdedf1b79a59a93dbec5832902e3853fc374bf147174b378fd0f1", - "impliedFormat": 1 - }, - { - "version": "e870e5f8b54d1e25640e476fc91fe6af3593b79d0f36a2c44ca3f3ba829cb9a9", - "impliedFormat": 1 - }, - { - "version": "9ed50b7321d23c3f9b542b04dbac318024147daec75a1989d22f6156aa45bb0a", - "impliedFormat": 1 - }, - { - "version": "36f69855a6ad290151c7fd7b8e57be113a61a9f4f420b44abb970b611ebdf9bf", - "impliedFormat": 1 - }, - { - "version": "8f47f2ba247caa340e7dede8958340957505192c23d3fd2f196e6f6871cacb7b", - "impliedFormat": 1 - }, - { - "version": "ba00b929537401a6305745f6023b7b9cf3d20b5191f186d0fcf79f0552988a68", - "impliedFormat": 1 - }, - { - "version": "644a3153fad384d1916117edcaf79f754c7a128f2b790b9b3d1c6aadb9370e28", - "impliedFormat": 1 - }, - { - "version": "a92458efbc9a8017e36614181faf85334f20315bff7e84ec3e25edfb7575b4b2", - "impliedFormat": 1 - }, - { - "version": "aa10e87dd89789375e9043ca12f3a43dc6fbf6a01d9dfaaa05be545380035211", - "impliedFormat": 1 - }, - { - "version": "a3bab9e5e0cbb1a5567b3518ffa2862589172f39551afc15b942138c1bbe6d54", - "impliedFormat": 1 - }, - { - "version": "e117e2338388fac73a2d8317db2c8b24d57ef98601deca94288956a8fe4e7f8e", - "impliedFormat": 1 - }, - { - "version": "3a07224f5c15ff2d9ea61c396379b644896a12436235cb223b2e050b23c4925e", - "impliedFormat": 1 - }, - { - "version": "8e58eba9304f25a63c67ca6213b758a24fc8d79ec0084f5296d3d3f389af5be1", - "impliedFormat": 1 - }, - { - "version": "816f4676a7f0521b45751530feb1da99a3553fac1dfceb44b099046b4f241544", - "impliedFormat": 1 - }, - { - "version": "e7cea9972cca905d58890f759b558b84111bdaa1694dd8f04173bb32e0fc6609", - "impliedFormat": 1 - }, - { - "version": "8e75753120195cce058c27a4fc1d1bd364c98188895ce0de18d72ec74259019c", - "impliedFormat": 1 - }, - { - "version": "29d877024e36f24df56056f7f9447ff3300f89375f83f99c067d6ee3bb61a73b", - "impliedFormat": 1 - }, - { - "version": "84737d32ba8b544fe0a9bbc7abb81225c348bdbf60a3484e439f5ccf150e6a21", - "impliedFormat": 1 - }, - { - "version": "e78af27a4adb43c712a3e25c654d11155990d0bf08b4267a9de7a31f5be60a6c", - "impliedFormat": 1 - }, - { - "version": "19ab703c28eaa2916f416a57b7c3858b5fbbc48c02a78fb18c76ca0e561e25a1", - "impliedFormat": 1 - }, - { - "version": "de751db9f0aa22ab3c2ed5e3e5b041af7f5e849ccf1322c14feae5a3fa041e24", - "impliedFormat": 1 - }, - { - "version": "5506f93fed799ae0ab9b969d2802aec981864ae5a438fde411bbb947f5b7cb25", - "impliedFormat": 1 - }, - { - "version": "de3d741197565b49b8f82925ae19c85e5a33c6225013cb905bd7c81c8ad8843c", - "impliedFormat": 1 - }, - { - "version": "5f42b1318f1e3a30751839ec9dc8bff750a4996d9757083b8aa73c277437859b", - "impliedFormat": 1 - }, - { - "version": "9106281dd7831442e379d6265b25e91d6d616623feef0748b8b23fac86b3bc95", - "impliedFormat": 1 - }, - { - "version": "698cf1f3dd82d97b63ccecdf1e03f966b0280514b97cf31774bca8b9afb19e39", - "impliedFormat": 1 - }, - { - "version": "fea565679a5fa428e926c7a9e58f09d30fc5a44b1da880647efbcee6eba1b87a", - "impliedFormat": 1 - }, - { - "version": "1207a20a196612f076c33d5d7439c6c0726b4ce57584759db1494bf10fd456ab", - "impliedFormat": 1 - }, - { - "version": "9e8d53296c9a5a416551494f9a02d18d75e0f782251aa86332dee4207d3b33fc", - "impliedFormat": 1 - }, - { - "version": "ec6efff7ab7f21645efa7c468b104e2613f3f98cc7388b36b691eeca9e5cd276", - "impliedFormat": 1 - }, - { - "version": "79a8113969d30740134134bbb65d8310a38c2a699221c1ad0ae99c8e3abd4b19", - "impliedFormat": 1 - }, - { - "version": "c6303e5e7521fee29c0ca0136b910ebd7195946951f8cad148723903c2c171b7", - "impliedFormat": 1 - }, - { - "version": "a57571c89df6ac15c7f142ccc273fb1c233de18199a9224472877edad5090de1", - "impliedFormat": 1 - }, - { - "version": "edde29e15436b4f2cb911e4aab379ffa2c50392f97c0cd4b7a29cc5ab90bfef6", - "impliedFormat": 1 - }, - { - "version": "6b3e4459d162395fbfba21c863b7911ced06fac343d263e1683b461545733b4c", - "impliedFormat": 1 - }, - { - "version": "93d423cd58a0e6ac7a3ba49f2a047fae456466c0f395df7631e8b9622dd16356", - "impliedFormat": 1 - }, - { - "version": "6e35700eee12830653b0d63f9dde8ac36a53eac14f437f2f61a83dcce35b9db5", - "impliedFormat": 1 - }, - { - "version": "b8a6e4f1147e4c30099fef56b72974674657d64cf12f2266aeb80ac1f15337b6", - "impliedFormat": 1 - }, - { - "version": "23067de9b81e897d2c68a6d7612192d997378cfe4d2e93a452dbae2e98f5c4d3", - "impliedFormat": 1 - }, - { - "version": "7f55cb3505ff27a690976effa7f8f53b52bd950933009a50851c8f06bb0771c3", - "impliedFormat": 1 - }, - { - "version": "64ab0e3cd827f4a357d6c460a490d6c2c22300b3f2b5cdfa656c2078b527f25c", - "impliedFormat": 1 - }, - { - "version": "9b721d33825ffd9481eb823168a1a52d3c41d9d234e5b1cca4ee42c8628597d9", - "impliedFormat": 1 - }, - { - "version": "b8bc044da2e581bf30b13cd9f24a6a6dca7e6f26ffad5778ace0f6aa4e1f56e8", - "impliedFormat": 1 - }, - { - "version": "6698be6dcb2077ebfc3947bfca08c15deca04ab9a6968afb5f8f03b285f384f2", - "impliedFormat": 1 - }, - { - "version": "2b3d174c8ec514f94090f99d55cee8363c7e35c269ec22efb40a8475f77efe2c", - "impliedFormat": 1 - }, - { - "version": "fc35623e8bf53237f55218f80d42594188b6af7b62cd8b2888c4f2d7a02611fd", - "impliedFormat": 1 - }, - { - "version": "b9d5dd9d6d72c7ae86f8f8b35e777fd0d06abd8a489820cb50af95d581bc324d", - "impliedFormat": 1 - }, - { - "version": "6479ed26ec9727adca52957a18b6bb92f266104adc8e43025c382d76ba81060f", - "impliedFormat": 1 - }, - { - "version": "c5541ed4e56a3cc7ab181a4bf4ba91763fc462d94b71687da4b4657f38af207f", - "impliedFormat": 1 - }, - { - "version": "28bba2ebe72280267f47043ae770fb44c0b9c14abc71a15950bfefec753c6e3f", - "impliedFormat": 1 - }, - { - "version": "a985b356fe365e36c5549397bd2600bd92010c182ec4daf26057a9361eb19053", - "impliedFormat": 1 - }, - { - "version": "c884d330029844c2ee0d40393b00eb5184f897939e24ea8ca89cfcd37567a29f", - "impliedFormat": 1 - }, - { - "version": "df508df6a1aadae4499d327c2360816978e28839560c044099e4acffcde5489d", - "impliedFormat": 1 - }, - { - "version": "ee419aa23d2ae89eaed21b74c0004909d79e59b929d744c17487748360f4c99a", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "65a4bc23964f92a517df242fff61758443034454d7baf964ed22c269a9b74636", - "impliedFormat": 1 - }, - { - "version": "0c41a93594bb8baaa1978d26598a71f6fc77eacad4b47c721f271f7fd2488ee5", - "impliedFormat": 1 - }, - { - "version": "f3ff614ce2320209cde3ee81d001071d59c9e4ed861aed02615c91e17e99375c", - "impliedFormat": 1 - }, - { - "version": "5b52708f9afea628c1f12b4fe53cf381b68bfc478c9d4a66b28a55b4083a0d35", - "impliedFormat": 1 - }, - { - "version": "a674887679fff1c6ea40bf85eab4874d7725c4ed161f5533db5c638c3c2f99b1", - "impliedFormat": 1 - }, - { - "version": "dc274bd65b77188d49e59ee204a0705a9f8c49431c15f6cefcb9a3928d1a8b52", - "impliedFormat": 1 - }, - { - "version": "19ade6ea1cec4d5817182e02ee4d5f045f6f74f4b934fd4f668605e00e3f6566", - "impliedFormat": 1 - }, - { - "version": "deb91ff4aaac0028c4c11666b445bfe512de11bfa0ee6f0b3e16062654ac1572", - "impliedFormat": 1 - }, - { - "version": "25df589bf92e6611d7b0eeaf78a00f9f89bed9e33559f12cc500ed1a2cb38bb6", - "impliedFormat": 1 - }, - { - "version": "83b29f8d47132069c6ccf47d3d389d4544c1a993d676f2c942838ad751ba90a4", - "impliedFormat": 1 - }, - { - "version": "46fdba15c7a90ebf37d27c51e051a4701e0075ba6b110c2daed57fdb8b749210", - "impliedFormat": 1 - }, - { - "version": "86e34ebc62d1513ef57e89f5e19e6a3fe571e1c9a3e8f364fca552e839f6c520", - "impliedFormat": 1 - }, - { - "version": "99f551a50dd44127b94fd6a9f0218d5ee7f7883d207722ea3538f469a9641f36", - "impliedFormat": 1 - }, - { - "version": "db063d3ec8175067198eb238e869662a795d4412e2498f32ea8349b163a8dd05", - "impliedFormat": 1 - }, - { - "version": "3a58ddf715753269bbf6527e515892e9dea7e10f32bdcc0346aa163807c99e9f", - "impliedFormat": 1 - }, - { - "version": "5a5aaf5400f536b92e6d3eb7f62d5f2b83672aeb2471d768ba32d659ab474960", - "impliedFormat": 1 - }, - { - "version": "2a4e9e1a9a50d2d0196681570b6b91138586a01f5b6e3b31c02a1d87290c25c3", - "impliedFormat": 1 - }, - { - "version": "8af84330d074908af180103d383a50086f33d785c1444bbaf84e93e8dbec16a9", - "impliedFormat": 1 - }, - { - "version": "ccb972496f73a32708ef234ae097da13db3a24cb892ca6bc405cf69ec7024b64", - "impliedFormat": 1 - }, - { - "version": "faf04f6cb497b46f4481b7657ee59d2b64067151596a57520e94d62450f95f14", - "impliedFormat": 1 - }, - { - "version": "9f853918dcf76d72dce3e77b2f47436d210ceef20a4cec3803fe0232706c34eb", - "impliedFormat": 1 - }, - { - "version": "439a983becc98cf640e5266b7786feedf9d633b06f05ea89a41576587a53124a", - "impliedFormat": 1 - }, - { - "version": "8a491a0482ad5f28c33bf5c6d9aa0f7250e272f517ed2033771297071ff264cb", - "impliedFormat": 1 - }, - { - "version": "8339ea639580818b04616879ca477c11be2115312875533f09ce67a178e0c0e7", - "impliedFormat": 1 - }, - { - "version": "72366ef1fa990929063122e7e15f579a61d6027ab8654c7437cdb6b929b4b241", - "impliedFormat": 1 - }, - { - "version": "7cceda8c6f7955121132870361f698884a5eeeeaddefe7413ac660b17bb3fe27", - "impliedFormat": 1 - }, - { - "version": "58ec5d8048b7dd32e6ad3a43a9c60b58272febb3bd54db408dba3aa639a08dce", - "impliedFormat": 1 - }, - { - "version": "9c25b2109ed9280da48f8e5a9564f011be8d2301c6b3a765ea2c61be4a092d8b", - "impliedFormat": 1 - }, - { - "version": "1014d4c78026b0d1492850ec2715db8dd02728637a1c131546cf240c8ebe0867", - "impliedFormat": 1 - }, - { - "version": "02dd08d47b068191b930ce5ab6a4f812eb2818d70030ff3e294482390eb90d83", - "impliedFormat": 1 - }, - { - "version": "7ebc8e06b3aca2e2af5438f56062ddd4664dfb6f0fdc19a3df50e1a383ed6753", - "impliedFormat": 1 - }, - { - "version": "5931ee44572dce86df73debec64b69c6766c5a85ca36560a42b9d27f80f44e79", - "impliedFormat": 1 - }, - { - "version": "c9d34ca257fe78c6ea8e6f50cdd082028859e7c257a451cad5efc938d573ec9d", - "impliedFormat": 1 - }, - { - "version": "cfaec796e5531757d3834e79ec66c78e3c4ac29e70e320ce1673ec20a59e3740", - "impliedFormat": 1 - }, - { - "version": "13ceb5c2bab5231ea85d17524665ee976dce8418c934af349735310da0631d2d", - "impliedFormat": 1 - }, - { - "version": "fc8fcedbae85698b04f9b0da193b52d378ec9589f86574e0f4b4cb6e13910047", - "impliedFormat": 1 - }, - { - "version": "4190e192a51f256a059a2f6643306550751d27e0fedfe7b5c1990a509528ec1d", - "impliedFormat": 1 - }, - { - "version": "bdb76953a3b8e77d8b2731d5811f0f8493a104b67117aa00507e50cb2eb1e727", - "impliedFormat": 1 - }, - { - "version": "395595f5fb22cd8084c9dc0e9ba7e204a98d2ce20c28571687aad9b0a11c8ec2", - "impliedFormat": 1 - }, - { - "version": "57eab48a7bb66bdd1831565faf6f99268899ec685c1d36823874c6b109beca2b", - "impliedFormat": 1 - }, - { - "version": "1b5fb867db1ecf42cae316f7f7af210ef0896fe43c397f7b5bc2dd485ab66ac0", - "impliedFormat": 1 - }, - { - "version": "810204c888046e4f1cfea3bcc183261be7630aad408e990b483c900aa7eb1da6", - "impliedFormat": 1 - }, - { - "version": "d3045fc8585220833efaa5e7341fc056d69e912fab3e2023c50a06c484776361", - "impliedFormat": 1 - }, - { - "version": "489443eb9ed0ec5d31335e3dde44a8d4e77e63521f2aa5b6ff65f0aeebf29877", - "impliedFormat": 1 - }, - { - "version": "3b8835f0ae1f3adfe79cab05bbe2c31452f48e7a2837931c4d2caa2709867862", - "impliedFormat": 1 - }, - { - "version": "881936bb56fc17b13eb2456084f3c054632f4aff7336b6cee058f374683a7349", - "impliedFormat": 1 - }, - { - "version": "439023fea7651b82aff011e852ed25bb5df9258c3a842d23ff848cefbde054c8", - "impliedFormat": 1 - }, - { - "version": "9301927e69fee77c414ccd0f39c3528e44bd32589500a361cabbeda3d7e74ba5", - "impliedFormat": 1 - }, - { - "version": "7bf076f117181ab5773413b22083f7caee4918ccb6cf792920efb97cda5179ce", - "impliedFormat": 1 - }, - { - "version": "be479eef7e8c67214d5ca11a9339ece2bbd25325ab86b336e5d3f51d0dac1986", - "impliedFormat": 1 - }, - { - "version": "d94fe4ab3b8d4035f1dfe7ca5c3f9225e7c74090cab6892b901280f0d3ea6a27", - "impliedFormat": 1 - }, - { - "version": "639bdba9222a1d443eb01e3dedb7097c30aa1fb4b4d4d58e970a162255e8da0e", - "impliedFormat": 1 - }, - { - "version": "3ca75cdeffce7973fd95dcd5f75afb6367cc8b6434801c48a6d56d03f9d60408", - "impliedFormat": 1 - }, - { - "version": "cb93c3a5a607b023dbd2d73e600e297bf392957b6a180238f72ec88ae89f495b", - "impliedFormat": 1 - }, - { - "version": "32dc611ffb88c70b8cab36c2cf23b93476dcf99217902435f145d03e41081b6e", - "impliedFormat": 1 - }, - { - "version": "9b4c284371fc9b8ec060e6c61d31bec7897cba3c9a86370e8317e4038e077bf0", - "impliedFormat": 1 - }, - { - "version": "969b450418a39e16dc58b9376abc4a24f1e4f8277c9ec3bf462b36ddc5a6b855", - "impliedFormat": 1 - }, - { - "version": "b5b96fae5fec816f065b7401664ec69dd63ddd190c55c7d35a13c3a0ed020e91", - "impliedFormat": 1 - }, - { - "version": "20e3c35088d83915f5c903f1a81180388bc759ccc85cc684d0064e83442d6d65", - "impliedFormat": 1 - }, - { - "version": "3233a2c9caa676216934d2c914a33de5e5e699b3f0c287c2f1dfbb866bf761d0", - "impliedFormat": 1 - }, - { - "version": "05a83c01130e03d19fe78411895af517cb3d8985a0e84e70926418540853dbb1", - "impliedFormat": 1 - }, - { - "version": "302dc8440b85072dc5e1d30c39dc1d4ddda46ca5a10ff2d40b8d8e99fc665232", - "impliedFormat": 1 - }, - { - "version": "335bd16d540e601a8a3b80044b08043422b140c4d708b53834864659e6d5a295", - "impliedFormat": 1 - }, - { - "version": "ba0ea399a131ae764c0bda400c191bb82876e7ba01c3d201e5ba9edcb9bfb1ac", - "impliedFormat": 1 - }, - { - "version": "d2dd9601857d3cfc3b7da4c37f4492a6cf3efbf4c803a9d31a0ac0a766b9f496", - "impliedFormat": 1 - }, - { - "version": "68f204992bd1fe55fd0e77e79820c3202157b76fd9808c77358f97a25638474e", - "impliedFormat": 1 - }, - { - "version": "57f0161f1bb74573e21c738b229ead3b64ebf66d4d4cddb74b620aca1193429b", - "impliedFormat": 1 - }, - { - "version": "5da72db7084e8d880093f1ea208b3e1fbdbc0b92422556eecda88025e4e98859", - "impliedFormat": 1 - }, - { - "version": "e1aba05417821fb32851f02295e4de4d6fe991d6917cf03a12682c92949c8d04", - "impliedFormat": 1 - }, - { - "version": "63cf8b8bd4de61b04c19ea77db82c7e4afc057e3208130bc1886c3918d9e1dfe", - "impliedFormat": 1 - }, - { - "version": "6d7bdae4d2049d8af88dc233a5b277ed96079cb524c408765ad3d95951215fc0", - "impliedFormat": 1 - }, - { - "version": "504c1426e4d5f7b8c56526ba8bf228baa2431b29002182546b14e2710d5b538d", - "impliedFormat": 1 - }, - { - "version": "d43d05f2b63a0a66e72b879c48557a54b4054b17cc9ee36342f41df923f15ffa", - "impliedFormat": 1 - }, - { - "version": "13ed0ea58b434c9a1cb87545a1f4c7a6611ef9c180c03333f65387b2525d068d", - "impliedFormat": 1 - }, - { - "version": "f314ac2c5a7d33f9147f0d3e4bc8f80db29d135977c4784ed9c6b8d1c8b870bf", - "impliedFormat": 1 - }, - { - "version": "3c9709e0ff5fe0d928cce5e735a6d3cb5e36caf04acc685d77438c4410b783bf", - "impliedFormat": 1 - }, - { - "version": "63ebfb0a8d32d6aed76c219eeb9b51f5e94c575ec659deaa99e8f41e13ccad0a", - "impliedFormat": 1 - }, - { - "version": "b6678585be337f0524bba99bd932248344f7d077ca22dd9f59ddca36d85dca84", - "impliedFormat": 1 - }, - { - "version": "50fa4532e87f95ee828ae32882b352fb6a5707eb09f09c56824266ce8a8c71e1", - "impliedFormat": 1 - }, - { - "version": "4bb4c3174734ab7664012245546a9d78c8e07f1b792025d1df95705fe00b6198", - "impliedFormat": 1 - }, - { - "version": "ed8ce283b17f23bd52154e9c64e4aa805883f8da8e3b5fa339cd36d7fac19a7e", - "impliedFormat": 1 - }, - { - "version": "4544494553a24212843d08614c3d84f7e3a10f06d27ddc7948544770aa6cead6", - "impliedFormat": 1 - }, - "37aa37a7ac66a00f900362bf15a1eb58bb6c5ed9fb734a9541a247e5a5838bff", - "bcb756a44db72f2233ba36a73e0547a3d3b1d04daf4910485d45078418e075fa", - { - "version": "41f45ed6b4cd7b8aec2e4888a47d5061ee1020f89375b57d388cfe1f05313991", - "impliedFormat": 1 - }, - { - "version": "95e6580d60d580c8cd6a42d3853eda0da840d64139a58ecb56ed9a2f8ff42d6e", - "impliedFormat": 1 - }, - { - "version": "bec45e0777e88662fdbb5e8ef48f3fd1a474768075abe838b184973025c94244", - "impliedFormat": 1 - }, - { - "version": "bf95958629e734c28d1a2751e4a390ecba3de3e5ef15ce5129e87b95e26a9b31", - "impliedFormat": 1 - }, - { - "version": "cf6ab5b952c8a81bf9d82ae231f1d7835e7d656f23f6a68856bf79d914f0c3a7", - "impliedFormat": 1 - }, - { - "version": "e9c09e150ad859e6fd220292838cf1676fde98e72de40802a0e38a39ffe9ba78", - "impliedFormat": 1 - }, - { - "version": "6eedd55b798a444cf196fc0e84ed8588c4b02a64a1eefcdbd9706a7a77819d63", - "impliedFormat": 1 - }, - { - "version": "a410446b68b7f7fd6c125c66a2f7d62d1919d01c1fbe6d3d2a36abfd7252b88b", - "impliedFormat": 1 - }, - { - "version": "c220d971a25f0757dac2a16e7e3486edfae72cfc21e77ad02215deda4b37912d", - "impliedFormat": 1 - }, - { - "version": "b4d69ab771e06f3e6521194b26bb8e52548dd9f85a8d22c0d45954edefe054fe", - "impliedFormat": 1 - }, - { - "version": "489539fed7a3fa9d6c0683706051d88ad0072eb596701052d37a6745a1005748", - "impliedFormat": 1 - }, - { - "version": "4eb6ae3c9aaf3300c2aed8ee1e464064796a6464def127ddf685cb471dad3b83", - "impliedFormat": 1 - }, - { - "version": "dd420fdfd95fa762f6455424e6fb4551abe0c72a9fdfea64a314e050fa64eb87", - "impliedFormat": 1 - }, - { - "version": "9771666faae7e4edafa62386a45629c179bc628b0972f1c2b0051b5d35025c9b", - "impliedFormat": 1 - }, - { - "version": "0aa6afbe9bcff81c6a9b200d1df9bc81adef90f1318d7c6a8da4a87952c4f594", - "impliedFormat": 1 - }, - { - "version": "feb62eb605a34f112481e347af226133d6b9870cae6221af8fd5a61c4f33594e", - "impliedFormat": 1 - }, - { - "version": "d3f4d2138eafd828745a0caaa17a860b4dd8fa63d40cc9eb013072c116062969", - "impliedFormat": 1 - }, - { - "version": "73d253d6850f103e900b024ce351c99a4cc5dec1c56f286ffb305015198c1f13", - "impliedFormat": 1 - }, - { - "version": "0fdedf8b8cf8fa73fab00e3f57aaefba4babbefc6bbe108164c6eaed935b3840", - "impliedFormat": 1 - }, - { - "version": "f7746264e6dcac5c13382e31a38346413670522bc264da4b2c3d5ea406155cd3", - "impliedFormat": 1 - }, - { - "version": "f8c0895803058e1eeed51022fd9c5b26dd1f2398bac9b925de652858c1397f98", - "impliedFormat": 1 - }, - { - "version": "f0f36a6e9a078b8e724dc5a7f2ca71e793d76a00aec6d0c06582d46e05f2bbd8", - "impliedFormat": 1 - }, - { - "version": "e44e4e7dbd46782bad9f469021aed39d77312510683c3f9cb0042b5e30680186", - "impliedFormat": 1 - }, - { - "version": "231d5cbf209cec46ffa15906bfc4b115aa3a8a1254d72f06e2baa4097b428d35", - "impliedFormat": 1 - }, - { - "version": "75f2bb6222ea1eddc84eca70eab02cb6885be9e9e7464103b1b79663927bb4a4", - "impliedFormat": 1 - }, - { - "version": "b7e11c9bf89ca0372945c031424bb5f4074ab0c8f5bac049c07a43e2fe962a35", - "impliedFormat": 1 - }, - { - "version": "1abc3eb17e8a4f46bbe49bb0c9340ce4b3f4ea794934a91073fbdd11bf236e94", - "impliedFormat": 1 - }, - { - "version": "28ae0f42b0dc0442010561fb2c472c1e9ef4de9af9c28feded2e99c5ab2a68ea", - "impliedFormat": 1 - }, - "8f4eb43204663ffefe235de069cf9d8f7e405992300c4299838ac4ce418f6c98", - { - "version": "e2ddbe6522370662d36ce3118411f9a6dab3e2fc847a6fc8f0e490fe0aecc323", - "impliedFormat": 1 - }, - { - "version": "bebc4da83fb5062fc1da3afc9f4e22b45ccd0761a2d62f860ce860fc5916b5ac", - "impliedFormat": 1 - }, - { - "version": "3ee52d00379b0c3df10e2bc8e988da0d1b3a4d29fe56ad81d81e1f6996053f88", - "impliedFormat": 1 - }, - "f011799cb4d101783d2d0d892ebaffdd4bdaedd97bb92f41f9ba8adb20369777", - { - "version": "264f935450101e4b000eb351cf75c9d799ca20a278b260a9e5770303b5f2b6a3", - "impliedFormat": 99 - }, - { - "version": "5d397401fd58e55fa1a75cf509591e160bd4a3b58a891f6866002951a340791e", - "impliedFormat": 99 - }, - { - "version": "570fb3e86599cb179cc91b04fc5034c5b8af33aa7ede111048f2d40aeac2eaa6", - "impliedFormat": 99 - }, - { - "version": "0bfa81a8b71a10d7e332b88bfc482e6d6a74692705a9d4510bf6b049ceaaa0d2", - "affectsGlobalScope": true, - "impliedFormat": 99 - }, - { - "version": "e29c3246bccba476f4285c89ea0c026b6bfdf9e3d15b6edf2d50e7ea1a59ecfb", - "impliedFormat": 99 - }, - { - "version": "e689cc8cd8a102d31c9d3a7b0db0028594202093c4aca25982b425e8ae744556", - "impliedFormat": 99 - }, - { - "version": "478e59ac0830a0f6360236632d0d589fb0211183aa1ab82292fbca529c0cce35", - "impliedFormat": 99 - }, - { - "version": "1b4ed9deaba72d4bc8495bf46db690dbf91040da0cb2401db10bad162732c0e2", - "impliedFormat": 99 - }, - { - "version": "5b997c0658cbe4dc3196853c1600f9208b90ae27527815da0ead3347bd5c7edb", - "impliedFormat": 99 - }, - { - "version": "8a778c0e0c2f0d9156ca87ab56556b7fd876a185960d829c7e9ed416d5be5fb4", - "impliedFormat": 99 - }, - { - "version": "b40f92e533725152c3976ee7941ece6e177fd15adbc815a957bab4a2d0e967cf", - "impliedFormat": 99 - }, - { - "version": "8751085924cfff29e52322071e3b77d328b02ec3b47b7c47c37a06a30e97f570", - "impliedFormat": 99 - }, - { - "version": "e08685c946d49f555b523e481f4122b398c4444c55b164e5ac67c3ba878db8d1", - "impliedFormat": 99 - }, - { - "version": "3c99d5232a3c8b54016e5700502078af50fe917eb9cb4b6d9a75a0a3456fcd5d", - "impliedFormat": 99 - }, - { - "version": "a1c4ffa46e41ac35003f44108d4468bcadd8b458562cc42f5fb1bac664f33e75", - "impliedFormat": 99 - }, - { - "version": "4923a256a6cf1f55e30f7df82151ba360e59bee70078db609509f775bdd796ed", - "impliedFormat": 99 - }, - { - "version": "f865343c121abc3516abf5b888d0c1b7596ec772229d8e4d4d796f89e8c9d0c0", - "impliedFormat": 99 - }, - { - "version": "77114bdbc7388aeeb188c85ebe27e38b1a6e29bc9fea6e09b7011bbb4d71ec41", - "impliedFormat": 99 - }, - { - "version": "3df489529e6dfe63250b187f1823a9d6006b86a7e9cac6b338944d5fc008db70", - "impliedFormat": 99 - }, - { - "version": "fe0d316062384b233b16caee26bf8c66f2efdcedcf497be08ad9bcea24bd2d2c", - "impliedFormat": 99 - }, - { - "version": "2f5846c85bd28a5e8ce93a6e8b67ad0fd6f5a9f7049c74e9c1f6628a0c10062a", - "impliedFormat": 99 - }, - { - "version": "7dfb517c06ecb1ca89d0b46444eae16ad53d0054e6ec9d82c38e3fbf381ff698", - "impliedFormat": 99 - }, - { - "version": "35999449fe3af6c7821c63cad3c41b99526113945c778f56c2ae970b4b35c490", - "impliedFormat": 99 - }, - { - "version": "1fff68ffb3b4a2bf1b6f7f4793f17d6a94c72ca8d67c1d0ac8a872483d23aaf2", - "impliedFormat": 99 - }, - { - "version": "6dd231d71a5c28f43983de7d91fb34c2c841b0d79c3be2e6bffeb2836d344f00", - "impliedFormat": 99 - }, - { - "version": "e6a96ceaa78397df35800bafd1069651832422126206e60e1046c3b15b6e5977", - "impliedFormat": 99 - }, - { - "version": "035dcab32722ff83675483f2608d21cb1ec7b0428b8dca87139f1b524c7fcdb5", - "impliedFormat": 99 - }, - { - "version": "605892c358273dffa8178aa455edf675c326c4197993f3d1287b120d09cee23f", - "impliedFormat": 99 - }, - { - "version": "a1caf633e62346bf432d548a0ae03d9288dc803c033412d52f6c4d065ef13c25", - "impliedFormat": 99 - }, - { - "version": "774f59be62f64cf91d01f9f84c52d9797a86ef7713ff7fc11c8815512be20d12", - "impliedFormat": 99 - }, - { - "version": "46fc114448951c7b7d9ed1f2cc314e8b9be05b655792ab39262c144c7398be9f", - "impliedFormat": 99 - }, - { - "version": "9be0a613d408a84fa06b3d748ca37fd83abf7448c534873633b7a1d473c21f76", - "impliedFormat": 99 - }, - { - "version": "f447ea732d033408efd829cf135cac4f920c4d2065fa926d7f019bff4e119630", - "impliedFormat": 99 - }, - { - "version": "09f1e21f95a70af0aa40680aaa7aadd7d97eb0ef3b61effd1810557e07e4f66a", - "impliedFormat": 99 - }, - { - "version": "7a9e1836ca2a5cb127f632c943bf1a602d8dd9b92e5eedea26e626df53b72be2", - "impliedFormat": 99 - }, - { - "version": "11c3710131c71746f85e2ceea40ec33953f4e46f74f157265cadbd69fab32ee8", - "impliedFormat": 99 - }, - { - "version": "2a9b4fd6e99e31552e6c1861352c0f0f2efd6efb6eacf62aa22375b6df1684b1", - "impliedFormat": 99 - }, - { - "version": "ad9f4320035ac22a5d7f5346a38c9907d06ec35e28ec87e66768e336bc1b4d69", - "impliedFormat": 99 - }, - { - "version": "05a090d5fb9dc0b48e001b69dc13beaab56883d016e6c6835dbdaf4027d622d4", - "impliedFormat": 99 - }, - { - "version": "76edff84d1d0ad9cece05db594ebc8d55d6492c9f9cc211776d64b722f1908e0", - "impliedFormat": 99 - }, - { - "version": "ec7cef68bcd53fae06eecbf331bb3e7fdfbbf34ed0bbb1fb026811a3cd323cb4", - "impliedFormat": 99 - }, - { - "version": "36ea0d582c82f48990eea829818e7e84e1dd80c9dc26119803b735beac5ee025", - "impliedFormat": 99 - }, - { - "version": "9c3f927107fb7e1086611de817b1eb2c728da334812ddab9592580070c3d0754", - "impliedFormat": 99 - }, - { - "version": "eeae71425f0747a79f45381da8dd823d625a28c22c31dca659d62fcc8be159c2", - "impliedFormat": 99 - }, - { - "version": "d769fae4e2194e67a946d6c51bb8081cf7bd35688f9505951ad2fd293e570701", - "impliedFormat": 99 - }, - { - "version": "55ce8d5c56f615ae645811e512ddb9438168c0f70e2d536537f7e83cd6b7b4b0", - "impliedFormat": 99 - }, - { - "version": "fa1369ff60d8c69c1493e4d99f35f43089f0922531205d4040e540bb99c0af4f", - "impliedFormat": 99 - }, - { - "version": "a3382dd7ef2186ea109a6ee6850ca95db91293693c23f7294045034e7d4e3acf", - "impliedFormat": 99 - }, - { - "version": "2b1d213281f3aa615ae6c81397247800891be98deca0b8b2123681d736784374", - "impliedFormat": 99 - }, - { - "version": "c34e7a89ed828af658c88c87db249b579a61e116bea0c472d058e05a19bf5fa9", - "impliedFormat": 99 - }, - { - "version": "7ae166eb400af5825d3e89eea5783261627959809308d4e383f3c627f9dad3d8", - "impliedFormat": 99 - }, - { - "version": "69f64614a16f499e755db4951fcbb9cf6e6b722cc072c469b60d2ea9a7d3efe8", - "impliedFormat": 99 - }, - { - "version": "75df3b2101fc743f2e9443a99d4d53c462953c497497cce204d55fc1efb091e0", - "impliedFormat": 99 - }, - { - "version": "7dc0f40059b991a1624098161c88b4650644375cc748f4ac142888eb527e9ccd", - "impliedFormat": 99 - }, - { - "version": "f6180169cfdf699aee7fddee717de1b8825ecb12bec11e009a3eb581d98c6fee", - "impliedFormat": 99 - }, - { - "version": "d64f68c9dbd079ad99ec9bae342e1b303da6ce5eac4160eb1ed2ef225a9e9b23", - "impliedFormat": 99 - }, - { - "version": "99c738354ecc1dba7f6364ed69b4e32f5b0ad6ec39f05e1ee485e1ee40b958eb", - "impliedFormat": 99 - }, - { - "version": "8cd2c3f1c7c15af539068573c2c77a35cc3a1c6914535275228b8ef934e93ae4", - "impliedFormat": 99 - }, - { - "version": "efb3ac710c156d408caa25dafd69ea6352257c4cebe80dba0f7554b9e903919c", - "impliedFormat": 99 - }, - { - "version": "260244548bc1c69fbb26f0a3bb7a65441ae24bcaee4fe0724cf0279596d97fb4", - "impliedFormat": 99 - }, - { - "version": "ce230ce8f34f70c65809e3ac64dfea499c5fd2f2e73cd2c6e9c7a2c5856215a8", - "impliedFormat": 99 - }, - { - "version": "0e154a7f40d689bd52af327dee00e988d659258af43ee822e125620bdd3e5519", - "impliedFormat": 99 - }, - { - "version": "cca506c38ef84e3f70e1a01b709dc98573044530807a74fe090798a8d4dc71ac", - "impliedFormat": 99 - }, - { - "version": "160dbb165463d553da188b8269b095a4636a48145b733acda60041de8fa0ae88", - "impliedFormat": 99 - }, - { - "version": "8b1deebfd2c3507964b3078743c1cb8dbef48e565ded3a5743063c5387dec62f", - "impliedFormat": 99 - }, - { - "version": "6a77c11718845ff230ac61f823221c09ec9a14e5edd4c9eae34eead3fc47e2c7", - "impliedFormat": 99 - }, - { - "version": "5a633dd8dcf5e35ee141c70e7c0a58df4f481fb44bce225019c75eed483be9be", - "impliedFormat": 99 - }, - { - "version": "f3fb008d3231c50435508ec6fd8a9e1fdc04dd75d4e56ec3879b08215da02e2c", - "impliedFormat": 99 - }, - { - "version": "9e4af21f88f57530eea7c963d5223b21de0ddccfd79550636e7618612cc33224", - "impliedFormat": 99 - }, - { - "version": "b48dd54bd70b7cf7310c671c2b5d21a4c50e882273787eeea62a430c378b041a", - "impliedFormat": 99 - }, - { - "version": "1302d4a20b1ce874c8c7c0af30051e28b7105dadaec0aebd45545fd365592f30", - "impliedFormat": 99 - }, - { - "version": "fd939887989692c614ea38129952e34eeca05802a0633cb5c85f3f3b00ce9dff", - "impliedFormat": 99 - }, - { - "version": "3040f5b3649c95d0df70ce7e7c3cce1d22549dd04ae05e655a40e54e4c6299de", - "impliedFormat": 99 - }, - { - "version": "de0bd5d5bd17ba2789f4a448964aba57e269a89d0499a521ccb08531d8892f55", - "impliedFormat": 99 - }, - { - "version": "921d42c7ec8dbefd1457f09466dadedb5855a71fa2637ad67f82ff1ed3ddc0d0", - "impliedFormat": 99 - }, - { - "version": "8ba931de83284a779d0524b6f8d6cf3956755fb41c8c8c41cd32caf464d27f05", - "impliedFormat": 99 - }, - { - "version": "34db640ce413888a468f52ab69cdb1340c838067ad62902f252e613655b92b8d", - "impliedFormat": 99 - }, - { - "version": "96ae321ebb4b8dcdb57e9f8f92a3f8ddb50bdf534cf58e774281c7a90b502f66", - "impliedFormat": 99 - }, - { - "version": "6ef5957bb7e973ea49d2b04d739e8561bca5ae125925948491b3cfbd4bf6a553", - "impliedFormat": 99 - }, - { - "version": "466ee93c609ca2463dd7c11231d9a96cd38d82d69e411c48d2872934d1c1ba28", - "impliedFormat": 99 - }, - { - "version": "976c1b964d20eb5504afad9cb762d427860208eb88442ec418b528dc65186b25", - "impliedFormat": 99 - }, - { - "version": "4f1c9401c286c6fff7bbf2596feef20f76828c99e3ccb81f23d2bd33e72256aa", - "impliedFormat": 99 - }, - { - "version": "3e94295f73335c9122308a858445d2348949842579ac2bacd30728ab46fe75a7", - "impliedFormat": 99 - }, - { - "version": "b711cdd39419677f7ca52dd050364d8f8d00ea781bb3252b19c71bdb7ec5423e", - "impliedFormat": 99 - }, - { - "version": "ee11e2318448babc4d95f7a31f9241823b0dfc4eada26c71ef6899ea06e6f46b", - "impliedFormat": 99 - }, - { - "version": "92a3096d3b30380847d81be5c627691099a2edf3ffc548b0195e96ab0174c9ad", - "impliedFormat": 99 - }, - { - "version": "a0057fd417f67791534e7daca9409a8e6a88920391820cf2bb083781d8ba5d6d", - "impliedFormat": 99 - }, - { - "version": "6c72a60bb273bb1c9a03e64f161136af2eb8aacc23be0c29c8c3ece0ea75a919", - "impliedFormat": 99 - }, - { - "version": "6fa96d12a720bbad2c4e2c75ddffa8572ef9af4b00750d119a783e32aede3013", - "impliedFormat": 99 - }, - { - "version": "00128fe475159552deb7d2f8699974a30f25c848cf36448a20f10f1f29249696", - "impliedFormat": 99 - }, - { - "version": "e7bd1dc063eced5cd08738a5adbba56028b319b0781a8a4971472abf05b0efb4", - "impliedFormat": 99 - }, - { - "version": "2a92bdf4acbd620f12a8930f0e0ec70f1f0a90e3d9b90a5b0954aac6c1d2a39c", - "impliedFormat": 99 - }, - { - "version": "c8d08a1e9d91ad3f7d9c3862b30fa32ba4bc3ca8393adafdeeeb915275887b82", - "impliedFormat": 99 - }, - { - "version": "c0dd6b325d95454319f13802d291f4945556a3df50cf8eed54dbb6d0ade0de2f", - "impliedFormat": 99 - }, - { - "version": "0627ae8289f0107f1d8425904bb0daa9955481138ca5ba2f8b57707003c428d5", - "impliedFormat": 99 - }, - { - "version": "4d8c5cc34355bfb08441f6bc18bf31f416afbfa1c71b7b25255d66d349be7e14", - "impliedFormat": 99 - }, - { - "version": "b365233eaff00901f4709fa605ae164a8e1d304dc6c39b82f49dda3338bea2b0", - "impliedFormat": 99 - }, - { - "version": "456da89f7f4e0f3dc82afc7918090f550a8af51c72a3cfb9887cf7783d09a266", - "impliedFormat": 99 - }, - { - "version": "d9a2dcc08e20a9cf3cc56cd6e796611247a0e69aa51254811ec2eed5b63e4ba5", - "impliedFormat": 99 - }, - { - "version": "44abf5b087f6500ab9280da1e51a2682b985f110134488696ac5f84ae6be566c", - "impliedFormat": 99 - }, - { - "version": "ced7ef0f2429676d335307ad64116cd2cc727bb0ce29a070bb2992e675a8991e", - "impliedFormat": 99 - }, - { - "version": "0b73db1447d976759731255d45c5a6feff3d59b7856a1c4da057ab8ccf46dc84", - "impliedFormat": 99 - }, - { - "version": "c814e7354540279a27782ddb17a0ea48772f40b9aa85acf1b64be90b3406dcef", - "impliedFormat": 99 - }, - { - "version": "2762ed7b9ceb45268b0a8023fd96f02df88f5eb2ad56851cbb3da110fd35fdb5", - "impliedFormat": 99 - }, - { - "version": "9c20802909ca00f79936c66d8315a5f7f2355d343359a1e51b521ec7a8cfa8bf", - "impliedFormat": 99 - }, - { - "version": "31ddfdf751c96959c458220cd417454b260ff5e88f66dddc33236343156eb22c", - "impliedFormat": 99 - }, - { - "version": "ec0339cf070b4dedf708aaed26b8da900a86b3396b30a4777afcd76e69462448", - "impliedFormat": 99 - }, - { - "version": "067eed0758f3e99f0b1cfe5e3948aa371cbb0f48a26db8c911772e50a9cc9283", - "impliedFormat": 99 - }, - { - "version": "7dfb9316cfbf2124903d9bc3721d6c19afbf5109dfbc2017ca8ae758f85178ab", - "impliedFormat": 99 - }, - { - "version": "919a7135fa54057cf42c8cd52165bf938baeb6df316b438bbf4d97f3174ff532", - "impliedFormat": 99 - }, - { - "version": "4a2957dfe878c8b49acb18299dfba2f72b8bf7a265b793916c0479b3d636b23b", - "impliedFormat": 99 - }, - { - "version": "fad6a11a73a787168630bf5276f8e8525ab56f897a6a0bf0d3795550201e9df5", - "impliedFormat": 99 - }, - { - "version": "0cc8d34354ec904617af9f1d569c29b90915634c06d61e7e74b74de26c9379d2", - "impliedFormat": 99 - }, - { - "version": "529b225f4de49eed08f5a8e5c0b3030699980a8ea130298ff9dfa385a99c2a76", - "impliedFormat": 99 - }, - { - "version": "77bb50ea87284de10139d000837e5cce037405ac2b699707e3f8766454a8c884", - "impliedFormat": 99 - }, - { - "version": "95c33ceea3574b974d7a2007fed54992c16b68472b25b426336ef9813e2e96e8", - "impliedFormat": 99 - }, - { - "version": "1ecb3c690b1bfdc8ea6aaa565415802e5c9012ec616a1d9fb6a2dbd15de7b9dc", - "impliedFormat": 99 - }, - { - "version": "57fc10e689d39484d5ae38b7fc5632c173d2d9f6f90196fc6a81d6087187ed03", - "impliedFormat": 99 - }, - { - "version": "f1fb180503fecd5b10428a872f284cc6de52053d4f81f53f7ec2df1c9760d0c0", - "impliedFormat": 99 - }, - { - "version": "d30d4de63fc781a5b9d8431a4b217cd8ca866d6dc7959c2ce8b7561d57a7213f", - "impliedFormat": 99 - }, - { - "version": "765896b848b82522a72b7f1837342f613d7c7d46e24752344e790d1f5b02810b", - "impliedFormat": 99 - }, - { - "version": "ee032efc2dd5c686680f097a676b8031726396a7a2083a4b0b0499b0d32a2aea", - "impliedFormat": 99 - }, - { - "version": "b76c65680c3160e6b92f5f32bc2e35bca72fedb854195126b26144fd191cd696", - "impliedFormat": 99 - }, - { - "version": "13e9a215593478bd90e44c1a494caf3c2079c426d5ad8023928261bfc4271c72", - "impliedFormat": 99 - }, - { - "version": "3e27476a10a715506f9bb196c9c8699a8fe952199233c5af428d801fdda56761", - "impliedFormat": 99 - }, - { - "version": "dbb9ad48b056876e59a7da5e1552c730b7fa27d59fcd5bf27fd7decc9d823bb8", - "impliedFormat": 99 - }, - { - "version": "4bd72a99a4273c273201ca6d1e4c77415d10aa24274089b7246d3d0e0084ca06", - "impliedFormat": 99 - }, - { - "version": "7ae03c4abb0c2d04f81d193895241b40355ae605ec16132c1f339c69552627c1", - "impliedFormat": 99 - }, - { - "version": "650eddf2807994621e8ca331a29cc5d4a093f5f7ff2f588c3bb7016d3fe4ae6a", - "impliedFormat": 99 - }, - { - "version": "615834ad3e9e9fe6505d8f657e1de837404a7366e35127fcb20e93e9a0fb1370", - "impliedFormat": 99 - }, - { - "version": "c3661daba5576b4255a3b157e46884151319d8a270ec37ca8f353c3546b12e9b", - "impliedFormat": 99 - }, - { - "version": "211513b39f80376a8428623bb4d11a8f7ef9cd5aa9adce243200698b84ce4dfb", - "impliedFormat": 99 - }, - { - "version": "9e8d2591367f2773368f9803f62273eb44ef34dd7dfdaa62ff2f671f30ee1165", - "impliedFormat": 99 - }, - { - "version": "9e49f7da9489d2adb89903feb27947a13c3ef39bd8ccc7839b7788cc8625b331", - "impliedFormat": 99 - }, - { - "version": "e4826bd7d31b5e3e665bf93a89c87146aef71873b1577decd15cc388fbd36c91", - "impliedFormat": 99 - }, - { - "version": "63868d70d64647c8087b1ca8b5ce3f60ef0bb25a51e7874cb69f078f07c9ce7e", - "impliedFormat": 99 - }, - { - "version": "6f5bb86c42cb5380ef95bf3ffb863f2bfa71fabbeff3fde1da401c26be77ed16", - "impliedFormat": 99 - }, - { - "version": "d643bc5859170c034cedfafd6efc32b03b925caccfba8cbd5c043a092be3f363", - "impliedFormat": 99 - }, - { - "version": "bf80dda0220be36ed95fa116bfe0ea4dae5153009e142d3c2b95cbb6f7e7f7e2", - "impliedFormat": 99 - }, - { - "version": "8d3e416906fb559b9e4ad8b4c4a5f54aeadeb48702e4d0367ffba27483a2e822", - "impliedFormat": 99 - }, - { - "version": "2b08774daeb69024e88925ded25e5d4cfcf4f99643dab356910fc6379bf4e529", - "impliedFormat": 99 - }, - { - "version": "56c1e14ce9c81c86186b4ce6c72d91e33aa1014382a1667555aba015f43aae73", - "impliedFormat": 99 - }, - { - "version": "8c42659846464a13a504edcfd92ec3d7944b3e5db07944b0ad6ed6008917639b", - "impliedFormat": 99 - }, - { - "version": "e1c48089a95e2b294112da7d3e9e2d3a847a1ddf047e55bcb76b073d3e99a2e7", - "impliedFormat": 99 - }, - { - "version": "e1c2ba2ca44e3977d3a79d529940706cef16c9fdd9fd9cad836022643edff84f", - "impliedFormat": 99 - }, - { - "version": "d63bfe03c3113d5e5b6fcef0bed9cd905e391d523a222caa6d537e767f4e0127", - "impliedFormat": 99 - }, - { - "version": "4f0a99cb58b887865ae5eed873a34f24032b9a8d390aa27c11982e82f0560b0f", - "impliedFormat": 99 - }, - { - "version": "831ec85d8b9ce9460069612cb8ac6c1407ce45ccaa610a8ae53fe6398f4c1ffd", - "impliedFormat": 99 - }, - { - "version": "84a15a4f985193d563288b201cb1297f3b2e69cf24042e3f47ad14894bd38e74", - "impliedFormat": 99 - }, - { - "version": "ea9357f6a359e393d26d83d46f709bc9932a59da732e2c59ea0a46c7db70a8d2", - "impliedFormat": 99 - }, - { - "version": "2b26c09c593fea6a92facd6475954d4fba0bcc62fe7862849f0cc6073d2c6916", - "impliedFormat": 99 - }, - { - "version": "b56425afeb034738f443847132bcdec0653b89091e5ea836707338175e5cf014", - "impliedFormat": 99 - }, - { - "version": "7b3019addc0fd289ab1d174d00854502642f26bec1ae4dadd10ca04db0803a30", - "impliedFormat": 99 - }, - { - "version": "77883003a85bcfe75dc97d4bd07bd68f8603853d5aad11614c1c57a1204aaf03", - "impliedFormat": 99 - }, - { - "version": "a69755456ad2d38956b1e54b824556195497fbbb438052c9da5cce5a763a9148", - "impliedFormat": 99 - }, - { - "version": "c4ea7a4734875037bb04c39e9d9a34701b37784b2e83549b340c01e1851e9fca", - "impliedFormat": 99 - }, - { - "version": "bba563452954b858d18cc5de0aa8a343b70d58ec0369788b2ffd4c97aa8a8bd1", - "impliedFormat": 99 - }, - { - "version": "48dd38c566f454246dd0a335309bce001ab25a46be2b44b1988f580d576ae3b5", - "impliedFormat": 99 - }, - { - "version": "0362f8eccf01deee1ada6f9d899cf83e935970431d6b204a0a450b8a425f8143", - "impliedFormat": 99 - }, - { - "version": "942c02023b0411836b6d404fc290583309df4c50c0c3a5771051be8ecd832e8d", - "impliedFormat": 99 - }, - { - "version": "27d7f5784622ac15e5f56c5d0be9aeefe069ed4855e36cc399c12f31818c40d4", - "impliedFormat": 99 - }, - { - "version": "0e5e37c5ee7966a03954ddcfc7b11c3faed715ee714a7d7b3f6aaf64173c9ac7", - "impliedFormat": 99 - }, - { - "version": "adcfd9aaf644eca652b521a4ebac738636c38e28826845dcd2e0dac2130ef539", - "impliedFormat": 99 - }, - { - "version": "fecc64892b1779fb8ee2f78682f7b4a981a10ed19868108d772bd5807c7fec4f", - "impliedFormat": 99 - }, - { - "version": "a68eb05fb9bfda476d616b68c2c37776e71cba95406d193b91e71a3369f2bbe7", - "impliedFormat": 99 - }, - { - "version": "0adf5fa16fe3c677bb0923bde787b4e7e1eb23bcc7b83f89d48d65a6eb563699", - "impliedFormat": 99 - }, - { - "version": "b5a4d9f20576e513c3e771330bf58547b9cf6f6a4d769186ecef862feba706fd", - "impliedFormat": 99 - }, - { - "version": "560a6b3a1e8401fe5e947676dabca8bb337fa115dfd292e96a86f3561274a56d", - "impliedFormat": 99 - }, - "8c41ef40eb246b9f712e44a58e3651c436ea1118c27408171fcb3bda393f6b6e", - "6bafe023f6fa48178d0c5bbcac2d304b12ed043583484e681265cf215b8f7827", - "fc84d9d5b7341572beb663386efbe6b6d63b5f0aae93f484931d82a7ddc5d779", - "c8df58fa7a180cccf9541b2f4370228c884b9d0a0fe4c4b399c697f0defd7b63", - "9b07253f897be39ff6a0f9263ac3d786a69855648b954afb4130d4f8fabd55d7", - "8e5cb492436be150b77092e2f3d00962d55c3c998fef207fbe7fcb8ef2ad58c7", - "063c7b7675bfdae7f65e3a953479b20b74891e0265eb5851d7a51e34867a3df7", - { - "version": "191f3389c8a36494dc82e84ba1eb80cb95f5570d045108448704595a54996609", - "impliedFormat": 99 - }, - { - "version": "3c2ee3ef559588b93daa9757e6169d1bcb898b0853cc46cb7aa76364286f9ad4", - "impliedFormat": 99 - }, - "62df35bf454f38649c488443c351e9086dff02f3983fbbce078b38914f4aecb4", - "c783a0cca1f33a2997b51e947bd620754e8bc770ffb06a55a1aeb01af3daa091", - "94eec62368463be10e35059e62eaca6fd3e1fba4494790293c1ec20874889049", - "d60a7f8215c3c89afa0bebba83d344caa7d23a5df7370c1b625b6f9c6ff2c376", - "04995d1ebd22d52764b69679440b3695f2f42fa10264b072bc3fdd10369262a6", - "308ed4dbbec8cbc9a512957fc232d7602bbdc2539faba3bd3817cff1ec22811e", - "bef21a9dcaf4d518ba72e29d8c1108132444ff366e4a396c0614ad976e53b37f", - { - "version": "b4fbfaa34aacd768965b0135a0c4e7dbaa055a8a4d6ffe7bedf1786d3dc614de", - "impliedFormat": 1 - }, - "6d1c1f5c685a442dbb83e42b1894aa4892634c1646e884c19e36e49ce7cc8fe4", - "4684d749b343c61a87b0bf5e69c8eacfc90f96f036fcd04ce7575d4aabced541", - { - "version": "8258b4ec62cf9f136f1613e1602156fdd0852bb8715dde963d217ad4d61d8d09", - "impliedFormat": 99 - }, - "6a78bd95bbafadd9af9d3807ad23a96dba2c763c9156b5120b63618f6ea5d47f", - "bce34cf5361f7f5c101871f16f84a9512e0049d563af05fcc1a4a67c5aad8cea", - { - "version": "c469d07daf4f88b613f0c99d95389e049e85c14f28f58120abca6785a0b3813d", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3", - "impliedFormat": 1 - }, - "d05a769cc4908a47b2ed4e33461be5f8917b68e4a187d8797d1c1bcd1079bb25", - "800de8d8eddf34f9b8fb45a6d9eda6b7b418658b51a344fa435e8cb6db2e17e9", - "ec47cee80c9700ef80180c153b88d99bfb7da2495df209a8493acc87c20ffea2", - "d68754644c58163dca3abea72f5fa65b1c62b73bdb50a7d456175367d44aed16", - "f8390928d876298db19dd1f2e53f1758a991e314f118fe977431765a9acc6b99", - "c47bd0cc0bd18af217680c20360962830466c7de54e8dfd9d7a50446a888ad25", - "47d39f0d3f35bcbc6fed93163ece2025f15e79066e20b7c871da3da5055a484a", - "00b067168368764316a0e6df8d0e03013eb70965b4710f21ae6f7be7d5997389", - "c5d499cfb31a4199431d8e6aa08d4b0e9ab02943e6560140c112bc7ca14e71ac", - "5c41a40f6562c3fd45160c7a36a7f24c7a9ea8d60ec05e3346cfc0fb199249b0", - "261578b082ade4a9d4fcea56fce70d77038f1648ba556b4b4b3120f60694fce0", - "3c47b748abc9229b531fe62a7f17025c8db9962c07ee69a5effeb660158bc0cd", - "6f7d3e085a492427f9cf513812a7d0ff2104e4da89b51fa89adbd1864d9e3fa7", - "bf52314d9c79cf0bcb2c13442d66ea0484ed93d92b91c0972975197d2c0d55fc", - "2c7e3054a5907bed8f38112bfb16ed01ed8b8b707c61d3174d8e7142a6b49f54", - "e4cdfeef544a3cd588d3e0b02918b8df3b5111c1ae4e8a08b7d24d778099519a", - "35d10921be3852c9d5fe99b34b4cefa03a845fcbef33c9e7ecccdff58ddc77bd", - "f571ebc525ce3048d620b0b2607b443b00f521e7f0792cff70d8a76d249041e5", - "6758b2522c71388e2c0fab238281d7fe4c65a0e1804e06ab08fa55ab7c59db18", - "bd262446b965d62a764c77a195dab085868f0cf44e0041228956966066de9b6f", - { - "version": "9d2495c09f18b4a839854c5d37bda43ce8191b613ebc571a8c2d0f5bdfcf2a3f", - "impliedFormat": 1 - }, - "c0a4568b6d799c090769e1e3903307c4dc9fea298c2a88f61b6a12b5495b7a7a", - "899a3e6980b6bb29eec4c108e053f3bedeb97c54eaf6e6a08a1dfba4ab16284b", - "aea506f8b608c6c0cafeee26a92aae01b44a99431f44e7b706995a51c8d4cb09", - { - "version": "614d5a3113da6375ed51c5ab4ee07c4b66aa71892596733db4e25fafbe7d264c", - "impliedFormat": 99 - }, - { - "version": "94a3f5e0914e76cdef83f0b1fd94527d681b9e30569fb94d0676581aa9db504d", - "impliedFormat": 99 - }, - { - "version": "5e0a3a73aedeb82593976a47787b18ef04a61514b98b45b328d48b6dd1eddf6c", - "impliedFormat": 99 - }, - { - "version": "04d3cf25db718998c566296c7bc938a3170f4462b1fbbf1d324b21be40177af8", - "impliedFormat": 99 - }, - { - "version": "4c1f82aa595ccf1ce285b2219b5c472cee8f4c9d21b2fe53d9be65654d12a893", - "impliedFormat": 99 - }, - { - "version": "9a851864e5702fa1f59d49855bbe667d77e61b0e1138675acd9933f57f9be311", - "impliedFormat": 99 - }, - { - "version": "e19e82d9834303b10cc49945c9d1e2f5349004bd7c8c4a1f0ae9b69be682fbc5", - "impliedFormat": 99 - }, - { - "version": "bea9a1eeca967c79b1faef469bf540f40924447c754435325185c53ee4d4a16b", - "impliedFormat": 99 - }, - { - "version": "9f10481b11a6e7969c7e561c460d5688f616119386848e07592303e5f4912270", - "impliedFormat": 99 - }, - { - "version": "16e3c387b5803cd54e89e7d7875d5847648e6019265e00c44e741e16e9e13287", - "impliedFormat": 99 - }, - { - "version": "866a4060991136808d3c325420d03e47f69405cb364395c65018affc0948fa9c", - "impliedFormat": 99 - }, - { - "version": "3d330974280dab5661a9a1bd00699daf81df36ad766c4f37283582894ffb15de", - "impliedFormat": 99 - }, - { - "version": "ad5a9d47bd9596164e00bc129f9eb8074ef1863812a679f57fa4af4833ad87ad", - "impliedFormat": 99 - }, - { - "version": "850e32fe7a5e300eb330562410011ffbc8843fbaa02fbe7562ff9bd860903b87", - "impliedFormat": 99 - }, - { - "version": "9e85500050a593f63b579b0a9340909c810987a48a9c09d5f7e46d5196bc5368", - "impliedFormat": 99 - }, - { - "version": "654bf243ceac675b96807da90603d771546288b18c49f7deca5eebdcac53fd35", - "impliedFormat": 99 - }, - { - "version": "80aecf89123febc567973281d217209da5f5e1d2d01428d0e5d4597555efbf50", - "impliedFormat": 99 - }, - { - "version": "ed239ff502ac351b080cbc57f7fbd03ffdd221afa8004d70e471d472214d88c4", - "impliedFormat": 99 - }, - { - "version": "ec6a440570e9cc08b8ad9a87a503e4d7bb7e9597b22da4f8dfc5385906ec120a", - "impliedFormat": 99 - }, - { - "version": "0cfacd0c9299e92fcc4002f6ba0a72605b49da368666af4696b4abe21f608bb0", - "impliedFormat": 99 - }, - { - "version": "7cc93ff349774f09694f3876f4ccaeb6110638b1d523637672c061a72dc9f769", - "impliedFormat": 99 - }, - { - "version": "df2c9708aec11e8c271acbdfdc5d246db35abcdff5917ab032da29a2cd3f7891", - "impliedFormat": 99 - }, - { - "version": "bb871e5403f70b415aa8502df7f3086dfd7755395ef591706465ae3af6ff2918", - "impliedFormat": 99 - }, - { - "version": "8a98f6435239b5f20c98864ea28941d6fb30f1b84c88c05174ee94e9a6a83c50", - "impliedFormat": 99 - }, - { - "version": "dd96ea29fbdc5a9f580dc1b388e91f971d69973a5997c25f06e5a25d1ff4ea0a", - "impliedFormat": 99 - }, - { - "version": "294526bc0c9c50518138b446a2a41156c9152fc680741af600718c1578903895", - "impliedFormat": 99 - }, - { - "version": "24fbf0ebcda9005a4e2cd56e0410b5a280febe922c73fbd0de2b9804b92cbf1e", - "impliedFormat": 99 - }, - { - "version": "180a81451c9b74fc9d75a1ce4bb73865fefd0f3970289caa30f68a170beaf441", - "impliedFormat": 99 - }, - { - "version": "8a97c63d66e416235d4df341518ced9196997c54064176ec51279fdf076f51ef", - "impliedFormat": 99 - }, - { - "version": "87375d127c4533d41c652b32dca388eb12a8ce8107c3655a4a791e19fb1ef234", - "impliedFormat": 99 - }, - { - "version": "d2e7a7267add63c88f835a60072160c119235d9bda2b193a1eed2671acd9b52c", - "impliedFormat": 99 - }, - { - "version": "81e859cc427588e7ad1884bc42e7c86e13e50bc894758ad290aee53e4c3a4089", - "impliedFormat": 99 - }, - { - "version": "618c13508f5fedefa6a3ecf927d9a54f6b09bca43cdefa6f33a3812ad6421a9a", - "impliedFormat": 99 - }, - { - "version": "4152c3a8b60d36724dcde5353cbd71ed523326b09d3bbb95a92b2794d6e8690c", - "impliedFormat": 99 - }, - { - "version": "bf827e3329d86aeef4300d78f0ac31781c911f4c0e4f0147a6c27f32f7396efa", - "impliedFormat": 99 - }, - { - "version": "23034618b7909f122631a6c5419098fe5858cb1a1e9ba96255f62b0848d162f0", - "impliedFormat": 99 - }, - { - "version": "cb250b425ab81021045f6dc6a9a815e34a954dfaaec6e6c42a2980b0b2a74f9e", - "impliedFormat": 99 - }, - { - "version": "7a8fabc8c280dd5cc076910119ac51abfc6c54a62a7f06d34b44c0d740b70b72", - "impliedFormat": 99 - }, - { - "version": "23036c4ae22fa5b1da63f6c0cda9670a4db7fd87668397a465598882fee9de76", - "impliedFormat": 99 - }, - { - "version": "e0127fc5a1114a4d2c02ace6aa5fee5bdd083e0d757376b10cb5c55efa5c32e7", - "impliedFormat": 99 - }, - { - "version": "1a36dc16e64e5890734f1496e3270d1235f97b2ad3bb815e626759e20c9ad4de", - "impliedFormat": 99 - }, - { - "version": "8055e82c33db5088291ac0d19e8ed84cde792c1a4ce27fb5dac7032441a4f535", - "impliedFormat": 99 - }, - { - "version": "6f9b89d1f1d1259e7f04fb3631d4571f08d61fbd7129b640482ae25eef3dfd82", - "impliedFormat": 99 - }, - { - "version": "f0de359fafd04f32f2d8e8ad6e061d98e589545460475d5ebd51e8492cc14ae8", - "impliedFormat": 99 - }, - "e0c73d17de044dc62b314ac4c159b9d09d41c519ad70668956f45a4ba6c21250", - "6249363fc9ac86fe2d55e3fa20a7aa71dff7ef3fce3cde37d4e0752884054112", - { - "version": "2449badd44b1585a56a6bf3bd5ea44f31fa8c36e3f967c38b2a218366e308c92", - "impliedFormat": 99 - }, - { - "version": "c2b44619f5b7ae7826198385f265b7c11f3569bf1c96cfa6d00af69857632391", - "impliedFormat": 99 - }, - "ceec23b5be097fa2f39ddf5d2e4a41ac34d92df2e84c99e762a117fcbbcd68e7", - "715cfe5659c3147e673fa08d39d5a25a78f1b5dc8e56bb4ea89765f17c1f4115", - "7e3183ee04a82271bd0edceb7370e792fe66bad3dab5a8229e7f042884305daf", - "f8faef6d5e57b31ac8e81532e7a0ae7fd9e2fb0864630b162a27ebbad4028739", - { - "version": "f9d5d369ca3d41bac562069c38aca068c73b33e9d76fa0f582459720d3423fe1", - "impliedFormat": 99 - }, - { - "version": "daf6ff3ec1d79aeddfb3c9aa3b6f4c892c4ec916a89de64a34306e193a96e3f5", - "impliedFormat": 99 - }, - { - "version": "da2c4843c3dee4f24ccaaa9f116d42f57cd290134ed238327a1b5f461983679f", - "impliedFormat": 99 - }, - { - "version": "dafb34c287e807a22b3e64ce21e2f3d5f413f1e30456e6d4b3a26f9c1505156e", - "impliedFormat": 99 - }, - "c2044e47c463780d0b6bb4c7279edd5e50d4d5e4129829891c5316fd89295cb3", - "d124c961ad2e56b60651a48484bfac6412db9da63de6c8b4f9e7333b26c184f6", - "c8e45f03f8009f81ffe08011099035fbc9e6f1aa83c874324fcb72bc01de1861", - "966f91beca42c3af93bfb805a7bbba85a65c72439211aef6e2b7348a81602a2f", - { - "version": "7f8100513274d35a3fc22a543d469134aa3c15f0c5601b7e6d28954f6a4a4e35", - "impliedFormat": 99 - }, - { - "version": "4ba483f583e1583499cba49664f0a5e4bd5f481f0b3d49f7d6a7dfbe985d2c93", - "impliedFormat": 99 - }, - "e69a7cb8cd3183bad132fee57fdc9afa62501042459a82f38d5f10536444ee1a", - "14ea473542ce7c88c51cdb34e3bed838e015a2173e72c8cde710f65c858d0d90", - { - "version": "8816d9f4313ef51b4cbe4a6b3be164603cd0fc8ea22dd85a61edef12340a4a5a", - "impliedFormat": 99 - }, - { - "version": "ac60b42b63f76a0d715f6a3c2ed72dced3bc50626c45cb4f5fc501fc7b64aabc", - "impliedFormat": 99 - }, - "e27224f5b68a8c223eaf147904c12b151e77889fd4d10f0a1d9182edda811990", - "96b21cb167c108bc3ab93e415c9ad26abe96a4f2059b5339e45eaac6d872130e", - "e6a4932f15d86690c9ca6a35b1a96483c34fac70face885f3117003a8d51bc0a", - "27308e49a81ede7ed0a4e2a0a8d4344e3d97a3c5ec3688dd12f4773b134c0526", - "73339229107d1da36e023bde9262d53d2d66c34b2cc127bf0e585973326cf0d7", - "06463f1c2adfd2da9d5fd4c18e7e115945a7b90fa94af26052d2e964035ee4ab", - "f0f6d1774973a94681fdd05b01c8973f209d72717586f0e4a2ed8bd203f8e111", - "0a2a189b6c0bbba27d4d4afc88a0c5921b4d09f9dd79808c1b31d18bb359a54d", - "6df7d3baf675dc4732a8af713fa18d97b859970de5c3bd4c64942303fb537b80", - "a2ffab64c5a0d96a1a83c0f29dcf7cf44b1ae0f90eb19b5218ee7547bec7fe36", - "67263406333cf7e4684cef0dcdbbe0f26ae88fa890adaa4013a7f3184bb7cade", - "6b68c651d409a46c85b47d5d21a8df27705516f0b943bf9a8064412628a9f05a", - "7b3d57763a5524367a44b243450c8a3b8f804b01d2f0249c7afab91ca67dd948", - "06ada0b136c41d30eccfb1a803475de0d4581a236f116a1e3f5bae07107f4dd4", - "4fe822ee6e2fbeadbe31511ff954e982b0d8ee52dc525773384f4b5f526de016", - "a43a87ad633f381b5f9f9a9a5cea62ee968d6d4c3b121d13805765becd3cb69f", - "fe49dcab1afdfac78abdece0c189c8215e6c17d7b3032ca6f86ccbd6646fa30f", - "0c19f0e0aaded4d51cf757bee461619fddaca5d7b6ed15e491c6d15b692697d5", - "6f36e85c8f669f3b66a592c2a8e7097f2d339c98243f5e65464f7c3d0eaacafa", - "523d8676256833edf41ea144559b5ddc20aa6ef1cc4c0aa3fad59564ad99a382", - "69bb86d740ad55a08170380c3d4278c63891b693df832f9eed95ac8c65714487", - "edc1ee23ab797751ff917c4e3aff90401a01cd3d1d109ad7c59412f5f6a8c845", - "25621f2abcefc9b39faf750ef8538ba890f7c85cf42635ad6808036c2d773869", - { - "version": "26e0e6646c1bc2acf8c1ee993fc3a334817cbd1f2416f7d560629f7cf83e0583", - "affectsGlobalScope": true - }, - "e0d83a226b1c2ca6aa366f96662612fc25746b678d39f3a2180f9936bcae4cc6", - "5250aabc78d8ca21ba7763b34848e1f540889c33877b874b95eb7003d711818e", - { - "version": "31a863da9da2a3edec16665695bdbc3134e853195f82dafec58e98c8e1bb3119", - "impliedFormat": 1 - }, - { - "version": "0ac5a62a300e7d6915beea3e6b51549d1cc3afc6715930c775928f05255dae03", - "impliedFormat": 1 - }, - { - "version": "8171717a40fc99f4a8875fdef9203a3cd239d81c77e59cdf2c594cba97f2947d", - "impliedFormat": 1 - }, - "7e8c46e1e7d0648b6e8f7138660c2b7619f0429af2608dcb4fd12db31a018c69", - "2f146b569ee27944441130016496d079a9afe76f4769d2ba69ced490b82d6941", - { - "version": "389f590e8caf51cdcb9f8c5a9456b2432aa618221cfcfb104545b1053e55f0fe", - "impliedFormat": 1 - }, - { - "version": "bf3096a4833a5aee6db86392731cd2220c26d2c2a1289c99926ed08b190c2204", - "impliedFormat": 1 - }, - { - "version": "11c8c7fa6125ae624e1db191f9a8e5c32928e6f9a716d7369fec1f60de1ac7a9", - "impliedFormat": 1 - }, - "f7dea28913f96b984cf71198b69627ed74f75daed6a959466417e4c286a5af95", - { - "version": "ebbb00848f3db995d98f84b6421445d0d1fa71cae5539e417580cb3fe27b001d", - "impliedFormat": 1 - }, - { - "version": "4dbb8c6126700a8537d55b1fb956cfda0c841cc9e866c2cb1a08ce3f3421ca0c", - "impliedFormat": 1 - }, - { - "version": "12ecd7d96b7209ad27d566cfb4b04d73489287375a67d6a11fb2fecc03cc4789", - "impliedFormat": 1 - }, - { - "version": "d8225bfefaa53cdf029a26c182092d671eb2826a0169860218e889876780f606", - "impliedFormat": 1 - }, - { - "version": "44bd273abbfcf6db677189ab0341335838f79ef25f42ba80607486065a6cb022", - "impliedFormat": 1 - }, - { - "version": "17787b85e06e1c5eb9fbec2333b897a82c53f7f1eedf1c9be60ce0b789b697fd", - "impliedFormat": 1 - }, - { - "version": "6a87e68ee8b64da2c7747aec468d0f01ef2f0f9364159192dce1cda1bfab526e", - "impliedFormat": 1 - }, - { - "version": "3ab840d4b93a1068d45bedb562703565aaf56ed126a4a60b5b68d7f7929bad6e", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "977ef7423f6df4dcf70144712833da7922293e37813293db43a728f482d25abd", - "impliedFormat": 1 - }, - { - "version": "0debb34aee907e610f311f90b8ea7a672e95f30826abeaadc2b31af4076c9344", - "impliedFormat": 1 - }, - { - "version": "b0474fec7c45a73eca31ad530914fc587ebddeed29f69f96653d9afc4144da45", - "impliedFormat": 1 - }, - { - "version": "717c85e439a2e28054138caa84613aa81252448a4a9f4f4c8e66cf430f399cf9", - "impliedFormat": 1 - }, - { - "version": "19bace661c2611c1ae473e95fba01e7f2ba898e14833585e97004dd13ffdaeda", - "impliedFormat": 1 - }, - { - "version": "6cbd90b625406162c9716c2a280046fc69c660cad543cc86546df943f35c1508", - "impliedFormat": 1 - }, - { - "version": "3003d045b098f9f972dd88da5f02849aa77f08d7da5908a615e7d7c54b22414a", - "impliedFormat": 1 - }, - { - "version": "492b2b0b901339423d352437bc1c36bd4999fbc9b2f4a2d6c8556bc169a42dab", - "impliedFormat": 1 - }, - { - "version": "32ab20cd6b684e58cffe5ff53e16388726e9480a1b87402581e0a29f94dcb500", - "impliedFormat": 1 - }, - { - "version": "a109bab41468dc2b6cf8e54cf4c3a4816cf254ead4ab82af17f2f8d63bea14fa", - "impliedFormat": 1 - }, - { - "version": "a7eec4015f9f31540f7a0c5e5bb27024d656ae818052edcf72f8eb450277574e", - "impliedFormat": 1 - }, - { - "version": "45016de701bf4c613b68e2722e07f3d44dc5d3785bc042736caad77e6eb8617f", - "impliedFormat": 1 - }, - { - "version": "d7ee2ba7aff83a473c8326c68b20f1e0c3ff19c41ae5fdc6b77914de30cf154e", - "impliedFormat": 1 - }, - { - "version": "b0efcfd1541793bf77bb92a5f3cc599976dfc39cf423c57ca667527ec3b99bfb", - "impliedFormat": 1 - }, - { - "version": "51db3a0ae7ea95784cbf098b02245c903e501e5e61280318e46c263636396e33", - "impliedFormat": 1 - }, - { - "version": "183ea071b38c670283f0da9588e300e9ba0ce042a871e76a073316db3edee384", - "impliedFormat": 1 - }, - { - "version": "9ebbaba0e0405c1de896520d4fb403abf8d8ee72d26f002d4ae880b04e3fe504", - "impliedFormat": 1 - }, - { - "version": "8b3799f3f6e33fff531175f2b3263fa3ae8a86171885f7346e40cf2b220c4b10", - "impliedFormat": 1 - }, - { - "version": "7c3cb1295e68bbb50a196c6f01c7fa39332019cad4c6f9b2aad18d05050863c1", - "impliedFormat": 1 - }, - { - "version": "ce4505fec4d5ccce704bd761032150ac777220e86ca4a7076680f9d5cb4c4c9b", - "impliedFormat": 1 - }, - { - "version": "020ee28c1bddda2f86be05d890ba4c149f57ca56074143a8fe78d83899758425", - "impliedFormat": 1 - }, - { - "version": "42c9a8be7e38915cde51ef418e77c9f7214594ce8bbae2ddfbfff5bb483b8fb7", - "impliedFormat": 1 - }, - { - "version": "e1e60044a3fc7d50148e5a9c532e362dd2cff372ebdae6cb2c581a9db2dda870", - "impliedFormat": 1 - }, - { - "version": "13a57c395e9c3f521f5dbb3f5402bd292a021256add5b82423dd72eaca430682", - "impliedFormat": 1 - }, - { - "version": "c4fe4b713057e24f416d3d1f31b3dd3e7e4076ac45df9a0ad84b39e4f752cf76", - "impliedFormat": 1 - }, - { - "version": "e34099c974f092f6cc8c14c85bb0afbffbb68931f2de5bfe48647d2b5b36a0df", - "impliedFormat": 1 - }, - { - "version": "22881092dd29229f7021406037952a140af6a31e3bb6e5afe2d34631bce395dd", - "impliedFormat": 1 - }, - { - "version": "a367142fa6b8c731477132e4544a186cc026c9de4a141f1e4b01ef8a7021d39b", - "impliedFormat": 1 - }, - { - "version": "04420d078d6623ebbc2535afc161752d946332ba1dfe5521d43e7b89dffeb4ba", - "impliedFormat": 1 - }, - { - "version": "b50cbbd2634768355f6a0e4c4627ecf38335255c329774c5b6a427ddd5d0d7e0", - "impliedFormat": 1 - }, - { - "version": "ef96aeba50c084deebbabc1a20531661a7dd1ca156a1949a5e6a1851da56faf1", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "47b7e252c48ff7df4ad699fd075a0cb886af3331bebeba1aabed0b91455c0342", - "impliedFormat": 1 - }, - { - "version": "7af83d3e12b6001b13aa61a18d7a387e6f1d18046feb6e0d88cacb687a0f9e4b", - "impliedFormat": 1 - }, - { - "version": "528e7087c8e41701cd1af78e52bdc107553eeb44245885c5cd92b2dd3209a6b4", - "impliedFormat": 1 - }, - { - "version": "48f3e2543105da93484b51b1979764f345befa92e4d2031109cf2297739c3c95", - "impliedFormat": 1 - }, - { - "version": "ed72a007824232a882f64f8f2a740b559395daa92d64bc1a2b2d7d46b5043f2b", - "impliedFormat": 1 - }, - { - "version": "2f2275fb011f92825710c151ae9cd29d9aa1dedbcd99fcdd412dbbe644757e4d", - "impliedFormat": 1 - }, - { - "version": "5aab0beb002a8377f057c3c01ee0bbbea15dea9910d232ff0901246ff38b409a", - "impliedFormat": 1 - }, - { - "version": "8ed87063aee382f86ccfae2b7d3fae2e74da134925abb80b183bdf46349cc0c0", - "impliedFormat": 1 - }, - { - "version": "47185e54e14ed8200ce9d92659fe20814fb41c818fda66de9a355a7e966fffcd", - "impliedFormat": 1 - }, - { - "version": "4c3eb6793b9a964d4733f058fcce788aa9ad6ba20c15c2bc4b70e9be8a7a5f00", - "impliedFormat": 1 - }, - { - "version": "9620e0f8e0e9eaab580c0a58975c2cceff1e3c849d751803d10ce638ccc7d79f", - "impliedFormat": 1 - }, - { - "version": "7fa548f715d6efb9260523c13004c14c260d117483e2db94bcaf69e06271bc3e", - "impliedFormat": 1 - }, - { - "version": "bfbeb754b74a0417c11e1c8e73de108afd3ff10ebcf9a9982a1582a2222e7a94", - "impliedFormat": 1 - }, - { - "version": "5a2a29cf8d1992bbbd9c42dd13df0e36a89b71430f3ae5b95e49dca472f62de8", - "impliedFormat": 1 - }, - { - "version": "ba824ca8cc1d6aa8b9c271e2dc303f2df87111667648837ad7eceedff53af1de", - "impliedFormat": 1 - }, - { - "version": "5ff8dbf3ca49231ca698550c93e68f6a5b2decb982640f266d5b01b664b797eb", - "impliedFormat": 1 - }, - { - "version": "e47d9ea0c1f685c8bc22af368bfab9b8d7a597a46c0caf5f94f986b8ae378e7f", - "impliedFormat": 1 - }, - { - "version": "6dd37bad0dcfb23fb6b2e1cb562aa11bfd3690e5195e912d296fe4c55bae0130", - "impliedFormat": 1 - }, - { - "version": "2a4b6ac70b71d5132ac61aea1d8e2e69e5a48049d6a0caa1a5cc8f4401656b2b", - "impliedFormat": 1 - }, - { - "version": "b99c28abec21c11032a77cd3152ea1a423e85cf63beb1b5b1a334aab0f903989", - "impliedFormat": 1 - }, - { - "version": "98ea1f69ceadcaabbc7d3ecebcca7812fbcecd357cad4d580ed590107c5f6190", - "impliedFormat": 1 - }, - { - "version": "784ea15b7d316235e9c0c5c389b03c7f1b4c4ebeae43775874a24d7515f54d8d", - "impliedFormat": 1 - }, - { - "version": "d0cb9f970a6c9ecc3f207b0ff78f2c9b362bb5dd884eea8f293c9f4a313164c8", - "impliedFormat": 1 - }, - { - "version": "13901d6ae6a46b2a00c31ea4642e97a132890482ded15f1cb5aaf75e9a1cd12c", - "impliedFormat": 1 - }, - { - "version": "703c7e1672aa6bed30995e7f8957f5d2d6185f81f58c0981ce01eda8e8cc0688", - "impliedFormat": 1 - }, - { - "version": "718a8901abf31edd5d7ce45b4bd9685ecced9b2e7f63358e75ce4cbd5975bf96", - "impliedFormat": 1 - }, - { - "version": "04abab10474ee8525c0a75279b148f003f087e96add3a530b53b4ba03e6cfef2", - "impliedFormat": 1 - }, - { - "version": "b511a2cd2beb613dcab7d7dade28043a585daae27d4a3b3f090e8de755eacc77", - "impliedFormat": 1 - }, - { - "version": "e75f775af15a872e041f24a603757dec876ed7f3e00ef196bf27cff997400c31", - "impliedFormat": 1 - }, - { - "version": "fbd4252743bf7c516bee742646cf63378684ac4cf81a3c1fbe042ef92c3c4609", - "impliedFormat": 1 - }, - { - "version": "c3d013d67e14885b4be9821499c4d18765c5aad60fbdd94deea94b4dcded5d2c", - "impliedFormat": 1 - }, - { - "version": "9ff70f1f2888794b7add8e71f4cdf678c5d77617994c7ba6a68c3c9286cd5e73", - "impliedFormat": 1 - }, - { - "version": "e7129e188b4e49e6874e81addcbe762ccbb968038fab5fad5314b191c8b87e84", - "impliedFormat": 1 - }, - { - "version": "79a6a1c92eb5c0d50af51c0aa13bbf4ea375fa458eceac97e20d6612de3cfa0f", - "impliedFormat": 1 - }, - { - "version": "0aa61eda668cc649a15601ab9ebefb17c5e39dc4e12c7b858b3b87633520027c", - "impliedFormat": 1 - }, - { - "version": "ac4da7c64922b43f7d5d1c525afcf724a86a6517422435dd363c6e584fcc63e4", - "impliedFormat": 1 - }, - { - "version": "ceec3e35a0418dd4f8481d1982c9e5779bcc01081ac8ec52e036a7d56141ca33", - "impliedFormat": 1 - }, - "671555eb6a40157b285499d4c319252326f7fcb7e8a0b152f3d3623bc4dc3977", - "4101097afe4a6d8204f41ff6078be359472cfb3d9fef81c35d8c4175023b3299", - "7fc91709857648e92785941a923696324cd85dcfbd9f017851202201aa5c3364", - "9fc5d731128308eed5142d102df5625c696705795e4a2ee4267636abc3961160", - "2bdb5874394cc8acac477b8ed970cee4f6a7b0ee16227ec8ca75cd271fae9c17", - "efeba10b347d003545b9efe63ac6cf1549e7735df7c68229227a461683d2188b", - "2f88e588772648bd7ba4c33352781ce0aa5e1442fda772bde11de274651b99af", - "0d8cd0a79c6460060a97a5b2335470f471c3e2c8b6cb7edd9257424cc30a97d4", - "577a968a34f3aa9f4e8ac6455f3f175e1bc8ef95a903296fa501aec5e29da27c", - "83796c7bd3d99fb4dad748c6a0362cbbd7b5f4fce7b0a5a761c86ee667cbb7eb", - "0b5645f7d1f0a9cf33cb61ae469804345157b0bba13f9c3c03e2816023a596a8", - "df97bdb36f4f643dae51290cda37d2e2c582f8034564c3fc5c412c4519c88234", - "b322c6ba54b1e813df412b0f5826eea92ccf261f87be29f77909bfe9319dbbc5", - "9fc948111d3349399913be4d18ca80b739e162d11249cd0f813fa76da65395ee", - { - "version": "846a4f3c67515605c9f349a06ababe90e868951cefe0a9bad4d22c5449bacfbf", - "impliedFormat": 1 - }, - { - "version": "cb2356e9caa7659c6e43dc829185509affe07196fef73e24e92eb23a4e13bde5", - "impliedFormat": 1 - }, - { - "version": "e99d6bab52ec834d15f96e8db4e4318035f830976e7a75281efd011f7fc79aff", - "impliedFormat": 1 - }, - { - "version": "12358f668683605d515fa570848941e73fce47ca6107fabd61fa4b5d22383526", - "impliedFormat": 1 - }, - { - "version": "6fde26f25b1b994237bffff0117d0a0a32dba279693b93b2a75fb442fd545dba", - "impliedFormat": 1 - }, - { - "version": "c6a36c0f1cc8448d0e1af050afbcf699bf8e84b5c82b07fe7b23d98af0e3f1a2", - "impliedFormat": 1 - }, - { - "version": "41a40ec6ec8f4796b0a1c49ca1d8e55a9b0867d18e216eeed8544c7318b51f13", - "impliedFormat": 1 - }, - { - "version": "d8b61657ba0d006524f084539e79d4a68539db92bca70dfd670db3737f8f5793", - "impliedFormat": 1 - }, - { - "version": "1805927f1679fda033b8795397c638beb52b27f1928cc1e7514ec7219209e7d8", - "impliedFormat": 1 - }, - { - "version": "73a0ee6395819b063df4b148211985f2e1442945c1a057204cf4cf6281760dc3", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "d05d8c67116dceafc62e691c47ac89f8f10cf7313cd1b2fb4fe801c2bf1bb1a7", - "impliedFormat": 1 - }, - { - "version": "3c5bb5207df7095882400323d692957e90ec17323ccff5fd5f29a1ecf3b165d0", - "impliedFormat": 1 - }, - { - "version": "89b844027d4476926247de2226cca6ce7a8b19830f89a786186c96f31e3fc3a2", - "impliedFormat": 1 - }, - { - "version": "3ee468ba409b231f05d8120a257d8fd52f81db173cfd55d2d38825d4a9e0d4d8", - "impliedFormat": 1 - }, - { - "version": "3ee468ba409b231f05d8120a257d8fd52f81db173cfd55d2d38825d4a9e0d4d8", - "impliedFormat": 1 - }, - { - "version": "f6df88822756d6c81588555f24af0724a79f511f01a89027e13a518cec8b77ac", - "impliedFormat": 1 - }, - { - "version": "faa5c507b5ee926b4e5c8a30859b25877980bb42e003f085a6f55db3f1ccbc88", - "impliedFormat": 1 - }, - "816ee40c2ecf1cae9c324cc2f7cd449c592a401f3b8c719c8c726b3c5b96df87", - "b882c5452bdbc8be110b5b4f87cea1c60ef432bc7483a2494c31b34b06b39d41", - "466c3699871d87b33127727cb6276010afb888ba409d0e54bd24ca204705b771", - "7aaf9d7fd184213afcbab89d5b9df258809f49b0c924a891e68168b6326ddabe", - { - "version": "34a2cb6ab1077c01bd282b48f8304dc1f443a31557f8dcbbdfca056ebde67cd9", - "impliedFormat": 1 - }, - { - "version": "db0d0f66be497338078b069f73ad118c94feac624bb1434ffa8c65e88c5762ef", - "impliedFormat": 1 - }, - "9c4096b0842a645dda00f9fcde7f0385b81378b8bc3625be7ab38da7602508f6", - { - "version": "e040319034de233dd2ca3a4b1c17b232e1f148888ed084eb623a01a66cf738b1", - "impliedFormat": 1 - }, - { - "version": "0c86e68c529327415ad07864d08e36ab8e809bc49b5410c2adf180b36e34041f", - "impliedFormat": 1 - }, - "abbc488ea1729e18c0bc70d7ac2e4b972f1c5283f506630eec81d598fa9a3262", - "f0900202a5acf8e856f5ce5fe82080f4223e8029d79ce0e46473314c14a2bef1", - "dc76de702748d8c4e2b8f9e46b87b19bf69cbc15f4dc8e2480a35ef6d65ef687", - "b09c8964d55b72684dea5bd92b0e2eedd93a85d15e42dcc77577d3381ec776a2", - "88ca0da7c28ddbc6a0b5ee1c0b6ef4a4e39d9fee437dcfb2a31ab49c7248f4bf", - "5a23de300a3d232eee2ca936579d4b9f180ab93c5f7824fcd5c787d1300b6928", - "7fce8824062933d156a80fbc1bdf2400bdc4748b85bfb044844b837341efacef", - "643c9650efdd1332b184b94d5f353577b6d826b507e8933fd2237b868e87c81d", - "723dfcd0f248d37c07988d5cfff497851f69afa660ea4ed1f8443541f3f767cf", - "9310db71a900c87dd8a7d0ea48659a3d770f6720fcef0e9887eee09d2a7559d4", - "84a2eca688b324fe99249997716d1a79ac3299591abdd945b7b3a46e47f8430d", - { - "version": "2254babb501647ab3a6b405290e048542bfcd25cd09aa1929dd20cc4496d5ad6", - "impliedFormat": 1 - }, - { - "version": "3f1bf42c227a21c60749f5857b78615f080696c2f568946f47f75c1bd2b44294", - "impliedFormat": 1 - }, - { - "version": "a735b20cca90083d634186c4037686e3450743c9215b15d66cdeb7307856ab06", - "impliedFormat": 1 - }, - { - "version": "40a68a2eff8da324fd161fc35bdc0af0a400862befd40d63cb72f4db49dcdb40", - "impliedFormat": 1 - }, - { - "version": "428acea8852c559dce300b1c8c0bb24d2acc714d6f5475e43c75948346aa9a64", - "impliedFormat": 1 - }, - "99d0a4bd4d9bd8a23c6ee4419c5c11a98edb4fd68f5c1ea3012f29b5794e487c", - "8210b4042940f773b544ec464c6e171d345c6a04a8d03b865dfd701916b7170b", - "ee224aff7ec4bc91c4528d89571bd4cf7664e36c8dcff6c06734ceba4ed03741", - "7d935134f63739e8f25c2c32c3761dd0fe748046068a2c28e359f67cc0692ebb", - "2b6bed7f7c509e68db1bb8841bf6a2f21ac6716a769ca895dd5a06dd9e799e02", - "f574e5d664bda570c897977385a6e8ea62e96b772b67b16e30637a4c0f844d68", - "074c0a218685addd548d58b11b0d1896e0b0a0dc99d3b42055edfebbe18ef668", - "41bf4f69f5367d80ebf88a36acaa68ac7da2d981c89dfb8e7c5c8ac7d97ca6c4", - "34c9c841e51506e077fd2168fb870ca8bb6046ff344fa6ebee4a151ef8453378", - "8674f7f451e3467a526ad1cf4e66e2ba419ad8c1352a1f9019e562037bbd0c17", - "a2f29209494b353edab1fa8e37caa0a3816d55b3a042850a82f34fe6907b8739", - "c6535714a00282f32fedd7a89a1abb0e409caf6548e88b01b4f9138fa2dac40a", - "d903d90d89337de6e43504f972dc9348b8ddc4af3b68f4040ec547d4d3530e05", - "98fd3f96fbd5d170805e0cfd9a99754f9f06f86c3c3b98e9ff9c67543ed7cf49", - "dfe374a55311d34c9f08eeac7321d3f38318e73575b3b6f6976e1f909b70d89a", - "9566789d678b7b2a24f1665030d2d3dde7779c609b97734d70562c6936666f86", - "165e99d37909e8fec89beebae75da0d3b9039ccbcc2fcfb55a0a1114709757d1", - "4327cae6a5fbaddd6067873dae35a9af3e17cca8d9cc8cbc8f4ff45f20aa2172", - "59fc4496f5e943ae2789cf7544f110286c7152f91b0684c360ce16dc854f868f", - "4f6b13b7a61baf015e26dc9406975acc980f44cbbe05f4c4df875637bb8b9aa4", - "eca375dbe2bc1ae456dedaeeab7c985885ad8b6d871185b465929bef24f88669", - "ddc07c74aa2d0a38073532f9d3880162c40f08a6085e4a0447836ab3d2f0c7ce", - "0dedb6289ab473ba3c2d2d44414626e8859103e9bb02fc2eb69c5eea8c9f1edd", - { - "version": "99830e076260fe8db9fc8e2f88f61c7f040630084610497f701599eeffa067ec", - "affectsGlobalScope": true, - "impliedFormat": 99 - }, - "edf64b60082f2f146f2b50bd3fec4d0fea1f0a1080bc7f2fa797bb081177d08d", - "f020d231f267837eb54c2407951a1b40dd8a61b4e429bd5fec367fffc8ee79a5", - "ef0d80027ff27c09dd0bb3fb1b793e5d7178ad6440f83a6e16f60cb4573bdce7", - "e913747b8c7df5ebb4b1c371aef1e44442d43e75848f0ff57802fbbb480a7047", - { - "version": "389db27b79eb73dad3e5bae260931df975e1336b23994d50b1d6c3f22bbc37c3", - "impliedFormat": 1 - }, - { - "version": "9d72a4c1c90ad1f09702abf9c5174a4323881af6d943bcff9e46856e51549fde", - "impliedFormat": 1 - }, - "4fcf2a0cc24118c494aeb0753d4bd0053e54085d53fc3437aae08a5a7e6ceaff", - "c927d9a662a7a6ceaa5e1823e2bbc14d842700d84dfbec6689e0ef6d99a57c0a", - "0764bb7836f5525b337687fcb7a81e65d220b9258e900b5bdff9248e2a9bf892", - "8e26563498a0e44396c7de1fee0d92073414d8dbd861d2f5bf15af3a0bf61532", - "499eb1ee9195e2b885b6ec1adaba7592fce7401efa77b6bdf2f280d7339f047b", - "d36e10c3e88b6227dc00034ffa93cb06c6617c99a542c8664c346f108b0ba644", - "90807f7c9a45b2d1b329077baaf95b8efeca7f5075fb965d307f72d55c4a90c6", - "9cbaf92bd123a3c4e087343042520dcea8ac0fdefc495510984ceaac4646b90b", - "f48054001242b190fcda3cb84870a24b705eef11bc150e4bbb3cfcc89de3d5b5", - "8fce98012c1ea34a7aa5626335fe0c70df51bed7095b717cf15fee3d5e925881", - { - "version": "79ef1d2b03006bb89040e622de2683e92eceaf94cc8058d56bf287b9746a1cc6", - "affectsGlobalScope": true - }, - "3dad18e16f77ff83ffa79ad33fd3e70ee562772532aa5d298d66fb5ad25b9e5a", - "24530e8efc61c240516d058566843cbb5aa5cf40bc8c72e0d773ef4672105a84", - { - "version": "39193a26ba6f8676df8f71eb29ce9db7ef94b54023bcc0d2e2f49210bce297ee", - "impliedFormat": 1 - }, - "871ea0d3bd4275b3d0a18eb37b1dc2806f13df4df79c8b882af7613838f0c30e", - "175cc818bbe2cd35631bc0402704b1a982c87f12dcadf1c151366806e2d945dd", - { - "version": "7897fbf1dd911226c99fc97104f8a03b902d079ef5246d8846907e5811606d5b", - "impliedFormat": 99 - }, - { - "version": "0e9b5ca042c4c12adee54b8e539f501ef60866ae9a0cb80702f3d141713a89b1", - "impliedFormat": 99 - }, - { - "version": "6ee583092663faa55a055bb14126542c6ba07f44cc0e2b1720c6bfe3996a6560", - "impliedFormat": 1 - }, - { - "version": "d8eeceb0c8b827c23d4825f7cd62b2231423fecf58aa8148dc1d2ae8c5868196", - "impliedFormat": 1 - }, - { - "version": "495d101745052f7659cf8eb7c2ce3ff71388f6b1f09a492e5698107a970f99a9", - "impliedFormat": 1 - }, - { - "version": "d4affc62c884bb6b0152835737a86daa02e62ecb053b3ac2ec65821d7f0a7438", - "impliedFormat": 1 - }, - { - "version": "3f7c2e7176ab59c4c6d806ab19fbef8c9709313ebfe37199c52e00f04e55bb66", - "impliedFormat": 1 - }, - { - "version": "1a385370e7cbb52ef8008686f597ae0fe9edf2c06ed9fbdf680508c50b0f0408", - "impliedFormat": 1 - }, - { - "version": "de12e2f4f6012ebeb7b76b043e086c5739b92d2713e2f712bf55db24c28cf562", - "impliedFormat": 1 - }, - { - "version": "471513db96d65bf5b8d7bcb33673df883472ebfc4499822db1d09227b95d4a69", - "impliedFormat": 1 - }, - { - "version": "e3145ac91bb78ce80455ddc328bc35f65eeb974be3d745db9e170b597c37ea9a", - "impliedFormat": 1 - }, - { - "version": "283ecd272b631e3e012196e9222e9a1de2aede45b031bc7421a1ac5267404ffe", - "impliedFormat": 1 - }, - { - "version": "017c79da6d33af7b16faa42335c19a8693b76ed9cf376685f3b85a2d6b7513c8", - "impliedFormat": 1 - }, - { - "version": "1e13ac590512080fb769217dbda62fb48011dc9bc4dee1d5212b8edcc0b6324e", - "impliedFormat": 1 - }, - { - "version": "4cead234f4235b8b8db738e46ffb28bbcb1e6299508ad6ae4fd4635474d793d5", - "impliedFormat": 1 - }, - { - "version": "3e2b6149fdfd6fdc473d01aad6a7ffce166f2dbb977733f5093d830436c6df55", - "impliedFormat": 1 - }, - { - "version": "43ad005290fc4fe32a42a366cb09747d109c2f899fba16de1b6c4e46ae4ca68f", - "impliedFormat": 1 - }, - { - "version": "4bb333de295c2d01b261a28bb9beac9bc8edbad9e596968e4d8e352b5449e1b0", - "impliedFormat": 1 - }, - { - "version": "ce38fe6359597383e7344225c6fd4f1269609474b80124c7aa62570f44218967", - "impliedFormat": 1 - }, - { - "version": "57814312bd8e17790b6f5abb6f89461581b373942c9f6aa4950531812e44c4c1", - "impliedFormat": 1 - }, - { - "version": "9bbc78eb1e28e035f5eef6609a89046d0c743fe78408a550e69f2776dba61d91", - "impliedFormat": 1 - }, - { - "version": "f5120f01e2d3c450987d58a8974187cb1fc0a2553444edc34aef039bca71d548", - "impliedFormat": 1 - }, - { - "version": "24705e69452283b1dbd49a12937939258c4b233cd1dabed96b80d40420cefed3", - "impliedFormat": 1 - }, - { - "version": "123febd323d76031d7627cbf495d8135ec7092bcccff691c05a2f5635b7ef1f6", - "impliedFormat": 1 - }, - { - "version": "e4cd7ac19736cd68b8895e45880e09428fe7344800942558b876a85ca6680c1d", - "impliedFormat": 1 - }, - "fac4f3515606cd726a5eb5c9462e5d7dcf7fc1860be5a6235a920454c71556aa", - "2b0be755e444b945fb3f71aaa5c811533a147b456833d2d510f275260adda6a8", - "eb5b0b9bc8e9777fc689dbb76c0eb5970a9389e4c78891b42dcadd65dee567ef", - "04edc6bf1b0c9a872b6df1dd2f7aba179e5e3ab0d5a33ea3969926feb119384d", - "29afd7bf044c420ec014d47415130e4bada92254fa65df00d7d45d1ccdbe5324", - "bb147b3b7d03f47bf65572da2004d3f876b1a6d08ebb9341e9ba7355182f3d55", - "9c02aef464348defe9acf04d87173c7e70ba078f0c8f00928a7c0af808e4ba07", - "413f4d65bde6572a22c88bc4baa166f95269a19860b6ce5af6824dde211b0286", - "4b38fdb1cb42573c3fc38d24f1c2d554d26b4cb8d4e7c432dff152f0e35a4f2e", - "bda42da893ca17182605be59c2f22ac03a5c2e66ffdc2093922aeddb4bddd59a", - "38626b10dbb022e921114f92387294e1026a065267b4bdb94056964d1aef65e1", - "b4e49b95c12bce2bf263ca9ed7be836bf7a5a7961fd6316915abb6164ce33772", - "8fec33148c9f898faa9df31329848de051cbdb477c18a2ee4a22f4062e7937a4", - "9f16b56ef218243330013b1190ede065997806d60a4868cf2cd94d962a7b7ca6", - "f9a31c8ce1c25eb5c8f45bda84b2415063743d6e9bb07d96b6c11fab30822a93", - "2ad55de42820c74a63bfa12b433d92211c7b6937394ecf31ffce9e10d40fa347", - "58e7a5aeb81282be46237f225a04ca432cc76f53a9a1c97c5b7b87acb9d27e87", - "8852471db0c23ddda951d22a494dc7b34b3e70b2b8f184c43101907c518c4a75", - "638a3f95d79dbb41c1068946c8826b4debc1a602e1386fbc5bfce9bcfe2cc542", - "1939b3b11c99dd8ed303897a11f65410a60e03d399d952a8c064f7df5259b940", - "5dfa094ad0e30530a6069c8ec42e6bd2bfaa0c87c696a3ccecf7d082723e5be6", - { - "version": "dc58752f53f0998da7a52ab2f35a2f4d624e60a4a3c44d0310f2825b7d363b55", - "impliedFormat": 1 - }, - "64cc220f1fc13ae4f7ed4c8d79aa90dfe8f44ecc9d35f9da544d75fcec0d6c14", - { - "version": "b547b512dfc32b77df72a9f489880f65b677b345313251837b30cf2e99714e96", - "impliedFormat": 1 - }, - { - "version": "93c4f4a553b7303b21eb3cad7fda5c5e30e3096073af82fc383751f2da517258", - "impliedFormat": 1 - }, - { - "version": "97147bb597c8918d902d00f7f6a589a4b93199282a507c18a25d7d321ee48af2", - "impliedFormat": 1 - }, - { - "version": "1ae706763000d4e4af8b84cacb5045f201e59ee538467d58a7d9fbc1f3e7db3a", - "impliedFormat": 1 - }, - { - "version": "fdbe1458d1a479d214cb34814218b7f8cae0bda7ee53ec068d6a58f0cb7716f5", - "impliedFormat": 1 - }, - { - "version": "4ec38490302700388cf142af4121441c6135f4f5ca9efdb5eec6a7f4fc57f2ad", - "impliedFormat": 1 - }, - { - "version": "93c783e571c79fd5f031e598aa02a3e2c2806236e17ab380d214b3ad6750a153", - "impliedFormat": 1 - }, - { - "version": "7763bdedb536d487b6711024e9adb16b4fda265ec10cd1c445d9c089099312d1", - "impliedFormat": 1 - }, - { - "version": "817df0ae8b2dd40c4767e652542071a6be40435b4cc749608e824160fb3ede73", - "impliedFormat": 1 - }, - { - "version": "48affd18f9a66887e8b02ca8e279b7139d8c2a1ddbf8e7878595463d423151df", - "impliedFormat": 1 - }, - { - "version": "5e5fcc1af5d64ff695c486a719234b904c4724dba2acd399d8f8879614a4e6a9", - "impliedFormat": 1 - }, - { - "version": "83ef1a1c45af93416a683d2c189745abde2303b9ece61e1cdca3246444834832", - "impliedFormat": 1 - }, - { - "version": "b59e627dc446eff64c8d9305e4ac847bd2713b2c4151e5f78a84c11cd68167c9", - "impliedFormat": 1 - }, - { - "version": "f38253edcf6bdc7c97ce4754eb1113c3da7b5ba34e4a12ad4df4a40633786518", - "impliedFormat": 1 - }, - { - "version": "6642c8e9a481870e7ce03e9ac011a3589a9dea46dba6b0669214a93110705529", - "impliedFormat": 1 - }, - { - "version": "67669b4bc5a59db366b0df081d50ffc54fd77e47a034e4c5f8768e8dab816b5b", - "impliedFormat": 1 - }, - { - "version": "b57360fcabfc9c0c262285df07542060b16c1b3fe36580e5b85d95f2f87e1499", - "impliedFormat": 1 - }, - { - "version": "8ff9c9012f6e7d31c5e12983d8d90d1cea0d18bdf2726b33f6cb2edfc6908baf", - "impliedFormat": 1 - }, - { - "version": "bdb4a67b43d921db79d64201c344acad10a636530b657e73b12d02bf6f45ce49", - "impliedFormat": 1 - }, - { - "version": "b00333b0e9e46801696386811b49b23f336c15322842544bd8615c3da9b3b94d", - "impliedFormat": 1 - }, - { - "version": "a9e671f61b0ad754f5106eff0d017f84b894013926ebfb4143ece77bdcdf59ba", - "impliedFormat": 1 - }, - { - "version": "223ead7e347fca1e4b3e1f37fb93ac99c10b7650d295186108330e37d09f7b94", - "impliedFormat": 1 - }, - { - "version": "287235908bf0b91234c4d4a595f38d06d5845bd7fd7b44742665b3e7ae03e68f", - "impliedFormat": 1 - }, - { - "version": "361e1c5d3d24570b68d709eb5dd3f97876b43dbe63c58678b400f163cd26d40a", - "impliedFormat": 1 - }, - { - "version": "8c8fad8314ebf96f2ffa7b6a53caffa74ea2fc067e0cbb0502b7994edd4297cc", - "impliedFormat": 1 - }, - { - "version": "6304eeee383a48bff33032635df7e4b840618ca3cd898915a984a261f6d93f35", - "impliedFormat": 1 - }, - { - "version": "ca0dd25667adf2a5f14cf14d04c0ba45534ed3b7b9cf760230008a6f923f7e42", - "impliedFormat": 1 - }, - { - "version": "6e035089f12bd757a664c5e82c4cd7bc1fb12347ff865ebfac8001e534c8bfa3", - "impliedFormat": 1 - }, - { - "version": "c68b6dff47b2440ac8347153d4335be3557812a422def221a9dcdadf0ce40abd", - "impliedFormat": 1 - }, - { - "version": "705a65018f2dff20bb282a246aa0ef2d2b904f780d82bd904c4f32ff2ff5612a", - "impliedFormat": 1 - }, - { - "version": "3a4aeb43e1fbf7312e4211811bda0b112297caac746f91c20fc47913da3df771", - "impliedFormat": 1 - }, - { - "version": "5effdf3f7be049db933b2f57465f4a638b40b19965bad1706c1fe78de13d5372", - "impliedFormat": 1 - }, - { - "version": "90281d43ebfac47405c86382598d53401f22c760a3ef21dbd77bc079f59fced7", - "impliedFormat": 1 - }, - { - "version": "74a4d94b2aaba4c3b955d1b178145413941f7280758ca4062c450bf73392eaee", - "impliedFormat": 1 - }, - { - "version": "098ed01db40b5622ae5c8aef0b6485e0149ee59e2a4294825b0cfa4ecf2a8a7b", - "impliedFormat": 1 - }, - { - "version": "8ceda0d6a6143bf2e19eb97f18524b25f832b563f12c5fc7dba83dd1085d6dc6", - "impliedFormat": 1 - }, - { - "version": "8a30fb936ff175fe6d094b4b95cb1774c5d17983aa5186c6d6b0aa33ef9111e6", - "impliedFormat": 1 - }, - { - "version": "635c26288e144cfb4092c46d5d4a5165eac45f46c81afc07480f715289a6f834", - "impliedFormat": 1 - }, - { - "version": "3f7a8c2b8f35b7d81d5449ebdf42b13412aab13edbabc76c4ea32ff0db057ecc", - "impliedFormat": 1 - }, - { - "version": "0d670c3dca19c238f0c67e9f87bf2081bcc5031cf5e5bbd080c0de047a44583d", - "impliedFormat": 1 - }, - { - "version": "50815e3a3e17062c2a201cd0f9b8128fa527286862751d77b84a00aadde516f3", - "impliedFormat": 1 - }, - { - "version": "aae7587a50ea51dc486efafe24c8fa7093893dfced81dfce0734cfc9366c77d3", - "impliedFormat": 1 - }, - { - "version": "e783f5939b607bc1c249a04971ac50ab78a4e147f55498043aec20c5f6136847", - "impliedFormat": 1 - }, - { - "version": "9951ee0e3a4eeae04888e7c7db19d1b5e0242f8af14a6e2ad9a47b64ab2682cc", - "impliedFormat": 1 - }, - { - "version": "fcb07fbcc4ab1427ef262e417d9dd937b906bca696c73ef072b252d4b4086187", - "impliedFormat": 1 - }, - { - "version": "d44a1a221d47cebab961acf6455f8830c866e79b6289fab8e0486bf178eceae8", - "impliedFormat": 1 - }, - { - "version": "05226b3b3478d1d542ec45bd8d79f8addc994f03455fc972860637e5d417aa9a", - "impliedFormat": 1 - }, - { - "version": "acc9239d75f2c08a8916398d09365fa872daa03a6d9c416718cd3164eee89882", - "impliedFormat": 1 - }, - { - "version": "5fc0bb5ead26154bb362d94e96bee9ad0aec5261ef04cba0234883b50b4660d8", - "impliedFormat": 1 - }, - { - "version": "280843b714acbc5805b0c2271dc149579a12c266c5a71a09462a60bf7ff688df", - "impliedFormat": 1 - }, - { - "version": "dc783264c900bc57eecae12f869b19c8fa6b2885a0907f718f3daa8813159d07", - "impliedFormat": 1 - }, - { - "version": "a6feabaf3c2c6cd3319ec5bbdf079458b6272a6fc654eb69e7046e7c9a1f819e", - "impliedFormat": 1 - }, - { - "version": "430ffb37c6b634cd1aff239185056e94c9a1b5d88709d37d33e170f4b392769f", - "impliedFormat": 1 - }, - { - "version": "65f9aa17cf8993164eca73d9e84ea5bf16dc840502e4072ea4547bd0d51431bc", - "impliedFormat": 1 - }, - { - "version": "4a5546b5a406d121930ccce02549040c57a70cc9d936fa9a569fb7275a9216c4", - "impliedFormat": 1 - }, - { - "version": "48da7ebd3896d6be9fcee9d91ed64574b61bf14560aded8baf9f7b02f4808d47", - "impliedFormat": 1 - }, - { - "version": "9af9da4189746b2b21464735aebc9e0894d4d9f55ddf32bd0d824c3ef8cfeef2", - "impliedFormat": 1 - }, - { - "version": "dc28904f8ea69eb3a123617b80be1425e1da9dc3fea0bdc77cb70a1b2ef84657", - "impliedFormat": 1 - }, - { - "version": "c3c26b7dc516eb77e8a71c763c49ddcbed77d3cafab96ecceaee0692000c6e3e", - "impliedFormat": 1 - }, - { - "version": "8371b7ba645aadcf1c1de4c1b9538944c5313326ae5582cebb3c7b86cda97adc", - "impliedFormat": 1 - }, - { - "version": "11c48eb2b845619b439e8f975674a44233239218bd19d4dc5b4158c32f0c2adc", - "impliedFormat": 1 - }, - { - "version": "6d760385e3c07101963978e1b292f416ba9be92c059a7e146058f1e78740f59b", - "impliedFormat": 1 - }, - { - "version": "5da9bf76e65a1a41b775ff386a9b7ed8e5678e5667a6c57a4125f5044c9b89fc", - "impliedFormat": 1 - }, - { - "version": "b0803ebc2c0ca8a885b654b29c2a0cb6efa4e601f40c0c9fc28dde73ec0788ce", - "impliedFormat": 1 - }, - { - "version": "3f08d4a744d58fb3dfe0c28412769e195243a0700fc59b408e1a5615fdbd5086", - "impliedFormat": 1 - }, - { - "version": "74f1c7a70a7032aabe6a685e5bb7f79bb3d497127fcef1001ad4eeaaa55f6706", - "impliedFormat": 1 - }, - { - "version": "e3f61f6c437d44776e7ff82f14a63d1db60d1dfa287e4d320f1e7bf86e8be835", - "impliedFormat": 1 - }, - { - "version": "89a21013986c46314b5126648e37c2669a4d6d93d91a0908cfe6570c5e9b9190", - "impliedFormat": 1 - }, - { - "version": "fa04871432560898c79a6ce1a40d690d74f3690706514527c3faffe58d833bb5", - "impliedFormat": 1 - }, - { - "version": "42df6a6cf45d86b342f28c27eeb4e81d5113c1eefcbadc63b3b24de14c8a5c41", - "impliedFormat": 1 - }, - { - "version": "163392757209b9926b7c23dc8c6f95dba5bb5b09fea53b4b47c04a76ad16dff2", - "impliedFormat": 1 - }, - { - "version": "ce0ff5e88bc89dbabd9f73a4d75ed9dbd81c8c8667b139c6a1a202e23414aa60", - "impliedFormat": 1 - }, - { - "version": "e6dfeab27ed61d5c3813a0347ebf6900ebee1304138eed25e45533677a71d151", - "impliedFormat": 1 - }, - { - "version": "c659cfc3ed7ef103252da4afbd9040d9e929228b10178ef0e777e3d2813e6215", - "impliedFormat": 1 - }, - { - "version": "9428fb08af0dc369ce95c690ec977f8ec5576e5a9b0f9e9e778f899f55fd1ef3", - "impliedFormat": 1 - }, - { - "version": "2063599d941d0bd66363c7886406d34d34167846b581fc974e95dc374b1d88cd", - "impliedFormat": 1 - }, - { - "version": "0a06d298498fbdc7b6ed30705d8a7c880eb1dcfab475869f7ee54f261e99f2c7", - "impliedFormat": 1 - }, - { - "version": "4334ec0d3e6cc2576edf684b379f30dd8f4506a585f6ec441997a17354304d17", - "impliedFormat": 1 - }, - { - "version": "cc2077d5ddf3691590ef193be1b4cfbb649004753e707beea35c2bcdc605b518", - "impliedFormat": 1 - }, - { - "version": "01e72031d2618d8b3366fd266137a3bd28dd2f67ad6b03b9af3337b818b8aa6b", - "impliedFormat": 1 - }, - { - "version": "7e996aba74ff60c2b6d1b9e833b71839f2da926cd6837127472e4a8452c2779d", - "impliedFormat": 1 - }, - { - "version": "ce281a0b70ba8f38d164d3c22b0930d2a0a748e43c9157a1686586463b829103", - "impliedFormat": 1 - }, - { - "version": "340e6cbf8fd4a5ae90ae8f14689f9fa1f02c4fc3b62c13c43cb6cfefa75fc3e9", - "impliedFormat": 1 - }, - { - "version": "8a2c7138406501cb37ff12f83eeee4a59493edaf8563a103f23c30c83ae2b92d", - "impliedFormat": 1 - }, - { - "version": "79fa5f0b477d00706f8fbc0a4fa3f6bd1649481da92847141e71f67e8c045a95", - "impliedFormat": 1 - }, - { - "version": "e6c3d10cf65e7fc05db91cbb6f10cc42a3e06610bb7d7e49c6d33981dfeb2901", - "impliedFormat": 1 - }, - { - "version": "7b74f1a5d7c7272318b01b404de39398d35de94fc42844eb04117cb7a815bb76", - "impliedFormat": 1 - }, - { - "version": "b42d65119a0f9850966d64d146b891990f0c165853d9d54791b3a4c047de3736", - "impliedFormat": 1 - }, - { - "version": "1107d9e14599bac7b1ca36a9f9d7145275edf483730f4f242be38fa6279cee42", - "impliedFormat": 1 - }, - { - "version": "d096a4878051270318c49c52ccd565eeba95e09a3dad951f26938d50336f3d06", - "impliedFormat": 1 - }, - { - "version": "2e2e965a9adde2adb2a89699a43baacc0feffcbac4436cdc16db2c21d6852142", - "impliedFormat": 1 - }, - { - "version": "1a65205c72c61bcf494604f4ba3570ffcb9dfda5f56707d72d876a2cabd51125", - "impliedFormat": 1 - }, - { - "version": "f677b752cbdd1fcfd16c5fee7708883793701c2fd848615316806c1997d95f7d", - "impliedFormat": 1 - }, - { - "version": "b17dc51df3771f5f833200db56379b3df8d93df631213c6273f3ab9a3a3cb85f", - "impliedFormat": 1 - }, - "2321cf8c88bdfbbe495e0b4c2966ca6811baf1526d41f1899369bbe00b9afb5e", - "183349a4a62e76dc4adc9447a94140cbb3e7de762862c512865a8dfd2bc22832", - "2ce23068f9ead36dee64c9e46ef62ae0765e037f418b60d7740efc614f4a441b", - "a6078f85c62d1f0dd99d22b5bb76e2adcb3b83990701879244dd04dbd3c8042d", - "f1f9757f2ad9fab08f54f34fa2a88d78efcb0a2e152150e6bfbd033ed576d10d", - "d70c671765000101b32d802a8bb49b2d31b3e613a54f3b250fd56418c37e012a", - "9239d720a7b92604bb8a27d83eacb2bfc14f278fe6d7ffa0c12c3228568048a0", - "4360870ab58c9cb16a8ddbe51e71c2953cc68691e44d92dc313a45760de20584", - "5e76370864fb70d73b4e2ccda7263fc916147def796c8dc58fe0e1b39816defe", - { - "version": "203d75f653988a418930fb16fda8e84dea1fac7e38abdaafd898f257247e0860", - "impliedFormat": 1 - }, - "ff692a6c9ce100d81461041c338f788811caea43c2f25e11b1379028b9d7b77b", - "b8fa078d0d26f56bbfc8b3be5ddea22383b395934e2504263fa108d3abf6f2d4", - { - "version": "b327af3c54c2a791380f4abbe2967607ac364ca3176063ddcb8d9c81b5d33042", - "impliedFormat": 1 - }, - { - "version": "f757a95518b0777db9913de73eb08f0368237f3e38510fc76fc447a3d3c05200", - "impliedFormat": 1 - }, - "1d86b2c4846ea0807da02d025b6b3e2616484808733d2c7e670814a0ff3339f7", - "7a8a0101534d76095f1519735e90530515747a0e71b3ad5fef4dc11e8228c594", - "a447815f68a1d2e1edab0b488ad0e23b01fc03d3d9125003828848cc9b8f4dfa", - "8b94dcf8a203e456b9a4c5402f0824e1d682b060302bc48a112c132f3a326c9c", - "98b144bfa66d1169fba7e6c412d676db009d18b3ac0775fb54070eb0152bf9e1", - "24a3e8d5f8fbbb93e24a6e6d381c367511ed470e762bee15cba1e3b96925c13d", - "46ef5c0ec61a734fe97ce9b09867bff4c72c56174c6f2a208c33b47ab8ff64f6", - "541af3de6fa338159b2b1604241766fa9fe51425dfbc4ff6bb29e4ce12d495af", - "c2cb8df24a90d1a422c5fdeaffa7c6edc3a1bb9e7168017c87faf1ec8c6f18de", - "00fca32974e072be0341650b851e1c84d609afdd1ed722dcbb22e38f2edc7b55", - "249d88d304e6ebb7000ca1f0dd64da16e064aabf3a9f8871f59ca5e57770d492", - "e42c832fd757a9071cc8ddd65299a79470460a0fc5b6629ccf5121a9627de9a5", - "c9dd7373217ce31f1e3353240f971a5fcd157bc742f9208218a38ac30b802ece", - { - "version": "50c74e73abd6f4ea1c5494ce6a843ea20762eb62da094ba2b1f8a1e04ccca8a8", - "impliedFormat": 1 - }, - { - "version": "afd8c2167dbbfd879d25af125969b75139c9b86e3288837bcb0d0d6c4bf60712", - "impliedFormat": 1 - }, - { - "version": "9097b5d03e6dde2e0336026783a4175a3dc528c647d5abb402b4b0b894416b1d", - "impliedFormat": 1 - }, - { - "version": "21fe737aba7e9dc9dc6a8246101909ffa6d286ab9a7cdb3e4856e14de099da88", - "impliedFormat": 1 - }, - "ed2eae8b73d93e65bc27ff4f52df3baf20d0ffc2bc2a2e767af8086c02c90a8c", - "5d558ddcd9bb96be924315573c340362945a1e27e0317de751274f8681ab41f9", - "686e4d879f4cad94de045dc0bb0531fb264e214f9b76ffd2a927687cca1c512e", - "19857c0967d16611100062bfe06a97558abfbdb0cb7b1f36a2b7df6757450f95", - { - "version": "ea961ba8b4b8b2a005b5cfd165767d9531a8cad66b3ab611bd51b807e035f301", - "impliedFormat": 1 - }, - { - "version": "34722429e05c79e076b3e7f442de20413e49c817139f819fa12af4e334989887", - "impliedFormat": 1 - }, - { - "version": "6a921c070789554b97930786b8425ccfc8aaf718c8660e773ffc0398b15968b9", - "impliedFormat": 1 - }, - { - "version": "0d84a5db64ed2328788adce5f0d0f4f1744965e0f7cb216faa9a22ec27186c5b", - "impliedFormat": 1 - }, - { - "version": "79785435cbb7b489fb0094f074060ed0bb593b0998ebd6705f9ad92380bff990", - "impliedFormat": 1 - }, - { - "version": "6708995639bbfc30698d783f78878c16e0a6e64b47e72d6f0bbdb8dc66c25cf1", - "impliedFormat": 1 - }, - "a87bda84dee85ecef3cdbb6efcd730f0e52197c1f13a7c910a727e73c43d072e", - { - "version": "92ad306375684124b66ec917ce9e9ec6c5ca55c6d98ecde1ac725f9e2f1ededb", - "impliedFormat": 1 - }, - { - "version": "1293be38ef5e8a59467d758028d0f4cb5363382a77046970978fa463c75bfec5", - "impliedFormat": 1 - }, - { - "version": "2d8ad968495fa16d2f26d30aac8f252d5622314b2ee5aadab70f32762bb9a6e5", - "impliedFormat": 1 - }, - "dc00c5b08c5e9f3927aa061602b252d38eb47663625fd7b2f18bbb02797c171c", - { - "version": "c6d10f50aadca42851b68d297cac0993c33d43c67aa8a51c93cc5cf659f23047", - "impliedFormat": 1 - }, - "a4cfe05ca26c1f9ade663f26414498a08b0a6ad2b6f8192ecc3018133588dc7b", - "69ce679637d6c41f343de6e927ca49f9055e658a2ec4db9dcea974341a684e09", - "89e4e3800a4e17d72f2d5dc37d4e7c3ec8832bf77302b701074ce641ce15e108", - { - "version": "dd9ce704bd8f208e945bc604a6e01c160a760a82150dcaf8c06b37ef4a674211", - "impliedFormat": 1 - }, - { - "version": "d9231ac81413c9684b81db9bf304b218b03a3fc2055966262f965d6fbe75a5bf", - "impliedFormat": 1 - }, - { - "version": "03edca0908f835f7ffb38b829ca44405f2aac7d4f62eecd6c20ee0007f36ca9e", - "impliedFormat": 1 - }, - { - "version": "2b4873e38e4ae0884aed98d02ba1bc3487aef7fc7a20612014bcdfa68e01c72d", - "impliedFormat": 1 - }, - { - "version": "b84b1b19e8e6a25ec0c1461be551980d1f9f8fee20a8b61fc5c87f63c94f06db", - "impliedFormat": 1 - }, - { - "version": "0b9f2b4eb6b92e923c4478a870736e428a24a767f4e8d3ed2fdf5ede48e91722", - "impliedFormat": 1 - }, - "35162f36b71bc05d09e117d9d45594fcb7e1c4703ad2b2113a3b24ff160ec2b3", - "9bab264bc6a8a4c91223d343d32da2449bd36c3c656ee2ee8fcad700c363bed7", - "dfbaf997557b016782b3aa38eed2f4c8df6795058e140cb63466c1a5a82d059b", - "af23f025567e7d121f3f345faf2b9ca2f950864e06ddf4559877ed127ef96527", - "7dde330bea95397f5f77f842bc142c24482d4958116026584469bd46f9c9bce6", - { - "version": "2a69bd90a398a0930302b4f49b439ca905fce8b7d90bb4ce297a5643480f99d7", - "impliedFormat": 1 - }, - "bf19449d4c2cdb18b998250355ef06754a06a1f95154d2bdbd43a119a2b1cdc4", - "386d422404e5783315453ed8ddf9813b93ccff2ef7c81c5e397a9d04343ca35f", - "3417ae1daaa59f088a5ac353b70437fa468bca57f8842ba761098dfb2e85dc07", - "d91b5dfe042257616b98d4e7491f6044c34d1a9e41354f82f2bff4616d6a0c40", - "3dc53d0fa573c1304c0fb44fa69ec52060adf3db204382cc54d72ae62ce3395e", - "7702a93e5a0b71e56d47e5fb41e0653471b4e5e588445414781d0694f43cf08e", - "b1dca14ffa10f811476c31fcef0ae2769340196d63bd64e9abe482eef9c34aab", - "1ddba8aeca1007278a1d70af8116cd84ae57a2e01159073c4e4ca2dfc2f4860d", - "9b8554bdbe874044ec8c389fdcd585c476180f6b5a4f04019868b2b0a462f253", - "80461c9dae28ce976965ce70e306bb1287d273ae91eb7961c1c3ca02d36006b9", - "a6732994a65d613bdfd9c3ca7308b15c24039e210b9a1d7097e7359b6f488a34", - "85df7f664475e0c164a4ce7ff9bedcda15b19451446147a74789ca35a9063e61", - "0758af4ca6bf60c893275e39210cb7b73ec6a4a5c56b582543496263b37291ee", - "3027e7edac0196e867bad00f58c6b9f316de108d218f8ea5f51b4ad27af5db18", - { - "version": "6c27fd6ff5a48e102b9a6df04615569854548703f033efc9246385c138d5f128", - "impliedFormat": 1 - }, - { - "version": "6d467dac6affb1161d70676fd7b2c47e05d46f6f0f00e732aebf9dc47e2eb8bb", - "impliedFormat": 1 - }, - { - "version": "914bdbe4d2967cf4c2a06ee5c9cec4e68799c0b4fd1fe72d3f46063810c90923", - "impliedFormat": 1 - }, - "801c8694781e1867f8ad91cc330951b3b575ddc8603ef9edad80bd463955b1d5", - "72fc857c42694ec85f698a2f6ebc68c2c2cfc100173e2c69d7a79566a845288c", - "26370388e607b7feff8630b7f2f59e688d3cd00712882fed5708e32077040b6c", - "ebb2ebdc8e218115c14271edfafbd8980d91db6950cf4af7e2d58e743039f4ab", - "36449f53ef0698ee7dddbbbe3fe5e8d06d5afe855775e2d7fbfede5e730ea75a", - "0a84e147693d21625a9daba9c04195f52ab885dd05409f2620b947d03eaf0c31", - "73df6918de9cb71a231dcab6bd22da305b3b8273a8d67564ac23942251d877f8", - "226c2ab617fe880a6f2f10d26eed46f8675fb358ece605afb7babd0622829ee7", - "3b390e2c1137fbb6fde64b50f833423f49385081b0cd62384c829ed7a79b0b84", - "4247ba99568e6ea9b756ac36c71373ef07b4df5ade9f6e85bea8674df5f0b557", - "4e6081d95201aa8efaf6010ff8c33fdf6521ae875abc5ca9585ae427babec04c", - "2250be7cf5b56fa29d2b443b73e3c93a960dffa4d2cae253c127792f21415e35", - "9aee8cd21f16f07a578038e43491d9458b63dd0c58e1a32cfb70924b0c8e5de5", - "f9a0752581410a97feb965d166f17f18dc6899eeda92d49866026d18d07fb7d9", - { - "version": "c4e1a0943c4abefcf11e378429e230299c869df213e648e2ff1a5e3a1ac8d42b", - "affectsGlobalScope": true - }, - "3ce4234f10e688c5707eed535877496a59816264e3c7d352cb54babe49db903b", - "6f11ccbf05ec030b4e2f67eb50c489cd05db396268e27b82398f8cd0e475a820", - "d9971b2df81131f399cb9396b7149ab4793b01a483771bfc58c8a8632d0c05a9", - { - "version": "5487b97cfa28b26b4a9ef0770f872bdbebd4c46124858de00f242c3eed7519f4", - "impliedFormat": 1 - }, - { - "version": "c2869c4f2f79fd2d03278a68ce7c061a5a8f4aed59efb655e25fe502e3e471d5", - "impliedFormat": 1 - }, - { - "version": "b8fe42dbf4b0efba2eb4dbfb2b95a3712676717ff8469767dc439e75d0c1a3b6", - "impliedFormat": 1 - }, - { - "version": "8485b6da53ec35637d072e516631d25dae53984500de70a6989058f24354666f", - "impliedFormat": 1 - }, - { - "version": "ebe80346928736532e4a822154eb77f57ef3389dbe2b3ba4e571366a15448ef2", - "impliedFormat": 1 - }, - { - "version": "83306c97a4643d78420f082547ea0d488a0d134c922c8e65fc0b4f08ef66d92b", - "impliedFormat": 1 - }, - { - "version": "f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c", - "impliedFormat": 1 - }, - { - "version": "98a9cc18f661d28e6bd31c436e1984f3980f35e0f0aa9cf795c54f8ccb667ffe", - "impliedFormat": 1 - }, - { - "version": "c76b0c5727302341d0bdfa2cc2cee4b19ff185b554edb6e8543f0661d8487116", - "impliedFormat": 1 - }, - { - "version": "dccd26a5c85325a011aff40f401e0892bd0688d44132ba79e803c67e68fffea5", - "impliedFormat": 1 - }, - { - "version": "f5ef066942e4f0bd98200aa6a6694b831e73200c9b3ade77ad0aa2409e8fe1b1", - "impliedFormat": 1 - }, - { - "version": "b9e99cd94f4166a245f5158f7286c05406e2a4c694619bceb7a4f3519d1d768e", - "impliedFormat": 1 - }, - { - "version": "5568d7c32e5cf5f35e092649f4e5e168c3114c800b1d7545b7ae5e0415704802", - "impliedFormat": 1 - }, - { - "version": "31a863da9da2a3edec16665695bdbc3134e853195f82dafec58e98c8e1bb3119", - "impliedFormat": 1 - }, - "e369b4c9be4d42bb64ddf3d0a673633bc79ca64befff7d2c0a60e0966769fa12", - "7f595e099e369ee441466ccba6b7d26fbbbc14e655e30870ce3921773224c10d", - { - "version": "339ea88dd13c1d086f1cd27fb83621b21e348dd760f39d1b38f1d67247fb5e46", - "impliedFormat": 99 - }, - { - "version": "0f8f1e26430eca9a599bb5ba1254037d61aeb5c73d9425f2ac1f0d4d710d8c02", - "impliedFormat": 99 - }, - { - "version": "ba2cad86b7e32e99b0a372a4db8637218e36a28e4295c41f2d4b9a00711c573f", - "impliedFormat": 99 - }, - { - "version": "520063a5b30c811cb74d7d9b94870051a8c879c7d18f3a0b18c6402440bff1e2", - "impliedFormat": 99 - }, - { - "version": "637a90a86cb3ed33203c935f252d5470a345cb942eaf13f3e2709db31512ebf7", - "impliedFormat": 99 - }, - { - "version": "c7dcf01b3923789139e3256bb80d4d0d427d39f289ec5646b7bb3cb2672847f5", - "impliedFormat": 99 - }, - { - "version": "754afd0edd6ffa5bc5ea7100bbcd8e2d24ab66c9a4469ded045258e7a83f33a0", - "impliedFormat": 99 - }, - { - "version": "5b9cd3fd889b887a753a3fb112ae173ce113df9469d2d0a22faed9c16de2203c", - "impliedFormat": 99 - }, - { - "version": "b2152b77b1b41dec50bdb467852c60d13fda134623231344d732d0477a580087", - "impliedFormat": 99 - }, - { - "version": "2b5b9812e9ed7ae03f2041135c0e73eeccb996bda966e47fcde69d500f5bef93", - "impliedFormat": 99 - }, - { - "version": "857c507909286ff87383287edd1a336afc68b0c8c693ad3fd6ba837708492076", - "impliedFormat": 99 - }, - { - "version": "df9dfb5c5f58d478e8c6654648e427e6bb26e15d547f1b611d6c6e393170033b", - "impliedFormat": 99 - }, - { - "version": "7063031149b7413ab3b80689cb526e3257c9c2e890d65a48faffe9a9a0ee59ce", - "impliedFormat": 99 - }, - { - "version": "14037cb899d1a890f1fb061ea1362039292b10774de3218835c921a4a411d01a", - "impliedFormat": 99 - }, - { - "version": "a211abc59f91d43eae9cdaa19ee4b472a7b4a4ff5e3f07ce8b065d4e92dcbced", - "impliedFormat": 99 - }, - { - "version": "f4122d8ef50376404bc80d01a6375b3d5d45040e2f6cf9900d352c1066ad9591", - "impliedFormat": 99 - }, - { - "version": "7eeadd198787f565f0cdc88dc562cda9866fc7e2679b38de7d92162018804499", - "impliedFormat": 99 - }, - { - "version": "32dd74850436fc34eddcea1b325a83807483ced06b9b37d5e4df38c0ef92a72f", - "impliedFormat": 99 - }, - { - "version": "86cb9c910c55217b3278419db2f50f58eaf945d6500ea7906c8f990d196ea4f5", - "impliedFormat": 99 - }, - { - "version": "b255c790bec1a2ef2a3c4d7d40af94781559d5c15d14dc6567ea5e25708d4288", - "impliedFormat": 99 - }, - { - "version": "03c0fc9e4ad368991c1733aabd605864b69851bfb30f00960e16dc0d48a0bba3", - "impliedFormat": 99 - }, - "bda40c0c977f1dd3681ffbfae90c2b2b56fab4f1a2f1742268fb53e148d90be7", - "eca2e61346c281cf1f6fc94979659031983168b098e66bf1f2eb2c46b76aae94", - "58c5493ddc0b066b8ce7df4a20fa280397b2e908034f42db4f2dee58c595bf78", - { - "version": "6bbbaa2af983444add75cb61554b91dfb26c7474bb59b148270a63015ca83131", - "impliedFormat": 1 - }, - { - "version": "8572c8c7efd451ed811f657d6d70f03ee401c5cf175490fcc6b2215b57b44391", - "impliedFormat": 1 - }, - { - "version": "9db596446342a6c90d34ac1135421c264ca8e50c0c674c0fa10b313f7a51bf50", - "impliedFormat": 1 - }, - { - "version": "30fd693da320b8c72424ca881a565162679e06c8f88796c497d24e29daac1b3c", - "impliedFormat": 1 - }, - { - "version": "eca2247488ac2497d59286dd3addcdfbb24072e20c6ebfc7fa3915c9c266566c", - "impliedFormat": 1 - }, - { - "version": "f50a16ca6024aca2ce243524b079c3e2f0ad433ee3be729ac0af43bafa4e1791", - "impliedFormat": 1 - }, - { - "version": "ab2673ff1acedac16b862af7ec8e2d5cee62937080f1359dbf2d29126d508eb9", - "impliedFormat": 1 - }, - { - "version": "4287143b90d621be53fab9dca36a42b2ec735bfb44da5a07e8748a261821f95c", - "impliedFormat": 1 - }, - { - "version": "949fa4a7cfefb2eb529ec6c2172a34928b069f93e6a3b65891aedc6fc306200e", - "impliedFormat": 1 - }, - { - "version": "79e12334f2a478c117a5953cbfd52f4d4f59f77c21c7740edb338141f874f279", - "impliedFormat": 1 - }, - { - "version": "0582a8d130897dfc3f6310da68f16471cb6293799ccc0aa09975dffd4265b61e", - "impliedFormat": 1 - }, - { - "version": "5a341ba80d659186e5b4953c5d00993104f529b48d11fd0b0144ca25bd350a69", - "impliedFormat": 1 - }, - { - "version": "968ed07a79919ca7154ca83c5e969002b978b97adc2ba22a3af45d5993a9099b", - "impliedFormat": 1 - }, - { - "version": "be1561053576a52f4d65494e2f1282289320a532293094134321a44a93cf4915", - "impliedFormat": 1 - }, - { - "version": "b1ce8a3b8ed1691b9770b9871fab57823ab55d40d5dfa9f30af2ac377850a970", - "impliedFormat": 1 - }, - { - "version": "4ceb88f4a0e929e0dc864502f2e23034c5f54d9c5f3fa19f903d32787d090d7a", - "impliedFormat": 1 - }, - { - "version": "b4e62d74cf0df7db2a6a9ea6606da9af352ad42085e7362cad29d8f58278c477", - "impliedFormat": 1 - }, - { - "version": "7824fd7f5908957a468f4ec46c6679127c8b562aeb770a00fe0483c918f0d2d1", - "impliedFormat": 1 - }, - { - "version": "24d35aee6a857a9a11a58cc35edc66acf377a1414b810299600c0acd837fb61b", - "impliedFormat": 1 - }, - { - "version": "36a5fda22d3a6ee321a986d340f120f57c8d119a90c422171bf86fff737fdf67", - "impliedFormat": 1 - }, - { - "version": "8d866e3b3a4f624e1555fa4b5227c3c245a519702968543776f400545e8ce7da", - "impliedFormat": 1 - }, - { - "version": "f633eab87e6f73ab4befe3cddeef038fa0bd048f685a752bdcb687b5f4769936", - "impliedFormat": 1 - }, - { - "version": "ce5ea03a021d86789aa0ad1d1a3c0113eec14c9243ae94cc19b95e7e7f7ae8cf", - "impliedFormat": 1 - }, - { - "version": "c76fe658431915d43b69f303809bb1d307796d5b13ec4ed529c620904599c817", - "impliedFormat": 1 - }, - { - "version": "2427845308c2bda9205c2b2b1fb04f175a8fa99b2afb60441bd26498df2fcdbb", - "impliedFormat": 1 - }, - { - "version": "76ccad6fe97682b8a4f5e3c59c326c30cae71437bc8811d4cc87e10e84bd455d", - "impliedFormat": 1 - }, - { - "version": "efa7052d3bd69a64cbbb2d618826c02fc65691e74a1a04024c3ecd0260584d7c", - "impliedFormat": 1 - }, - { - "version": "057c83625b39de449d0651b919607da322f4a1113c6acc74e73cad6dd7d8e87e", - "impliedFormat": 1 - }, - { - "version": "daec69815ab9c528936534197d95cca93f94cacebac421fbc6330288b621ffe4", - "impliedFormat": 1 - }, - { - "version": "413980d73369922da43255577efdd6685759588a36823dfbe7f272ab223c7d8a", - "impliedFormat": 1 - }, - { - "version": "06fd44c96838099b8b1bb0fb29f73f4b0dc7bd9feb16bc29dbcf442ba098016f", - "impliedFormat": 1 - }, - { - "version": "a06f8413d12b89f7afc3516429118dc9b73638165943b6f1e54a258f1658c3ff", - "impliedFormat": 1 - }, - { - "version": "c2c42764312d2ab315d4713def800fc46826264f877ad0a1b20012d171ee51df", - "impliedFormat": 1 - }, - { - "version": "3cdf773f41931fdf99551b5b1c39ebe0298cc0d5f84396543c3085a1cb435957", - "impliedFormat": 1 - }, - { - "version": "1633b77af9b77abc0915b0a3b0f17379169c5dfc20d23222685300bcfca1a22e", - "impliedFormat": 1 - }, - { - "version": "69a84263e6b52d36feacfc6c1d2fdcf09d04dc24089d88c25de365e10a23eb5e", - "impliedFormat": 1 - }, - "6ecb9e8b030a5451bbfa4ac9cb3ab90a074b7263b3ff3db400c1527d5ebdd51b", - "beef93f89875be2d60783d894be4ff1213921a663a4b1dccc245e26c150c59b0", - "544a3b7fbae9ca30bf05d9d0f1bae8d09bdebf6c056a652c5dc37f38b4b5c146", - { - "version": "9859047560c0c113d5a68030c2f5aac009c7a3b7e28e0a2f6c4fa1bd3a607fa2", - "impliedFormat": 1 - }, - { - "version": "1e7881b7155cbe71a30ede9d4e3339d9de60c72d97147847bd9bef85077e72f2", - "impliedFormat": 1 - }, - { - "version": "7d2ff56ae2357110addd96ac7aa7510224f31e2eb829486bdf5a4af7e2314c9f", - "impliedFormat": 1 - }, - { - "version": "729df80470b858cc2e4c770f00f4b945e8d073d2595cccdf190d5b8c2173ada4", - "impliedFormat": 1 - }, - { - "version": "9da28b505b75310e36af6ba2eb5bdbc28480fcda1fa3901586668e00c322f10d", - "impliedFormat": 1 - }, - { - "version": "13565d74ceb7b9aa57cf122e7daa3267742ab21f2318bf82e64e346ec3fdbce1", - "impliedFormat": 1 - }, - { - "version": "4ac2b0331721cdd9ae3915d6cc80f3790de5c6caf7024d87ad7665b7b7db0dea", - "impliedFormat": 1 - }, - { - "version": "45455d6b12f14c6a213cf09930dd83bfdd56104b354a938d7fe495e8965dd58e", - "impliedFormat": 1 - }, - { - "version": "dc68c2de54f9a748a354fec3d3f4a1b9b946561b59763bb22069e0756b60a18a", - "impliedFormat": 1 - }, - { - "version": "151df51648654bbf8922ad3243494410da97c8a9c00b50d8bce4c7ae3701f20c", - "impliedFormat": 1 - }, - { - "version": "7c48c73f8beab7282443f9303550863dbbf10654e75d338de50a15774522dda6", - "impliedFormat": 1 - }, - { - "version": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881", - "impliedFormat": 1 - }, - { - "version": "0dd7bc3250da0677a9f39147800d5209b360d3d6561a371d13f8095983791bec", - "impliedFormat": 1 - }, - { - "version": "8a013becef463a8474c9e71b21479ab72ca401eabceb31ddf584c2b9a3999b7b", - "impliedFormat": 1 - }, - { - "version": "4e29e81b632595bc87db0473b6f5b2aa7a24b95fb97392ee8c9bdbee72904b27", - "impliedFormat": 1 - }, - { - "version": "3c46b5e7a836ba669bd9b128b649c8925e7ab25f69badc9f2f4eb27d6ea190eb", - "impliedFormat": 1 - }, - { - "version": "0738e3705ecfc1e2e5b49c174cb95f5c40fdd0ce7720d6bbb036f019a9dd4432", - "impliedFormat": 1 - }, - { - "version": "95fe50f64fc00ac887c9fe5a71b2b64bed3ccf659dd56494ecbc0f184fbd989f", - "impliedFormat": 1 - }, - { - "version": "d95eb2650bcea5ec92cc8375987ea0a131e018d3edf7c57a65b24f6a43796a0f", - "impliedFormat": 1 - }, - { - "version": "9cf61ca8cc79a0e14774b26473288027694eb646ed08fa3ac33b4b72ea12790b", - "impliedFormat": 1 - }, - { - "version": "fab131a83a8176a3dd7f7ce46e9e53c8535b8b93f0e906490393376302f16400", - "impliedFormat": 1 - }, - { - "version": "4e4c91b6ca78a308e77a539c8311153cbfbca654e964aa1bed327c080e91de3f", - "impliedFormat": 1 - }, - { - "version": "0d5a1823ef4ac4b2f19f9b9d2d49c105d6e2427430364e323232cfdbfaa19e3a", - "impliedFormat": 1 - }, - { - "version": "826aefe9e99d52df51323823cf0782279ee2bfbc2ee7a8338aa63470137ca65f", - "impliedFormat": 1 - }, - { - "version": "46596f7e2fecdda17a2e0b186f144046dd05d648c38fb731c63eb6ecd3a8e036", - "impliedFormat": 1 - }, - { - "version": "14b0f43e4955e09788ef5977945bbac7dd22c2e3638fe4403be8ce73f2a3d33f", - "impliedFormat": 1 - }, - { - "version": "39e2b60bbad000b6f6cffb337823ae2992704745e01721e75dcf571ad0ae6b2b", - "impliedFormat": 1 - }, - { - "version": "3748045746b4fc790c56f4d855cce21823331059faeecdb1d1b1418a9733ddad", - "impliedFormat": 1 - }, - { - "version": "a419ef898e624f14b3619f4a2bf889ab2cd0d0e6165fe4e8eec8e4994173df92", - "impliedFormat": 1 - }, - { - "version": "b42b3ec88494f4a7f208335e75a610c44d7b26e86f37644506d33cc9190afd1e", - "impliedFormat": 1 - }, - { - "version": "0227a93220d42a79c9b11c6b71296453a447a665e87522ec1b29eafb89c732ef", - "impliedFormat": 1 - }, - { - "version": "97db6da3979f2667248e02cae1d9c2e7f8023c45164d11062e69ad0f892412f0", - "impliedFormat": 1 - }, - { - "version": "f3e0089110f0366c9e9c21aa9cdf0e8dec349e0982cf845569c4c76d7541d640", - "impliedFormat": 1 - }, - { - "version": "f1376e1decd60b0f083427fa8102186d50b502dcf782da722fb4f9ab349799bc", - "impliedFormat": 1 - }, - { - "version": "a84f5860970d187f09c672571d3f467281bfa33dbf793893eca062828e8c5316", - "impliedFormat": 1 - }, - { - "version": "27abe81502b7efc89a9174c895b46784d8603384821c3c0da124debaefc016fb", - "impliedFormat": 1 - }, - { - "version": "976158d738f4dfa70928e4a6285f791d2f344a007755f1c4bd4042141d4fc3bd", - "impliedFormat": 1 - }, - { - "version": "45ef3d9e6e0302ddee149d80a800a893a64b9ce83037bde54c47fb9a614535f4", - "impliedFormat": 1 - }, - { - "version": "6da03196c6f54339a6676c4e9987acb8597d6da8e02e2891f3a5e4ba5ec3f3f4", - "impliedFormat": 1 - }, - { - "version": "7809e7d40576aab1d2544df9b5b9c0ba0a986b6fbead1a7eb8c73832c87a38f5", - "impliedFormat": 1 - }, - { - "version": "3a4f280e1ccbcf6be55a182dc22419f4b57b5bf0da3cfd90be09180893b1fd17", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "15bb87e4300ff4f2e3d12d2509916a465c5f1f3779037d104352a21bae60838c", - "impliedFormat": 1 - }, - { - "version": "918c2c1353e624edd0c5c886c59834b25acfef2d56cebd13bc0802055087a858", - "impliedFormat": 1 - }, - { - "version": "6e8df5e7d5c7301c2efd1ad043e866161c3f93913e6ec42ca7d845926d9e16bd", - "impliedFormat": 1 - }, - { - "version": "8c873d78b8de332bd5e0e39cfa5c143aff3c9d607d022c4a43ef07b3ec2d1cf9", - "impliedFormat": 1 - }, - { - "version": "1323085c5e51f01e7e262e7e92d2458905a7232c66dfa891321d7b87d1f517e5", - "impliedFormat": 1 - }, - { - "version": "f594d55387f139337d2a1466a8ef6ab13a6bbf00ccc245ef1bea481f2c4e1c7c", - "impliedFormat": 1 - }, - { - "version": "c038d8a953b5728afe6efe989414d6ef03f411af3f239072c970e419c2ab7389", - "impliedFormat": 1 - }, - { - "version": "e52bc77889fb5ded518a28c745547a36d1820085d1f14a5b737982986bbce93e", - "impliedFormat": 1 - }, - { - "version": "69a84263e6b52d36feacfc6c1d2fdcf09d04dc24089d88c25de365e10a23eb5e", - "impliedFormat": 1 - }, - { - "version": "f50a16ca6024aca2ce243524b079c3e2f0ad433ee3be729ac0af43bafa4e1791", - "impliedFormat": 1 - }, - { - "version": "eca2247488ac2497d59286dd3addcdfbb24072e20c6ebfc7fa3915c9c266566c", - "impliedFormat": 1 - }, - { - "version": "ab2673ff1acedac16b862af7ec8e2d5cee62937080f1359dbf2d29126d508eb9", - "impliedFormat": 1 - }, - { - "version": "4287143b90d621be53fab9dca36a42b2ec735bfb44da5a07e8748a261821f95c", - "impliedFormat": 1 - }, - { - "version": "949fa4a7cfefb2eb529ec6c2172a34928b069f93e6a3b65891aedc6fc306200e", - "impliedFormat": 1 - }, - { - "version": "79e12334f2a478c117a5953cbfd52f4d4f59f77c21c7740edb338141f874f279", - "impliedFormat": 1 - }, - { - "version": "0582a8d130897dfc3f6310da68f16471cb6293799ccc0aa09975dffd4265b61e", - "impliedFormat": 1 - }, - { - "version": "5a341ba80d659186e5b4953c5d00993104f529b48d11fd0b0144ca25bd350a69", - "impliedFormat": 1 - }, - { - "version": "8572c8c7efd451ed811f657d6d70f03ee401c5cf175490fcc6b2215b57b44391", - "impliedFormat": 1 - }, - { - "version": "968ed07a79919ca7154ca83c5e969002b978b97adc2ba22a3af45d5993a9099b", - "impliedFormat": 1 - }, - { - "version": "be1561053576a52f4d65494e2f1282289320a532293094134321a44a93cf4915", - "impliedFormat": 1 - }, - { - "version": "b1ce8a3b8ed1691b9770b9871fab57823ab55d40d5dfa9f30af2ac377850a970", - "impliedFormat": 1 - }, - { - "version": "d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "378281aa35786c27d5811af7e6bcaa492eebd0c7013d48137c35bbc69a2b9751", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c", - "impliedFormat": 1 - }, - { - "version": "23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0", - "impliedFormat": 1 - }, - { - "version": "487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a", - "impliedFormat": 1 - }, - { - "version": "3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce", - "impliedFormat": 1 - }, - { - "version": "ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0", - "impliedFormat": 1 - }, - { - "version": "c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195", - "impliedFormat": 1 - }, - { - "version": "68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf", - "impliedFormat": 1 - }, - { - "version": "2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2", - "impliedFormat": 1 - }, - { - "version": "ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556", - "impliedFormat": 1 - }, - { - "version": "f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986", - "impliedFormat": 1 - }, - { - "version": "ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d", - "impliedFormat": 1 - }, - { - "version": "36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59", - "impliedFormat": 1 - }, - { - "version": "914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60", - "impliedFormat": 1 - }, - { - "version": "33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187", - "impliedFormat": 1 - }, - { - "version": "7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6", - "impliedFormat": 1 - }, - { - "version": "b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3", - "impliedFormat": 1 - }, - { - "version": "3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426", - "impliedFormat": 1 - }, - { - "version": "7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323", - "impliedFormat": 1 - }, - { - "version": "0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a", - "impliedFormat": 1 - }, - { - "version": "0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a", - "impliedFormat": 1 - }, - { - "version": "9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0", - "impliedFormat": 1 - }, - { - "version": "40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca", - "impliedFormat": 1 - }, - { - "version": "b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3", - "impliedFormat": 1 - }, - { - "version": "5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df", - "impliedFormat": 1 - }, - { - "version": "40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b", - "impliedFormat": 1 - }, - { - "version": "249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d", - "impliedFormat": 1 - }, - { - "version": "80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e", - "impliedFormat": 1 - }, - { - "version": "f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391", - "impliedFormat": 1 - }, - { - "version": "499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53", - "impliedFormat": 1 - }, - { - "version": "54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0", - "impliedFormat": 1 - }, - { - "version": "beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd", - "impliedFormat": 1 - }, - { - "version": "c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e", - "impliedFormat": 1 - }, - { - "version": "5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401", - "impliedFormat": 1 - }, - { - "version": "59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6", - "impliedFormat": 1 - }, - { - "version": "addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d", - "impliedFormat": 1 - }, - { - "version": "48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790", - "impliedFormat": 1 - }, - { - "version": "adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae", - "impliedFormat": 1 - }, - { - "version": "e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599", - "impliedFormat": 1 - }, - { - "version": "2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6", - "impliedFormat": 1 - }, - { - "version": "c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605", - "impliedFormat": 1 - }, - { - "version": "866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d", - "impliedFormat": 1 - }, - { - "version": "830171b27c5fdf9bcbe4cf7d428fcf3ae2c67780fb7fbdccdf70d1623d938bc4", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "4ea15fd99b2e34cb25fe8346c955000bb70c8b423ae4377a972ef46bfb37f595", - "impliedFormat": 1 - }, - { - "version": "7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4", - "impliedFormat": 1 - }, - { - "version": "72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7", - "impliedFormat": 1 - }, - { - "version": "f9b4137a0d285bd77dba2e6e895530112264310ae47e07bf311feae428fb8b61", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "8b21e13ed07d0df176ae31d6b7f01f7b17d66dbeb489c0d31d00de2ca14883da", - "impliedFormat": 1 - }, - { - "version": "51aecd2df90a3cffea1eb4696b33b2d78594ea2aa2138e6b9471ec4841c6c2ee", - "impliedFormat": 1 - }, - { - "version": "2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a", - "impliedFormat": 1 - }, - { - "version": "f929f0b6b3421a2d34344b0f421f45aeb2c84ad365ebf29d04312023b3accc58", - "impliedFormat": 1 - }, - { - "version": "db9ada976f9e52e13f7ae8b9a320f4b67b87685938c5879187d8864b2fbe97f3", - "impliedFormat": 1 - }, - { - "version": "9f39e70a354d0fba29ac3cdf6eca00b7f9e96f64b2b2780c432e8ea27f133743", - "impliedFormat": 1 - }, - { - "version": "0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335", - "impliedFormat": 1 - }, - { - "version": "a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378", - "impliedFormat": 1 - }, - { - "version": "ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c", - "impliedFormat": 1 - }, - { - "version": "c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "d8cf132379078d0974a59df26069689a2d33c7dc826b5be56231841cb2f32e58", - "impliedFormat": 1 - }, - { - "version": "fbf413fc617837453c878a9174a1f1b383616857a3f8366bc41cf30df4aea7d5", - "impliedFormat": 1 - }, - { - "version": "148c73ec11318850f571172ceae3e55ce479d850fe18ec8eae0abd99d9f6c319", - "impliedFormat": 1 - }, - { - "version": "230bdc111d7578276e4a3bb9d075d85c78c6b68f428c3a9935e2eaa10f4ae1f5", - "impliedFormat": 1 - }, - { - "version": "e8aabbee5e7b9101b03bb4222607d57f38859b8115a8050a4eb91b4ee43a3a73", - "impliedFormat": 1 - }, - { - "version": "bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d", - "impliedFormat": 1 - }, - { - "version": "c0bb1b65757c72bbf8ddf7eaa532223bacf58041ff16c883e76f45506596e925", - "impliedFormat": 1 - }, - { - "version": "c8b85f7aed29f8f52b813f800611406b0bfe5cf3224d20a4bdda7c7f73ce368e", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "145dcf25fd4967c610c53d93d7bc4dce8fbb1b6dd7935362472d4ae49363c7ba", - "impliedFormat": 1 - }, - { - "version": "ff65b8a8bd380c6d129becc35de02f7c29ad7ce03300331ca91311fb4044d1a9", - "impliedFormat": 1 - }, - { - "version": "76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86", - "impliedFormat": 1 - }, - { - "version": "9043daec15206650fa119bad6b8d70136021ea7d52673a71f79a87a42ee38d44", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "150d28d98d2f6aa7053ee0eb7de5a1c2ab23a6dbcc92eed0a630b2f572a1a5ec", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd", - "impliedFormat": 1 - }, - { - "version": "b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12", - "impliedFormat": 1 - }, - { - "version": "de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4", - "impliedFormat": 1 - }, - { - "version": "77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98", - "impliedFormat": 1 - }, - { - "version": "8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a", - "impliedFormat": 1 - }, - { - "version": "5fb39858b2459864b139950a09adae4f38dad87c25bf572ce414f10e4bd7baab", - "impliedFormat": 1 - }, - { - "version": "28e3631087ecef78fef8efdb21d4d2509f776ef6f0d660ff605b5ee6a22ebb8c", - "impliedFormat": 1 - }, - { - "version": "b33b74b97952d9bf4fbd2951dcfbb5136656ddb310ce1c84518aaa77dbca9992", - "impliedFormat": 1 - }, - { - "version": "37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972", - "impliedFormat": 1 - }, - { - "version": "45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee", - "impliedFormat": 1 - }, - { - "version": "6b306cd4282bbb54d4a6bb23cfb7a271160983dfc38c67b5a132504cfcc34896", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "c119835edf36415081dfd9ed15fc0cd37aaa28d232be029ad073f15f3d88c323", - "impliedFormat": 1 - }, - { - "version": "450172a56b944c2d83f45cc11c9a388ea967cd301a21202aa0a23c34c7506a18", - "impliedFormat": 1 - }, - { - "version": "9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41", - "impliedFormat": 1 - }, - { - "version": "72f8936aebf0c4a1adab767b97d34ba7d3a308afcf76de4417b9c16fb92ed548", - "impliedFormat": 1 - }, - { - "version": "e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e", - "impliedFormat": 1 - }, - { - "version": "4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055", - "impliedFormat": 1 - }, - { - "version": "04aa8fb012abeecf5666b013c59ba01dca5aa0c28173cb5385bc88d4adeb8d64", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "3585d6891e9ea18e07d0755a6d90d71331558ba5dc5561933553209f886db106", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "86be71cbb0593468644932a6eb96d527cfa600cecfc0b698af5f52e51804451d", - "impliedFormat": 1 - }, - { - "version": "84dd6b0fd2505135692935599d6606f50a421389e8d4535194bcded307ee5cf2", - "impliedFormat": 1 - }, - { - "version": "0d5b085f36e6dc55bc6332ecb9c733be3a534958c238fb8d8d18d4a2b6f2a15a", - "impliedFormat": 1 - }, - { - "version": "db19ea066fdc5f97df3f769e582ae3000380ab7942e266654bdb1a4650d19eaf", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "2a034894bf28c220a331c7a0229d33564803abe2ac1b9a5feee91b6b9b6e88ea", - "impliedFormat": 1 - }, - { - "version": "d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77", - "impliedFormat": 1 - }, - { - "version": "dd56412eda5f8975ab300c44027c91b6a6cf7e69dbae72cf3eec1fd1e093eb3d", - "impliedFormat": 1 - }, - { - "version": "4d2e3ef2f8f9595d129bbedde6c07f554ba8e42fdfa50b77afe6eb5e4d09a6f4", - "impliedFormat": 1 - }, - { - "version": "b4dffcbfd60d11ac854fa7f6b36a11b8cc90d11d56a5e90d17ac63b3fda6660d", - "impliedFormat": 1 - }, - { - "version": "8206d386299ae1a6c10dc6e58064e12bbd847a0e7c908e542bf1041475d54ad6", - "impliedFormat": 1 - }, - { - "version": "ff9ad57b380e2749190840bc15071b71d9562e07f62eb2477b318e98c13a2e29", - "impliedFormat": 1 - }, - { - "version": "70bd600d126103ba9b69a50f5c54aee5f6e5a0aa9b12f0e00776faf72a35aa23", - "impliedFormat": 1 - }, - { - "version": "8d866e3b3a4f624e1555fa4b5227c3c245a519702968543776f400545e8ce7da", - "impliedFormat": 1 - }, - { - "version": "1633b77af9b77abc0915b0a3b0f17379169c5dfc20d23222685300bcfca1a22e", - "impliedFormat": 1 - }, - { - "version": "09db6d7779361f3345b01f54c8c422fbd408b11691703b5041891248ed571174", - "impliedFormat": 1 - }, - { - "version": "36a5fda22d3a6ee321a986d340f120f57c8d119a90c422171bf86fff737fdf67", - "impliedFormat": 1 - }, - { - "version": "efa7052d3bd69a64cbbb2d618826c02fc65691e74a1a04024c3ecd0260584d7c", - "impliedFormat": 1 - }, - { - "version": "ce5ea03a021d86789aa0ad1d1a3c0113eec14c9243ae94cc19b95e7e7f7ae8cf", - "impliedFormat": 1 - }, - { - "version": "7824fd7f5908957a468f4ec46c6679127c8b562aeb770a00fe0483c918f0d2d1", - "impliedFormat": 1 - }, - { - "version": "2427845308c2bda9205c2b2b1fb04f175a8fa99b2afb60441bd26498df2fcdbb", - "impliedFormat": 1 - }, - { - "version": "daec69815ab9c528936534197d95cca93f94cacebac421fbc6330288b621ffe4", - "impliedFormat": 1 - }, - { - "version": "f633eab87e6f73ab4befe3cddeef038fa0bd048f685a752bdcb687b5f4769936", - "impliedFormat": 1 - }, - { - "version": "413980d73369922da43255577efdd6685759588a36823dfbe7f272ab223c7d8a", - "impliedFormat": 1 - }, - { - "version": "9db596446342a6c90d34ac1135421c264ca8e50c0c674c0fa10b313f7a51bf50", - "impliedFormat": 1 - }, - { - "version": "61a7e2580925bb54288705aafb5ea1849390f64713e83f9f3debc0a767790869", - "impliedFormat": 1 - }, - { - "version": "dd1e0cdfccb0ce62e1740451fcb3b012cd64cd121acde20a16362d031e764b74", - "impliedFormat": 1 - }, - { - "version": "503961ee6d79efe388565c73f1db74c74389d6dd4a96698334ffa934d1db5b41", - "impliedFormat": 1 - }, - { - "version": "e64fcec3a58a123943cd169a710689ee2e25b21d6673c8b7e2ce1b5442ad17b9", - "impliedFormat": 1 - }, - { - "version": "9661e24ca9c1e96fa593743bd8b7a2c0505a87016a98c017045514ba8cc26ab8", - "impliedFormat": 1 - }, - { - "version": "5962418c92cc8927b468b33457687cc9d0cb1463ea9c2d7ff647f2c18fc7add5", - "impliedFormat": 1 - }, - { - "version": "8af90d5722812d5af626f1f616cdb101c115fd43cf7df8d806febbd231b59c3c", - "impliedFormat": 1 - }, - { - "version": "bbac17f576d90dd4e1d0fcd3d40728b54761e3c8e17066a5e1436fa1c48df647", - "impliedFormat": 1 - }, - { - "version": "71a19e2f0efe18516c062ea40e2b1d396917998aa58dd6ecbf591f8a62761407", - "impliedFormat": 1 - }, - { - "version": "438337dd5100c414bc7a37d6116c6ee75c146875816f51d152d7a22fe91e21be", - "impliedFormat": 1 - }, - { - "version": "c0d85ebf8de676ee661fe9a35496e192d4b1a256272f74d64c58a34d36faae72", - "impliedFormat": 1 - }, - { - "version": "7316ee184165ad1051dd04ba009e39826d37bdf765ded7413d7897e9349c6b6a", - "impliedFormat": 1 - }, - { - "version": "31aca998524e36a8d74ac2c603d975fb0bbac8cca9686b6050b0cf25b271acd5", - "impliedFormat": 1 - }, - { - "version": "53886b874894ccb96cb83b2efee1a6de5635c90cbbe66c50dfeb3aa9404395d6", - "impliedFormat": 1 - }, - { - "version": "be2e9f60037f35dbe66dfcf181a28e46c99fe9db8b174860328bf48f11e03f53", - "impliedFormat": 1 - }, - { - "version": "5334ac24dcb36db397aee57cccaf2899351a5c7305ba89122c7e413242aa200a", - "impliedFormat": 1 - }, - { - "version": "a6adbdde64cb43c4b37c469c04e2faa5080e41cb465cc4a29bff3407accf9acb", - "impliedFormat": 1 - }, - { - "version": "04d60add28217f89c86e1ee9162edef183f115873399b67b4eddaf305ae6bd32", - "impliedFormat": 1 - }, - { - "version": "b08d8c0ca2052d269f32cea31813477c5779f5402d96f036dfbc8f60f251940c", - "impliedFormat": 1 - }, - { - "version": "4286c6a204583407e9c576edd91a82ed9f00b3b2cae2230dff508e82b3c626fc", - "impliedFormat": 1 - }, - { - "version": "0e221966e7b747cb6c6f732c1f05c2b065db7feaed5c4f5107c07978f4ca38e3", - "impliedFormat": 1 - }, - { - "version": "498ed03e3d3dcfdcec4077d368bd246256c548070c2825e727169aa9f1421b66", - "impliedFormat": 1 - }, - { - "version": "4540e720f85b66506d48dffae9b5edc8391e43c9f4e7a4c36e52d349e971c0a3", - "impliedFormat": 1 - }, - { - "version": "f0e9ed83becf7779a5930ccfd4ab1f32461bcdc16c9bbd2d88cfa6d09db0ec4a", - "impliedFormat": 1 - }, - { - "version": "57ea431405c212f993ed185a785dc1a8d9c3537fa25cc2a9c961fabcb314284f", - "impliedFormat": 1 - }, - { - "version": "dac8d2ad4560646050e0c463e944723cb02b5897ff377e2f489e7c8483aa416e", - "impliedFormat": 1 - }, - { - "version": "a3462bc89af49fd1d44d78c29bc52693e281113c53a34c6767882020a6b9c7a6", - "impliedFormat": 1 - }, - { - "version": "af77d1db49469744979540c0ffd2b72174246fdcca0b7e33a63ac8f109ef46d7", - "impliedFormat": 1 - }, - { - "version": "d5656bbb794ac2f0b9dae586eb93120c2fbf31216f56abaad772d632e5d9ae2a", - "impliedFormat": 1 - }, - { - "version": "d4ea61fe1b3efa637f57d80e9fb41b66d1e88b63464b8d9192620e44c485abe7", - "impliedFormat": 1 - }, - { - "version": "113268e92e3b7f2b6141e512d91c73db65d169e0a49c60243d5ab0dd4bd20d05", - "impliedFormat": 1 - }, - { - "version": "d20d052f3f30322c5ea65214e2e446945f721c7b264253518e11f643a3135415", - "impliedFormat": 1 - }, - { - "version": "26f0686144360debfce7f941866e74a076ee15a3142bb359f25d571be8ed3c55", - "impliedFormat": 1 - }, - { - "version": "868d7afb92541c8d4f77a60548906a7e456128b862224a8f1dd7ba7f487337d4", - "impliedFormat": 1 - }, - { - "version": "ad8ba715d8efd3b74326efd7edac4742e9894432b79c5550e598be1163987511", - "impliedFormat": 1 - }, - { - "version": "09f6e47c86256b4fa34164911c1798016e09d53256dd39c15c0b03332a4462c3", - "impliedFormat": 1 - }, - { - "version": "f01a58a5cfb4e141693b9ef956f8a49f2648a04b00ce64eac56bcbca85792cd6", - "impliedFormat": 1 - }, - { - "version": "f37268beee314daebb3d06b2c9b28030f969cae9768f5933ddf9a34087906f42", - "impliedFormat": 1 - }, - { - "version": "45526614782a35f365aa7bd0b5dca2ced3ff513052d1f480e5fef1a657191e61", - "impliedFormat": 1 - }, - { - "version": "b5806ae7e5a94990ef1deff41a9ee5f1b8752187a587181ae2a3b693604b1627", - "impliedFormat": 1 - }, - { - "version": "e4d0175257370f0152ac76530c5ba047a87b797d653b51779145ca1b1c40298a", - "impliedFormat": 1 - }, - { - "version": "766ffc847ab2c174fdc6f9d7d54d1f6d0201d2280c8bf02579ae140b1d2200dc", - "impliedFormat": 1 - }, - { - "version": "4c26b338077dcb3db1366f704c2cf37d7e555cbe5d09ed9bf78124c964ea8a89", - "impliedFormat": 1 - }, - { - "version": "a6767133b112087a297e70f6490ef2d1eaa60fdd7944b0f1625a5f71f7870ede", - "impliedFormat": 1 - }, - "7a55df7b0cee54f953c692b85db9f601b07db72cf2b80245349293107e156365", - "b7fc81f1afcebf22df66130daef4532973d3cc90ff616104137a56a73d9377d5", - "62cbc905ca1b40cafde9dd7c35ed2fc38e7ce63ef5b9f5353ea49f506e88e4f2", - "2996a85e91954e145af727cc57d70226d148d170f0d9ef446c5143d46560f5c7", - "a22cc564fd0249c6f7dfea49f8a633e3b7d62ed747cddfc567284a6ae97287fc", - { - "version": "b39353f21ad4fa7103e0d3c57e905eb9d6e269e88c42b5ff0ba24006b57c443a", - "impliedFormat": 1 - }, - "8b414a3cb85980518ca2738a35a7f22acb29cb8ce4bac62e961549c21193a73b", - "b4a3a9ba0e58a386191fa2b4036e56db1deee86b876d53c0bbf08f99f1e47254", - "3a598a88e121fa783ff0d71076494c09e060988c940f7c5af021e3cff6d9bc6e", - "c02591a66c97351c0d9f30e8ef9a6896785f76356494e4b7b70ef5ba1fc3e262", - "fc3b617278260c90df2cbb6c3d3926c30c499efdf92613ff054d3787d76e1a8d", - "6d3867dfb8a8773f7e468c856042710746f5ce73b7473015e3c74417befaad5a", - "c12da013e692a6728f41dd9090b57ff60d8783aafa09bc3df461a4ea1779f027", - "531123eeb5205feb371b18988e6b28479973dcece06ea526f8cb2070768133b3", - "a2a3e41d33085071bd296485b762957fffd66050654f25a6128c9b8e5a3feb25", - "32d6e8e85f609c7fe952b708f146aae4df690408e06ab8077d3af274bfc8b48d", - "2251f184245cfa62fa1e627617b15ddb8ac55b2e2f827ec0644b08f02f41ea01", - { - "version": "dd17f6195ef292ae40fe4090d62b45e1ccb3608d75bc9627e41e3b5f14c66eaf", - "impliedFormat": 1 - }, - { - "version": "7655b78e107c6f4dbaa2c510a79ba98c8359a17a9ae97a058750827f530a61a6", - "impliedFormat": 1 - }, - { - "version": "bf26afde38b9b499bb166789571807485d51bba0bbf8f1775915d917405e9c6a", - "impliedFormat": 1 - }, - { - "version": "0bfbd5321e406eb36a17a163b16edcfba022a76cb7d62bd99b651dcaf3636971", - "impliedFormat": 1 - }, - { - "version": "4d4157040eae5afa9003e4097e31a1b71225fe3c9dbe59ab6ee774dbdb11e4c6", - "impliedFormat": 1 - }, - { - "version": "dbddece77c04b00e3c3d425477d814d89e21e46dbac2d37e2fe0503201cf01d4", - "impliedFormat": 1 - }, - { - "version": "56f361625a6febffbdc1c6326d42ad10678e4ea39d030e4fab0a2d58746bc594", - "impliedFormat": 1 - }, - { - "version": "9b02030b9213c03eeccf89436bf85cdd6a797b1a0a21f3e8ae7f7eef04f41e35", - "impliedFormat": 1 - }, - { - "version": "7848acc1051fb3b2d72b59dcf7317bee377bf2786b69f8d9a085bd46e14644a1", - "impliedFormat": 1 - }, - "860d67ac4fa0e1d50f834642ed6d6b72bb5d6f4cd419d7c098999a57b9e17017", - { - "version": "711fe6bf6b96f3ab17d7b06ff513e513061bb1893fc3d8d2ac256988eb8c0e66", - "impliedFormat": 1 - }, - { - "version": "b51be95e446313257e63ecba0296bb9667813a2b5677af44066e0d48f5cb36d3", - "impliedFormat": 1 - }, - "a41296a84c1d6b98f771da0fc1cfcb6f8a580665647a43027a8c8e906e1621a9", - "e6fe880084e3198a8647be0b971cf9283ca07ddc001817ff337dfaf1fdc18e7f", - "bc31deb6cddfb26961e0e6fb703fcd14785e9e691599bc50bb54a98c1300f9e4", - "b93fcc72f0dd9d16da22d119ee8d0b5654074113d29888e29ee40cf4696825ff", - "05cee11d6caa325bc0d26f8cab524f620dd214b11adecd4d0c06a492d743cec1", - "302502d2d0a27962d7c4bf9e030928cb287dc30ad4124d48f7e95e42eacd9827", - "ef260c5e96e2bd0a4b2f3989c986562c3fe83530bd9257cec48addccf5ac2797", - "d8e93daa2a4d20fc3be43176d067a084b431430074b6a18dbfbd361a3d2a788f", - "100f63bd62798de9da6a804b6d782af5bac2e69b245c374fa35ece50b72be6cd", - { - "version": "72d2b2abae41894909ed0e7d5c71ebf35e525293e51bc99120f3e4937c069a29", - "impliedFormat": 1 - }, - "672d043a00f23d95d86aad56ca9ca577d0ff3ac7c10a7f25f8930585ab9a1cd6", - "87070bf7c5d969fc0e7348173fbc33c6b73124fab5ba71e5d61495d9db6d321f", - "00ad7665270fca3586c31ce0d3753678c3a66e7a7b360884996d9a3e1cb41c46", - { - "version": "e4d541c6106538d7425c615206324612e846d82f04649ee43798337994eea8bb", - "impliedFormat": 1 - }, - "59cc3398c8a9de488ea94a1393773623d78b62ca2ea560aff42bb4d2f03d1273", - "f4d4bd8fb5d07767ed789a4fe2e50097bec4b628222b956475efa5f375c0e9b0", - "f9c078467a212d33d6da535bd38c27930f0e1ba4823f2ebee461ffaca03c7254", - "75a900cb2a54c1203bcd1fac27c16d993faa7c332d813b67a073d4af283bfbcb", - "64f6c0f20d9356e2a48142406c71bdd8414547aa507f9e1485b18dee8a847e11", - "b7d4b91b41f0ff487d4f61747a09955ce7523f06eb908fe9d135f16ca47656d2", - { - "version": "025c12c14eb0faad61d65ac0fe048ba9d15b94c47cd074140dcd9bb2387aab85", - "impliedFormat": 1 - }, - { - "version": "697ab210bed2125c97fe78d434a457ca49f34e405053afaf3bda85220790d67a", - "impliedFormat": 1 - }, - { - "version": "6aa626a2ad6603562ae07b1b218287a02faf440b0d995887f80487eda15823f7", - "impliedFormat": 1 - }, - { - "version": "011da390dcabaabdaf2abde3788e5619a14a27867189697eb05d3e007d883b93", - "impliedFormat": 1 - }, - "7183ae251433f222bf04bee8b9bf6449c171d2aefb403320fb1a87fecbd620ff", - "993bc82190a111f2b72c4ef25bb07211fbee6d4e2111c92de084c4d1a3f46fbf", - "a27f9acb74447c21c04977a0d547156415638ed95207552e4f6c22ffb3ae7820", - "0797fe15a0f47fb17296f5e1a76048d93e004cb4b218998bdb810a99e3b790be", - "2fbfd43f7cc25ec2a5e0876a501420e85bcd0685a48bd1632a94c7cd55b0b10d", - "7bcd453edda59186b81ae44acf16f6fe6226192bb65851e6961a400aff19a759", - "bbfbaa3a2e9bb4d493e4c38f3377e61a25fcdc0ff4a185c1563e858234521605", - "c702039c703f2ea44602bff801a59c70fe80b2ce8133b0e8033ee0b136768eca", - { - "version": "2c61ce8b60bda941862c60e400b5cd4ea90c89066d890d1ca210917c06eb46e2", - "impliedFormat": 1 - }, - "360bb706114f642c56ceb528b05e267a01f526ccd59514875e6051b6fe828a12", - "cb1f4984062cb75c77490766f08391dbe584a247ab30ffacb0b2415a933d4940", - "6d3dd81fb47d0a5369fd1beefa117721f29d8a3cbdf94a1e9732a9329deb3e3d", - "66ad5109a41b951cffe03ef18d0ec4ef77aa359dbb18abda9f5f4837fd2959a3", - "ebab79e3791c270b127951d7eadccbecb60326c3af627c48b183947a7a9906bf", - "8c4386124b34a0bf7d6ca54797d7b5100d216d6b22dec0a818fb5b52db409a89", - "162e5cd6a0476449a0a2eb694d5c5e246134174fb888441f97a5c7ad48404da0", - "24c1a4adf31d9a8f57fb774791889c5cc636e87282b0ac8d9aacb39931f99f40", - "00a98c1e487a91e649fb3a4299bb5363704241d4ce1613f14022faf6dd143683", - "039542bb2ca3109c625e2f79c8491a031ae7d93ec656bb95a9495cb34769b733", - "a799555ad782c3ee89c94d61630cba824fc23c2b64431c87f6e6649a7efdda8c", - "0822fa673ed5e7336e57eda3e672ac102d9b5c60c0ac9d6693821d7953d838a9", - "bb909545cd022698ae4a601e4263a94d61e075251475e5087be857633027d281", - "32fc85c60d93c38d1cd9cd0bfc7db3393955c33abea4dafbae98f73914bc4f91", - "4b8733b0f4bf6010ecc33ad4029395327bfbdaa97b860bf03dab7ab50911bcbb", - "6763f8c77c1904d614f945610e92ce2f2c3c30310fc3526c841ebff74dcd92b0", - "eb5566889e777723ab81ded716d39d6b70e438b0907a5d5379eb6c17da2f8628", - "ee989d5a753aa5b9443cf80274e7e2c3f844a5f3f2f78f374ef7edc04b870f3d", - "7069889e2c1a960d7c966826d924718921e1d88e48b313d7f98006dcd088e6e4", - "50df7d0f22fd8cbbe5168c6e9e153b6dedf6bfd381390c463c65cd9623145a53", - { - "version": "3ffd4918ebc5b9ebeedbb71d02a505e1264cc7d64fd0d863247ba739598d7594", - "impliedFormat": 1 - }, - "b19f511349121c0bd0bbaf4a852798c53ca95392f7f2d386de899277894c3d37", - "88dafc039b40f15d2d19ada30d820998392ceb62ad12d1e027184f28af25c9cc", - "36789960b8fefcf321c0ae6a2454c5675df60afc16ae9db6da939c76ac90b4ba", - "fad944b1d4a8184d4269b2eb7bd909af7183a7bea9dd17d44edf5237ba6301ba", - { - "version": "96e4d2870de7e03421ce402f51b7ac7357e0503b330193db53852d04b25722aa", - "impliedFormat": 1 - }, - { - "version": "0c85c0969c6b6d75005a997c780ac7b3c86b583461f41529ea01a278a4891f29", - "impliedFormat": 1 - }, - { - "version": "dadea8053d6eef1b7d421546b29b20a10f39d1df8197740eb935c25714f6fa33", - "impliedFormat": 1 - }, - { - "version": "edcbd55a414d4f95fd672ceb3c055b224fcfe80db88455401dd8ad984b3611a9", - "impliedFormat": 1 - }, - { - "version": "4a56e11a5556293d4ae75258ae459038b05701753706b5229b3ebdf5910efda2", - "impliedFormat": 1 - }, - { - "version": "e67270bab56c5da69f182984bf45f30b1194a9cdf14de12f38741a635ab335d1", - "impliedFormat": 1 - }, - { - "version": "c7b4348d7b470cf0c2267c57ccd05930d72013478279e75a58aad3be1af68e95", - "impliedFormat": 1 - }, - { - "version": "caa6cf67e3199dfe2ef60c97af89372377831a3396a3013ab354c0f9ce43be6d", - "impliedFormat": 1 - }, - { - "version": "8434cd3846a67f66d3db854517fe869445a89937c0e8f18dec019d1b7f8333bf", - "impliedFormat": 1 - }, - { - "version": "4bec2bfa020140f1d160f690fcad6fb3bfda62dd7a3e942290c05cdfe4398b67", - "impliedFormat": 1 - }, - { - "version": "8300fcd59840b5c527c9d4cd36bb63dafe1ac1b982fa36dab024300c75887ada", - "impliedFormat": 1 - }, - { - "version": "50a3d5cec60738fc7b8ae2f62f38c04fc3883eafafea6c89494fe553f37b827c", - "impliedFormat": 1 - }, - { - "version": "09ae33cfdfe9cb6a6ff8fa4089901472540b520d67cbc5167d2d012e04858c59", - "impliedFormat": 1 - }, - { - "version": "73118fad655e8215ea089d2e3f1d9899ac57e265c28428d6e1bf62149991315a", - "impliedFormat": 1 - }, - { - "version": "639355b5c322951f60f3de38559c8803ba80175bd08b0e327dcbd56500bf817f", - "impliedFormat": 1 - }, - { - "version": "7dc3d0b731cf61cd148ff3ba84c2f8dc1e67a5fa6d37d8b87fe20bf58c596c2d", - "impliedFormat": 1 - }, - { - "version": "fe876b60a79739a3c2a93e90c757efbddf8ea4c5a1f61e9627e365c2b4c3da7e", - "impliedFormat": 1 - }, - { - "version": "993fff6b142d505a11ff2be7479d303eb96c22c744f126396f623b64b97d3f88", - "impliedFormat": 1 - }, - { - "version": "1bd01b529241d527f4fdd6045c72bd2dcf5db796f6afc5a5bf55a846d97e47f0", - "impliedFormat": 1 - }, - { - "version": "3c382339a5a904bfd8800f62796540ffdf999737121d78d1634d6d94ac991103", - "impliedFormat": 1 - }, - { - "version": "76b499db1647070367e2a89f585f815bf37cde8f36cda22a29a1997b13d0c3c8", - "impliedFormat": 1 - }, - { - "version": "23856f237ab7845c830bbd223ecac74afebdd54ae0f834f54b0e0ef5a8cf2e6b", - "impliedFormat": 1 - }, - { - "version": "ec8488c1321a3a88efad5a175f770264014a1efa2eefb3df97646aa8148c4c1e", - "impliedFormat": 1 - }, - { - "version": "d6b91e0cb71bb416aaa664a8b7613ab835ab9ff7c47ab0d50e214e69822f688a", - "impliedFormat": 1 - }, - { - "version": "10e81ac7de8c159f1b846287839eb90cc25a741071235b0e0fe64d5193d1826f", - "impliedFormat": 1 - }, - { - "version": "29022abb199d94f9f0a6afdb17596566d22d4ba73982c9b1aaed9196b44a8451", - "impliedFormat": 1 - }, - { - "version": "fd2be296de545cabdd2737657862408f516be0a280b6d20ec0d2aa93ab012afb", - "impliedFormat": 1 - }, - { - "version": "9977e68bccb6b4d133015897169bbdf0122665bc80fbbe25e7e90ca3aa1de523", - "impliedFormat": 1 - }, - { - "version": "2b0c82a6c08526c1b57cb7a895bf61032af585985e30e3844bd4159edcc1591c", - "impliedFormat": 1 - }, - { - "version": "7ef0a41a7b114586705a9d760d51922ec4a63fdb088a9952916b5bfa6fc852fc", - "impliedFormat": 1 - }, - { - "version": "7090cd81a7093c8b61d9c55629fd5b7126c9f4ec070ca1bcfdfcbad92ae9b621", - "impliedFormat": 1 - }, - { - "version": "1a29a94ce891c86a1f81171851af68ad2dbae4f44748669a4da68a6cb1c4e2ba", - "impliedFormat": 1 - }, - { - "version": "4f8a84c4449934f2e32d1a2c556cb61b138ed1fc4a7293113ebb9c2caf920405", - "impliedFormat": 1 - }, - { - "version": "efc27e15ff4eb5f182131830afc2b38a1d4634f6ea9a9308dc8b056362223247", - "impliedFormat": 1 - }, - { - "version": "3b122036043ac78ca75b4458201cc533252e19b26d0b4fda67362a1afb3ec3cf", - "impliedFormat": 1 - }, - { - "version": "6e5d84e3d4d4f7210613420bdb933ffd1b1b832be83c56a89fdf35baa865ea7c", - "impliedFormat": 1 - }, - { - "version": "6e0adb8fbec8466a44b9bd9d54673efbd7c405fb421145a17d2738125c4d5e34", - "impliedFormat": 1 - }, - { - "version": "7d3d8113e69549c00389422e6237b802b87db6dd1cd302b620d9d3e85ff9e3c6", - "impliedFormat": 1 - }, - { - "version": "7b4e46c57515ffeb1d1f02de27d91cb0c7566b71a51e873b9b0b457e21f412b0", - "impliedFormat": 1 - }, - { - "version": "6b7de28caab56e3c7d8a8468ba370d7b4413543172ad3ba4a4fb55f3c82fff3d", - "impliedFormat": 1 - }, - { - "version": "ff20cbd6e6c5e08df3d0c44ca47c4fa93c5543ecc1d6c40c180897723ba1c425", - "impliedFormat": 1 - }, - { - "version": "13ba3564772785ad0056857c887373ad819aa064dc36d4623c58a92003d8ad42", - "impliedFormat": 1 - }, - { - "version": "ba3ea2e523365325857f922fce7ecbb3adc8211456969af89ed48e1f447eef5e", - "impliedFormat": 1 - }, - { - "version": "bfb103111161bdffd28a0df049e83c22b1ac27a986c4ea51d96bbfd0776d24e7", - "impliedFormat": 1 - }, - { - "version": "bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960", - "impliedFormat": 1 - }, - { - "version": "26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7", - "impliedFormat": 1 - }, - { - "version": "dd5115b329c19c4385af13eda13e3ab03355e711c3f313173fd54ed7d08cfd39", - "impliedFormat": 99 - }, - { - "version": "d302b9ba00baa91d441ebcaf4b4792b94f30ce6a9bffda9604ebf6a55516ffbd", - "impliedFormat": 1 - }, - { - "version": "dd3eada03fd861e813649cc85c384c4ef7d675f7eab30d4723e98f4afead8c7f", - "impliedFormat": 1 - }, - { - "version": "d1da92dfcd13d0def33468a7ccd67a1e69ba251dc30eac61ee2e9f7b9c70ae29", - "impliedFormat": 1 - }, - { - "version": "49b06fc8e2a082ef8c7bba93e1d50b00f71d9dfd9c64b7f6fe4892d3e4ccf107", - "impliedFormat": 1 - }, - { - "version": "5049e5380365a894f20d416f15e7edf283d6512ad9dcf2d02d96d532475d91b0", - "impliedFormat": 1 - }, - { - "version": "8048f230bec6b3ffe2439b28b4833df448fe08f4efe0e22af356aaf65bd26dbc", - "impliedFormat": 1 - }, - { - "version": "36098972200c141a9c77a71b94e19d72e254c0c93ac090eefb0fe04e03d1caea", - "impliedFormat": 1 - }, - { - "version": "a17d70b45f3285fffea446653a82ff25b8209cf6d2205a341a602249c140d5c3", - "impliedFormat": 1 - }, - { - "version": "bd9d9260606ef8f135e45c8514f677c15eef2d25739b79b9887ab6cac41de2f2", - "impliedFormat": 1 - }, - { - "version": "ad3a94e01ebb35bef85c2384c5fa944cc473884bff9bf0413efb4539139a2e41", - "impliedFormat": 1 - }, - { - "version": "3dfd10fee6b7c14d1aec2e78538f29724b47b599768151cb2ec3ae37daaa8421", - "impliedFormat": 1 - }, - { - "version": "9702a11a41fe95e9ce1f27f547485d11f40d1f6e0245aad020276f6e85aa423b", - "impliedFormat": 1 - }, - { - "version": "a22996639b1d80ba9b74bdb1c0666badd439cd1c7b760b078121389a5d0e912f", - "impliedFormat": 1 - }, - { - "version": "cc3412c22b1ec22b65633406ed111b285f70e128655788f6b8f5133454ffc87d", - "impliedFormat": 1 - }, - { - "version": "7962e63b9b6239d4647c160915fb2e1674b7f9b97b26473e5819b765c73c88ec", - "impliedFormat": 1 - }, - { - "version": "0311290b51682ed4d72f2752837a76986ace2b0bd47eb1b0e3f655f1fe1ac3c8", - "impliedFormat": 1 - }, - { - "version": "c85f4a82217b7a0f98a198d7c1991e5ef8a711d19e7c686ef9b3ecdad4fb370d", - "impliedFormat": 1 - }, - { - "version": "54555fc15b61c7c2e1aa4954256f2de943c4e1309eac247d4f6e01a451849a51", - "impliedFormat": 1 - }, - { - "version": "d01af907a8983390ddc0ab14262cb06ae2e13bed625f7efa2b5cbbb6b6e6aac8", - "impliedFormat": 1 - }, - { - "version": "3a37862642a0d9e94af940c703e266f98a879b291870427f748409587dbe855b", - "impliedFormat": 1 - }, - { - "version": "e8e3ef97f1f5152302befe31d35b280c4c89d701bbc12efc6ff5235cd046f9f1", - "impliedFormat": 1 - }, - { - "version": "77960c01a450e9df332997baa6a421add9531573b13002c20a6f39a5f6f4ee17", - "impliedFormat": 1 - }, - { - "version": "5bec708aa7ce80df0d9c87943a90898356cdf1f4a1abf604a8475792e1ad9fa8", - "impliedFormat": 1 - }, - { - "version": "9f6a8eacffcc178326f83d31e20a03f3d85f3c700f2ea1775d43a5f42588ceba", - "impliedFormat": 1 - }, - { - "version": "727c26d8ea342eeadc7f80c10acf6510fe9c11c5795c3db244ff1ca568c05a3e", - "impliedFormat": 1 - }, - "933d64ba2e843d241def22cd6ca8f3321df1da9bc15cbbbefe2b4e7c785bbb57", - { - "version": "ee1b0b350100a7310034dd7892c8d09f192f8899d85968a4ff0042c7fb3e2404", - "impliedFormat": 1 - }, - { - "version": "0df338eacac2cc6b0dea714f0e4efc9fea0d4beb3343f5d50c1c5a68f47cdd9c", - "impliedFormat": 1 - }, - { - "version": "8af95138292b6162fa7ca65777a6c3e1e48e7771bc6d3967bb969f3b5cad2480", - "impliedFormat": 1 - }, - { - "version": "e53927c03895132443f20ee5cf3ab957266df4d2996aa0499d408dbd06f8d283", - "impliedFormat": 1 - }, - { - "version": "330d00f1e8629bacb6aa6c6444aefdc0baa965a99437ab0e7303851545fbfc0d", - "impliedFormat": 1 - }, - { - "version": "5d8879415f83722f44327bc1ec0438f2706eae9eb0d1e13532a80f75c187526b", - "impliedFormat": 1 - }, - "2fd5d4075f3316ef63e4edba10037c9beeae672580615ddde34386ccc09d7fcd", - { - "version": "17b1a2ba234b2efc309206c895b43e72b50ba0612f16325b28a121cef294d6d3", - "impliedFormat": 1 - }, - { - "version": "6008a33dfac6d27f346784de17798770c7c6c8f9a4931d6afe1eac9a7b13f6df", - "impliedFormat": 1 - }, - { - "version": "f01b4f96f172ec723b2f4299fe85a3c725bf667f3b6f253b6905405cd431ba62", - "impliedFormat": 1 - }, - { - "version": "b57f1eeae6e1a4f0f9bac0fb1b37609654c4c370afc8d234d549fe9e9e0074c9", - "impliedFormat": 1 - }, - { - "version": "7d98dbf744b0cc49eafd0499a5f7893f296a82dbf9fca4b2c2e42447c80c775b", - "impliedFormat": 1 - }, - { - "version": "76dab8be4f4945cb227533d7273bd7c6c1b6f5db5ba5706b8a1ec3f5456d4230", - "impliedFormat": 1 - }, - { - "version": "366a07d3d3c767f91c996cbd252b171c4123d93e5611504de98b042d1a52246f", - "impliedFormat": 1 - }, - { - "version": "88c5efe7a07fde0acad6ce7a96aaf1ed2c62822a8f40004a90f74e136c7c8ad4", - "impliedFormat": 1 - }, - { - "version": "13e96d401e5093662a8df65fba5ffdb36ac2fbfe7610a7b3b4d6d8dcc106e936", - "impliedFormat": 1 - }, - { - "version": "30ca89aa0bd1bc0e964c15a9aa095505cffac087f7bc3969157517e3d856685a", - "impliedFormat": 1 - }, - { - "version": "18eae8d4354a7115e1964526f4c5cb02127bf538d823ed7d40658c01f2264a73", - "impliedFormat": 1 - }, - { - "version": "0ab81851ca4f1a2e43b5dccde175fc791245ed099cfe8eedf07db0abe37e9817", - "impliedFormat": 1 - }, - { - "version": "afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5", - "impliedFormat": 1 - }, - { - "version": "a761c3d49526e1f480741564ebe26c496fa9aa54a1e11746ccadf83cc19d296f", - "impliedFormat": 1 - }, - { - "version": "409f30f2b49ce5ce08530d973f5b5fa646a10acadf78974052013546b9a01e8b", - "impliedFormat": 1 - }, - { - "version": "7a10f1a82a6041a75d8ed035b48c6269f30a44389c34779ed706c1993ad86e9a", - "impliedFormat": 1 - }, - { - "version": "27f592fa089aa2dc0ac323278450adb4911f2da4befc403353b027b20252b661", - "impliedFormat": 1 - }, - { - "version": "3dfbd9aa56c622320714af2f7c5d3056fcf029078f6dd18b15ebf243d927ef98", - "impliedFormat": 1 - }, - { - "version": "ebac894ff6139af581cd00a1a8522f0fdc090426fda664d1d2c4bf60247f4327", - "impliedFormat": 1 - }, - { - "version": "dcb70ecc42773666fca05065f493558f975947b35bb3c5ab49862fd80c32250d", - "impliedFormat": 1 - }, - { - "version": "c0f4c3575ef5eda6bef2dc8da0904cc3d1152d012d24fb2877fb6b561df6e1b3", - "impliedFormat": 1 - }, - { - "version": "b7f517926b00c1f4382a0af5cb5348e93690178a83fa7ad0537ed53dcbd6dbeb", - "impliedFormat": 1 - }, - { - "version": "094034f16f980f02f776e4f40333c0c20f7ec2f6cf63ec6d5588693739d79936", - "impliedFormat": 1 - }, - { - "version": "77299cd4cded6829cc2af67dac2dee56b4071f943e3676fc6f35c817cceb35a0", - "impliedFormat": 1 - }, - { - "version": "980515a82ee1dc292972332ae335ad1226350838ad45fb5dfbc2b814dd25f52b", - "impliedFormat": 1 - }, - { - "version": "66da736019ca18527a83a5ee2a38b1a6852c1543868b9590cbb09aa7f1c5c4c4", - "impliedFormat": 1 - }, - { - "version": "c2ca410487d02e5ec5dd71ecba1cd3cf4fa518233b64f58832a834dc10e37f1e", - "impliedFormat": 1 - }, - { - "version": "8b1dee91ab4dd3e0ebb8f15e3677dadee5195f9efa8c522f35a19fecf4dddf5d", - "impliedFormat": 1 - }, - { - "version": "eb32beec19dccfb302e4108407bd7aa69b08d9fc76e8c45076fac682e8ea741d", - "impliedFormat": 1 - }, - { - "version": "11d41421726572f3c04f4e52c8e05076f328804c42adaac497078152cd6a4816", - "impliedFormat": 1 - }, - { - "version": "03e2704354d63545219733c3c0b94aa1f503244f9efeed0078f5ba64348491de", - "impliedFormat": 1 - }, - { - "version": "e709c5f09446718788a77e2aebccb43b4facfd77349ecf0f6edacf152d39f1d7", - "impliedFormat": 1 - }, - { - "version": "f0b861adfa8d250e16e1c0314828ff38ff233530c16e2e9778764c6d5f8b033e", - "impliedFormat": 1 - }, - { - "version": "a9505b99ba9dce095cb8147b08fbf37b052aadf2aea5fc9a76606f11d0361cb2", - "impliedFormat": 1 - }, - { - "version": "c9b9f5adea9dc961d8d8a10ec863d18ae22851f324a0b9546f594bdc52a3c9fe", - "impliedFormat": 1 - }, - { - "version": "44dd2fba67d6d836e98c691beb2ad6eed6bec9d1796ce512bd0589c44d8c0c8e", - "impliedFormat": 1 - }, - { - "version": "a0e6f91113b7ed9cf5cd2bf60f5f0aca0650ac7674506416fa728315780f1954", - "impliedFormat": 1 - }, - { - "version": "cec2f89d78b49629097dc093f179abfbe4d6cf12c29d5a02501870b78e4de97f", - "impliedFormat": 1 - }, - { - "version": "aadfddf3191ba14fdf77c8ab2a7d8d8648677824c66235d40a120b666c8568cf", - "impliedFormat": 1 - }, - { - "version": "63ece6ea96700175f6d5db92db9bb5a35033d4759980a8473384f70581a4ee19", - "impliedFormat": 1 - }, - { - "version": "2a3f869a9e0fdc1dc47604a33a652a5dfabec7ccbc762e452ff0e5a563848598", - "impliedFormat": 1 - }, - { - "version": "a50880e8df4eab4bbb87ad33ea10c59fe237f6d5d9a614be1efd4c8c9f3a8ace", - "impliedFormat": 1 - }, - { - "version": "4489edff69884801ddfd072bfcda1fc931fa16b21037ce2d6df940c119570466", - "impliedFormat": 1 - }, - { - "version": "2210103b7a2695836a810ab5d9007ade27e207c85bb994529eaded8d82b07e8f", - "impliedFormat": 1 - }, - { - "version": "d4f9623c38079e684ede7b3b2a8400b0597d50a88c0f45275dfabc9c05359d2d", - "impliedFormat": 1 - }, - { - "version": "45a79fad6494ba23c29e854d567252eaf4cb49bf2fa9ea5502fc77bc5f20368a", - "impliedFormat": 1 - }, - { - "version": "2dec17f75a019b1d8a1073b9b293d86a8ee35380540d40dbd96a721fca4645ae", - "impliedFormat": 1 - }, - { - "version": "11ac0080e77b5c2c8ad5fe292f962f04eaeb8689ecf2fd910abf1f68367aa0d5", - "impliedFormat": 1 - }, - { - "version": "17a17502c96d007f6cc28799af4e1104304f362955fc0f12e816e721c24f9d54", - "impliedFormat": 1 - }, - { - "version": "a36037f062256edf5927fea550c2beb66bda11dc67c2446f3b69266b050da144", - "impliedFormat": 1 - }, - { - "version": "6531831d361838cdb0e4cdd851b2ae6890790379b85ef6b589abe93ae527e942", - "impliedFormat": 1 - }, - { - "version": "8a1838dc0e6340f7ca20df0d8625c09183f1b97eac96eb479107c687df88e618", - "impliedFormat": 1 - }, - { - "version": "d033f2ccabba1d51fcf18dd05a75e861fbf468a1d99a915a6fc87533d6e7ccd2", - "impliedFormat": 1 - }, - { - "version": "4f801c84bb19525594b4ca24ede0988b0735334fd4be2d7b160b0f943fe0c7ef", - "impliedFormat": 1 - }, - { - "version": "c77e27957767b50cd8230e05ebd90a0278c1046aa3ffa3401ed23cc034b3d674", - "impliedFormat": 1 - }, - { - "version": "7d67525fc74b0482d48722954d7a9f578ae98673dd0a9fb6101eac8ac2a1afdf", - "impliedFormat": 1 - }, - { - "version": "9eb1a7f6a898ea29ee476fc66c5d5df1236a0fec67227d7970811cb65de88efd", - "impliedFormat": 1 - }, - { - "version": "4bd03bd05f9a37a21f30cf9fab4b43c54a70beb27e8d6c3e594e798617f5965a", - "impliedFormat": 1 - }, - { - "version": "3b508f1a4904ef70fb7f9324751d21a7887c97f1e96cd48250d02eb02e41f23c", - "impliedFormat": 1 - }, - { - "version": "aedf8b225bd03f8d9e38d6fdb80030a5b73313fb89e2089f294c541a9785e242", - "impliedFormat": 1 - }, - { - "version": "f1fb13e5cbf4e5c4992c6985dda4c4f5b78e3b48aff6df16b79828a13dbe8a03", - "impliedFormat": 1 - }, - { - "version": "4ffd973ced538ee9ba9040397278eef8a6426f8edc9d6b9b9a8e7f88309b76fc", - "impliedFormat": 1 - }, - { - "version": "3bca20ac8ba7ea67098a595e7c7f698a0c9433dbf1d42e73708d3619044556fd", - "impliedFormat": 1 - }, - { - "version": "6da148ac47f9e90d1ed8fd663dc6865eb8b3e87e9b6142d2f25dbb1fb02417b1", - "impliedFormat": 1 - }, - { - "version": "451eaddf399a319eb2723ae022096b91a32dbf4b085fff300c9db9d8c283c934", - "impliedFormat": 1 - }, - { - "version": "96029a5df0f1782c1f58f7a1f5f71243eadd4077b6c5014c5502a0c3cd7b1f04", - "impliedFormat": 1 - }, - { - "version": "1c7150116333ef6b186116a850a86d02087c1b572482d2d2a2da7f0851c8401e", - "impliedFormat": 1 - }, - { - "version": "66d62456388a8d78735583dd2ffa5d9ebe828b651f1901e98e858fa9bce605ef", - "impliedFormat": 1 - }, - { - "version": "cf328d6c7e4184fbbee9cbe9bd374fbaa95b8319b7ba3d288629799b6f1a9134", - "impliedFormat": 1 - }, - { - "version": "b7e20e450cdfb7bc4852aa19f3373475949ed8442d5b8a4df68ed641d39bb024", - "impliedFormat": 1 - }, - { - "version": "e46d4e64be425abfda7b03990038fc0928e8b581713bbeb5442308e80102e791", - "impliedFormat": 1 - }, - { - "version": "d85c1579f3ab2768561fcbfd2aec89f9b147e51be6c06603a5e784e6b81cd23e", - "impliedFormat": 1 - }, - { - "version": "c77de14a7d48cc3ad467b7a695d14c1d527ea4fd6c5784e82a6a98c6d8d4252b", - "impliedFormat": 1 - }, - { - "version": "9b80579bf514b9677c7c48c5d2c55233b6ee245967d934fb73c8ab38c3a0646f", - "impliedFormat": 1 - }, - { - "version": "e9893f413f57bf5c5a11e252d15e3c382f32d94b2a9a8e0bfe5dd627b999ba2c", - "impliedFormat": 1 - }, - { - "version": "3436ee93035a6a0095332b40e6e9ed07416ad23dada7a8690193fe7075a17f46", - "impliedFormat": 1 - }, - { - "version": "3ca0f31bed111c0dd17de1d51b96cf786f06d838e4112b4f19bff301f52efa7f", - "impliedFormat": 1 - }, - { - "version": "cc6a79fe6a273dfe1c83039c240a7943f6ac92c84851343921b7e58a0269bb2e", - "impliedFormat": 1 - }, - { - "version": "d8531e011a42349baea211d63222d2dcfbe8b87a5a2750cf625ef22118e0da7a", - "impliedFormat": 1 - }, - { - "version": "26c31e0d4cda29dfb39a2e198674570f57770810d0f1c793f536f7baa661936c", - "impliedFormat": 1 - }, - { - "version": "5f19c9f50a94769a3e9b2ef5274aa54cece016989ccc935a3d84a07f03eb0d35", - "impliedFormat": 1 - }, - { - "version": "774b5ae0c4d4f2cea6fd5b1b9bc42fa33a9952738d12eae9b96f4fb06511bfaa", - "impliedFormat": 1 - }, - { - "version": "50af430d44fc58acb3b81eb0a5e2f443536a55c52ea3a683cf2550e01ab495f1", - "impliedFormat": 1 - }, - { - "version": "fa0dfaf8c66f082627c6899fa7802366ad17b0a6c28e89b19df596524f36e339", - "impliedFormat": 1 - }, - { - "version": "4c9b580bfa72405ab88c6c906fe65a99b863f1916a36bb1153e38d47320e8893", - "impliedFormat": 1 - }, - { - "version": "db53af36d7f8c25f3c94ec4598d96a464306af0e4190b5cc563bd19479f38813", - "impliedFormat": 1 - }, - { - "version": "7f980d242b3058231c6ed40bbaa7e09749d3885b9209dc8910915c0a658fee39", - "impliedFormat": 1 - }, - { - "version": "e6e63ff088384f83285f4e168da6355af2d7b3762cdc723c3ca3dfcf36151801", - "impliedFormat": 1 - }, - { - "version": "0e5ebcb890c525cc764f3dc64cfeb1fb4506b622b855c2c721fbd657fe481dc1", - "impliedFormat": 1 - }, - { - "version": "654bf6dbc88c5a859f150ef4b6eaf2554c41bd08b4c9d614ea17eb3016e70a62", - "impliedFormat": 1 - }, - { - "version": "3aff0f6f359f4c69542c6f30480a510ab4abbc6b378c25e6c74ea25015bdeeda", - "impliedFormat": 1 - }, - { - "version": "abd5726d1e786fd53b5b3bf2719bed5f1b819e9bbc62b39e4b85365efd67c043", - "impliedFormat": 1 - }, - { - "version": "238bea1f46109d5c204c7e64af8c74bf7538d19586b8e01af8baaa816e769e82", - "impliedFormat": 1 - }, - { - "version": "3025016f8fe6d4f96aac0e8c845399fbe1b5b3d01fc36a502b622e9c5cfe02ac", - "impliedFormat": 1 - }, - { - "version": "df0266745a9567c8dfb102f8fd756b1327ad5f33a5e92fea4edbf17fd59ded08", - "impliedFormat": 1 - }, - { - "version": "a0ae6a049a349b1a15dfc6c64c6eb44ac2a0530a023a0babb5eba4f6efc775ee", - "impliedFormat": 1 - }, - { - "version": "a4825a7b5314489e1c2ae587005639706a7df67426c4bbcde600cb06f2d5fb2b", - "impliedFormat": 1 - }, - { - "version": "df05f337465f0ab7422da1b9b66f780da80c9d333a3729a2c456bd763afca222", - "impliedFormat": 1 - }, - { - "version": "78b2f0c958d88b95b0d582f30ba044b8c968c85a11dce5a445d5d0384ba30b7a", - "impliedFormat": 1 - }, - { - "version": "9dd3a2f7bfc90914dfe5a8960352bc69b20e9f3854bfc305560422bb93349be0", - "impliedFormat": 1 - }, - { - "version": "d79d507f00eaa2f15bc9a4dc8e3ef981726474404a2d2f154568d590c68716c0", - "impliedFormat": 1 - }, - { - "version": "8c344dc8b7f4390a7df5705d56ce8b34e0c74a2fa455447f3c507400d1b9cf2a", - "impliedFormat": 1 - }, - { - "version": "0ff21e6cf7ab7006425ace399ac8ff4fb40848e88c9bc11147412da2c58b274c", - "impliedFormat": 1 - }, - { - "version": "aa6729adf63dc9cd812e4a5ecf39a0650202ef345443ab4efcde4f604f0e847d", - "impliedFormat": 1 - }, - { - "version": "3cf2546f49a46f5931ec05b3c5b83039b5d2387e05536acf5c6fe6c6624e3d0e", - "impliedFormat": 1 - }, - { - "version": "70c88c3d948af93234d3f86a88fc58854bb07293f7066fccb97e2c3436ab6660", - "impliedFormat": 1 - }, - { - "version": "64ab590da8894bd4b90dd10c7c9d84b0490e9f3b1f6125bceef24b62c505b3cd", - "impliedFormat": 1 - }, - { - "version": "8842166a78c7fc64ceaea1d1caa4caf877ea76930b2d3c83e85a991706ed7623", - "impliedFormat": 1 - }, - { - "version": "abdee59c5ce3e063f01fa8c8d82fbb6c1266823a389ebf6ff4403f53279b897b", - "impliedFormat": 1 - }, - { - "version": "5fb1ba72feca35d1179c864bc1b7c72084e5537b2a1ea40eed5ee6e477055117", - "impliedFormat": 1 - }, - { - "version": "3536f72e63ffb38ced59dc66d257e91536c07ddd5bf07abfb14779d7013f28cf", - "impliedFormat": 1 - }, - { - "version": "618cfea5a012492d087d73fe493d18b3749bc6e2b2a6f7ba44103ab93a5720ac", - "impliedFormat": 1 - }, - { - "version": "2641048de2c7f40890c8ffaa1f1eb3ec979e687d66f8341cb03dbc2f7183e84d", - "impliedFormat": 1 - }, - { - "version": "9260b7ca5ea6366213670841076178c513c3a787ccd14eab5ab57f14cf6e2161", - "impliedFormat": 1 - }, - { - "version": "50b0cd6152831fcc1a50b0b83189bb10b5e719ffbe392a2963b607137c79408d", - "impliedFormat": 1 - }, - { - "version": "cf3ea2e4aa9a25683abce558d5b62d1587c5285c4d375d1e0e0ca3fc226e61dd", - "impliedFormat": 1 - }, - { - "version": "96dabcd05f22c7379923896ddf9875e77ed41b02456602a27734942c2b790f99", - "impliedFormat": 1 - }, - { - "version": "40a1bf5997bf56d25f44a5e982fb500ab4401797c5bf5ba810ebcb3dd72a7922", - "impliedFormat": 1 - }, - { - "version": "9cb515c161fd001f61daee310c00b351366f62cd2418d47cbd179a44b2c35e98", - "impliedFormat": 1 - }, - { - "version": "5705183d6b8eb7e43ffaf63ea8f225ec341f04f2b8a8c4aeec8aea9528dc9f5e", - "impliedFormat": 1 - }, - { - "version": "8d9538bc55c9a986cde4808a343db018556702748eb9210f5d122aa64d73a001", - "impliedFormat": 1 - }, - { - "version": "47ca47bef86687970776beffaa24ba3d0fe43dea035c908d9b0a7e87613d242f", - "impliedFormat": 1 - }, - { - "version": "75dc0e5738726a1c36865c1287ab8b8bff39c567536e739bfdb50aa130124ee7", - "impliedFormat": 1 - }, - { - "version": "ccc9d130607bfe4bceb053a63c6d552142549f21b3d3c2498ddb0e0c14295f30", - "impliedFormat": 1 - }, - { - "version": "9f4e6a7f8cc60c17906062952c0284eba761bf8f4468fe3604b09e1b9b5f75b0", - "impliedFormat": 1 - }, - { - "version": "9a2e3e35cbade016616a330ed283429fd7eb702f6b2ac2c185f464952c5f6093", - "impliedFormat": 1 - }, - { - "version": "7efb6ce4d7c880ab5d35ac6db3034ed17e66e4dfb9c7468d247eda9168576a2a", - "impliedFormat": 1 - }, - { - "version": "436441f790e31bbf24dc75316a62249c63a518dd73f3d9caea72c8d824b6003d", - "impliedFormat": 1 - }, - { - "version": "e0095d914d5dc1deeec0f933abf1c914913540843e242d863c82cb7d953e997e", - "impliedFormat": 1 - }, - { - "version": "275efd5c25bda1326cdea7e0e25e6eaa91a5c67fcdf97d5059b3bcd28f99462d", - "impliedFormat": 1 - }, - { - "version": "7db1e03235572745b67def464351a0d1a7c2dfa3f7009c6f094acd527415837c", - "impliedFormat": 1 - }, - { - "version": "2819cf1ab51815430f7c35c18dd781dd1b50d344c2ae2a0ac869fe24646c98c7", - "impliedFormat": 1 - }, - { - "version": "a4bc95199ec10e154d5e983d6bacd8ef9dc27b6e76bacd0b8f6bdb648e7e7479", - "impliedFormat": 1 - }, - { - "version": "2cf44c92f16927b0ed766c1c4b51bce88ab3c07af2a521fb917b83feb07ceaf8", - "impliedFormat": 1 - }, - { - "version": "a812ab25ff98d86a6de5a17a2d47c1fe835eab456d9f9955b97e44f5ba4efdb8", - "impliedFormat": 1 - }, - { - "version": "199952961e678888786d40dab246ad3a3d8c6f22b9f99622c5a1feabe5d27134", - "impliedFormat": 1 - }, - { - "version": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881", - "impliedFormat": 1 - }, - { - "version": "d992f1e0cbf40eebc24064cad37d0faa4d69f4eeb985d85b95c253ae0a583e3b", - "impliedFormat": 1 - }, - { - "version": "5ae7dd34a7ab4ba608dd0432e5d16299c7e889fd8059f5bb4cceff33888c8d23", - "impliedFormat": 1 - }, - { - "version": "c621aea764dc92050d14a2f878910ccdb8f587e6d620fdd9d9db1675fa6b048e", - "impliedFormat": 1 - }, - { - "version": "2c1a825204de121dbf2fc00c0ae1ab2e38a3cb3ea8ea793e44cde51f257178a8", - "impliedFormat": 1 - }, - { - "version": "3ccf716bc813a004bb27d09e928328e4fec4d58947bc7c48d563072932c7a843", - "impliedFormat": 1 - }, - { - "version": "ec50b71f2314de99f1ffe68b77b08422d72f567f36387315438540a0553d6ee6", - "impliedFormat": 1 - }, - { - "version": "d5ee16e750ed33a10020e8a646e4f463b859248ca50bc1af0a539c787d7b2d9b", - "impliedFormat": 1 - }, - { - "version": "736e5d2fec4eac920e38a6999a006f3e852055af41a745f069a9ba2ecbf8410a", - "impliedFormat": 1 - }, - { - "version": "4385cc4b31fa0eba3a05325bf22fce288f7be0446cb19a571ef71cf4d62313aa", - "impliedFormat": 1 - }, - { - "version": "2d5dae47f185fd51451a19b055796203373a37374ca469f61a3b6c305edb28fa", - "impliedFormat": 1 - }, - { - "version": "f85336a5e6d634e96b62780c842c91e40a20d0fbd6f5887798563eddc1626926", - "impliedFormat": 1 - }, - { - "version": "9d7538fef96d8a5ae7dfee81a6c05460fbf3839fbdd02cd40803e7abc4f8f0a3", - "impliedFormat": 1 - }, - { - "version": "69a7883977a1355e7fd8a7fd12f7631de7abbb45d61ba25c5a6e113699ec0666", - "impliedFormat": 1 - }, - { - "version": "a438750b70470fb1c0410706b7475e0f4dc50f6fb07f51406afd135b97e12c68", - "impliedFormat": 1 - }, - { - "version": "eb6a03b8aec6a6fe035e2f209a963b7c5388f338be1aeacc801805a4ad6762cb", - "impliedFormat": 1 - }, - { - "version": "5b40e5b414682f33b4629f706ffbb4d4142930130ca26cd4c453a228aad5fb50", - "impliedFormat": 1 - }, - { - "version": "a1bb9ca6105c5120cff83acd9592b7711fe232b59eb18185704d4d9a9993ce9e", - "impliedFormat": 1 - }, - { - "version": "c495dae64b1937deab2d95bb5cb2a560cf919de247830122490fe0644033dc06", - "impliedFormat": 1 - }, - { - "version": "867700d1e3f58b1c5b05c5d7655d3f51db883f6a560431845de6d6a12bdad9cb", - "impliedFormat": 1 - }, - { - "version": "5be43589440f3b836eb5c88373a4bba84672e28e54b22fcd7f5d64ac513a27f8", - "impliedFormat": 1 - }, - { - "version": "595d517114915d5d045622c4d211993480f083709c3101d32fe9cc6b3f67fceb", - "impliedFormat": 1 - }, - { - "version": "43d61eb5a3715bff5b6991ecf1b43e706d73cfc5a81e2c2c4f8a956625811663", - "impliedFormat": 1 - }, - { - "version": "6213bc8d8868ea93b02322a5a59b4a6e83e416ca1dca24a5fedef30efb831bf0", - "impliedFormat": 1 - }, - { - "version": "3697b05d74551220c68f9883c1f8b0956b617b5432fd18821d1289efbcda3959", - "impliedFormat": 1 - }, - { - "version": "7e6c7fb3a7e409aaf91ba5899647b9169d215f9055ed207ad629d990d76fc1d0", - "impliedFormat": 1 - }, - { - "version": "4b98fbb55ac52ac53ee13055e121321e0a00071a9d913940a769db6b4892bde0", - "impliedFormat": 1 - }, - { - "version": "6509adaf9262237775467b550417c2a8bc65c1913b4843569c2b8bcb63163927", - "impliedFormat": 1 - }, - { - "version": "5efee14d7e47f2cd142397c00f7440b47e21897fe7e941d7aaf186a990f9dd3f", - "impliedFormat": 1 - }, - { - "version": "5f9f3ee3cab60e99f4dfd55d2745718ef2f6c9d013025e539461735fc8bc8515", - "impliedFormat": 1 - }, - { - "version": "271a8fdb960ea20f4d555f85c53d5add4b806cddeb207cffefeb449fb201771d", - "impliedFormat": 1 - }, - { - "version": "4e9fa4cbdeab5e5728e6a338a3bc9c0392a478c163383d4fdec8f1c717d8fbd0", - "impliedFormat": 1 - }, - { - "version": "91fa4c96890f73b8aacfa1db6df94ac591cddb992c082b47780aaf774f3740d8", - "impliedFormat": 1 - }, - { - "version": "3d73c613adb5f561f31f182b57dc88544c0268cfe0f29d71fdadc01536160e2e", - "impliedFormat": 1 - }, - { - "version": "684522e83270b83e50639e609fb30f6bbb23bb600c1a34395c8829bff0e1e943", - "impliedFormat": 1 - }, - { - "version": "8e6882cae5f0b9a9e11220806e334c3e180d37420a3a4c1074a8e424aecd9254", - "impliedFormat": 1 - }, - { - "version": "f920b355d0af3b7eb6aa16d38a775525dbc12fc316efcf5619e6e7032cd0ff1f", - "impliedFormat": 1 - }, - { - "version": "b0e6085eadda3b69ff359f95ae0eaec0f30247c246f1d2383cae644c7497663a", - "impliedFormat": 1 - }, - { - "version": "215b4a7c34fd455b7d25386e114e2734022daa03d2c0248e1140260bc5b2d96b", - "impliedFormat": 1 - }, - { - "version": "19d2a251901f300c506dc34cd548fc422154fc9541f083bcd7cb9b3aefcd6200", - "impliedFormat": 1 - }, - { - "version": "644ef997145af46880c3a3479eef020cfbadaa269fcc1d7354c0f24782471397", - "impliedFormat": 1 - }, - { - "version": "46c5af8e05547ebf59fa1d1fa52c512cca25556b360215218075ecd152495051", - "impliedFormat": 1 - }, - { - "version": "ac238d2be13966e5e4ea351df61b302c4cd5e76c62b527762f522c30657556e4", - "impliedFormat": 1 - }, - { - "version": "7c6375f0c64032b35ac421d0ccbdc7abab36af0932ecd59013d6c3c9eeb08d70", - "impliedFormat": 1 - }, - { - "version": "521a5f79ed7b12a3f986a44083b5514d6b37fce448e514543db6cfcaba785bcd", - "impliedFormat": 1 - }, - { - "version": "7b7706d11a9fa9564ab086e40523f93e62b298b3c71ca03786a79a11a179f368", - "impliedFormat": 1 - }, - { - "version": "362e41132fdf5800ab1efcad8eea50359c0d506a0253aabcd1c8f273e1f26649", - "impliedFormat": 1 - }, - { - "version": "1bc7eca94f6c9a615005c2a01df6f4ee68d40f8d8fb09a52b2ae5958a00ea875", - "impliedFormat": 1 - }, - { - "version": "852576783461f5d70ae14e41a89c66cbda349f5d0dcfff93beca89eaecfe8072", - "impliedFormat": 1 - }, - { - "version": "b15077bd3ee9834abde54552305a33bfdf99cd6828ea6739068abfb87bdc9f14", - "impliedFormat": 1 - }, - { - "version": "5aaee6c00c9723f5a153d2e3b3d51af7a2e9116184dca7e2c0c1a767bd321517", - "impliedFormat": 1 - }, - { - "version": "06955ce7a8cdbc2d8acabbd2f4e2066eb1a988287424e285fc7ae20294ef0bda", - "impliedFormat": 1 - }, - { - "version": "8315fcb49ac1d57e9656e029b9ae5875a050f6284faebc7300972527c8a22a71", - "impliedFormat": 1 - }, - { - "version": "e8c155366e9a7d602c2ac61b871dab3a049522dc81021a6fe2c16608b432ba4b", - "impliedFormat": 1 - }, - { - "version": "d04eb969c9b28e72c7aa53ab2496c6b2148b452cdc7e89eba8e99c746f1a5bbf", - "impliedFormat": 99 - }, - { - "version": "55f829ccb06c90388adf26c851434a1f944f85224ee4af1d30e23265af7bd106", - "impliedFormat": 99 - }, - { - "version": "ccc4aedba98a5625fa63751d20441e9890a3e8bef2d1b373e394daf4f9b54461", - "impliedFormat": 99 - }, - { - "version": "30e5e3942c3b5e9af10e2410cbb301502cc5ff54cf4ec0708deaf4cc46c6b50c", - "impliedFormat": 99 - }, - { - "version": "125b932b6765dd872ad9be0d40378a0d06f228c4c7e6ae3cbc6546bfebfdf746", - "impliedFormat": 99 - }, - { - "version": "e17530832d76f494e9ea887655c2e0964c2b468ea810119ca0e8d768da177c9a", - "impliedFormat": 99 - }, - { - "version": "4f80b9b2152ed0115dfd70aff11ccea041455f5531ab98698eb8a602f44062d5", - "impliedFormat": 99 - }, - { - "version": "7c8e0069825289a00171df4b801646f6878316bead5ac2d84f85a5725e43e6fb", - "impliedFormat": 99 - }, - { - "version": "999e2e58dc297a64c49bb4e0d44695ff99b5b2ea18bdfb0ed93eaf0c909071ef", - "impliedFormat": 99 - }, - { - "version": "d760c172ae152b553d5ae87440ec31f6c1a3eedfc330ce6c16440ad1bc6ea256", - "impliedFormat": 99 - }, - { - "version": "d9419f3891d95623fcf67af25d7831b7311dad7ddd0247b7549588d23224b8ad", - "impliedFormat": 99 - }, - { - "version": "25bc8c762f964877ba09ad8fb8e9d70ffca138333e9a7cddd8f31ae0ed69b49a", - "impliedFormat": 99 - }, - { - "version": "ece43e90d6f64a340a1791362e9f2aa41bd68a5d678ecc86022697d50e05adde", - "affectsGlobalScope": true, - "impliedFormat": 99 - }, - { - "version": "dc926b278183b0d89d1970326ee6b40ef0d9e4f35bb6e0451d514f28495f6d77", - "impliedFormat": 99 - }, - { - "version": "c138d6824cffd4dfece9856af78048a94cd25493180deea045971b8dafb84d81", - "impliedFormat": 99 - }, - { - "version": "2c8df297082485ef2b4354ab1d6748a8200f41e970e21ee18554387c2220f6c9", - "affectsGlobalScope": true, - "impliedFormat": 99 - }, - { - "version": "bc5aabaea92a84984bfa7a9aad462418571791cff533ff39287779edb8a9976e", - "impliedFormat": 99 - }, - { - "version": "bdb3e076f1b8d0154918bad89247c056fbee322e06d3ebbeaccf32877f4f9b8b", - "impliedFormat": 99 - }, - { - "version": "dcd6fb784133d2c1dbb0164d06a74952e4ec4d4d192cc3132a816fcb8cceb523", - "impliedFormat": 99 - }, - { - "version": "d3111fb72b2b65b2cbaebda560a97cade8505f11f3155dd117213c438fc39fd7", - "impliedFormat": 99 - }, - { - "version": "32a4f62c565a1290dacac36e2e09ec5d2ac0bdf33704ad2bd47cb35e0e11b4a0", - "impliedFormat": 99 - }, - { - "version": "6453348bfc587bf67d5854ca3077db6dd6d21d59cb2e4d49e68ffba96b86e1ff", - "impliedFormat": 99 - }, - { - "version": "7d8403025bbd036f01bd38399f94c041034a4a5475ef505c7024e2bd4323b87e", - "impliedFormat": 1 - }, - { - "version": "f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1", - "impliedFormat": 1 - }, - { - "version": "be5de08f7e80755a34e3247ebd7fd29634afc6143ae1860bd0efe2b8da6e6980", - "impliedFormat": 1 - }, - { - "version": "84bcc7c6b06f4d643a55dc63b56be0c81d990f8d549b66ea615c553268774dc3", - "impliedFormat": 1 - }, - { - "version": "2d225e7bda2871c066a7079c88174340950fb604f624f2586d3ea27bb9e5f4ff", - "impliedFormat": 1 - }, - { - "version": "6a785f84e63234035e511817dd48ada756d984dd8f9344e56eb8b2bdcd8fd001", - "impliedFormat": 1 - }, - { - "version": "c1422d016f7df2ccd3594c06f2923199acd09898f2c42f50ea8159f1f856f618", - "impliedFormat": 1 - }, - { - "version": "2973b1b7857ca144251375b97f98474e9847a890331e27132d5a8b3aea9350a8", - "impliedFormat": 1 - }, - { - "version": "0eb6152d37c84d6119295493dfcc20c331c6fda1304a513d159cdaa599dcb78b", - "impliedFormat": 1 - }, - { - "version": "237df26f8c326ca00cd9d2deb40214a079749062156386b6d75bdcecc6988a6b", - "impliedFormat": 1 - }, - { - "version": "cd44995ee13d5d23df17a10213fed7b483fabfd5ea08f267ab52c07ce0b6b4da", - "impliedFormat": 1 - }, - { - "version": "58ce1486f851942bd2d3056b399079bc9cb978ec933fe9833ea417e33eab676e", - "impliedFormat": 1 - }, - { - "version": "7557d4d7f19f94341f4413575a3453ba7f6039c9591015bcf4282a8e75414043", - "impliedFormat": 1 - }, - { - "version": "a3b2cc16f3ce2d882eca44e1066f57a24751545f2a5e4a153d4de31b4cac9bb5", - "impliedFormat": 1 - }, - { - "version": "ac2b3b377d3068bfb6e1cb8889c99098f2c875955e2325315991882a74d92cc8", - "impliedFormat": 1 - }, - { - "version": "8deb39d89095469957f73bd194d11f01d9894b8c1f1e27fbf3f6e8122576b336", - "impliedFormat": 1 - }, - { - "version": "a38a9c41f433b608a0d37e645a31eecf7233ef3d3fffeb626988d3219f80e32f", - "impliedFormat": 1 - }, - { - "version": "8e1428dcba6a984489863935049893631170a37f9584c0479f06e1a5b1f04332", - "impliedFormat": 1 - }, - { - "version": "1fce9ecb87a2d3898941c60df617e52e50fb0c03c9b7b2ba8381972448327285", - "impliedFormat": 1 - }, - { - "version": "5ef0597b8238443908b2c4bf69149ed3894ac0ddd0515ac583d38c7595b151f1", - "impliedFormat": 1 - }, - { - "version": "ac52b775a80badff5f4ac329c5725a26bd5aaadd57afa7ad9e98b4844767312a", - "impliedFormat": 1 - }, - { - "version": "6ae5b4a63010c82bf2522b4ecfc29ffe6a8b0c5eea6b2b35120077e9ac54d7a1", - "impliedFormat": 1 - }, - { - "version": "dd7109c49f416f218915921d44f0f28975df78e04e437c62e1e1eb3be5e18a35", - "impliedFormat": 1 - }, - { - "version": "eee181112e420b345fc78422a6cc32385ede3d27e2eaf8b8c4ad8b2c29e3e52e", - "impliedFormat": 1 - }, - { - "version": "25fbe57c8ee3079e2201fe580578fab4f3a78881c98865b7c96233af00bf9624", - "impliedFormat": 1 - }, - { - "version": "62cc8477858487b4c4de7d7ae5e745a8ce0015c1592f398b63ee05d6e64ca295", - "impliedFormat": 1 - }, - { - "version": "cc2a9ec3cb10e4c0b8738b02c31798fad312d21ef20b6a2f5be1d077e9f5409d", - "impliedFormat": 1 - }, - { - "version": "4b4fadcda7d34034737598c07e2dca5d7e1e633cb3ba8dd4d2e6a7782b30b296", - "impliedFormat": 1 - }, - { - "version": "360fdc8829a51c5428636f1f83e7db36fef6c5a15ed4411b582d00a1c2bd6e97", - "impliedFormat": 1 - }, - { - "version": "1cf0d15e6ab1ecabbf329b906ae8543e6b8955133b7f6655f04d433e3a0597ab", - "impliedFormat": 1 - }, - { - "version": "7c9f98fe812643141502b30fb2b5ec56d16aaf94f98580276ae37b7924dd44a4", - "impliedFormat": 1 - }, - { - "version": "b3547893f24f59d0a644c52f55901b15a3fa1a115bc5ea9a582911469b9348b7", - "impliedFormat": 1 - }, - { - "version": "596e5b88b6ca8399076afcc22af6e6e0c4700c7cd1f420a78d637c3fb44a885e", - "impliedFormat": 1 - }, - { - "version": "adddf736e08132c7059ee572b128fdacb1c2650ace80d0f582e93d097ed4fbaf", - "impliedFormat": 1 - }, - { - "version": "d4cad9dc13e9c5348637170ddd5d95f7ed5fdfc856ddca40234fa55518bc99a6", - "impliedFormat": 1 - }, - { - "version": "d70675ba7ba7d02e52b7070a369957a70827e4b2bca2c1680c38a832e87b61fd", - "impliedFormat": 1 - }, - { - "version": "3be71f4ce8988a01e2f5368bdd58e1d60236baf511e4510ee9291c7b3729a27e", - "impliedFormat": 1 - }, - { - "version": "423d2ccc38e369a7527988d682fafc40267bcd6688a7473e59c5eea20a29b64f", - "impliedFormat": 1 - }, - { - "version": "2f9fde0868ed030277c678b435f63fcf03d27c04301299580a4017963cc04ce6", - "impliedFormat": 1 - }, - { - "version": "feeb73d48cc41c6dd23d17473521b0af877751504c30c18dc84267c8eeea429a", - "impliedFormat": 1 - }, - { - "version": "25f1159094dc0bf3a71313a74e0885426af21c5d6564a254004f2cadf9c5b052", - "impliedFormat": 1 - }, - { - "version": "cde493e09daad4bb29922fe633f760be9f0e8e2f39cdca999cce3b8690b5e13a", - "impliedFormat": 1 - }, - { - "version": "3d7f9eb12aface876f7b535cc89dcd416daf77f0b3573333f16ec0a70bcf902a", - "impliedFormat": 1 - }, - { - "version": "b83139ae818dd20f365118f9999335ca4cd84ae518348619adc5728e7e0372d5", - "impliedFormat": 1 - }, - { - "version": "e0205f04611bea8b5b82168065b8ef1476a8e96236201494eb8c785331c43118", - "impliedFormat": 1 - }, - { - "version": "62d26d8ba4fa15ab425c1b57a050ed76c5b0ecbffaa53f182110aa3a02405a07", - "impliedFormat": 1 - }, - { - "version": "9941cbf7ca695e95d588f5f1692ab040b078d44a95d231fa9a8f828186b7b77d", - "impliedFormat": 1 - }, - { - "version": "41b8775befd7ded7245a627e9f4de6110236688ce4c124d2d40c37bc1a3bfe05", - "impliedFormat": 1 - }, - { - "version": "9de8d92a60e62a15c05a8685b1de0ea00d55033834b0c5ab7898c582e2320578", - "impliedFormat": 1 - }, - { - "version": "a00b0ad2a2a3c3731e481652cf853c57d9f4593e91e8c219b0862bda334e5d81", - "impliedFormat": 1 - }, - { - "version": "765ff0a8c118f644e5e34620aef77491db6d63927597dff297a8a0a268a06fb3", - "impliedFormat": 1 - }, - { - "version": "c41b17ee4cd892f76c829a42a1a5d0f1f208446d0ec8fc087610f06e8599bdc2", - "impliedFormat": 1 - }, - { - "version": "5edc696f2b3cfcf2e5f5a9d64e7d901eb5e221b0547ee081119ce398a3f1bdb0", - "impliedFormat": 1 - }, - { - "version": "8742fec8c5b2666653609b6ae180f43659da76cb9373735a638f749bdf3e487d", - "impliedFormat": 1 - }, - { - "version": "5870b5e5b5f8e2c5f3fae83a26311956e30017dd60a436a3b085ae28e17dc545", - "impliedFormat": 1 - }, - { - "version": "6e8007d64d2dfe321e3e68180ff02448c53efdc18a8ddcbf38b63f93b5238ef0", - "impliedFormat": 1 - }, - { - "version": "e55e623e775d941aca8c1db38ac2d46c1dc211533e54c8c11cef499d37ec1ce3", - "impliedFormat": 1 - }, - { - "version": "4c60864bed92746522ffd2541a65ea539a74ae4975e264e48088e51136dcff02", - "impliedFormat": 1 - }, - { - "version": "44e5bb495e296873a33ff8520f2153612b88f81f0122bf54a59b78d1746d4a93", - "impliedFormat": 1 - }, - { - "version": "a6613ee552418429af38391e37389036654a882c342a1b81f2711e8ddac597f2", - "impliedFormat": 1 - }, - { - "version": "da47cb979ae4a849f9b983f43ef34365b7050c4f5ae2ebf818195858774e1d67", - "impliedFormat": 1 - }, - { - "version": "ac3bcb82d7280fc313a967f311764258d18caf33db6d2b1a0243cde607ff01a0", - "impliedFormat": 1 - }, - { - "version": "c9b5632d6665177030428d02603aeac3e920d31ec83ac500b55d44c7da74bd84", - "impliedFormat": 1 - }, - { - "version": "46456824df16d60f243a7e386562b27bac838aaba66050b9bc0f31e1ab34c1f2", - "impliedFormat": 1 - }, - { - "version": "b91034069e217212d8dda6c92669ee9f180b4c36273b5244c3be2c657f9286c7", - "impliedFormat": 1 - }, - { - "version": "0697277dd829ac2610d68fe1b457c9e758105bb52d40e149d9c15e5e2fe6dca4", - "impliedFormat": 1 - }, - { - "version": "b0d06dbb409369169143ede5df1fb58b2fca8d44588e199bd624b6f6d966bf08", - "impliedFormat": 1 - }, - { - "version": "88dfdb2a44912a28aea3ebb657dc7fcec6ba59f7233005e3405824995b713dac", - "impliedFormat": 1 - }, - { - "version": "23d7168f75797443d2c05542d1ede64851b2cf14d713dc078febb0c6538b4ba0", - "impliedFormat": 1 - }, - { - "version": "d9aed3df3f4a1e42a18d442c85950f57decf2474a062f01ab9bf224c066a1d1e", - "impliedFormat": 1 - }, - { - "version": "c3886d64fc80d215640d9fbffa90ebfd387d8eb012243dd044c9810d9f33b136", - "impliedFormat": 1 - }, - { - "version": "6e50b2017454705ff94359fc0a2daeba2fa19c133f2f204213d33deed52cf7b4", - "impliedFormat": 1 - }, - { - "version": "5ffe93378264ba2dba287bce8eabc389b0bfe2266016cc95bd66b64c5a6492a0", - "impliedFormat": 1 - }, - { - "version": "7ca788d6efb81cf64221b171bbeadc65491fe2e0fc2918efe3ecdaca395ea748", - "impliedFormat": 1 - }, - { - "version": "da35d6a8ee45e3349b4d577148bdd20c9b29862872e3c40f5d428c32557e5e0c", - "impliedFormat": 1 - }, - { - "version": "62941034216275e4541d6cfeeb80ae805fcc9639582a540bab4252554f3a613c", - "impliedFormat": 1 - }, - { - "version": "13aeadb616f9d2b44ea9da3cbfca62e70d30eb616c35425b78a2af3c3bc65b30", - "impliedFormat": 1 - }, - { - "version": "6ba418e319a0200ab67c2277d9354b6fa8755eed39ab9b584a3acaac6754ff7c", - "impliedFormat": 1 - }, - { - "version": "4fe80f12b1d5189384a219095c2eabadbb389c2d3703aae7c5376dbaa56061df", - "impliedFormat": 1 - }, - { - "version": "9eb1d2dceae65d1c82fc6be7e9b6b19cf3ca93c364678611107362b6ad4d2d41", - "impliedFormat": 1 - }, - { - "version": "8065e20ac0ad0536d4f1c8d4c2303272a4d25c450bea8d25deb25697d19300e5", - "impliedFormat": 1 - }, - { - "version": "4523dfd2dda07c1ab19f97034ba371f6553327b2a7189411a70a442546660fd6", - "impliedFormat": 1 - }, - { - "version": "2e5afb93fc3e6da3486a10effebc44f62bf9c11bec1eebe1d3b03cae91e4434c", - "impliedFormat": 1 - }, - { - "version": "a8a3779913ddff18d1f516d51bec89f5e3eb149928b859ad3684fae0e10fb2d3", - "impliedFormat": 1 - }, - { - "version": "a87090ce4dff0ec78b895d3a8803b864680e0b60c457f6bba961892a19954272", - "impliedFormat": 1 - }, - { - "version": "1991baf0ed3c21f4db584389462764d0519353ef477406f7e4e783c2b2408750", - "impliedFormat": 1 - }, - { - "version": "388ac09a64783588f92a7787237c2f8a417f402ef8605f154977c395a054b6bc", - "impliedFormat": 1 - }, - { - "version": "bbd0fce6da05dd72dc1f7c23e31cdcb5088e18f66a5e54450b28de31cfc27ce3", - "impliedFormat": 1 - }, - { - "version": "c059d7e5d3105a9067e0c0a9e392344a9a16b34d7ce7e41cea3ae9e50e0639f0", - "impliedFormat": 1 - }, - { - "version": "feeb4514da40bd3c50f6c884c607adb142002b3c8e6a3fe76db41ba8cce644ad", - "impliedFormat": 1 - }, - { - "version": "e3b0808e9afa9dce875873c2785b771a326e665276099380319637516d8d1aac", - "impliedFormat": 1 - }, - { - "version": "7247fd1853426de8fdc38a7027b488498bb00ea62c9a99037a760520e3944a26", - "impliedFormat": 1 - }, - { - "version": "0b6a84d1c3a325b7ed90153f5aad8bf6c8a6fba26f0b6385503218cae4080e25", - "impliedFormat": 1 - }, - { - "version": "63678043df1e7d615b7bbaf85a14b0c8bba4fd2d311555a09a47ae8eea2ba138", - "impliedFormat": 1 - }, - { - "version": "8e7a518023bdfb96e9311c1d89b6bf6e3fe1393f06f4a3b628f08f8c6e2ad411", - "impliedFormat": 1 - }, - { - "version": "033969a82c8d3b286e3ef2de6800931dea611be048f26260de40d6d5e69bfe80", - "impliedFormat": 1 - }, - { - "version": "4b0738c461835edad41febc4fca30e81d2aa44dfd5438c6287866b43204f654c", - "impliedFormat": 1 - }, - { - "version": "0af1431ca54b490a16b6d8803b0ac516f699cb4dc9131abdfdb59b98e77bf0ba", - "impliedFormat": 1 - }, - { - "version": "d7c9e60b99250a733acb73927233a265596cd43fda96c3a6615ff5a670534e5f", - "impliedFormat": 1 - }, - { - "version": "07f4a97091dd36141e717c35001f4f3ea5e96536b73928d3985e26c0f590ceb2", - "impliedFormat": 1 - }, - { - "version": "c390b593f01511df27574bd666c8a7a5c83c4173d44338d58231fae84ef54e9b", - "impliedFormat": 1 - }, - { - "version": "2c479b9b2b57774fdfb3f8ec75ce57c6de309268469371f506e4531fb4ebe2f7", - "impliedFormat": 1 - }, - { - "version": "26b7d0cd4b41ab557ef9e3bfeec42dcf24252843633e3d29f38d2c0b13aaa528", - "impliedFormat": 1 - }, - { - "version": "6472ce167721460e965986f64340e7cb303fe9a0041f2564bb7d7196eec944e5", - "impliedFormat": 1 - }, - { - "version": "c952b5848f840d4023a21b93308ae5fc49136965c270c5ec4ee1105f705ce8f7", - "impliedFormat": 1 - }, - { - "version": "95c93690e3e9c203de5e06df814c7b4aea38a28b24762c8cfe4dcad26a693c8c", - "impliedFormat": 1 - }, - { - "version": "90535f6326c43637a7bb35925a511cbe38d5b229c9086255ce622c41edfce8f8", - "impliedFormat": 1 - }, - { - "version": "901becb8779e1089442378fda5623e607ee4588762a32e7692436f1ea81cf848", - "impliedFormat": 1 - }, - { - "version": "8286d84d2567b713fd6a1fdfbb1a0abc8cfa668ee1e0e83d7dd4ade5761f2750", - "impliedFormat": 1 - }, - { - "version": "e4a52c589745f7bca3346962af0b62270302f9e60b116037483b3dea345d5f9d", - "impliedFormat": 1 - }, - { - "version": "38f50c96cd804ec61e75c742cd8165651f31076307a2492e6afd595f574975e6", - "impliedFormat": 1 - }, - { - "version": "c0513cfcf00f4fc7a7fe41b4c66b8cd56e280f37233c2ed8b89c9ae6f5fc3a7f", - "impliedFormat": 1 - }, - { - "version": "85e65d83a8e65bc6ff28b67b8b4a4565b6754be8e74a48080fc83f00be07a16f", - "impliedFormat": 1 - }, - { - "version": "9678e67085896b6fdfdaf3be547822a5f86ca030284b653a08235df00914d70d", - "impliedFormat": 1 - }, - { - "version": "2bfb5c352fa394f3d5656a16863183231b0a688a5898d0bf0701ee3e0f066ede", - "impliedFormat": 1 - }, - { - "version": "012ec6584af15eb152a2628dfcf742a1c1ea8ca7ab7b2859eb375bea2d85f1fe", - "impliedFormat": 1 - }, - { - "version": "41c851891f277afd9bf0b3af06fb3d35c11b32cb0120e85ae5b7e6dbbda037de", - "impliedFormat": 1 - }, - { - "version": "8286d84d2567b713fd6a1fdfbb1a0abc8cfa668ee1e0e83d7dd4ade5761f2750", - "impliedFormat": 1 - }, - { - "version": "a710a056936098886b0b5eb6734034589d15dbd7fa29329dc936f3f4e7bce93b", - "impliedFormat": 1 - }, - { - "version": "1b07d0edd2efd23f75c45c581e250eaa67b9d488b0920a72a6cf99e5bb70d0e8", - "impliedFormat": 99 - }, - { - "version": "31f0b0cbcd480d987e33d91c13ce94c157c761526ed0fde716269e650ee2b8a0", - "impliedFormat": 99 - }, - { - "version": "3c4648f43b8750dbb719340e2b8408a90c884f2c05dafea0dbb898d479e89cb4", - "impliedFormat": 99 - }, - { - "version": "edd2a7b5a5c040d3a3f4d2770e26da05186753cb250cb46390949133bbad1afe", - "impliedFormat": 99 - }, - { - "version": "9e695c00d585e643bd39ad753c6951a4637db57523085d63355f5277e6515aa1", - "impliedFormat": 99 - }, - { - "version": "58b6ba88e08c4b9dfd46baf1eb81dc91f12eb7a557f8e9a35a8df4b855c508a4", - "impliedFormat": 99 - }, - { - "version": "62e6d5cf8c6731bd1301791b825de2874dd09184207a4602c3270fc48a1e562c", - "impliedFormat": 1 - }, - { - "version": "e76d18ed8fca76a50b3dbbbbcf2e6dcd553a81fae29014d28918e2e00e85b91c", - "impliedFormat": 1 - }, - { - "version": "a81e0be4c2a1c5d0cc76004280c79d46c5e95ece6cb7cfafd3137180323a24d4", - "impliedFormat": 1 - }, - { - "version": "6d55fb2ebdc3c1d5824caec5fde930fd2ac1c7aa58049299981322322cab032b", - "impliedFormat": 1 - }, - { - "version": "3910122f6cb461e96a864983db5d43c38d72bcbf5304aa9980ad89d3967f4fe5", - "impliedFormat": 1 - }, - { - "version": "2327c9953c4e7853aa73be1d50285e135531a3b4dc4a936d6c825f8eca20e3a1", - "impliedFormat": 1 - }, - { - "version": "a2f1acd88411deb9f95d2fde93b4088989a969bb978a706ae1f353a8bdec0af9", - "impliedFormat": 1 - }, - { - "version": "3d8440a0b172b5e23a4397c26fb37e44dcc38a68ef7bfa3017d46da9f5af666e", - "impliedFormat": 1 - }, - { - "version": "b1510e4a4b87601639bb665bd7deb48a0a55b4fb71f95f9b739e2269e56ae6dd", - "impliedFormat": 1 - }, - { - "version": "b628aa03068c74e81d2dec445af8e086e1ce47325b02e96566ddb47bbfe97d2d", - "impliedFormat": 1 - }, - { - "version": "2a75a4ff59d780e2233539af9e76e665fcab7ef30f7a97a47ff19d2d1d843cf2", - "impliedFormat": 1 - }, - { - "version": "e66bff21c488fb519bdc64d603ac20af4eb23474388acc3f799283163f183768", - "impliedFormat": 1 - }, - { - "version": "1fa4dc002b73a170ce224c50c31f22c326ff8f947527c81a9971d7f1bad636a3", - "impliedFormat": 1 - }, - { - "version": "92a54e6af2d1662aec0b0957bd7220366e92e6c997333cd8e2185dc6167e7388", - "impliedFormat": 1 - }, - { - "version": "f476c1c81321b552f981f6554ca90d193c7b24141ea8fcf55838ddcbdb73331c", - "impliedFormat": 1 - }, - { - "version": "4a67e0f73fc78fd0a91fe328057b4d8407a1f7171c5162bd14a8b4e664e361a1", - "impliedFormat": 1 - }, - { - "version": "da950af07ccfa3184381875f39517ad22a2df38f327a49c08ad209be1b376d6b", - "impliedFormat": 1 - }, - "1cd0cee0b6c249b2be7a6a86451b9101e65a4f5f49b94a9ac2f64e344a51580f", - { - "version": "035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245", - "impliedFormat": 1 - }, - { - "version": "0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2", - "impliedFormat": 1 - }, - { - "version": "a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54", - "impliedFormat": 1 - }, - { - "version": "5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434", - "impliedFormat": 1 - }, - { - "version": "c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a", - "impliedFormat": 1 - }, - { - "version": "f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da", - "impliedFormat": 1 - }, - { - "version": "e00243d23c495ca2170c9b9e20b5c92331239100b51efdc2b4401cdad859bbef", - "impliedFormat": 1 - }, - { - "version": "41ea7fd137518560e0d2af581edadadd236b685b5e2f80f083127a28e01cf0ac", - "impliedFormat": 1 - }, - { - "version": "ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66", - "impliedFormat": 1 - }, - { - "version": "6fa5d56af71f07dc276aae3f6f30807a9cccf758517fb39742af72e963553d80", - "impliedFormat": 1 - }, - { - "version": "819dddfec57391f8458929ca8e4377f030d42107ff6ec431e620b70b0695d530", - "impliedFormat": 1 - }, - { - "version": "701bdef1f4a13932f64c4ce89537f2c66301eb46daf30a16a436c991df568686", - "impliedFormat": 1 - }, - { - "version": "cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de", - "impliedFormat": 1 - }, - { - "version": "5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e", - "impliedFormat": 1 - }, - { - "version": "3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6", - "impliedFormat": 1 - }, - { - "version": "ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66", - "impliedFormat": 1 - }, - { - "version": "d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec", - "impliedFormat": 1 - }, - { - "version": "5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e", - "impliedFormat": 1 - }, - { - "version": "ac5f598a09eed39b957ae3d909b88126f3faf605bd4589c19e9ae85d23ef71e3", - "impliedFormat": 1 - }, - { - "version": "92abba98a71c0244a6bcdd3ad4d2e04f1d0a8bcae57d2bb865bf53d1ac86e3d0", - "impliedFormat": 1 - }, - { - "version": "d2afa0d86bc6f2e72c1cf2ecb2372bf1b0f002493706a81f2b9a3ee4f944e219", - "impliedFormat": 1 - }, - "87b7e6e6b1b8e7564992ef6369d1ba4df3d27fdfcfd6c60dbdf7e27896040d36", - "b4ac017038c6a30aa48fa54a33e35b80eb31ddfb3dfbb8bbb1eac110b60e3f8e", - "a501a58c3f2d38278d91187d933b54446781822399517a1014a958000c01bdb4", - "d1d44f9fb990d96ecce478b93f9b848735d609ead44648536300655aedabd73e", - "1463c8c94deae9623ff6d6dec45433ce29b736a763144ecfb81c37fe2b3ed306", - "2d2721ca36cb1fa5c6a1750cfcc6c26c58404cfdb44c11f7c0b4e497808d28fc", - "4c0f2f714591ffaa5d79998b9f405c39387825829da84f08b61a2ffb438de966", - "abf54098a94676d8d379f8f49c5a1ee1760fdf2fa4f8f32c04a528d5c3d57d8e", - "f19acd1f0e60fe0f04ad0dad2ef477b8e48c41f36b7ffd6b4301b6211a86bc4e", - "d8d6206df9f32445c04740ecbe3ce9d0781c7dcac056c9f5c414060964dffdf0", - "4c9733da0846e451ba07f3beaf534b9f10ffbd17f50d593eb28ef2e2965292b0", - "84157698dff3fefbab31ca7d6c772e4920806f88f03f977f90dd63d4a9f1d98f", - "cb1e85745ff034b9c5a578a3280acbdff81fd78fdf4534dd74864dee45202286", - "515de840057700adad05196eccdbf97e58837304886f384b256951bf793048c3", - "6c75a928a63c920d627d1f66634b1d47a8a23a86a6185733d423e83b3df33c7d", - { - "version": "db84a364a38adf1ebcf46217d17caa22e1049e50bd9034d26612d8326b3944c7", - "impliedFormat": 1 - }, - { - "version": "16af96d0556586b886495f8a6e117c5604ec692d476819f53f02e2413999dfa8", - "impliedFormat": 1 - }, - { - "version": "9547380dc9386415197150a33fa344eddb683d529b5fcd7a99342fdaab8cbb0c", - "impliedFormat": 1 - }, - { - "version": "4c992e675d8ec0fe12dfe5a1396fb260249fc0cfd2dc9b57804c508a85e90fb4", - "impliedFormat": 1 - }, - { - "version": "f8169acbee2afa4f410d5361c42d0ea639d7ed76a1e60c189cd6bc1b8c4a5ec0", - "impliedFormat": 1 - }, - { - "version": "aecc1b9e7872d52c0e0e07827ea5e0550c639a3d09aa5758912eabaa0fc26b80", - "impliedFormat": 1 - }, - { - "version": "9244a908d0365040da50d391cd9e72453b753dc36b1c634459e631bfd841d9fd", - "impliedFormat": 1 - }, - { - "version": "c5a6e13138168249b2c55d345976a7924640f3293d7c99f9b445eed443bedf4f", - "impliedFormat": 1 - }, - { - "version": "ab3325caca7aebdf87a2ac33a20f1915ca9e74ec774f0a0c52030d0340a96dd4", - "impliedFormat": 1 - }, - { - "version": "22f44030787ee583eabfc0bf76f6306576292065dce17d204e03496a82945b0c", - "impliedFormat": 1 - }, - { - "version": "cd2010a14f58c56a65b7efd3d44901e4af7baa881f77aabf2b27f7fc83607e4b", - "impliedFormat": 1 - }, - { - "version": "4220aadd887336e2fa5e3d65e66a99236b1396f64f67fa3eeacd96cef648ed55", - "impliedFormat": 1 - }, - { - "version": "720134ce9dadc4a81ad5a8223777281e7e68ea1fc9c5683d3384a1cc9ab2b433", - "impliedFormat": 1 - }, - { - "version": "c70e9ede62af1b7cea62fe0b63ecd6dbfa574a100e8b7ea358715e726a5162e5", - "impliedFormat": 1 - }, - { - "version": "86c9db036b851e841d6e7ef527119373a2fec9688609d2cac77faaedbd11807e", - "impliedFormat": 1 - }, - { - "version": "0680eaf14456aca6f6f63b12a0f9406a705739a7a3acb5ed260065b5acb36f7c", - "impliedFormat": 1 - }, - { - "version": "cec88027721170d910f5c750ed2440b969958d35ae89f442ed312294a36dc047", - "impliedFormat": 1 - }, - { - "version": "df2ede928ac4fe2ca298334cc8d1d2d9ce4cdf5e01bcba03d91c654350ae3b2a", - "impliedFormat": 1 - }, - { - "version": "5fdc25bfcb9b596aec0dfad2ffce96f261aa6805681d5dd0461e2935f6252a0f", - "impliedFormat": 1 - }, - { - "version": "96c9056f455b6281e798e7a0af11252936a3595abc64f4ef4d0269feaa11f1ef", - "impliedFormat": 1 - }, - { - "version": "2e715b993bf002f8b9c5f73749ef76fcca17ab73596dd31555b7c62a437e700f", - "impliedFormat": 1 - }, - { - "version": "196698186103481ceb16172ca8cc839545ba1c7d4e2ef3f7dc906de894aee8ac", - "impliedFormat": 1 - }, - "69dea24400c4444c422cbb12d98a2087abb5f8be1ea8e66c1608354cf6a4147e", - "9cc7ba34c8a0efe9765313e48e94a172717e40a807fc54dfd51fb5b7942dc494", - "a3955cd9068376e2f7af2d76f4486766cd6338d06bd5d5e0f38d899249c2349a", - "a213bb1b43815e556ee40a2fd824caf5ee5c88b68b8bd0735da13ca780efce7e", - "1720ec877e4499af488d672d0bfd66edf8729930da292b14e24b0e4c9368daf8", - "a86d834dc8f7302ff453878535cce4e13dd026c246969dd3dbcfed9c65a2e4ec", - "22abf70b5343c829546fd877ebd9dcc5a797375daeceb905bf3dd101db88ea5a", - { - "version": "c58fd00ee4976959eb24bfb350c1f17ce938b1864abbd24c86ba50bf4fe84cd8", - "signature": "44595c26a2ffab6a2ebde2fda3d535fb3a520860bedbb9ea7f0f287126c78700" - }, - "2a6547c74691dfb93682cef04ec7e3427055c5cd9b16a23faca44df83283836f", - "01e4aa0ff4292f79cd4222726a12aef93d17a1b49494f28557536578fae9ff12", - "aa935d7c33ec776492a3d9f79ae7937fa17415622e217736114d677874c8f4e3", - "e61768affa396c2cd4ff40d27d4739e46a6a2871a7e88c62fdfc78fd8e353af3", - "ae844ae4c1fd0859cec4d4d87a9ecb8f8a845624b1609ebf3ccc363d286c822a", - "bd618b93d83ad65f86943436003ea9ced237b54fea337856c63e2b40bda0bbf8", - { - "version": "8da06a202225af1d3c3cb2958382af9a531ecf6d598a166115e2b4eba856f8bc", - "signature": "57c20478239bc682a4886fa6ac2a4a1c3ad3c8951365c9459bdc7843ea4036ee" - }, - "30aa911d5bd81c1197c9861e112233ca16f02831dfc0458af6b762277950b723", - "49fe3a6d619ac02fa3a6975cd8bdd62af816e87a271cd8e43b76573d1bb45cdc", - "c559ee0df5c99ae72559ab701f876226c33ed1049e6d39d8add0fab41bf66826", - { - "version": "03858fa979f7b11d6954a37299c1e5fdae5b188208a029d6d83b2920864b4e13", - "impliedFormat": 1 - }, - { - "version": "8f060fe8760b19488120d0c5191075eb00b81f858f76824192369fcae7e2ca61", - "impliedFormat": 1 - }, - { - "version": "f4886ccfe0fe1eeda62828bd9ba45b467e7dc965d94b99c56a324cb73795dac9", - "impliedFormat": 1 - }, - { - "version": "e13451b8065f38f4260a41a626ff75bde232170123b351e562e13dc7f32d3118", - "impliedFormat": 1 - }, - { - "version": "9dedd036305407f7b74296c57fb84b3c0fcbb49031d27cc0931a74382789dbdd", - "impliedFormat": 99 - }, - { - "version": "42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3", - "impliedFormat": 1 - }, - { - "version": "600c2cfb5326759456a8fbf7740a13dd0494e8ebdeb017dc78b3ac502c5c71ce", - "impliedFormat": 99 - }, - { - "version": "bce2bb59e93d85f430bd1c63278a8d0aaa14f1a72d2e9716618faace674d6eef", - "impliedFormat": 99 - }, - { - "version": "613379c981c3082e6467d45dbacc2588d17abaec8f431a38d2ea9d122a50e7e8", - "impliedFormat": 99 - }, - { - "version": "db3c81a23f984f33afac53f4965b100bdaca6f12891f362aa49324808f383e08", - "impliedFormat": 99 - }, - { - "version": "5286c9f6ff53be81918fab35836adbc12845c7b1ad3780d38e8dd5b59125bdcf", - "impliedFormat": 99 - }, - { - "version": "028b794bae27001f841f511d41d4c1a703ae3179448154f3535f3215c79a2be5", - "impliedFormat": 99 - }, - "41de4ac2e8e90b4a50a9ab241c71d6bdc19cb3fcdb371b3e019f99e88557831d", - "8302893f0bfe072a297e556746a67edaacefe441c455e129c2bba91c1ff06ce6", - "2b42e2c78f27f6768c76206ea719b6672259ac590d72a23a3209713c80b34021", - "1b0897ecf0102228f4a2ce2ee81a332bb2223847df007625253aa3447fd5624b", - "c95671e6338301b5135902c2930ccbc2a4549f1a6768520712922e2bbd182be4", - "d3a578c08c80fca4de2d0230cea3e9e21f36f2e622d4e982f5c97c5ad4342c42", - "7d5427f0d2193102624d019ff4b92c3d5a2f02e29b7598b3f0bbb28f94d444c9", - "294378332fc2f03c95d1dc106f2e7dddb9132ccac168eed62fe00b5ac58ab66f", - { - "version": "4025f329aff95b5841a72b43ece6137a329ae9073319ab8a1f51d68132832871", - "impliedFormat": 1 - }, - "128f9b54b3a506ff4236df690b8bf1aa64db56a12eaa00cfef222b91aeddf41c", - "e6a0543656a21c5929d9dfec3f11ecf4ab595bea7ea30bf161ee11f107a2d2c5", - "2007720d6de465a3e055fce6084ca18cd2a6698b3ae15a7c95b16faf0afb6948", - "3beb88e1a0f3a97cb1a8a65c177f70162e2bec847652b5709920c2b27712d9ba", - "3008947c7c1c16a0f3b5dc4e7e4936f1c929bfb20a6517e392cd1ed57cdf2b78", - "f35bac00c275733d3c355ddcd8ba1269521f2b0203a4fda384a4ae1bbc63e866", - "769d6cd924649ffbf46b67cb11aa4de7f95bc12cb95423f4784b29ec61f3dfab", - "63ec6a79042b02723443f2826322ee7c0ce5fcf095584a192e8da613a027c542", - "9fa70702bb2fc24420fa247d35197733c173048ebe74968783afb0c1ff6385f0", - "f782e36daa9be238597422a06c516a7a10aedd074c45a80aae7a1d3064676db0", - "45736308214f6f79480de6be5ce0deae94570d834df76e520865b1e9fc26eb56", - "abcf14c8fd81aaada6280cfeafa943150b45dc1a70954f7d4fde510c65f4c98b", - "1d5b39e7a35dde06ab65c83b3021a112a34010a007c30bd5ad9737c69df9cc8c", - "ec44247e2ab99ba48738c18d230a84909ce79b5bbf0969d19df63d62d94fbe02", - "0bf33600f70b1b4ca9a2e2aa91e95e37be21aa65bd053bb6ab86d987117fbd99", - "a293045b2dedfddad6292a3333202ea15753dcf145555ec5eb60248aa62e11fd", - "9784ea684e6a75d3b4b0106844dcfef9a467a194fb893ef720b358ea5ccab7e3", - "44f3fafa86edcf1710a14a00de4527236786fa0977edd17da7c9ff54c02ccbe9", - "3c8795ddbd79fde6717baf8d6421b16a227840e808a165ff7886315416639996", - "0007100222cfd1cf955d94f169b9653a98903859600a265dc72b500e5a594d5b", - "b706507918a7d9b8441eb9a0177ce8d8e719534c5cc4b1055bf0f58d24c8211e", - "955f10ceb9ff8f39e3a57d0187db448ee024832f16abdf429bf5c60a2f492c0a", - "25e6b9e3be67c7403efe0c7b196febe595d5b806b43e8ddf5566906ca3b9daeb", - "2f76c3dcb07070f08a525ea2039260bb6818aedb07eb3e53d98cd27e952a16e3", - "ce4db45ce51f40c13cbbb4cdbcbf9fffb57941d3260a84d2effe33e7789f14e3", - "aa6f90238a5a06af030d887299023aadb41976337be9eaae8ad4bc0ec91a007d", - "1248c83b03808fa9b1db0c4fe7c7e0898bb67d6d5b2d252e0194127d1c18df72", - "479a31be2b9842378111e449d91f7cb369450a0bdaf36c3170c3d4f5ea0c3353", - "2f6a6083638359b0ab8033d338b11c29953a92d810ccf87bd1114d870edd1655", - "8cef34c5dfc5d2022bebd0cff7498f274a7cbb93b8c2516e2ae539daaec8699c", - "5c4f2bb647b3795b170dffb85ca59565a050870686d71e4af654edc081292b99", - "f689df585458ddfe4a4e6c96c1a6f2a9d40154af1e76be4da37a7e4466f9f230", - "383d243d0aa1c38970e9f590fb6e6ac5ff6184d63eb392796070733b7f63ebca", - "823d99227b27ef3838db9d37e353d71a792faba18e3d40e12843e812bb7d605e", - "0fc78e8b85cbbc4b241dbba8c7c02b03b49261427583806fd1aea5c25740b6f0", - "16fe0cd59d5ad47860fc3511c1427a30dcb9906f227d12503ac3faa353e64d1e", - "83f2522237cca3af8801c4047b8e82ad5054498955d5e04952018da9f012b512", - "68d33f22d447f16c40c2deec67cba5727b8526724b283a2f32dac6cf2134c0d5", - "1ac584e9b8fdaf68b45d3101c4e464c8c31ddb82c2b58b9a71a62b49f7205c49", - "643510b1921b76d9e8b94969ad4103a8f2c02c788694655ac4345907fb672f75", - "8e0bdffce67a6d79591c5676d91b5511aac56e8333432f76aecbb9c355925c7e", - "3fce0056f524adb1c8ea5c1c8cf4eda3e513f965f83ab9f83da217d9eda60f6d", - "235107e899b3ec4e690923baf9bad77b8036ed749454ea9d915c75971dc6b14a", - "166e665130c780e7d3b1da2563ff8732cf51cf4c0fea4bce2f4162fe6ee085bd", - "9a27c316de3bb12be20ca4b8707ff3c4ffc43af7b6f819f8c32332a86937e777", - "c52e16c4bcf432f4d1ef339328743dace5f6d715617685432d9d6ce493b8a6ea", - "4a85651e88ea09fbb4b52d74916ee19355fcbc9b2965fc8bc051c2449f67be6b", - "c3aa44c86a5950012ed86c4c001583667828c536e87673ae1ed431590dd4a8bf", - "60393427d15d6ed21c565fd024c582d5dd458025c5982d8e378203f46675406d", - "29b768344360fae679d42c157ae82f187fc5d2787c1b1bd7b37418e9ed0b3673", - { - "version": "f3d5bc7944a4c839f75f2aa0bbed3f8c3162cb51465226d9cf8fa23daad555b0", - "impliedFormat": 99 - }, - { - "version": "46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab", - "impliedFormat": 1 - }, - { - "version": "d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693", - "impliedFormat": 1 - }, - { - "version": "d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e", - "impliedFormat": 1 - }, - { - "version": "98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0", - "impliedFormat": 1 - }, - { - "version": "ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003", - "impliedFormat": 1 - }, - { - "version": "fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e", - "impliedFormat": 1 - }, - { - "version": "d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd", - "impliedFormat": 1 - }, - { - "version": "9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e", - "impliedFormat": 1 - }, - { - "version": "2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88", - "impliedFormat": 1 - }, - { - "version": "2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581", - "impliedFormat": 1 - }, - { - "version": "b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14", - "impliedFormat": 1 - }, - { - "version": "6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722", - "impliedFormat": 1 - }, - { - "version": "4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85", - "impliedFormat": 1 - }, - { - "version": "04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887", - "impliedFormat": 1 - }, - { - "version": "f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75", - "impliedFormat": 1 - }, - { - "version": "011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294", - "impliedFormat": 1 - }, - { - "version": "d406b797d7b2aff9f8bd6c023acfaa5a5fc415bfbf01975e23d415d3f54857af", - "impliedFormat": 1 - }, - { - "version": "7d71b2d1a537fe41760a16441cd95d98fcb59ddf9c714aba2fecba961ab253b6", - "impliedFormat": 1 - }, - { - "version": "a9bd8a2bbd03a72054cbdf0cd2a77fabea4e3ae591dd02b8f58bda0c34e50c1c", - "impliedFormat": 1 - }, - { - "version": "386cc88a3bdee8bc651ead59f8afc9dc5729fc933549bbd217409eabad05ba3e", - "impliedFormat": 1 - }, - { - "version": "3a0d52a6d18c1f32657b50b67eb023609df959c5f56a38be73c9fd30694c09ae", - "impliedFormat": 1 - }, - { - "version": "299084415d2fcc6fa6c877f53bea82832279fd537d93b1b3b5fc83ebb1a5dac4", - "impliedFormat": 99 - }, - { - "version": "5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e", - "impliedFormat": 1 - }, - { - "version": "f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "2b1b37d6721aa592c0dff72c55bdd0f351664906149173dfd5b46903ee07c192", - "impliedFormat": 1 - }, - { - "version": "7ddc4a8c9dea84daf50fd64b3b6fa8f750f194e5aeb211c389346a1a5afeb1f3", - "impliedFormat": 1 - }, - { - "version": "459885f5a56b31657b5ede080661b0a7003ff615f46a6ae5026bb6847eaf456a", - "impliedFormat": 1 - }, - { - "version": "83766bef36618444f68a4e24cf29efcea96192fa198cd1765a49e8eabe6811b8", - "impliedFormat": 1 - }, - { - "version": "ce1f4cc2dafdfcda54008d2f29aaf986c119f43ed469d311ffb538b0e942dbb0", - "impliedFormat": 1 - }, - { - "version": "70f02ca77cf1a06b91f94c75dbc75d43cdef97835402cb32b341773ea9775d94", - "impliedFormat": 1 - }, - { - "version": "6d7d19b2b1e6d77a266916f49312a44f249e6ac915691fb10223d8e895a18f3b", - "impliedFormat": 1 - }, - { - "version": "f9ca738d0516fdd641abdc2193d0bf9d2546e14d9b076b270fc94b528d6c0728", - "impliedFormat": 1 - }, - { - "version": "52e21e408a552236d79ab273cb72370f8b7749298d796d8ede5e2aaa33caf2ce", - "impliedFormat": 1 - }, - { - "version": "7665d8147d6b87e3dd6f89c718250fb0c68b59ea36438ac702b35c93acf37cb5", - "impliedFormat": 1 - }, - { - "version": "d7998764c13ea3d1cf51b4d594b972c36dca8f01f19a2a608c5e9546587a47c3", - "impliedFormat": 1 - }, - { - "version": "7a2de218c38ced746eaead7da15a665f2663da8e7f237c4868391c40c19aea9d", - "impliedFormat": 1 - }, - { - "version": "4c301e74e510d1e61ee764c09ec14a0398eb3ef2913e72622e0a7243bfa25666", - "impliedFormat": 1 - }, - { - "version": "7690943eace193298fafe7c09d7e8e97ae72cd413c4ac98f02781ba589db6c96", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "47a4898194fac06030dc03d8ccb78d1f73ae691b4722b0b07bb1a31647d77bc7", - "affectsGlobalScope": true, - "impliedFormat": 1 - }, - { - "version": "951bd4e1694a7b16ec339c723fa0018693fa86ee6da59c4fcc87c2244139c0e8", - "impliedFormat": 1 - } - ], - "root": [ - 56, - 60, - 61, - 68, - 176, - 668, - 669, - 932, - 933, - 962, - 966, - 1278, - 1279, - 1283, - [ - 1360, - 1373 - ], - [ - 1391, - 1394 - ], - 1397, - [ - 1400, - 1410 - ], - [ - 1416, - 1438 - ], - [ - 1440, - 1443 - ], - [ - 1446, - 1458 - ], - 1460, - [ - 1487, - 1492 - ], - [ - 1494, - 1507 - ], - 1509, - [ - 1604, - 1612 - ], - 1614, - 1615, - [ - 1618, - 1630 - ], - [ - 1635, - 1638 - ], - 1645, - 1649, - [ - 1651, - 1653 - ], - [ - 1660, - 1664 - ], - [ - 1666, - 1679 - ], - [ - 1683, - 1689 - ], - [ - 1692, - 1700 - ], - [ - 2011, - 2015 - ], - [ - 2017, - 2027 - ], - 2037, - [ - 2040, - 2048 - ], - [ - 2050, - 2052 - ], - [ - 2054, - 2059 - ], - [ - 2064, - 2071 - ], - [ - 2073, - 2092 - ], - [ - 2094, - 2097 - ], - 2170, - 2177, - 2532, - [ - 2554, - 2568 - ], - [ - 2591, - 2608 - ], - [ - 2621, - 2628 - ], - [ - 2630, - 2680 - ], - 2702 - ], - "options": { - "allowImportingTsExtensions": true, - "allowJs": true, - "allowSyntheticDefaultImports": true, - "declaration": true, - "esModuleInterop": true, - "jsx": 3, - "module": 99, - "noFallthroughCasesInSwitch": true, - "removeComments": false, - "skipLibCheck": true, - "strict": true, - "target": 99 - }, - "referencedMap": [ - [ - 2554, - 1 - ], - [ - 1461, - 2 - ], - [ - 2095, - 3 - ], - [ - 1676, - 2 - ], - [ - 1416, - 4 - ], - [ - 1442, - 5 - ], - [ - 1441, - 6 - ], - [ - 962, - 7 - ], - [ - 1440, - 8 - ], - [ - 1417, - 9 - ], - [ - 1446, - 10 - ], - [ - 1636, - 11 - ], - [ - 1436, - 12 - ], - [ - 1438, - 13 - ], - [ - 1435, - 14 - ], - [ - 1437, - 15 - ], - [ - 1434, - 16 - ], - [ - 61, - 2 - ], - [ - 2018, - 17 - ], - [ - 1492, - 18 - ], - [ - 1498, - 19 - ], - [ - 1499, - 20 - ], - [ - 1504, - 21 - ], - [ - 1505, - 22 - ], - [ - 1500, - 23 - ], - [ - 1501, - 24 - ], - [ - 1502, - 25 - ], - [ - 1503, - 26 - ], - [ - 2094, - 27 - ], - [ - 2042, - 28 - ], - [ - 2043, - 29 - ], - [ - 2044, - 30 - ], - [ - 2555, - 31 - ], - [ - 1506, - 32 - ], - [ - 2556, - 33 - ], - [ - 2557, - 34 - ], - [ - 2564, - 35 - ], - [ - 2560, - 36 - ], - [ - 1627, - 37 - ], - [ - 2562, - 38 - ], - [ - 2563, - 39 - ], - [ - 1625, - 40 - ], - [ - 1626, - 41 - ], - [ - 2011, - 42 - ], - [ - 2565, - 43 - ], - [ - 2013, - 44 - ], - [ - 2015, - 45 - ], - [ - 2014, - 46 - ], - [ - 1664, - 47 - ], - [ - 1491, - 48 - ], - [ - 1621, - 49 - ], - [ - 1653, - 50 - ], - [ - 1622, - 51 - ], - [ - 1406, - 52 - ], - [ - 1623, - 53 - ], - [ - 1628, - 54 - ], - [ - 2040, - 55 - ], - [ - 2073, - 56 - ], - [ - 1629, - 57 - ], - [ - 1630, - 58 - ], - [ - 1638, - 59 - ], - [ - 1663, - 60 - ], - [ - 1645, - 61 - ], - [ - 1668, - 62 - ], - [ - 1369, - 63 - ], - [ - 1669, - 64 - ], - [ - 1686, - 65 - ], - [ - 1684, - 66 - ], - [ - 1685, - 67 - ], - [ - 2567, - 68 - ], - [ - 1649, - 69 - ], - [ - 2568, - 70 - ], - [ - 2592, - 71 - ], - [ - 2020, - 72 - ], - [ - 2059, - 73 - ], - [ - 2025, - 74 - ], - [ - 2078, - 75 - ], - [ - 2080, - 76 - ], - [ - 2081, - 77 - ], - [ - 2082, - 78 - ], - [ - 2083, - 79 - ], - [ - 2085, - 80 - ], - [ - 2593, - 81 - ], - [ - 2079, - 82 - ], - [ - 2594, - 83 - ], - [ - 2084, - 84 - ], - [ - 2019, - 85 - ], - [ - 2022, - 86 - ], - [ - 2087, - 87 - ], - [ - 2086, - 88 - ], - [ - 2591, - 89 - ], - [ - 2561, - 90 - ], - [ - 1660, - 91 - ], - [ - 2046, - 92 - ], - [ - 2045, - 93 - ], - [ - 2596, - 94 - ], - [ - 2074, - 95 - ], - [ - 2027, - 96 - ], - [ - 2076, - 97 - ], - [ - 2058, - 98 - ], - [ - 2070, - 99 - ], - [ - 2597, - 100 - ], - [ - 2075, - 101 - ], - [ - 2067, - 102 - ], - [ - 1497, - 103 - ], - [ - 2048, - 104 - ], - [ - 2595, - 105 - ], - [ - 2598, - 106 - ], - [ - 2052, - 107 - ], - [ - 1635, - 108 - ], - [ - 1667, - 109 - ], - [ - 2599, - 110 - ], - [ - 2600, - 111 - ], - [ - 1671, - 112 - ], - [ - 1673, - 113 - ], - [ - 2068, - 114 - ], - [ - 1675, - 115 - ], - [ - 2601, - 116 - ], - [ - 2559, - 117 - ], - [ - 2054, - 118 - ], - [ - 1661, - 119 - ], - [ - 1662, - 120 - ], - [ - 2055, - 121 - ], - [ - 2056, - 122 - ], - [ - 2602, - 123 - ], - [ - 2024, - 124 - ], - [ - 2603, - 125 - ], - [ - 1607, - 126 - ], - [ - 2605, - 127 - ], - [ - 2608, - 128 - ], - [ - 1368, - 129 - ], - [ - 2627, - 130 - ], - [ - 2607, - 131 - ], - [ - 2064, - 132 - ], - [ - 2621, - 133 - ], - [ - 2622, - 134 - ], - [ - 2623, - 135 - ], - [ - 2624, - 136 - ], - [ - 2625, - 137 - ], - [ - 2626, - 138 - ], - [ - 1423, - 139 - ], - [ - 2021, - 140 - ], - [ - 1495, - 141 - ], - [ - 1619, - 142 - ], - [ - 1405, - 143 - ], - [ - 1615, - 144 - ], - [ - 1618, - 145 - ], - [ - 1620, - 146 - ], - [ - 1402, - 147 - ], - [ - 1687, - 148 - ], - [ - 1509, - 71 - ], - [ - 1496, - 149 - ], - [ - 1606, - 150 - ], - [ - 1605, - 151 - ], - [ - 1604, - 152 - ], - [ - 2566, - 153 - ], - [ - 2077, - 154 - ], - [ - 1490, - 155 - ], - [ - 1403, - 156 - ], - [ - 1404, - 156 - ], - [ - 1679, - 157 - ], - [ - 1678, - 158 - ], - [ - 1672, - 159 - ], - [ - 2057, - 160 - ], - [ - 1695, - 161 - ], - [ - 2092, - 71 - ], - [ - 1637, - 162 - ], - [ - 1443, - 163 - ], - [ - 2012, - 38 - ], - [ - 1694, - 164 - ], - [ - 1279, - 165 - ], - [ - 2017, - 166 - ], - [ - 2628, - 38 - ], - [ - 2023, - 167 - ], - [ - 1489, - 71 - ], - [ - 1494, - 71 - ], - [ - 1688, - 168 - ], - [ - 1453, - 169 - ], - [ - 1674, - 170 - ], - [ - 1677, - 38 - ], - [ - 2026, - 171 - ], - [ - 2630, - 172 - ], - [ - 1666, - 173 - ], - [ - 1699, - 173 - ], - [ - 2558, - 174 - ], - [ - 1624, - 38 - ], - [ - 1698, - 175 - ], - [ - 2631, - 176 - ], - [ - 2632, - 177 - ], - [ - 1700, - 178 - ], - [ - 1689, - 179 - ], - [ - 2633, - 180 - ], - [ - 2636, - 181 - ], - [ - 2634, - 182 - ], - [ - 2637, - 183 - ], - [ - 1652, - 184 - ], - [ - 1651, - 185 - ], - [ - 1426, - 186 - ], - [ - 2041, - 187 - ], - [ - 1427, - 2 - ], - [ - 1429, - 188 - ], - [ - 2635, - 189 - ], - [ - 1428, - 190 - ], - [ - 1431, - 191 - ], - [ - 1430, - 192 - ], - [ - 2638, - 193 - ], - [ - 2639, - 194 - ], - [ - 2640, - 195 - ], - [ - 2641, - 196 - ], - [ - 2642, - 197 - ], - [ - 2066, - 198 - ], - [ - 2065, - 199 - ], - [ - 2643, - 200 - ], - [ - 1696, - 201 - ], - [ - 2069, - 202 - ], - [ - 2606, - 203 - ], - [ - 1425, - 204 - ], - [ - 2088, - 205 - ], - [ - 2089, - 206 - ], - [ - 2071, - 203 - ], - [ - 2644, - 207 - ], - [ - 2646, - 208 - ], - [ - 2645, - 209 - ], - [ - 2647, - 210 - ], - [ - 2037, - 211 - ], - [ - 2648, - 212 - ], - [ - 2666, - 213 - ], - [ - 2649, - 214 - ], - [ - 2652, - 215 - ], - [ - 2654, - 216 - ], - [ - 2653, - 217 - ], - [ - 1693, - 218 - ], - [ - 2650, - 219 - ], - [ - 2651, - 220 - ], - [ - 1692, - 221 - ], - [ - 1507, - 222 - ], - [ - 2667, - 223 - ], - [ - 2671, - 224 - ], - [ - 2672, - 225 - ], - [ - 2655, - 2 - ], - [ - 2656, - 226 - ], - [ - 2604, - 227 - ], - [ - 2665, - 228 - ], - [ - 2657, - 229 - ], - [ - 2658, - 230 - ], - [ - 2661, - 231 - ], - [ - 2668, - 232 - ], - [ - 2660, - 233 - ], - [ - 2662, - 234 - ], - [ - 2670, - 235 - ], - [ - 2663, - 236 - ], - [ - 2091, - 237 - ], - [ - 2664, - 238 - ], - [ - 2659, - 239 - ], - [ - 2669, - 240 - ], - [ - 2673, - 241 - ], - [ - 2050, - 242 - ], - [ - 1460, - 243 - ], - [ - 1670, - 244 - ], - [ - 1418, - 245 - ], - [ - 1283, - 246 - ], - [ - 933, - 247 - ], - [ - 2051, - 248 - ], - [ - 2674, - 249 - ], - [ - 1609, - 250 - ], - [ - 1372, - 251 - ], - [ - 1373, - 252 - ], - [ - 1410, - 253 - ], - [ - 1487, - 254 - ], - [ - 2676, - 255 - ], - [ - 1397, - 256 - ], - [ - 1612, - 257 - ], - [ - 1697, - 258 - ], - [ - 1614, - 259 - ], - [ - 1449, - 260 - ], - [ - 1450, - 260 - ], - [ - 1451, - 261 - ], - [ - 1452, - 262 - ], - [ - 1457, - 263 - ], - [ - 1455, - 264 - ], - [ - 1456, - 265 - ], - [ - 1448, - 266 - ], - [ - 1360, - 267 - ], - [ - 1422, - 268 - ], - [ - 1611, - 269 - ], - [ - 1421, - 270 - ], - [ - 1371, - 271 - ], - [ - 1432, - 272 - ], - [ - 2677, - 129 - ], - [ - 1361, - 271 - ], - [ - 1420, - 273 - ], - [ - 1488, - 274 - ], - [ - 1610, - 271 - ], - [ - 1362, - 275 - ], - [ - 1363, - 271 - ], - [ - 1364, - 271 - ], - [ - 1407, - 129 - ], - [ - 1365, - 271 - ], - [ - 2675, - 129 - ], - [ - 1683, - 270 - ], - [ - 1278, - 276 - ], - [ - 1366, - 271 - ], - [ - 1400, - 277 - ], - [ - 1367, - 271 - ], - [ - 1394, - 278 - ], - [ - 1401, - 279 - ], - [ - 1433, - 280 - ], - [ - 1454, - 2 - ], - [ - 2678, - 2 - ], - [ - 932, - 2 - ], - [ - 1424, - 281 - ], - [ - 1608, - 282 - ], - [ - 1370, - 283 - ], - [ - 2090, - 284 - ], - [ - 1447, - 285 - ], - [ - 1408, - 286 - ], - [ - 2047, - 287 - ], - [ - 966, - 185 - ], - [ - 1391, - 288 - ], - [ - 668, - 289 - ], - [ - 669, - 185 - ], - [ - 1392, - 2 - ], - [ - 1409, - 2 - ], - [ - 1393, - 290 - ], - [ - 2679, - 2 - ], - [ - 1419, - 291 - ], - [ - 56, - 292 - ], - [ - 1493, - 2 - ], - [ - 176, - 293 - ], - [ - 1458, - 294 - ], - [ - 2096, - 295 - ], - [ - 2097, - 2 - ], - [ - 2170, - 296 - ], - [ - 1382, - 297 - ], - [ - 1381, - 2 - ], - [ - 1380, - 298 - ], - [ - 1377, - 299 - ], - [ - 1375, - 300 - ], - [ - 1374, - 300 - ], - [ - 1376, - 2 - ], - [ - 1379, - 2 - ], - [ - 1378, - 2 - ], - [ - 1459, - 2 - ], - [ - 1411, - 2 - ], - [ - 267, - 2 - ], - [ - 1414, - 301 - ], - [ - 1413, - 2 - ], - [ - 52, - 302 - ], - [ - 50, - 2 - ], - [ - 1445, - 303 - ], - [ - 1444, - 2 - ], - [ - 2513, - 304 - ], - [ - 2514, - 305 - ], - [ - 2509, - 306 - ], - [ - 2510, - 2 - ], - [ - 2512, - 307 - ], - [ - 2511, - 308 - ], - [ - 2531, - 309 - ], - [ - 2529, - 310 - ], - [ - 2530, - 2 - ], - [ - 175, - 311 - ], - [ - 2176, - 312 - ], - [ - 2173, - 313 - ], - [ - 2175, - 314 - ], - [ - 2174, - 313 - ], - [ - 2172, - 315 - ], - [ - 2528, - 316 - ], - [ - 2525, - 317 - ], - [ - 2355, - 318 - ], - [ - 2357, - 319 - ], - [ - 2356, - 318 - ], - [ - 2354, - 2 - ], - [ - 173, - 2 - ], - [ - 172, - 2 - ], - [ - 174, - 320 - ], - [ - 168, - 185 - ], - [ - 170, - 321 - ], - [ - 171, - 322 - ], - [ - 169, - 2 - ], - [ - 2360, - 310 - ], - [ - 2441, - 323 - ], - [ - 2440, - 324 - ], - [ - 2442, - 325 - ], - [ - 2353, - 310 - ], - [ - 2444, - 326 - ], - [ - 2443, - 327 - ], - [ - 2445, - 328 - ], - [ - 2446, - 329 - ], - [ - 2358, - 330 - ], - [ - 2359, - 310 - ], - [ - 2367, - 331 - ], - [ - 2366, - 310 - ], - [ - 2390, - 332 - ], - [ - 2363, - 333 - ], - [ - 2362, - 334 - ], - [ - 2361, - 315 - ], - [ - 2447, - 335 - ], - [ - 2365, - 336 - ], - [ - 2364, - 310 - ], - [ - 2171, - 2 - ], - [ - 2448, - 2 - ], - [ - 2515, - 337 - ], - [ - 2516, - 2 - ], - [ - 2526, - 338 - ], - [ - 2524, - 2 - ], - [ - 2517, - 2 - ], - [ - 2523, - 2 - ], - [ - 2521, - 2 - ], - [ - 2520, - 2 - ], - [ - 2518, - 2 - ], - [ - 2519, - 2 - ], - [ - 2522, - 2 - ], - [ - 2527, - 339 - ], - [ - 2458, - 340 - ], - [ - 2459, - 2 - ], - [ - 2461, - 341 - ], - [ - 271, - 342 - ], - [ - 269, - 343 - ], - [ - 268, - 2 - ], - [ - 270, - 344 - ], - [ - 57, - 2 - ], - [ - 59, - 2 - ], - [ - 58, - 2 - ], - [ - 2544, - 345 - ], - [ - 2545, - 2 - ], - [ - 2552, - 346 - ], - [ - 2543, - 347 - ], - [ - 2553, - 348 - ], - [ - 2538, - 349 - ], - [ - 2539, - 350 - ], - [ - 2016, - 351 - ], - [ - 66, - 352 - ], - [ - 65, - 2 - ], - [ - 1463, - 353 - ], - [ - 1462, - 354 - ], - [ - 2389, - 355 - ], - [ - 2368, - 2 - ], - [ - 2387, - 356 - ], - [ - 2384, - 357 - ], - [ - 2383, - 2 - ], - [ - 2381, - 357 - ], - [ - 2388, - 358 - ], - [ - 2382, - 2 - ], - [ - 2385, - 357 - ], - [ - 2386, - 2 - ], - [ - 2369, - 2 - ], - [ - 2378, - 2 - ], - [ - 2379, - 359 - ], - [ - 2371, - 360 - ], - [ - 2373, - 2 - ], - [ - 2374, - 2 - ], - [ - 2377, - 361 - ], - [ - 2375, - 362 - ], - [ - 2376, - 2 - ], - [ - 2372, - 363 - ], - [ - 2370, - 364 - ], - [ - 2380, - 357 - ], - [ - 2687, - 365 - ], - [ - 2690, - 366 - ], - [ - 2689, - 367 - ], - [ - 2688, - 368 - ], - [ - 2686, - 369 - ], - [ - 2682, - 370 - ], - [ - 2685, - 371 - ], - [ - 2684, - 372 - ], - [ - 2683, - 373 - ], - [ - 2681, - 369 - ], - [ - 2696, - 374 - ], - [ - 2695, - 375 - ], - [ - 2694, - 376 - ], - [ - 2693, - 377 - ], - [ - 2692, - 378 - ], - [ - 2691, - 379 - ], - [ - 672, - 185 - ], - [ - 674, - 380 - ], - [ - 673, - 2 - ], - [ - 1681, - 71 - ], - [ - 671, - 381 - ], - [ - 670, - 2 - ], - [ - 1785, - 2 - ], - [ - 1784, - 2 - ], - [ - 1790, - 382 - ], - [ - 1780, - 2 - ], - [ - 1783, - 383 - ], - [ - 1787, - 384 - ], - [ - 1786, - 385 - ], - [ - 1789, - 2 - ], - [ - 1788, - 385 - ], - [ - 1782, - 386 - ], - [ - 1781, - 185 - ], - [ - 2489, - 387 - ], - [ - 2491, - 388 - ], - [ - 2484, - 389 - ], - [ - 2483, - 2 - ], - [ - 2485, - 2 - ], - [ - 2486, - 390 - ], - [ - 2487, - 2 - ], - [ - 2488, - 2 - ], - [ - 2490, - 391 - ], - [ - 2168, - 392 - ], - [ - 1292, - 393 - ], - [ - 1293, - 394 - ], - [ - 1294, - 393 - ], - [ - 1295, - 38 - ], - [ - 1296, - 395 - ], - [ - 1297, - 396 - ], - [ - 1298, - 395 - ], - [ - 1299, - 396 - ], - [ - 1300, - 396 - ], - [ - 1317, - 397 - ], - [ - 1301, - 393 - ], - [ - 1302, - 393 - ], - [ - 1303, - 393 - ], - [ - 1304, - 398 - ], - [ - 1305, - 38 - ], - [ - 1306, - 38 - ], - [ - 1291, - 398 - ], - [ - 1307, - 2 - ], - [ - 1308, - 2 - ], - [ - 1309, - 396 - ], - [ - 1310, - 393 - ], - [ - 1311, - 394 - ], - [ - 1312, - 395 - ], - [ - 1313, - 395 - ], - [ - 1314, - 399 - ], - [ - 1315, - 396 - ], - [ - 1316, - 2 - ], - [ - 1359, - 400 - ], - [ - 1357, - 401 - ], - [ - 1356, - 402 - ], - [ - 1358, - 401 - ], - [ - 1332, - 403 - ], - [ - 1319, - 404 - ], - [ - 1321, - 405 - ], - [ - 1322, - 405 - ], - [ - 1324, - 406 - ], - [ - 1323, - 38 - ], - [ - 1325, - 407 - ], - [ - 1326, - 407 - ], - [ - 1327, - 408 - ], - [ - 1328, - 409 - ], - [ - 1320, - 410 - ], - [ - 1329, - 2 - ], - [ - 1330, - 404 - ], - [ - 1318, - 2 - ], - [ - 1331, - 71 - ], - [ - 1286, - 411 - ], - [ - 1285, - 411 - ], - [ - 1288, - 412 - ], - [ - 1290, - 413 - ], - [ - 1289, - 414 - ], - [ - 1287, - 414 - ], - [ - 1284, - 415 - ], - [ - 2179, - 416 - ], - [ - 2178, - 2 - ], - [ - 2345, - 2 - ], - [ - 2191, - 417 - ], - [ - 2181, - 2 - ], - [ - 2207, - 418 - ], - [ - 2268, - 2 - ], - [ - 2343, - 2 - ], - [ - 2347, - 419 - ], - [ - 2344, - 2 - ], - [ - 2346, - 420 - ], - [ - 2182, - 421 - ], - [ - 2183, - 421 - ], - [ - 2184, - 421 - ], - [ - 2185, - 421 - ], - [ - 2186, - 421 - ], - [ - 2188, - 421 - ], - [ - 2187, - 421 - ], - [ - 2189, - 421 - ], - [ - 2227, - 422 - ], - [ - 2228, - 421 - ], - [ - 2229, - 421 - ], - [ - 2230, - 421 - ], - [ - 2234, - 423 - ], - [ - 2233, - 310 - ], - [ - 2231, - 421 - ], - [ - 2232, - 421 - ], - [ - 2235, - 421 - ], - [ - 2236, - 421 - ], - [ - 2237, - 424 - ], - [ - 2238, - 424 - ], - [ - 2239, - 421 - ], - [ - 2240, - 421 - ], - [ - 2241, - 425 - ], - [ - 2242, - 421 - ], - [ - 2243, - 426 - ], - [ - 2244, - 427 - ], - [ - 2245, - 421 - ], - [ - 2246, - 421 - ], - [ - 2247, - 428 - ], - [ - 2248, - 429 - ], - [ - 2249, - 421 - ], - [ - 2250, - 421 - ], - [ - 2251, - 427 - ], - [ - 2252, - 421 - ], - [ - 2253, - 421 - ], - [ - 2254, - 421 - ], - [ - 2255, - 424 - ], - [ - 2256, - 430 - ], - [ - 2259, - 431 - ], - [ - 2261, - 432 - ], - [ - 2258, - 433 - ], - [ - 2260, - 434 - ], - [ - 2257, - 421 - ], - [ - 2197, - 430 - ], - [ - 2262, - 421 - ], - [ - 2307, - 435 - ], - [ - 2263, - 421 - ], - [ - 2264, - 436 - ], - [ - 2265, - 437 - ], - [ - 2266, - 421 - ], - [ - 2272, - 438 - ], - [ - 2267, - 421 - ], - [ - 2270, - 439 - ], - [ - 2271, - 421 - ], - [ - 2273, - 424 - ], - [ - 2274, - 421 - ], - [ - 2275, - 421 - ], - [ - 2276, - 424 - ], - [ - 2277, - 421 - ], - [ - 2278, - 421 - ], - [ - 2279, - 421 - ], - [ - 2280, - 424 - ], - [ - 2281, - 424 - ], - [ - 2282, - 421 - ], - [ - 2283, - 421 - ], - [ - 2284, - 421 - ], - [ - 2285, - 421 - ], - [ - 2286, - 421 - ], - [ - 2287, - 421 - ], - [ - 2288, - 421 - ], - [ - 2289, - 421 - ], - [ - 2290, - 421 - ], - [ - 2292, - 440 - ], - [ - 2293, - 421 - ], - [ - 2294, - 421 - ], - [ - 2295, - 421 - ], - [ - 2296, - 441 - ], - [ - 2297, - 421 - ], - [ - 2298, - 421 - ], - [ - 2299, - 421 - ], - [ - 2300, - 425 - ], - [ - 2301, - 437 - ], - [ - 2302, - 442 - ], - [ - 2303, - 421 - ], - [ - 2304, - 421 - ], - [ - 2305, - 430 - ], - [ - 2306, - 425 - ], - [ - 2192, - 443 - ], - [ - 2199, - 444 - ], - [ - 2313, - 443 - ], - [ - 2314, - 2 - ], - [ - 2316, - 445 - ], - [ - 2226, - 446 - ], - [ - 2321, - 443 - ], - [ - 2210, - 447 - ], - [ - 2205, - 448 - ], - [ - 2211, - 449 - ], - [ - 2202, - 450 - ], - [ - 2212, - 451 - ], - [ - 2204, - 452 - ], - [ - 2203, - 453 - ], - [ - 2337, - 425 - ], - [ - 2338, - 425 - ], - [ - 2340, - 454 - ], - [ - 2339, - 455 - ], - [ - 2322, - 443 - ], - [ - 2209, - 456 - ], - [ - 2308, - 443 - ], - [ - 2350, - 457 - ], - [ - 2200, - 444 - ], - [ - 2323, - 443 - ], - [ - 2213, - 2 - ], - [ - 2352, - 458 - ], - [ - 2214, - 459 - ], - [ - 2215, - 460 - ], - [ - 2216, - 461 - ], - [ - 2328, - 429 - ], - [ - 2329, - 437 - ], - [ - 2330, - 462 - ], - [ - 2331, - 429 - ], - [ - 2332, - 463 - ], - [ - 2333, - 464 - ], - [ - 2325, - 2 - ], - [ - 2196, - 443 - ], - [ - 2193, - 437 - ], - [ - 2194, - 2 - ], - [ - 2208, - 465 - ], - [ - 2201, - 466 - ], - [ - 2319, - 467 - ], - [ - 2317, - 468 - ], - [ - 2318, - 469 - ], - [ - 2334, - 470 - ], - [ - 2335, - 429 - ], - [ - 2309, - 471 - ], - [ - 2218, - 472 - ], - [ - 2206, - 473 - ], - [ - 2217, - 474 - ], - [ - 2351, - 475 - ], - [ - 2310, - 443 - ], - [ - 2320, - 310 - ], - [ - 2219, - 2 - ], - [ - 2324, - 443 - ], - [ - 2311, - 476 - ], - [ - 2327, - 2 - ], - [ - 2341, - 430 - ], - [ - 2342, - 430 - ], - [ - 2336, - 429 - ], - [ - 2223, - 477 - ], - [ - 2221, - 478 - ], - [ - 2222, - 479 - ], - [ - 2312, - 480 - ], - [ - 2348, - 481 - ], - [ - 2315, - 482 - ], - [ - 2291, - 483 - ], - [ - 2326, - 2 - ], - [ - 2269, - 2 - ], - [ - 2224, - 484 - ], - [ - 2195, - 2 - ], - [ - 2198, - 2 - ], - [ - 2220, - 2 - ], - [ - 2349, - 429 - ], - [ - 2225, - 485 - ], - [ - 2180, - 2 - ], - [ - 1650, - 38 - ], - [ - 2537, - 2 - ], - [ - 665, - 486 - ], - [ - 1808, - 487 - ], - [ - 1810, - 488 - ], - [ - 1811, - 489 - ], - [ - 1806, - 490 - ], - [ - 1795, - 2 - ], - [ - 1802, - 491 - ], - [ - 1801, - 492 - ], - [ - 1800, - 493 - ], - [ - 1807, - 2 - ], - [ - 1809, - 487 - ], - [ - 1805, - 494 - ], - [ - 1796, - 495 - ], - [ - 1798, - 496 - ], - [ - 1799, - 497 - ], - [ - 1794, - 498 - ], - [ - 1792, - 2 - ], - [ - 1804, - 499 - ], - [ - 1793, - 2 - ], - [ - 1803, - 500 - ], - [ - 1797, - 501 - ], - [ - 1822, - 502 - ], - [ - 1828, - 503 - ], - [ - 1819, - 504 - ], - [ - 1827, - 38 - ], - [ - 1820, - 502 - ], - [ - 1821, - 38 - ], - [ - 1818, - 504 - ], - [ - 1791, - 2 - ], - [ - 1812, - 505 - ], - [ - 1826, - 504 - ], - [ - 1823, - 504 - ], - [ - 1824, - 504 - ], - [ - 1825, - 504 - ], - [ - 1813, - 504 - ], - [ - 1814, - 504 - ], - [ - 1816, - 504 - ], - [ - 1817, - 504 - ], - [ - 1815, - 504 - ], - [ - 1982, - 506 - ], - [ - 1983, - 507 - ], - [ - 1953, - 508 - ], - [ - 1984, - 509 - ], - [ - 1985, - 510 - ], - [ - 1978, - 2 - ], - [ - 1952, - 511 - ], - [ - 1949, - 512 - ], - [ - 1973, - 513 - ], - [ - 1972, - 514 - ], - [ - 1974, - 515 - ], - [ - 1980, - 516 - ], - [ - 1975, - 517 - ], - [ - 1981, - 518 - ], - [ - 1971, - 519 - ], - [ - 1970, - 2 - ], - [ - 1976, - 520 - ], - [ - 1977, - 521 - ], - [ - 1951, - 522 - ], - [ - 1979, - 523 - ], - [ - 1950, - 524 - ], - [ - 1998, - 525 - ], - [ - 2010, - 526 - ], - [ - 1987, - 527 - ], - [ - 1986, - 528 - ], - [ - 2006, - 2 - ], - [ - 2008, - 529 - ], - [ - 1990, - 2 - ], - [ - 1988, - 530 - ], - [ - 2009, - 531 - ], - [ - 1992, - 532 - ], - [ - 1994, - 533 - ], - [ - 1993, - 534 - ], - [ - 1991, - 535 - ], - [ - 2007, - 536 - ], - [ - 2005, - 537 - ], - [ - 2001, - 538 - ], - [ - 2002, - 538 - ], - [ - 2003, - 539 - ], - [ - 2004, - 540 - ], - [ - 1995, - 541 - ], - [ - 1997, - 542 - ], - [ - 1996, - 543 - ], - [ - 1999, - 544 - ], - [ - 1989, - 545 - ], - [ - 2000, - 546 - ], - [ - 1965, - 547 - ], - [ - 1963, - 548 - ], - [ - 1962, - 549 - ], - [ - 1961, - 2 - ], - [ - 1960, - 550 - ], - [ - 1959, - 551 - ], - [ - 1964, - 552 - ], - [ - 1966, - 553 - ], - [ - 1829, - 554 - ], - [ - 1956, - 555 - ], - [ - 1837, - 556 - ], - [ - 1836, - 557 - ], - [ - 1830, - 557 - ], - [ - 1835, - 558 - ], - [ - 1833, - 557 - ], - [ - 1832, - 557 - ], - [ - 1834, - 557 - ], - [ - 1831, - 2 - ], - [ - 1838, - 2 - ], - [ - 1839, - 559 - ], - [ - 1841, - 560 - ], - [ - 1840, - 561 - ], - [ - 1954, - 2 - ], - [ - 1968, - 2 - ], - [ - 1967, - 562 - ], - [ - 1969, - 563 - ], - [ - 1958, - 564 - ], - [ - 1955, - 565 - ], - [ - 1957, - 566 - ], - [ - 55, - 567 - ], - [ - 51, - 302 - ], - [ - 53, - 568 - ], - [ - 54, - 302 - ], - [ - 2190, - 369 - ], - [ - 2492, - 569 - ], - [ - 2533, - 2 - ], - [ - 2535, - 570 - ], - [ - 2536, - 571 - ], - [ - 2704, - 572 - ], - [ - 2703, - 573 - ], - [ - 2391, - 2 - ], - [ - 1895, - 574 - ], - [ - 1896, - 574 - ], - [ - 1897, - 575 - ], - [ - 1844, - 576 - ], - [ - 1898, - 577 - ], - [ - 1899, - 578 - ], - [ - 1900, - 579 - ], - [ - 1842, - 2 - ], - [ - 1901, - 580 - ], - [ - 1902, - 581 - ], - [ - 1903, - 582 - ], - [ - 1904, - 583 - ], - [ - 1905, - 584 - ], - [ - 1906, - 585 - ], - [ - 1907, - 585 - ], - [ - 1908, - 586 - ], - [ - 1909, - 587 - ], - [ - 1910, - 588 - ], - [ - 1911, - 589 - ], - [ - 1845, - 2 - ], - [ - 1843, - 2 - ], - [ - 1912, - 590 - ], - [ - 1913, - 591 - ], - [ - 1914, - 592 - ], - [ - 1948, - 593 - ], - [ - 1915, - 594 - ], - [ - 1916, - 2 - ], - [ - 1917, - 595 - ], - [ - 1918, - 596 - ], - [ - 1919, - 597 - ], - [ - 1920, - 598 - ], - [ - 1921, - 599 - ], - [ - 1922, - 600 - ], - [ - 1923, - 601 - ], - [ - 1924, - 602 - ], - [ - 1925, - 603 - ], - [ - 1926, - 603 - ], - [ - 1927, - 604 - ], - [ - 1928, - 2 - ], - [ - 1929, - 605 - ], - [ - 1930, - 606 - ], - [ - 1932, - 607 - ], - [ - 1931, - 608 - ], - [ - 1933, - 609 - ], - [ - 1934, - 610 - ], - [ - 1935, - 611 - ], - [ - 1936, - 612 - ], - [ - 1937, - 613 - ], - [ - 1938, - 614 - ], - [ - 1939, - 615 - ], - [ - 1940, - 616 - ], - [ - 1941, - 617 - ], - [ - 1942, - 618 - ], - [ - 1943, - 619 - ], - [ - 1944, - 620 - ], - [ - 1945, - 621 - ], - [ - 1846, - 2 - ], - [ - 1847, - 622 - ], - [ - 1848, - 2 - ], - [ - 1849, - 2 - ], - [ - 1891, - 623 - ], - [ - 1892, - 624 - ], - [ - 1893, - 2 - ], - [ - 1894, - 609 - ], - [ - 1946, - 625 - ], - [ - 1947, - 626 - ], - [ - 662, - 627 - ], - [ - 663, - 628 - ], - [ - 657, - 629 - ], - [ - 658, - 630 - ], - [ - 659, - 2 - ], - [ - 655, - 2 - ], - [ - 661, - 631 - ], - [ - 660, - 2 - ], - [ - 656, - 632 - ], - [ - 848, - 38 - ], - [ - 76, - 2 - ], - [ - 78, - 633 - ], - [ - 2614, - 38 - ], - [ - 2541, - 2 - ], - [ - 1613, - 2 - ], - [ - 664, - 2 - ], - [ - 2142, - 2 - ], - [ - 2144, - 634 - ], - [ - 2143, - 635 - ], - [ - 2716, - 636 - ], - [ - 2715, - 637 - ], - [ - 2714, - 638 - ], - [ - 2717, - 639 - ], - [ - 2713, - 640 - ], - [ - 2710, - 2 - ], - [ - 2711, - 2 - ], - [ - 2709, - 641 - ], - [ - 2706, - 2 - ], - [ - 2712, - 642 - ], - [ - 2708, - 2 - ], - [ - 2707, - 2 - ], - [ - 2437, - 643 - ], - [ - 2394, - 2 - ], - [ - 2396, - 644 - ], - [ - 2395, - 645 - ], - [ - 2400, - 646 - ], - [ - 2435, - 647 - ], - [ - 2432, - 648 - ], - [ - 2434, - 649 - ], - [ - 2397, - 648 - ], - [ - 2398, - 650 - ], - [ - 2402, - 650 - ], - [ - 2401, - 651 - ], - [ - 2399, - 652 - ], - [ - 2433, - 653 - ], - [ - 2457, - 654 - ], - [ - 2431, - 648 - ], - [ - 2436, - 655 - ], - [ - 2429, - 2 - ], - [ - 2430, - 2 - ], - [ - 2403, - 656 - ], - [ - 2408, - 648 - ], - [ - 2410, - 648 - ], - [ - 2405, - 648 - ], - [ - 2406, - 656 - ], - [ - 2412, - 648 - ], - [ - 2413, - 657 - ], - [ - 2404, - 648 - ], - [ - 2409, - 648 - ], - [ - 2411, - 648 - ], - [ - 2407, - 648 - ], - [ - 2427, - 658 - ], - [ - 2426, - 648 - ], - [ - 2428, - 659 - ], - [ - 2422, - 648 - ], - [ - 2454, - 660 - ], - [ - 2452, - 661 - ], - [ - 2451, - 648 - ], - [ - 2449, - 646 - ], - [ - 2456, - 662 - ], - [ - 2453, - 663 - ], - [ - 2450, - 661 - ], - [ - 2455, - 661 - ], - [ - 2424, - 648 - ], - [ - 2423, - 648 - ], - [ - 2419, - 648 - ], - [ - 2425, - 664 - ], - [ - 2420, - 648 - ], - [ - 2421, - 665 - ], - [ - 2414, - 648 - ], - [ - 2415, - 648 - ], - [ - 2416, - 648 - ], - [ - 2417, - 648 - ], - [ - 2418, - 648 - ], - [ - 1275, - 666 - ], - [ - 69, - 2 - ], - [ - 2705, - 667 - ], - [ - 2534, - 2 - ], - [ - 77, - 2 - ], - [ - 1385, - 668 - ], - [ - 1384, - 669 - ], - [ - 1383, - 2 - ], - [ - 2718, - 670 - ], - [ - 2719, - 671 - ], - [ - 2720, - 672 - ], - [ - 1654, - 2 - ], - [ - 1659, - 673 - ], - [ - 1655, - 2 - ], - [ - 1656, - 674 - ], - [ - 1657, - 2 - ], - [ - 1658, - 2 - ], - [ - 1389, - 675 - ], - [ - 1386, - 2 - ], - [ - 1387, - 2 - ], - [ - 1388, - 2 - ], - [ - 1390, - 676 - ], - [ - 667, - 2 - ], - [ - 2549, - 677 - ], - [ - 2700, - 678 - ], - [ - 2699, - 679 - ], - [ - 2698, - 680 - ], - [ - 2697, - 681 - ], - [ - 2460, - 682 - ], - [ - 2393, - 2 - ], - [ - 2482, - 683 - ], - [ - 2479, - 684 - ], - [ - 2477, - 685 - ], - [ - 2480, - 686 - ], - [ - 2475, - 687 - ], - [ - 2474, - 688 - ], - [ - 2471, - 689 - ], - [ - 2472, - 690 - ], - [ - 2473, - 691 - ], - [ - 2467, - 692 - ], - [ - 2478, - 693 - ], - [ - 2476, - 694 - ], - [ - 2465, - 695 - ], - [ - 2481, - 696 - ], - [ - 2466, - 697 - ], - [ - 2464, - 698 - ], - [ - 2462, - 699 - ], - [ - 2701, - 2 - ], - [ - 2494, - 700 - ], - [ - 2496, - 701 - ], - [ - 2498, - 702 - ], - [ - 2497, - 703 - ], - [ - 2495, - 701 - ], - [ - 2508, - 704 - ], - [ - 2505, - 705 - ], - [ - 2507, - 706 - ], - [ - 2506, - 707 - ], - [ - 2504, - 700 - ], - [ - 2499, - 708 - ], - [ - 2500, - 708 - ], - [ - 2503, - 709 - ], - [ - 2501, - 708 - ], - [ - 2502, - 708 - ], - [ - 2493, - 710 - ], - [ - 2547, - 711 - ], - [ - 2546, - 573 - ], - [ - 2548, - 712 - ], - [ - 2542, - 713 - ], - [ - 2540, - 2 - ], - [ - 2551, - 714 - ], - [ - 2550, - 573 - ], - [ - 2463, - 715 - ], - [ - 2118, - 2 - ], - [ - 2099, - 716 - ], - [ - 2107, - 717 - ], - [ - 2100, - 2 - ], - [ - 2102, - 718 - ], - [ - 2101, - 2 - ], - [ - 2103, - 2 - ], - [ - 2106, - 719 - ], - [ - 2105, - 720 - ], - [ - 2104, - 2 - ], - [ - 2098, - 2 - ], - [ - 2165, - 721 - ], - [ - 2167, - 722 - ], - [ - 2166, - 721 - ], - [ - 2164, - 723 - ], - [ - 2145, - 724 - ], - [ - 2146, - 725 - ], - [ - 2149, - 726 - ], - [ - 2147, - 727 - ], - [ - 2148, - 728 - ], - [ - 2109, - 729 - ], - [ - 2108, - 392 - ], - [ - 2112, - 730 - ], - [ - 2110, - 729 - ], - [ - 2111, - 2 - ], - [ - 2155, - 2 - ], - [ - 2156, - 731 - ], - [ - 2157, - 2 - ], - [ - 2158, - 731 - ], - [ - 2159, - 731 - ], - [ - 2161, - 732 - ], - [ - 2160, - 731 - ], - [ - 2154, - 733 - ], - [ - 2128, - 2 - ], - [ - 2122, - 734 - ], - [ - 2123, - 734 - ], - [ - 2120, - 735 - ], - [ - 2124, - 736 - ], - [ - 2125, - 737 - ], - [ - 2126, - 2 - ], - [ - 2121, - 738 - ], - [ - 2127, - 739 - ], - [ - 2129, - 740 - ], - [ - 2130, - 741 - ], - [ - 2152, - 742 - ], - [ - 2117, - 2 - ], - [ - 2138, - 743 - ], - [ - 2135, - 744 - ], - [ - 2116, - 733 - ], - [ - 2162, - 745 - ], - [ - 2132, - 727 - ], - [ - 2153, - 746 - ], - [ - 2136, - 747 - ], - [ - 2139, - 748 - ], - [ - 2151, - 749 - ], - [ - 2114, - 750 - ], - [ - 2115, - 2 - ], - [ - 2133, - 2 - ], - [ - 2141, - 724 - ], - [ - 2150, - 751 - ], - [ - 2113, - 2 - ], - [ - 2137, - 752 - ], - [ - 2140, - 753 - ], - [ - 2134, - 701 - ], - [ - 2163, - 754 - ], - [ - 2131, - 755 - ], - [ - 2119, - 2 - ], - [ - 2038, - 598 - ], - [ - 1616, - 2 - ], - [ - 1617, - 756 - ], - [ - 2468, - 757 - ], - [ - 2470, - 758 - ], - [ - 2053, - 2 - ], - [ - 931, - 759 - ], - [ - 871, - 760 - ], - [ - 675, - 2 - ], - [ - 866, - 761 - ], - [ - 872, - 762 - ], - [ - 868, - 763 - ], - [ - 870, - 763 - ], - [ - 869, - 763 - ], - [ - 867, - 764 - ], - [ - 930, - 765 - ], - [ - 873, - 185 - ], - [ - 2629, - 185 - ], - [ - 654, - 2 - ], - [ - 1665, - 185 - ], - [ - 1508, - 185 - ], - [ - 67, - 2 - ], - [ - 1680, - 71 - ], - [ - 1282, - 766 - ], - [ - 1281, - 767 - ], - [ - 1280, - 2 - ], - [ - 2584, - 768 - ], - [ - 2585, - 769 - ], - [ - 2586, - 768 - ], - [ - 2587, - 769 - ], - [ - 2588, - 768 - ], - [ - 2589, - 768 - ], - [ - 2590, - 770 - ], - [ - 2583, - 771 - ], - [ - 1634, - 2 - ], - [ - 927, - 772 - ], - [ - 910, - 773 - ], - [ - 908, - 774 - ], - [ - 919, - 774 - ], - [ - 909, - 775 - ], - [ - 877, - 71 - ], - [ - 878, - 71 - ], - [ - 926, - 776 - ], - [ - 925, - 777 - ], - [ - 924, - 778 - ], - [ - 922, - 779 - ], - [ - 920, - 71 - ], - [ - 911, - 2 - ], - [ - 915, - 780 - ], - [ - 912, - 781 - ], - [ - 918, - 782 - ], - [ - 913, - 783 - ], - [ - 917, - 185 - ], - [ - 914, - 783 - ], - [ - 916, - 784 - ], - [ - 923, - 785 - ], - [ - 874, - 2 - ], - [ - 928, - 2 - ], - [ - 897, - 786 - ], - [ - 895, - 787 - ], - [ - 887, - 787 - ], - [ - 881, - 788 - ], - [ - 884, - 789 - ], - [ - 921, - 790 - ], - [ - 900, - 791 - ], - [ - 888, - 792 - ], - [ - 885, - 793 - ], - [ - 898, - 785 - ], - [ - 899, - 794 - ], - [ - 907, - 795 - ], - [ - 882, - 2 - ], - [ - 906, - 796 - ], - [ - 901, - 797 - ], - [ - 905, - 798 - ], - [ - 904, - 799 - ], - [ - 891, - 800 - ], - [ - 893, - 796 - ], - [ - 902, - 796 - ], - [ - 903, - 801 - ], - [ - 889, - 787 - ], - [ - 896, - 787 - ], - [ - 890, - 787 - ], - [ - 892, - 787 - ], - [ - 894, - 787 - ], - [ - 886, - 787 - ], - [ - 929, - 802 - ], - [ - 876, - 2 - ], - [ - 875, - 2 - ], - [ - 879, - 2 - ], - [ - 880, - 2 - ], - [ - 883, - 803 - ], - [ - 666, - 2 - ], - [ - 1481, - 804 - ], - [ - 1482, - 805 - ], - [ - 1483, - 806 - ], - [ - 1480, - 807 - ], - [ - 1486, - 808 - ], - [ - 1476, - 2 - ], - [ - 1477, - 809 - ], - [ - 1479, - 810 - ], - [ - 1478, - 811 - ], - [ - 1475, - 812 - ], - [ - 1466, - 813 - ], - [ - 1465, - 2 - ], - [ - 1469, - 814 - ], - [ - 1468, - 815 - ], - [ - 1472, - 816 - ], - [ - 1470, - 2 - ], - [ - 1474, - 2 - ], - [ - 1464, - 809 - ], - [ - 1467, - 2 - ], - [ - 1471, - 817 - ], - [ - 1473, - 818 - ], - [ - 1484, - 2 - ], - [ - 1485, - 809 - ], - [ - 2039, - 2 - ], - [ - 1647, - 819 - ], - [ - 1646, - 71 - ], - [ - 1648, - 820 - ], - [ - 2049, - 2 - ], - [ - 2093, - 71 - ], - [ - 1412, - 2 - ], - [ - 2063, - 821 - ], - [ - 2060, - 71 - ], - [ - 2061, - 38 - ], - [ - 2062, - 71 - ], - [ - 955, - 822 - ], - [ - 937, - 2 - ], - [ - 938, - 2 - ], - [ - 948, - 823 - ], - [ - 949, - 824 - ], - [ - 950, - 824 - ], - [ - 943, - 2 - ], - [ - 941, - 2 - ], - [ - 944, - 825 - ], - [ - 942, - 2 - ], - [ - 940, - 2 - ], - [ - 939, - 2 - ], - [ - 951, - 2 - ], - [ - 953, - 2 - ], - [ - 947, - 826 - ], - [ - 952, - 823 - ], - [ - 946, - 827 - ], - [ - 945, - 2 - ], - [ - 954, - 827 - ], - [ - 1682, - 828 - ], - [ - 1399, - 2 - ], - [ - 1276, - 2 - ], - [ - 1631, - 38 - ], - [ - 2612, - 829 - ], - [ - 2610, - 830 - ], - [ - 2609, - 71 - ], - [ - 2611, - 831 - ], - [ - 1632, - 71 - ], - [ - 1510, - 71 - ], - [ - 1603, - 832 - ], - [ - 1439, - 2 - ], - [ - 803, - 833 - ], - [ - 804, - 2 - ], - [ - 805, - 834 - ], - [ - 807, - 835 - ], - [ - 808, - 836 - ], - [ - 806, - 834 - ], - [ - 809, - 834 - ], - [ - 819, - 837 - ], - [ - 810, - 834 - ], - [ - 811, - 834 - ], - [ - 815, - 838 - ], - [ - 813, - 839 - ], - [ - 812, - 834 - ], - [ - 814, - 839 - ], - [ - 816, - 840 - ], - [ - 817, - 841 - ], - [ - 818, - 842 - ], - [ - 820, - 2 - ], - [ - 722, - 2 - ], - [ - 723, - 2 - ], - [ - 733, - 843 - ], - [ - 724, - 2 - ], - [ - 725, - 834 - ], - [ - 728, - 844 - ], - [ - 726, - 845 - ], - [ - 727, - 846 - ], - [ - 693, - 2 - ], - [ - 729, - 2 - ], - [ - 732, - 847 - ], - [ - 730, - 185 - ], - [ - 731, - 2 - ], - [ - 713, - 848 - ], - [ - 717, - 849 - ], - [ - 718, - 351 - ], - [ - 736, - 38 - ], - [ - 821, - 38 - ], - [ - 822, - 834 - ], - [ - 719, - 849 - ], - [ - 720, - 351 - ], - [ - 721, - 351 - ], - [ - 734, - 850 - ], - [ - 825, - 851 - ], - [ - 800, - 852 - ], - [ - 795, - 853 - ], - [ - 801, - 854 - ], - [ - 802, - 855 - ], - [ - 798, - 856 - ], - [ - 799, - 857 - ], - [ - 797, - 858 - ], - [ - 707, - 859 - ], - [ - 708, - 860 - ], - [ - 695, - 861 - ], - [ - 698, - 862 - ], - [ - 696, - 861 - ], - [ - 697, - 861 - ], - [ - 694, - 863 - ], - [ - 711, - 864 - ], - [ - 758, - 863 - ], - [ - 759, - 865 - ], - [ - 789, - 866 - ], - [ - 764, - 867 - ], - [ - 763, - 868 - ], - [ - 765, - 869 - ], - [ - 766, - 870 - ], - [ - 767, - 871 - ], - [ - 781, - 872 - ], - [ - 778, - 873 - ], - [ - 779, - 863 - ], - [ - 780, - 874 - ], - [ - 783, - 875 - ], - [ - 782, - 876 - ], - [ - 786, - 877 - ], - [ - 784, - 874 - ], - [ - 785, - 878 - ], - [ - 787, - 879 - ], - [ - 788, - 880 - ], - [ - 769, - 881 - ], - [ - 770, - 881 - ], - [ - 777, - 882 - ], - [ - 771, - 883 - ], - [ - 772, - 884 - ], - [ - 776, - 885 - ], - [ - 773, - 886 - ], - [ - 774, - 884 - ], - [ - 775, - 881 - ], - [ - 768, - 887 - ], - [ - 760, - 876 - ], - [ - 762, - 888 - ], - [ - 761, - 889 - ], - [ - 796, - 890 - ], - [ - 710, - 891 - ], - [ - 709, - 863 - ], - [ - 701, - 892 - ], - [ - 699, - 71 - ], - [ - 703, - 893 - ], - [ - 700, - 2 - ], - [ - 706, - 894 - ], - [ - 705, - 895 - ], - [ - 704, - 896 - ], - [ - 702, - 892 - ], - [ - 712, - 834 - ], - [ - 826, - 2 - ], - [ - 827, - 2 - ], - [ - 828, - 897 - ], - [ - 716, - 898 - ], - [ - 793, - 899 - ], - [ - 844, - 900 - ], - [ - 829, - 834 - ], - [ - 830, - 901 - ], - [ - 831, - 902 - ], - [ - 832, - 901 - ], - [ - 834, - 903 - ], - [ - 835, - 834 - ], - [ - 836, - 902 - ], - [ - 837, - 904 - ], - [ - 838, - 901 - ], - [ - 833, - 902 - ], - [ - 839, - 897 - ], - [ - 840, - 902 - ], - [ - 841, - 2 - ], - [ - 842, - 901 - ], - [ - 843, - 834 - ], - [ - 865, - 905 - ], - [ - 846, - 906 - ], - [ - 845, - 2 - ], - [ - 847, - 834 - ], - [ - 849, - 907 - ], - [ - 714, - 834 - ], - [ - 737, - 908 - ], - [ - 738, - 909 - ], - [ - 715, - 834 - ], - [ - 735, - 834 - ], - [ - 739, - 910 - ], - [ - 740, - 910 - ], - [ - 741, - 910 - ], - [ - 749, - 911 - ], - [ - 742, - 910 - ], - [ - 743, - 910 - ], - [ - 744, - 910 - ], - [ - 745, - 910 - ], - [ - 746, - 910 - ], - [ - 747, - 910 - ], - [ - 748, - 910 - ], - [ - 750, - 912 - ], - [ - 751, - 910 - ], - [ - 752, - 910 - ], - [ - 756, - 913 - ], - [ - 753, - 910 - ], - [ - 754, - 910 - ], - [ - 755, - 910 - ], - [ - 757, - 914 - ], - [ - 823, - 834 - ], - [ - 824, - 834 - ], - [ - 850, - 2 - ], - [ - 851, - 901 - ], - [ - 852, - 901 - ], - [ - 857, - 915 - ], - [ - 853, - 901 - ], - [ - 854, - 901 - ], - [ - 855, - 2 - ], - [ - 856, - 901 - ], - [ - 858, - 2 - ], - [ - 859, - 834 - ], - [ - 676, - 2 - ], - [ - 792, - 916 - ], - [ - 791, - 917 - ], - [ - 790, - 918 - ], - [ - 861, - 919 - ], - [ - 860, - 834 - ], - [ - 863, - 920 - ], - [ - 862, - 919 - ], - [ - 794, - 901 - ], - [ - 864, - 921 - ], - [ - 2169, - 2 - ], - [ - 182, - 922 - ], - [ - 181, - 923 - ], - [ - 178, - 924 - ], - [ - 179, - 925 - ], - [ - 180, - 926 - ], - [ - 177, - 185 - ], - [ - 1277, - 2 - ], - [ - 1395, - 2 - ], - [ - 1396, - 927 - ], - [ - 1353, - 928 - ], - [ - 1336, - 185 - ], - [ - 1354, - 929 - ], - [ - 1337, - 930 - ], - [ - 1347, - 38 - ], - [ - 1340, - 931 - ], - [ - 1344, - 932 - ], - [ - 1349, - 71 - ], - [ - 1348, - 71 - ], - [ - 1345, - 932 - ], - [ - 1342, - 933 - ], - [ - 1346, - 931 - ], - [ - 1343, - 932 - ], - [ - 1335, - 2 - ], - [ - 1339, - 2 - ], - [ - 1333, - 185 - ], - [ - 1341, - 185 - ], - [ - 1351, - 2 - ], - [ - 1355, - 934 - ], - [ - 1334, - 935 - ], - [ - 1338, - 936 - ], - [ - 1352, - 185 - ], - [ - 1350, - 2 - ], - [ - 1415, - 2 - ], - [ - 1641, - 71 - ], - [ - 1639, - 38 - ], - [ - 1642, - 71 - ], - [ - 1640, - 38 - ], - [ - 1644, - 937 - ], - [ - 1643, - 2 - ], - [ - 1600, - 2 - ], - [ - 1564, - 938 - ], - [ - 1516, - 939 - ], - [ - 1517, - 940 - ], - [ - 1518, - 38 - ], - [ - 1519, - 939 - ], - [ - 1540, - 941 - ], - [ - 1541, - 942 - ], - [ - 1542, - 941 - ], - [ - 1543, - 942 - ], - [ - 1544, - 942 - ], - [ - 1546, - 943 - ], - [ - 1547, - 944 - ], - [ - 1548, - 943 - ], - [ - 1549, - 945 - ], - [ - 1550, - 946 - ], - [ - 1551, - 946 - ], - [ - 1552, - 942 - ], - [ - 1553, - 947 - ], - [ - 1554, - 941 - ], - [ - 1555, - 948 - ], - [ - 1556, - 944 - ], - [ - 1557, - 942 - ], - [ - 1558, - 945 - ], - [ - 1559, - 944 - ], - [ - 1560, - 945 - ], - [ - 1561, - 947 - ], - [ - 1562, - 944 - ], - [ - 1563, - 939 - ], - [ - 1539, - 949 - ], - [ - 1545, - 2 - ], - [ - 1520, - 950 - ], - [ - 1513, - 939 - ], - [ - 1521, - 951 - ], - [ - 1522, - 939 - ], - [ - 1523, - 939 - ], - [ - 1524, - 939 - ], - [ - 1525, - 939 - ], - [ - 1526, - 939 - ], - [ - 1527, - 939 - ], - [ - 1528, - 939 - ], - [ - 1529, - 939 - ], - [ - 1530, - 939 - ], - [ - 1531, - 939 - ], - [ - 1512, - 949 - ], - [ - 1532, - 949 - ], - [ - 1515, - 952 - ], - [ - 1533, - 939 - ], - [ - 1536, - 953 - ], - [ - 1537, - 954 - ], - [ - 1535, - 954 - ], - [ - 1538, - 939 - ], - [ - 1584, - 955 - ], - [ - 1569, - 955 - ], - [ - 1570, - 955 - ], - [ - 1568, - 2 - ], - [ - 1571, - 956 - ], - [ - 1572, - 955 - ], - [ - 1592, - 957 - ], - [ - 1593, - 957 - ], - [ - 1594, - 957 - ], - [ - 1595, - 955 - ], - [ - 1596, - 957 - ], - [ - 1597, - 957 - ], - [ - 1598, - 957 - ], - [ - 1591, - 957 - ], - [ - 1573, - 955 - ], - [ - 1574, - 955 - ], - [ - 1575, - 955 - ], - [ - 1599, - 958 - ], - [ - 1585, - 955 - ], - [ - 1576, - 957 - ], - [ - 1577, - 955 - ], - [ - 1578, - 955 - ], - [ - 1579, - 955 - ], - [ - 1580, - 955 - ], - [ - 1581, - 955 - ], - [ - 1582, - 957 - ], - [ - 1583, - 955 - ], - [ - 1586, - 955 - ], - [ - 1587, - 955 - ], - [ - 1588, - 955 - ], - [ - 1589, - 955 - ], - [ - 1590, - 955 - ], - [ - 1514, - 185 - ], - [ - 1602, - 959 - ], - [ - 1534, - 945 - ], - [ - 1511, - 71 - ], - [ - 1601, - 960 - ], - [ - 1567, - 2 - ], - [ - 1566, - 961 - ], - [ - 1565, - 962 - ], - [ - 2036, - 963 - ], - [ - 2035, - 964 - ], - [ - 2032, - 965 - ], - [ - 2031, - 185 - ], - [ - 2034, - 966 - ], - [ - 2033, - 967 - ], - [ - 2028, - 2 - ], - [ - 2030, - 968 - ], - [ - 2029, - 185 - ], - [ - 2620, - 969 - ], - [ - 2615, - 970 - ], - [ - 2618, - 971 - ], - [ - 2616, - 972 - ], - [ - 2617, - 973 - ], - [ - 2619, - 972 - ], - [ - 2613, - 974 - ], - [ - 1398, - 2 - ], - [ - 965, - 975 - ], - [ - 963, - 185 - ], - [ - 964, - 976 - ], - [ - 2072, - 38 - ], - [ - 681, - 977 - ], - [ - 682, - 2 - ], - [ - 692, - 978 - ], - [ - 684, - 979 - ], - [ - 678, - 980 - ], - [ - 677, - 2 - ], - [ - 685, - 981 - ], - [ - 680, - 981 - ], - [ - 686, - 981 - ], - [ - 683, - 981 - ], - [ - 687, - 981 - ], - [ - 688, - 981 - ], - [ - 691, - 982 - ], - [ - 690, - 983 - ], - [ - 689, - 984 - ], - [ - 679, - 2 - ], - [ - 1633, - 185 - ], - [ - 103, - 985 - ], - [ - 104, - 2 - ], - [ - 99, - 986 - ], - [ - 105, - 2 - ], - [ - 106, - 987 - ], - [ - 109, - 988 - ], - [ - 110, - 2 - ], - [ - 111, - 989 - ], - [ - 112, - 990 - ], - [ - 132, - 991 - ], - [ - 113, - 2 - ], - [ - 114, - 992 - ], - [ - 116, - 993 - ], - [ - 118, - 994 - ], - [ - 119, - 38 - ], - [ - 120, - 995 - ], - [ - 121, - 996 - ], - [ - 87, - 996 - ], - [ - 122, - 997 - ], - [ - 89, - 998 - ], - [ - 123, - 999 - ], - [ - 124, - 990 - ], - [ - 125, - 1000 - ], - [ - 126, - 1001 - ], - [ - 127, - 2 - ], - [ - 84, - 1002 - ], - [ - 129, - 1003 - ], - [ - 131, - 1004 - ], - [ - 130, - 1005 - ], - [ - 128, - 1006 - ], - [ - 88, - 997 - ], - [ - 85, - 1007 - ], - [ - 86, - 1008 - ], - [ - 133, - 2 - ], - [ - 115, - 1009 - ], - [ - 107, - 1009 - ], - [ - 108, - 1010 - ], - [ - 92, - 1011 - ], - [ - 90, - 2 - ], - [ - 91, - 2 - ], - [ - 134, - 1009 - ], - [ - 135, - 1012 - ], - [ - 136, - 2 - ], - [ - 137, - 993 - ], - [ - 95, - 1013 - ], - [ - 97, - 1014 - ], - [ - 138, - 2 - ], - [ - 139, - 1015 - ], - [ - 140, - 2 - ], - [ - 141, - 2 - ], - [ - 142, - 2 - ], - [ - 144, - 1016 - ], - [ - 145, - 2 - ], - [ - 96, - 38 - ], - [ - 148, - 1017 - ], - [ - 146, - 38 - ], - [ - 147, - 1018 - ], - [ - 149, - 2 - ], - [ - 150, - 1019 - ], - [ - 152, - 1019 - ], - [ - 151, - 1019 - ], - [ - 102, - 1019 - ], - [ - 101, - 1020 - ], - [ - 100, - 1021 - ], - [ - 98, - 1022 - ], - [ - 153, - 2 - ], - [ - 154, - 1023 - ], - [ - 155, - 1024 - ], - [ - 82, - 1018 - ], - [ - 156, - 988 - ], - [ - 157, - 988 - ], - [ - 165, - 2 - ], - [ - 166, - 185 - ], - [ - 159, - 1025 - ], - [ - 160, - 1009 - ], - [ - 143, - 2 - ], - [ - 161, - 2 - ], - [ - 162, - 2 - ], - [ - 74, - 2 - ], - [ - 71, - 2 - ], - [ - 163, - 2 - ], - [ - 94, - 1026 - ], - [ - 93, - 71 - ], - [ - 158, - 2 - ], - [ - 75, - 1027 - ], - [ - 167, - 1028 - ], - [ - 70, - 1029 - ], - [ - 72, - 1030 - ], - [ - 73, - 2 - ], - [ - 117, - 2 - ], - [ - 79, - 2 - ], - [ - 164, - 185 - ], - [ - 80, - 2 - ], - [ - 83, - 1007 - ], - [ - 81, - 38 - ], - [ - 2439, - 1031 - ], - [ - 2438, - 1032 - ], - [ - 2392, - 1033 - ], - [ - 2469, - 1034 - ], - [ - 2570, - 1035 - ], - [ - 2571, - 1035 - ], - [ - 2573, - 1035 - ], - [ - 2572, - 1035 - ], - [ - 2574, - 1035 - ], - [ - 2578, - 1035 - ], - [ - 2579, - 1035 - ], - [ - 2580, - 1035 - ], - [ - 2581, - 1036 - ], - [ - 2575, - 1035 - ], - [ - 2582, - 1037 - ], - [ - 2577, - 1035 - ], - [ - 2576, - 2 - ], - [ - 2569, - 2 - ], - [ - 48, - 2 - ], - [ - 49, - 2 - ], - [ - 8, - 2 - ], - [ - 9, - 2 - ], - [ - 11, - 2 - ], - [ - 10, - 2 - ], - [ - 2, - 2 - ], - [ - 12, - 2 - ], - [ - 13, - 2 - ], - [ - 14, - 2 - ], - [ - 15, - 2 - ], - [ - 16, - 2 - ], - [ - 17, - 2 - ], - [ - 18, - 2 - ], - [ - 19, - 2 - ], - [ - 3, - 2 - ], - [ - 20, - 2 - ], - [ - 21, - 2 - ], - [ - 4, - 2 - ], - [ - 22, - 2 - ], - [ - 26, - 2 - ], - [ - 23, - 2 - ], - [ - 24, - 2 - ], - [ - 25, - 2 - ], - [ - 27, - 2 - ], - [ - 28, - 2 - ], - [ - 29, - 2 - ], - [ - 5, - 2 - ], - [ - 30, - 2 - ], - [ - 31, - 2 - ], - [ - 32, - 2 - ], - [ - 33, - 2 - ], - [ - 6, - 2 - ], - [ - 37, - 2 - ], - [ - 34, - 2 - ], - [ - 35, - 2 - ], - [ - 36, - 2 - ], - [ - 38, - 2 - ], - [ - 7, - 2 - ], - [ - 39, - 2 - ], - [ - 44, - 2 - ], - [ - 45, - 2 - ], - [ - 40, - 2 - ], - [ - 41, - 2 - ], - [ - 42, - 2 - ], - [ - 43, - 2 - ], - [ - 1, - 2 - ], - [ - 46, - 2 - ], - [ - 47, - 2 - ], - [ - 1867, - 1038 - ], - [ - 1879, - 1039 - ], - [ - 1865, - 1040 - ], - [ - 1880, - 1041 - ], - [ - 1889, - 1042 - ], - [ - 1856, - 1043 - ], - [ - 1857, - 1044 - ], - [ - 1855, - 1045 - ], - [ - 1888, - 512 - ], - [ - 1883, - 1046 - ], - [ - 1887, - 1047 - ], - [ - 1859, - 1048 - ], - [ - 1876, - 1049 - ], - [ - 1858, - 1050 - ], - [ - 1886, - 1051 - ], - [ - 1853, - 1052 - ], - [ - 1854, - 1046 - ], - [ - 1860, - 1053 - ], - [ - 1861, - 2 - ], - [ - 1866, - 1054 - ], - [ - 1864, - 1053 - ], - [ - 1851, - 1055 - ], - [ - 1890, - 1056 - ], - [ - 1881, - 1057 - ], - [ - 1870, - 1058 - ], - [ - 1869, - 1053 - ], - [ - 1871, - 1059 - ], - [ - 1874, - 1060 - ], - [ - 1868, - 1061 - ], - [ - 1872, - 1062 - ], - [ - 1884, - 512 - ], - [ - 1862, - 1063 - ], - [ - 1863, - 1064 - ], - [ - 1875, - 1065 - ], - [ - 1852, - 1041 - ], - [ - 1878, - 1066 - ], - [ - 1877, - 1053 - ], - [ - 1873, - 1067 - ], - [ - 1882, - 2 - ], - [ - 1850, - 2 - ], - [ - 1885, - 1068 - ], - [ - 936, - 1069 - ], - [ - 961, - 1070 - ], - [ - 959, - 1071 - ], - [ - 957, - 1071 - ], - [ - 960, - 1071 - ], - [ - 956, - 1071 - ], - [ - 958, - 1071 - ], - [ - 935, - 1071 - ], - [ - 934, - 2 - ], - [ - 60, - 2 - ], - [ - 2177, - 1072 - ], - [ - 2532, - 1073 - ], - [ - 2680, - 1074 - ], - [ - 2702, - 1075 - ], - [ - 68, - 2 - ], - [ - 652, - 1076 - ], - [ - 651, - 1077 - ], - [ - 624, - 1078 - ], - [ - 649, - 1079 - ], - [ - 648, - 1080 - ], - [ - 646, - 1081 - ], - [ - 647, - 1078 - ], - [ - 644, - 1082 - ], - [ - 653, - 1083 - ], - [ - 634, - 1078 - ], - [ - 627, - 1078 - ], - [ - 628, - 2 - ], - [ - 633, - 1078 - ], - [ - 625, - 2 - ], - [ - 638, - 1084 - ], - [ - 637, - 1078 - ], - [ - 636, - 2 - ], - [ - 632, - 1078 - ], - [ - 626, - 2 - ], - [ - 629, - 2 - ], - [ - 631, - 1078 - ], - [ - 630, - 2 - ], - [ - 635, - 2 - ], - [ - 645, - 1085 - ], - [ - 650, - 1081 - ], - [ - 641, - 1086 - ], - [ - 643, - 1087 - ], - [ - 639, - 2 - ], - [ - 642, - 1086 - ], - [ - 640, - 1086 - ], - [ - 619, - 1088 - ], - [ - 605, - 2 - ], - [ - 618, - 1089 - ], - [ - 620, - 1090 - ], - [ - 594, - 1091 - ], - [ - 608, - 1092 - ], - [ - 599, - 1088 - ], - [ - 601, - 1093 - ], - [ - 603, - 2 - ], - [ - 609, - 1094 - ], - [ - 614, - 1095 - ], - [ - 580, - 1096 - ], - [ - 560, - 1097 - ], - [ - 589, - 1098 - ], - [ - 590, - 1099 - ], - [ - 579, - 1100 - ], - [ - 559, - 1101 - ], - [ - 519, - 1102 - ], - [ - 600, - 1103 - ], - [ - 593, - 1103 - ], - [ - 604, - 1104 - ], - [ - 552, - 2 - ], - [ - 592, - 1105 - ], - [ - 595, - 1105 - ], - [ - 598, - 1106 - ], - [ - 602, - 1105 - ], - [ - 607, - 1107 - ], - [ - 557, - 1108 - ], - [ - 555, - 1109 - ], - [ - 613, - 1105 - ], - [ - 612, - 1110 - ], - [ - 606, - 1105 - ], - [ - 615, - 1111 - ], - [ - 611, - 1111 - ], - [ - 591, - 1105 - ], - [ - 558, - 1112 - ], - [ - 617, - 1105 - ], - [ - 551, - 1113 - ], - [ - 550, - 1114 - ], - [ - 549, - 1115 - ], - [ - 597, - 1116 - ], - [ - 616, - 1117 - ], - [ - 521, - 1118 - ], - [ - 556, - 1119 - ], - [ - 517, - 1120 - ], - [ - 520, - 1121 - ], - [ - 596, - 1122 - ], - [ - 553, - 1123 - ], - [ - 610, - 1124 - ], - [ - 554, - 1125 - ], - [ - 623, - 1126 - ], - [ - 522, - 1127 - ], - [ - 621, - 1128 - ], - [ - 277, - 1101 - ], - [ - 523, - 2 - ], - [ - 524, - 2 - ], - [ - 525, - 2 - ], - [ - 527, - 1115 - ], - [ - 546, - 1129 - ], - [ - 622, - 2 - ], - [ - 528, - 1094 - ], - [ - 529, - 2 - ], - [ - 530, - 2 - ], - [ - 547, - 2 - ], - [ - 531, - 1094 - ], - [ - 532, - 2 - ], - [ - 533, - 2 - ], - [ - 534, - 2 - ], - [ - 535, - 2 - ], - [ - 536, - 2 - ], - [ - 537, - 2 - ], - [ - 538, - 2 - ], - [ - 548, - 1130 - ], - [ - 526, - 2 - ], - [ - 539, - 2 - ], - [ - 540, - 2 - ], - [ - 541, - 2 - ], - [ - 542, - 2 - ], - [ - 543, - 2 - ], - [ - 544, - 1094 - ], - [ - 545, - 1094 - ], - [ - 561, - 2 - ], - [ - 567, - 1131 - ], - [ - 563, - 1132 - ], - [ - 566, - 1133 - ], - [ - 571, - 1134 - ], - [ - 573, - 1135 - ], - [ - 568, - 1136 - ], - [ - 565, - 1137 - ], - [ - 564, - 2 - ], - [ - 578, - 1138 - ], - [ - 572, - 2 - ], - [ - 569, - 2 - ], - [ - 562, - 2 - ], - [ - 575, - 1139 - ], - [ - 574, - 1140 - ], - [ - 570, - 2 - ], - [ - 576, - 1134 - ], - [ - 577, - 1141 - ], - [ - 370, - 2 - ], - [ - 481, - 1142 - ], - [ - 371, - 1143 - ], - [ - 372, - 1144 - ], - [ - 500, - 1145 - ], - [ - 501, - 2 - ], - [ - 502, - 1146 - ], - [ - 503, - 1147 - ], - [ - 504, - 1148 - ], - [ - 505, - 1149 - ], - [ - 493, - 1150 - ], - [ - 488, - 1151 - ], - [ - 489, - 1152 - ], - [ - 490, - 1153 - ], - [ - 492, - 1148 - ], - [ - 491, - 1154 - ], - [ - 487, - 1150 - ], - [ - 494, - 1151 - ], - [ - 496, - 1155 - ], - [ - 495, - 1156 - ], - [ - 486, - 1148 - ], - [ - 485, - 1157 - ], - [ - 499, - 1150 - ], - [ - 482, - 1151 - ], - [ - 483, - 1158 - ], - [ - 484, - 1159 - ], - [ - 498, - 1148 - ], - [ - 497, - 1160 - ], - [ - 373, - 1151 - ], - [ - 368, - 1161 - ], - [ - 478, - 1162 - ], - [ - 369, - 1163 - ], - [ - 480, - 1164 - ], - [ - 479, - 1165 - ], - [ - 396, - 1166 - ], - [ - 463, - 1167 - ], - [ - 427, - 1168 - ], - [ - 408, - 1169 - ], - [ - 315, - 1170 - ], - [ - 516, - 486 - ], - [ - 465, - 1171 - ], - [ - 507, - 1172 - ], - [ - 506, - 1143 - ], - [ - 294, - 1173 - ], - [ - 303, - 1174 - ], - [ - 307, - 1175 - ], - [ - 414, - 1176 - ], - [ - 313, - 1177 - ], - [ - 298, - 1178 - ], - [ - 308, - 1179 - ], - [ - 405, - 1177 - ], - [ - 389, - 1177 - ], - [ - 419, - 1180 - ], - [ - 475, - 1177 - ], - [ - 286, - 1181 - ], - [ - 293, - 1182 - ], - [ - 287, - 1181 - ], - [ - 318, - 1177 - ], - [ - 328, - 1183 - ], - [ - 329, - 1184 - ], - [ - 302, - 1185 - ], - [ - 310, - 1186 - ], - [ - 311, - 1181 - ], - [ - 312, - 1187 - ], - [ - 358, - 1188 - ], - [ - 359, - 1189 - ], - [ - 360, - 1190 - ], - [ - 380, - 1177 - ], - [ - 471, - 1177 - ], - [ - 288, - 1177 - ], - [ - 351, - 1191 - ], - [ - 295, - 1192 - ], - [ - 304, - 1181 - ], - [ - 306, - 1193 - ], - [ - 361, - 1181 - ], - [ - 362, - 1194 - ], - [ - 363, - 1195 - ], - [ - 364, - 1195 - ], - [ - 365, - 1195 - ], - [ - 317, - 1196 - ], - [ - 345, - 1197 - ], - [ - 299, - 1198 - ], - [ - 332, - 1177 - ], - [ - 357, - 1177 - ], - [ - 289, - 1177 - ], - [ - 333, - 1177 - ], - [ - 334, - 1199 - ], - [ - 335, - 1177 - ], - [ - 285, - 1177 - ], - [ - 331, - 1200 - ], - [ - 337, - 1201 - ], - [ - 423, - 1202 - ], - [ - 421, - 1177 - ], - [ - 422, - 1203 - ], - [ - 424, - 1204 - ], - [ - 338, - 1177 - ], - [ - 470, - 1177 - ], - [ - 474, - 1177 - ], - [ - 353, - 1205 - ], - [ - 305, - 1173 - ], - [ - 339, - 1177 - ], - [ - 319, - 1206 - ], - [ - 320, - 1207 - ], - [ - 336, - 1177 - ], - [ - 314, - 1177 - ], - [ - 512, - 1208 - ], - [ - 476, - 1208 - ], - [ - 284, - 2 - ], - [ - 390, - 1177 - ], - [ - 406, - 1177 - ], - [ - 340, - 1177 - ], - [ - 341, - 1209 - ], - [ - 321, - 1177 - ], - [ - 413, - 1210 - ], - [ - 407, - 1177 - ], - [ - 411, - 1211 - ], - [ - 412, - 1212 - ], - [ - 300, - 1213 - ], - [ - 347, - 1177 - ], - [ - 354, - 1214 - ], - [ - 297, - 1177 - ], - [ - 323, - 1215 - ], - [ - 292, - 1216 - ], - [ - 296, - 1192 - ], - [ - 326, - 1217 - ], - [ - 290, - 1181 - ], - [ - 322, - 1177 - ], - [ - 342, - 1177 - ], - [ - 346, - 1218 - ], - [ - 325, - 1219 - ], - [ - 343, - 1177 - ], - [ - 324, - 1220 - ], - [ - 291, - 1195 - ], - [ - 327, - 1177 - ], - [ - 355, - 1177 - ], - [ - 356, - 1181 - ], - [ - 473, - 1177 - ], - [ - 472, - 1177 - ], - [ - 301, - 1213 - ], - [ - 349, - 1221 - ], - [ - 350, - 1177 - ], - [ - 348, - 1177 - ], - [ - 344, - 1177 - ], - [ - 445, - 1222 - ], - [ - 352, - 1177 - ], - [ - 309, - 1177 - ], - [ - 330, - 1223 - ], - [ - 393, - 1224 - ], - [ - 410, - 1225 - ], - [ - 381, - 1226 - ], - [ - 378, - 1227 - ], - [ - 428, - 1228 - ], - [ - 399, - 1229 - ], - [ - 446, - 1230 - ], - [ - 395, - 1231 - ], - [ - 398, - 1232 - ], - [ - 415, - 1233 - ], - [ - 429, - 1234 - ], - [ - 448, - 1235 - ], - [ - 397, - 1236 - ], - [ - 403, - 1237 - ], - [ - 388, - 1238 - ], - [ - 426, - 1239 - ], - [ - 515, - 1240 - ], - [ - 447, - 1241 - ], - [ - 391, - 1242 - ], - [ - 456, - 1243 - ], - [ - 508, - 1244 - ], - [ - 509, - 1244 - ], - [ - 375, - 1245 - ], - [ - 511, - 1244 - ], - [ - 510, - 1244 - ], - [ - 417, - 1246 - ], - [ - 420, - 1247 - ], - [ - 455, - 1248 - ], - [ - 453, - 1249 - ], - [ - 279, - 2 - ], - [ - 418, - 1250 - ], - [ - 402, - 1251 - ], - [ - 452, - 1252 - ], - [ - 278, - 2 - ], - [ - 394, - 1253 - ], - [ - 425, - 1254 - ], - [ - 457, - 1255 - ], - [ - 282, - 2 - ], - [ - 401, - 1256 - ], - [ - 450, - 1257 - ], - [ - 451, - 1258 - ], - [ - 416, - 1259 - ], - [ - 449, - 1260 - ], - [ - 387, - 1261 - ], - [ - 409, - 1262 - ], - [ - 454, - 1263 - ], - [ - 280, - 2 - ], - [ - 400, - 1264 - ], - [ - 367, - 1265 - ], - [ - 477, - 1266 - ], - [ - 366, - 1267 - ], - [ - 458, - 1268 - ], - [ - 468, - 1269 - ], - [ - 469, - 1270 - ], - [ - 467, - 1271 - ], - [ - 439, - 1272 - ], - [ - 376, - 1273 - ], - [ - 440, - 1274 - ], - [ - 466, - 1275 - ], - [ - 382, - 1276 - ], - [ - 385, - 1277 - ], - [ - 430, - 1278 - ], - [ - 432, - 1279 - ], - [ - 386, - 1280 - ], - [ - 383, - 1280 - ], - [ - 379, - 1281 - ], - [ - 433, - 1282 - ], - [ - 434, - 1283 - ], - [ - 435, - 1284 - ], - [ - 460, - 1285 - ], - [ - 443, - 1286 - ], - [ - 441, - 1287 - ], - [ - 436, - 1288 - ], - [ - 437, - 1289 - ], - [ - 438, - 1290 - ], - [ - 461, - 1291 - ], - [ - 444, - 1292 - ], - [ - 442, - 1293 - ], - [ - 384, - 1294 - ], - [ - 462, - 1295 - ], - [ - 431, - 1296 - ], - [ - 459, - 1297 - ], - [ - 392, - 1298 - ], - [ - 377, - 1161 - ], - [ - 316, - 1299 - ], - [ - 513, - 1300 - ], - [ - 514, - 2 - ], - [ - 464, - 1301 - ], - [ - 374, - 2 - ], - [ - 404, - 2 - ], - [ - 281, - 2 - ], - [ - 283, - 1302 - ], - [ - 587, - 2 - ], - [ - 588, - 666 - ], - [ - 582, - 1303 - ], - [ - 581, - 2 - ], - [ - 584, - 1304 - ], - [ - 583, - 2 - ], - [ - 586, - 1305 - ], - [ - 585, - 1305 - ], - [ - 276, - 1306 - ], - [ - 1273, - 2 - ], - [ - 1274, - 2 - ], - [ - 1690, - 2 - ], - [ - 1691, - 1307 - ], - [ - 1271, - 1308 - ], - [ - 1138, - 1309 - ], - [ - 1139, - 1310 - ], - [ - 1137, - 2 - ], - [ - 1231, - 1311 - ], - [ - 1232, - 1312 - ], - [ - 1269, - 1313 - ], - [ - 1270, - 1314 - ], - [ - 1267, - 1315 - ], - [ - 1268, - 1316 - ], - [ - 1257, - 1317 - ], - [ - 1258, - 1318 - ], - [ - 1256, - 1319 - ], - [ - 1140, - 1315 - ], - [ - 1141, - 1320 - ], - [ - 1254, - 1321 - ], - [ - 1255, - 1322 - ], - [ - 1227, - 1315 - ], - [ - 1228, - 1323 - ], - [ - 1146, - 1324 - ], - [ - 1147, - 1325 - ], - [ - 1136, - 1326 - ], - [ - 1135, - 1315 - ], - [ - 1260, - 1327 - ], - [ - 1259, - 1328 - ], - [ - 1234, - 1329 - ], - [ - 1233, - 1330 - ], - [ - 1264, - 1331 - ], - [ - 1263, - 1315 - ], - [ - 1262, - 1332 - ], - [ - 1261, - 1315 - ], - [ - 1253, - 1333 - ], - [ - 1252, - 1334 - ], - [ - 1240, - 1335 - ], - [ - 1239, - 1315 - ], - [ - 1242, - 1336 - ], - [ - 1241, - 1315 - ], - [ - 1266, - 1337 - ], - [ - 1265, - 1338 - ], - [ - 1250, - 1339 - ], - [ - 1249, - 1340 - ], - [ - 1246, - 1341 - ], - [ - 1245, - 1342 - ], - [ - 1145, - 1343 - ], - [ - 1144, - 1344 - ], - [ - 1149, - 1345 - ], - [ - 1148, - 1346 - ], - [ - 1150, - 1315 - ], - [ - 1272, - 1347 - ], - [ - 1156, - 2 - ], - [ - 1177, - 1348 - ], - [ - 1251, - 1349 - ], - [ - 1155, - 1350 - ], - [ - 1176, - 1351 - ], - [ - 1175, - 1352 - ], - [ - 1162, - 1353 - ], - [ - 1169, - 1353 - ], - [ - 1160, - 1353 - ], - [ - 1166, - 1353 - ], - [ - 1170, - 1353 - ], - [ - 1161, - 1353 - ], - [ - 1163, - 1353 - ], - [ - 1168, - 1353 - ], - [ - 1173, - 1354 - ], - [ - 1159, - 1353 - ], - [ - 1171, - 1353 - ], - [ - 1164, - 1353 - ], - [ - 1167, - 1355 - ], - [ - 1165, - 1353 - ], - [ - 1172, - 1353 - ], - [ - 1174, - 1356 - ], - [ - 1152, - 1315 - ], - [ - 1153, - 2 - ], - [ - 1181, - 2 - ], - [ - 1178, - 1357 - ], - [ - 1182, - 2 - ], - [ - 1180, - 1358 - ], - [ - 1151, - 1359 - ], - [ - 1048, - 1360 - ], - [ - 985, - 1361 - ], - [ - 986, - 1362 - ], - [ - 987, - 1363 - ], - [ - 988, - 1364 - ], - [ - 989, - 1365 - ], - [ - 990, - 1366 - ], - [ - 991, - 1367 - ], - [ - 992, - 1368 - ], - [ - 993, - 1369 - ], - [ - 994, - 1370 - ], - [ - 995, - 1371 - ], - [ - 996, - 1372 - ], - [ - 997, - 1373 - ], - [ - 998, - 1374 - ], - [ - 999, - 1375 - ], - [ - 1000, - 1376 - ], - [ - 1040, - 1377 - ], - [ - 1001, - 1378 - ], - [ - 1002, - 1379 - ], - [ - 1003, - 1380 - ], - [ - 1004, - 1381 - ], - [ - 1005, - 1382 - ], - [ - 1006, - 1383 - ], - [ - 1007, - 1384 - ], - [ - 1008, - 1385 - ], - [ - 1009, - 1386 - ], - [ - 1010, - 1387 - ], - [ - 1011, - 1388 - ], - [ - 1012, - 1389 - ], - [ - 1013, - 1390 - ], - [ - 1014, - 1391 - ], - [ - 1015, - 1392 - ], - [ - 1016, - 1393 - ], - [ - 1017, - 1394 - ], - [ - 1018, - 1395 - ], - [ - 1019, - 1396 - ], - [ - 1020, - 1397 - ], - [ - 1021, - 1398 - ], - [ - 1022, - 1399 - ], - [ - 1023, - 1400 - ], - [ - 1024, - 1401 - ], - [ - 1025, - 1402 - ], - [ - 1026, - 1403 - ], - [ - 1027, - 1404 - ], - [ - 1028, - 1405 - ], - [ - 1029, - 1406 - ], - [ - 1030, - 1407 - ], - [ - 1031, - 1408 - ], - [ - 1032, - 1409 - ], - [ - 1033, - 1410 - ], - [ - 1034, - 1411 - ], - [ - 1035, - 1412 - ], - [ - 1036, - 1413 - ], - [ - 1037, - 1414 - ], - [ - 1038, - 1415 - ], - [ - 1039, - 1416 - ], - [ - 1047, - 1417 - ], - [ - 975, - 2 - ], - [ - 980, - 1418 - ], - [ - 982, - 1419 - ], - [ - 984, - 1420 - ], - [ - 1041, - 1421 - ], - [ - 1042, - 1420 - ], - [ - 1043, - 1420 - ], - [ - 1046, - 1422 - ], - [ - 1044, - 1420 - ], - [ - 1045, - 1420 - ], - [ - 1050, - 1423 - ], - [ - 1051, - 1424 - ], - [ - 1052, - 1425 - ], - [ - 1053, - 1425 - ], - [ - 1054, - 1426 - ], - [ - 1055, - 1425 - ], - [ - 1056, - 1425 - ], - [ - 1057, - 1427 - ], - [ - 1058, - 1425 - ], - [ - 1059, - 1428 - ], - [ - 1060, - 1428 - ], - [ - 1061, - 1428 - ], - [ - 1062, - 1319 - ], - [ - 1063, - 1428 - ], - [ - 1064, - 1429 - ], - [ - 1065, - 1425 - ], - [ - 1066, - 1428 - ], - [ - 1067, - 1426 - ], - [ - 1068, - 1319 - ], - [ - 1069, - 1425 - ], - [ - 1070, - 1425 - ], - [ - 1071, - 1426 - ], - [ - 1072, - 1319 - ], - [ - 1073, - 1319 - ], - [ - 1074, - 1426 - ], - [ - 1075, - 1425 - ], - [ - 1076, - 1430 - ], - [ - 1077, - 1431 - ], - [ - 1078, - 1426 - ], - [ - 1079, - 1426 - ], - [ - 1080, - 1428 - ], - [ - 1081, - 1425 - ], - [ - 1082, - 1425 - ], - [ - 1083, - 1426 - ], - [ - 1084, - 1425 - ], - [ - 1100, - 1432 - ], - [ - 1085, - 1425 - ], - [ - 1086, - 1424 - ], - [ - 1087, - 1424 - ], - [ - 1088, - 1424 - ], - [ - 1089, - 1428 - ], - [ - 1090, - 1428 - ], - [ - 1091, - 1319 - ], - [ - 1092, - 1319 - ], - [ - 1093, - 1426 - ], - [ - 1094, - 1424 - ], - [ - 1095, - 1424 - ], - [ - 1096, - 1433 - ], - [ - 1097, - 1434 - ], - [ - 1098, - 1424 - ], - [ - 1099, - 1435 - ], - [ - 1134, - 1436 - ], - [ - 976, - 1360 - ], - [ - 1106, - 1437 - ], - [ - 1101, - 1438 - ], - [ - 1102, - 1438 - ], - [ - 1103, - 1438 - ], - [ - 1104, - 1439 - ], - [ - 1105, - 1440 - ], - [ - 979, - 1441 - ], - [ - 978, - 1441 - ], - [ - 983, - 1430 - ], - [ - 1107, - 1442 - ], - [ - 977, - 1360 - ], - [ - 1111, - 1443 - ], - [ - 1108, - 1444 - ], - [ - 1109, - 1444 - ], - [ - 1110, - 1445 - ], - [ - 1112, - 1424 - ], - [ - 981, - 1446 - ], - [ - 1113, - 1428 - ], - [ - 1114, - 2 - ], - [ - 1115, - 2 - ], - [ - 1116, - 2 - ], - [ - 1117, - 2 - ], - [ - 1118, - 2 - ], - [ - 1119, - 2 - ], - [ - 1133, - 1447 - ], - [ - 1120, - 2 - ], - [ - 1121, - 2 - ], - [ - 1122, - 2 - ], - [ - 1123, - 2 - ], - [ - 1124, - 2 - ], - [ - 1125, - 2 - ], - [ - 1126, - 2 - ], - [ - 1127, - 2 - ], - [ - 1128, - 2 - ], - [ - 1129, - 2 - ], - [ - 1130, - 2 - ], - [ - 1131, - 2 - ], - [ - 1132, - 2 - ], - [ - 1191, - 1315 - ], - [ - 1192, - 1448 - ], - [ - 1195, - 1315 - ], - [ - 1196, - 1449 - ], - [ - 1185, - 1313 - ], - [ - 1186, - 1450 - ], - [ - 1197, - 1315 - ], - [ - 1198, - 1451 - ], - [ - 1235, - 1344 - ], - [ - 1236, - 1452 - ], - [ - 1229, - 1344 - ], - [ - 1230, - 1453 - ], - [ - 1205, - 1315 - ], - [ - 1206, - 1454 - ], - [ - 1183, - 1315 - ], - [ - 1184, - 1455 - ], - [ - 1207, - 1315 - ], - [ - 1208, - 1456 - ], - [ - 1212, - 1457 - ], - [ - 1211, - 1315 - ], - [ - 1214, - 1458 - ], - [ - 1213, - 1315 - ], - [ - 1188, - 1459 - ], - [ - 1187, - 1313 - ], - [ - 1224, - 1460 - ], - [ - 1223, - 1315 - ], - [ - 1226, - 1461 - ], - [ - 1225, - 1315 - ], - [ - 1238, - 1462 - ], - [ - 1237, - 1315 - ], - [ - 1248, - 1463 - ], - [ - 1247, - 1313 - ], - [ - 1244, - 1464 - ], - [ - 1243, - 1315 - ], - [ - 1222, - 1465 - ], - [ - 1221, - 1315 - ], - [ - 1143, - 1466 - ], - [ - 1142, - 1315 - ], - [ - 1190, - 1467 - ], - [ - 1189, - 1315 - ], - [ - 973, - 1468 - ], - [ - 972, - 1469 - ], - [ - 1049, - 1470 - ], - [ - 974, - 1471 - ], - [ - 1220, - 1472 - ], - [ - 1219, - 1473 - ], - [ - 1193, - 1315 - ], - [ - 1194, - 1474 - ], - [ - 1199, - 1315 - ], - [ - 1200, - 1475 - ], - [ - 1201, - 1315 - ], - [ - 1202, - 1476 - ], - [ - 1203, - 1315 - ], - [ - 1204, - 1477 - ], - [ - 1210, - 1478 - ], - [ - 1209, - 1315 - ], - [ - 1216, - 1479 - ], - [ - 1215, - 1315 - ], - [ - 1218, - 1480 - ], - [ - 1217, - 1315 - ], - [ - 1157, - 1481 - ], - [ - 1158, - 1081 - ], - [ - 1179, - 2 - ], - [ - 967, - 2 - ], - [ - 968, - 1482 - ], - [ - 971, - 1483 - ], - [ - 969, - 1468 - ], - [ - 970, - 1484 - ], - [ - 1154, - 1485 - ], - [ - 64, - 1486 - ], - [ - 63, - 1487 - ], - [ - 62, - 2 - ], - [ - 518, - 2 - ], - [ - 275, - 1488 - ], - [ - 274, - 1489 - ], - [ - 273, - 1490 - ], - [ - 272, - 2 - ], - [ - 265, - 1491 - ], - [ - 264, - 1492 - ], - [ - 266, - 1493 - ], - [ - 224, - 1494 - ], - [ - 184, - 1495 - ], - [ - 219, - 1496 - ], - [ - 220, - 1496 - ], - [ - 210, - 2 - ], - [ - 211, - 1497 - ], - [ - 218, - 1498 - ], - [ - 212, - 1496 - ], - [ - 217, - 1499 - ], - [ - 209, - 1500 - ], - [ - 192, - 1501 - ], - [ - 191, - 2 - ], - [ - 194, - 1502 - ], - [ - 193, - 1503 - ], - [ - 204, - 1504 - ], - [ - 201, - 1081 - ], - [ - 203, - 1505 - ], - [ - 200, - 1506 - ], - [ - 202, - 1507 - ], - [ - 205, - 1508 - ], - [ - 195, - 1509 - ], - [ - 196, - 1510 - ], - [ - 186, - 2 - ], - [ - 187, - 1511 - ], - [ - 189, - 1512 - ], - [ - 188, - 1513 - ], - [ - 190, - 1514 - ], - [ - 253, - 1515 - ], - [ - 257, - 1516 - ], - [ - 256, - 1515 - ], - [ - 249, - 1516 - ], - [ - 250, - 1515 - ], - [ - 226, - 1517 - ], - [ - 229, - 1518 - ], - [ - 235, - 1515 - ], - [ - 241, - 1518 - ], - [ - 252, - 1519 - ], - [ - 258, - 1515 - ], - [ - 254, - 1515 - ], - [ - 247, - 1518 - ], - [ - 255, - 1518 - ], - [ - 245, - 1520 - ], - [ - 227, - 1515 - ], - [ - 228, - 1521 - ], - [ - 233, - 1518 - ], - [ - 251, - 1518 - ], - [ - 234, - 1518 - ], - [ - 262, - 1522 - ], - [ - 237, - 1518 - ], - [ - 236, - 1518 - ], - [ - 230, - 1518 - ], - [ - 261, - 1519 - ], - [ - 260, - 1515 - ], - [ - 259, - 1523 - ], - [ - 231, - 1518 - ], - [ - 246, - 1518 - ], - [ - 240, - 1518 - ], - [ - 238, - 1518 - ], - [ - 243, - 1518 - ], - [ - 248, - 1518 - ], - [ - 242, - 1518 - ], - [ - 232, - 1515 - ], - [ - 239, - 1518 - ], - [ - 225, - 2 - ], - [ - 244, - 1500 - ], - [ - 263, - 1359 - ], - [ - 215, - 1524 - ], - [ - 214, - 1525 - ], - [ - 213, - 1526 - ], - [ - 216, - 1527 - ], - [ - 207, - 1528 - ], - [ - 185, - 2 - ], - [ - 206, - 1529 - ], - [ - 208, - 1530 - ], - [ - 198, - 2 - ], - [ - 197, - 2 - ], - [ - 199, - 1531 - ], - [ - 183, - 2 - ], - [ - 223, - 1485 - ], - [ - 222, - 1532 - ], - [ - 221, - 2 - ], - [ - 1734, - 1533 - ], - [ - 1727, - 1534 - ], - [ - 1728, - 1535 - ], - [ - 1731, - 1536 - ], - [ - 1735, - 2 - ], - [ - 1733, - 1535 - ], - [ - 1732, - 1537 - ], - [ - 1717, - 2 - ], - [ - 1737, - 1538 - ], - [ - 1736, - 1539 - ], - [ - 1719, - 1535 - ], - [ - 1720, - 1535 - ], - [ - 1721, - 1535 - ], - [ - 1722, - 1535 - ], - [ - 1723, - 1535 - ], - [ - 1724, - 1535 - ], - [ - 1725, - 1535 - ], - [ - 1729, - 2 - ], - [ - 1730, - 1535 - ], - [ - 1718, - 1540 - ], - [ - 1726, - 1535 - ], - [ - 1770, - 547 - ], - [ - 1769, - 548 - ], - [ - 1772, - 1541 - ], - [ - 1759, - 1542 - ], - [ - 1768, - 1543 - ], - [ - 1766, - 1544 - ], - [ - 1764, - 1545 - ], - [ - 1765, - 549 - ], - [ - 1758, - 2 - ], - [ - 1763, - 550 - ], - [ - 1767, - 551 - ], - [ - 1762, - 552 - ], - [ - 1756, - 1546 - ], - [ - 1757, - 1547 - ], - [ - 1773, - 1548 - ], - [ - 1774, - 1549 - ], - [ - 1771, - 1550 - ], - [ - 1743, - 553 - ], - [ - 1776, - 554 - ], - [ - 1775, - 555 - ], - [ - 1752, - 1551 - ], - [ - 1751, - 557 - ], - [ - 1746, - 557 - ], - [ - 1750, - 558 - ], - [ - 1748, - 557 - ], - [ - 1747, - 557 - ], - [ - 1749, - 557 - ], - [ - 1745, - 2 - ], - [ - 1742, - 2 - ], - [ - 1753, - 559 - ], - [ - 1755, - 560 - ], - [ - 1754, - 561 - ], - [ - 1760, - 564 - ], - [ - 1761, - 565 - ], - [ - 1741, - 2 - ], - [ - 1744, - 2 - ], - [ - 1714, - 666 - ], - [ - 1713, - 1552 - ], - [ - 1705, - 1553 - ], - [ - 1711, - 1554 - ], - [ - 1707, - 2 - ], - [ - 1708, - 2 - ], - [ - 1706, - 1555 - ], - [ - 1709, - 1552 - ], - [ - 1701, - 2 - ], - [ - 1702, - 2 - ], - [ - 1712, - 1556 - ], - [ - 1704, - 1557 - ], - [ - 1710, - 1558 - ], - [ - 1703, - 1559 - ], - [ - 1778, - 1560 - ], - [ - 1716, - 1561 - ], - [ - 1715, - 1562 - ], - [ - 1779, - 1563 - ], - [ - 1740, - 1564 - ], - [ - 1739, - 1565 - ], - [ - 1738, - 1566 - ], - [ - 1777, - 1567 - ] - ], - "affectedFilesPendingEmit": [ - [ - 2554, - 17 - ], - [ - 2095, - 17 - ], - [ - 1676, - 17 - ], - [ - 1416, - 17 - ], - [ - 1442, - 17 - ], - [ - 1441, - 17 - ], - [ - 962, - 17 - ], - [ - 1440, - 17 - ], - [ - 1417, - 17 - ], - [ - 1446, - 17 - ], - [ - 1636, - 17 - ], - [ - 1436, - 17 - ], - [ - 1438, - 17 - ], - [ - 1435, - 17 - ], - [ - 1437, - 17 - ], - [ - 1434, - 17 - ], - [ - 61, - 17 - ], - [ - 2018, - 17 - ], - [ - 1492, - 17 - ], - [ - 1498, - 17 - ], - [ - 1499, - 17 - ], - [ - 1504, - 17 - ], - [ - 1505, - 17 - ], - [ - 1500, - 17 - ], - [ - 1501, - 17 - ], - [ - 1502, - 17 - ], - [ - 1503, - 17 - ], - [ - 2094, - 17 - ], - [ - 2042, - 17 - ], - [ - 2043, - 17 - ], - [ - 2044, - 17 - ], - [ - 2555, - 17 - ], - [ - 1506, - 17 - ], - [ - 2556, - 17 - ], - [ - 2557, - 17 - ], - [ - 2564, - 17 - ], - [ - 2560, - 17 - ], - [ - 1627, - 17 - ], - [ - 2562, - 17 - ], - [ - 2563, - 17 - ], - [ - 1625, - 17 - ], - [ - 1626, - 17 - ], - [ - 2011, - 17 - ], - [ - 2565, - 17 - ], - [ - 2013, - 17 - ], - [ - 2015, - 17 - ], - [ - 2014, - 17 - ], - [ - 1664, - 17 - ], - [ - 1491, - 17 - ], - [ - 1621, - 17 - ], - [ - 1653, - 17 - ], - [ - 1622, - 17 - ], - [ - 1406, - 17 - ], - [ - 1623, - 17 - ], - [ - 1628, - 17 - ], - [ - 2040, - 17 - ], - [ - 2073, - 17 - ], - [ - 1629, - 17 - ], - [ - 1630, - 17 - ], - [ - 1638, - 17 - ], - [ - 1663, - 17 - ], - [ - 1645, - 17 - ], - [ - 1668, - 17 - ], - [ - 1369, - 17 - ], - [ - 1669, - 17 - ], - [ - 1686, - 17 - ], - [ - 1684, - 17 - ], - [ - 1685, - 17 - ], - [ - 2567, - 17 - ], - [ - 1649, - 17 - ], - [ - 2568, - 17 - ], - [ - 2592, - 17 - ], - [ - 2020, - 17 - ], - [ - 2059, - 17 - ], - [ - 2025, - 17 - ], - [ - 2078, - 17 - ], - [ - 2080, - 17 - ], - [ - 2081, - 17 - ], - [ - 2082, - 17 - ], - [ - 2083, - 17 - ], - [ - 2085, - 17 - ], - [ - 2593, - 17 - ], - [ - 2079, - 17 - ], - [ - 2594, - 17 - ], - [ - 2084, - 17 - ], - [ - 2019, - 17 - ], - [ - 2022, - 17 - ], - [ - 2087, - 17 - ], - [ - 2086, - 17 - ], - [ - 2591, - 17 - ], - [ - 2561, - 17 - ], - [ - 1660, - 17 - ], - [ - 2046, - 17 - ], - [ - 2045, - 17 - ], - [ - 2596, - 17 - ], - [ - 2074, - 17 - ], - [ - 2027, - 17 - ], - [ - 2076, - 17 - ], - [ - 2058, - 17 - ], - [ - 2070, - 17 - ], - [ - 2597, - 17 - ], - [ - 2075, - 17 - ], - [ - 2067, - 17 - ], - [ - 1497, - 17 - ], - [ - 2048, - 17 - ], - [ - 2595, - 17 - ], - [ - 2598, - 17 - ], - [ - 2052, - 17 - ], - [ - 1635, - 17 - ], - [ - 1667, - 17 - ], - [ - 2599, - 17 - ], - [ - 2600, - 17 - ], - [ - 1671, - 17 - ], - [ - 1673, - 17 - ], - [ - 2068, - 17 - ], - [ - 1675, - 17 - ], - [ - 2601, - 17 - ], - [ - 2559, - 17 - ], - [ - 2054, - 17 - ], - [ - 1661, - 17 - ], - [ - 1662, - 17 - ], - [ - 2055, - 17 - ], - [ - 2056, - 17 - ], - [ - 2602, - 17 - ], - [ - 2024, - 17 - ], - [ - 2603, - 17 - ], - [ - 1607, - 17 - ], - [ - 2605, - 17 - ], - [ - 2608, - 17 - ], - [ - 1368, - 17 - ], - [ - 2627, - 17 - ], - [ - 2607, - 17 - ], - [ - 2064, - 17 - ], - [ - 2621, - 17 - ], - [ - 2622, - 17 - ], - [ - 2623, - 17 - ], - [ - 2624, - 17 - ], - [ - 2625, - 17 - ], - [ - 2626, - 17 - ], - [ - 1423, - 17 - ], - [ - 2021, - 17 - ], - [ - 1495, - 17 - ], - [ - 1619, - 17 - ], - [ - 1405, - 17 - ], - [ - 1615, - 17 - ], - [ - 1618, - 17 - ], - [ - 1620, - 17 - ], - [ - 1402, - 17 - ], - [ - 1687, - 17 - ], - [ - 1509, - 17 - ], - [ - 1496, - 17 - ], - [ - 1606, - 17 - ], - [ - 1605, - 17 - ], - [ - 1604, - 17 - ], - [ - 2566, - 17 - ], - [ - 2077, - 17 - ], - [ - 1490, - 17 - ], - [ - 1403, - 17 - ], - [ - 1404, - 17 - ], - [ - 1679, - 17 - ], - [ - 1678, - 17 - ], - [ - 1672, - 17 - ], - [ - 2057, - 17 - ], - [ - 1695, - 17 - ], - [ - 2092, - 17 - ], - [ - 1637, - 17 - ], - [ - 1443, - 17 - ], - [ - 2012, - 17 - ], - [ - 1694, - 17 - ], - [ - 1279, - 17 - ], - [ - 2017, - 17 - ], - [ - 2628, - 17 - ], - [ - 2023, - 17 - ], - [ - 1489, - 17 - ], - [ - 1494, - 17 - ], - [ - 1688, - 17 - ], - [ - 1453, - 17 - ], - [ - 1674, - 17 - ], - [ - 1677, - 17 - ], - [ - 2026, - 17 - ], - [ - 2630, - 17 - ], - [ - 1666, - 17 - ], - [ - 1699, - 17 - ], - [ - 2558, - 17 - ], - [ - 1624, - 17 - ], - [ - 1698, - 17 - ], - [ - 2631, - 17 - ], - [ - 2632, - 17 - ], - [ - 1700, - 17 - ], - [ - 1689, - 17 - ], - [ - 2633, - 17 - ], - [ - 2636, - 17 - ], - [ - 2634, - 17 - ], - [ - 2637, - 17 - ], - [ - 1652, - 17 - ], - [ - 1651, - 17 - ], - [ - 1426, - 17 - ], - [ - 2041, - 17 - ], - [ - 1427, - 17 - ], - [ - 1429, - 17 - ], - [ - 2635, - 17 - ], - [ - 1428, - 17 - ], - [ - 1431, - 17 - ], - [ - 1430, - 17 - ], - [ - 2638, - 17 - ], - [ - 2639, - 17 - ], - [ - 2640, - 17 - ], - [ - 2641, - 17 - ], - [ - 2642, - 17 - ], - [ - 2066, - 17 - ], - [ - 2065, - 17 - ], - [ - 2643, - 17 - ], - [ - 1696, - 17 - ], - [ - 2069, - 17 - ], - [ - 2606, - 17 - ], - [ - 1425, - 17 - ], - [ - 2088, - 17 - ], - [ - 2089, - 17 - ], - [ - 2071, - 17 - ], - [ - 2644, - 17 - ], - [ - 2646, - 17 - ], - [ - 2645, - 17 - ], - [ - 2647, - 17 - ], - [ - 2037, - 17 - ], - [ - 2648, - 17 - ], - [ - 2666, - 17 - ], - [ - 2649, - 17 - ], - [ - 2652, - 17 - ], - [ - 2654, - 17 - ], - [ - 2653, - 17 - ], - [ - 1693, - 17 - ], - [ - 2650, - 17 - ], - [ - 2651, - 17 - ], - [ - 1692, - 17 - ], - [ - 1507, - 17 - ], - [ - 2667, - 17 - ], - [ - 2671, - 17 - ], - [ - 2672, - 17 - ], - [ - 2655, - 17 - ], - [ - 2656, - 17 - ], - [ - 2604, - 17 - ], - [ - 2665, - 17 - ], - [ - 2657, - 17 - ], - [ - 2658, - 17 - ], - [ - 2661, - 17 - ], - [ - 2668, - 17 - ], - [ - 2660, - 17 - ], - [ - 2662, - 17 - ], - [ - 2670, - 17 - ], - [ - 2663, - 17 - ], - [ - 2091, - 17 - ], - [ - 2664, - 17 - ], - [ - 2659, - 17 - ], - [ - 2669, - 17 - ], - [ - 2673, - 17 - ], - [ - 2050, - 17 - ], - [ - 1460, - 17 - ], - [ - 1670, - 17 - ], - [ - 1418, - 17 - ], - [ - 1283, - 17 - ], - [ - 933, - 17 - ], - [ - 2051, - 17 - ], - [ - 2674, - 17 - ], - [ - 1609, - 17 - ], - [ - 1372, - 17 - ], - [ - 1373, - 17 - ], - [ - 1410, - 17 - ], - [ - 1487, - 17 - ], - [ - 2676, - 17 - ], - [ - 1397, - 17 - ], - [ - 1612, - 17 - ], - [ - 1697, - 17 - ], - [ - 1614, - 17 - ], - [ - 1449, - 17 - ], - [ - 1450, - 17 - ], - [ - 1451, - 17 - ], - [ - 1452, - 17 - ], - [ - 1457, - 17 - ], - [ - 1455, - 17 - ], - [ - 1456, - 17 - ], - [ - 1448, - 17 - ], - [ - 1360, - 17 - ], - [ - 1422, - 17 - ], - [ - 1611, - 17 - ], - [ - 1421, - 17 - ], - [ - 1371, - 17 - ], - [ - 1432, - 17 - ], - [ - 2677, - 17 - ], - [ - 1361, - 17 - ], - [ - 1420, - 17 - ], - [ - 1488, - 17 - ], - [ - 1610, - 17 - ], - [ - 1362, - 17 - ], - [ - 1363, - 17 - ], - [ - 1364, - 17 - ], - [ - 1407, - 17 - ], - [ - 1365, - 17 - ], - [ - 2675, - 17 - ], - [ - 1683, - 17 - ], - [ - 1278, - 17 - ], - [ - 1366, - 17 - ], - [ - 1400, - 17 - ], - [ - 1367, - 17 - ], - [ - 1394, - 17 - ], - [ - 1401, - 17 - ], - [ - 1433, - 17 - ], - [ - 1454, - 17 - ], - [ - 2678, - 17 - ], - [ - 932, - 17 - ], - [ - 1424, - 17 - ], - [ - 1608, - 17 - ], - [ - 1370, - 17 - ], - [ - 2090, - 17 - ], - [ - 1447, - 17 - ], - [ - 1408, - 17 - ], - [ - 2047, - 17 - ], - [ - 966, - 17 - ], - [ - 1391, - 17 - ], - [ - 668, - 17 - ], - [ - 669, - 17 - ], - [ - 1392, - 17 - ], - [ - 1409, - 17 - ], - [ - 1393, - 17 - ], - [ - 2679, - 17 - ], - [ - 1419, - 17 - ], - [ - 56, - 17 - ], - [ - 1493, - 17 - ], - [ - 176, - 17 - ], - [ - 1458, - 17 - ], - [ - 2096, - 17 - ], - [ - 2097, - 17 - ], - [ - 2170, - 17 - ], - [ - 60, - 17 - ], - [ - 2177, - 17 - ], - [ - 2532, - 17 - ], - [ - 2680, - 17 - ], - [ - 2702, - 17 - ], - [ - 68, - 17 - ], - [ - 1690, - 17 - ], - [ - 1691, - 17 - ] - ], - "version": "5.9.3" -} +{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2016.intl.d.ts","./node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","./node_modules/typescript/lib/lib.es2017.date.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.disposable.d.ts","./node_modules/typescript/lib/lib.esnext.float16.d.ts","./node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.legacy.d.ts","./node_modules/@babel/types/lib/index.d.ts","./node_modules/@types/babel__generator/index.d.ts","./node_modules/@babel/parser/typings/babel-parser.d.ts","./node_modules/@types/babel__template/index.d.ts","./node_modules/@types/babel__traverse/index.d.ts","./node_modules/@types/babel__core/index.d.ts","./babel.config.js","./node_modules/@formatjs/intl-locale/polyfill-force.d.ts","./node_modules/@formatjs/intl-pluralrules/polyfill-force.d.ts","./node_modules/@formatjs/intl-pluralrules/locale-data/en.d.ts","./polyfills/console-time.js","./app/common/logger/index.ts","../../packages/intl/node_modules/@lingui/core/node_modules/@lingui/message-utils/dist/compilemessage.d.mts","../../packages/intl/node_modules/@lingui/core/dist/index.d.mts","../../packages/intl/dist/index.d.ts","./node_modules/@lingui/message-utils/dist/compilemessage.d.mts","./node_modules/@lingui/core/dist/index.d.mts","./node_modules/react-native-config/index.d.ts","./worker.js","./node_modules/buffer/index.d.ts","./node_modules/react-native/types/modules/batchedbridge.d.ts","./node_modules/react-native/libraries/vendor/emitter/eventemitter.d.ts","./node_modules/react-native/types/modules/codegen.d.ts","./node_modules/react-native/types/modules/devtools.d.ts","./node_modules/react-native/libraries/vendor/core/errorutils.d.ts","./node_modules/react-native/src/types/globals.d.ts","./node_modules/@types/react/global.d.ts","./node_modules/csstype/index.d.ts","./node_modules/@types/react/index.d.ts","./node_modules/react-native/types/private/utilities.d.ts","./node_modules/react-native/types/public/insets.d.ts","./node_modules/react-native/types/public/reactnativetypes.d.ts","./node_modules/react-native/libraries/types/coreeventtypes.d.ts","./node_modules/react-native/types/public/reactnativerenderer.d.ts","./node_modules/react-native/libraries/components/touchable/touchable.d.ts","./node_modules/react-native/libraries/components/view/viewaccessibility.d.ts","./node_modules/react-native/libraries/components/view/viewproptypes.d.ts","./node_modules/react-native/libraries/components/refreshcontrol/refreshcontrol.d.ts","./node_modules/react-native/libraries/components/view/view.d.ts","./node_modules/react-native/libraries/components/scrollview/scrollview.d.ts","./node_modules/react-native/libraries/image/imageresizemode.d.ts","./node_modules/react-native/libraries/image/imagesource.d.ts","./node_modules/react-native/libraries/image/image.d.ts","./node_modules/react-native/node_modules/@react-native/virtualized-lists/lists/virtualizedlist.d.ts","./node_modules/react-native/node_modules/@react-native/virtualized-lists/index.d.ts","./node_modules/react-native/libraries/lists/flatlist.d.ts","./node_modules/react-native/libraries/reactnative/rendererproxy.d.ts","./node_modules/react-native/libraries/lists/sectionlist.d.ts","./node_modules/react-native/libraries/text/text.d.ts","./node_modules/react-native/libraries/animated/animated.d.ts","./node_modules/react-native/libraries/stylesheet/stylesheettypes.d.ts","./node_modules/react-native/libraries/stylesheet/stylesheet.d.ts","./node_modules/react-native/libraries/stylesheet/processcolor.d.ts","./node_modules/react-native/libraries/actionsheetios/actionsheetios.d.ts","./node_modules/react-native/libraries/alert/alert.d.ts","./node_modules/react-native/libraries/animated/easing.d.ts","./node_modules/react-native/libraries/animated/useanimatedvalue.d.ts","./node_modules/react-native/libraries/eventemitter/rctdeviceeventemitter.d.ts","./node_modules/react-native/libraries/eventemitter/rctnativeappeventemitter.d.ts","./node_modules/react-native/libraries/appstate/appstate.d.ts","./node_modules/react-native/libraries/batchedbridge/nativemodules.d.ts","./node_modules/react-native/libraries/components/accessibilityinfo/accessibilityinfo.d.ts","./node_modules/react-native/libraries/components/activityindicator/activityindicator.d.ts","./node_modules/react-native/libraries/components/clipboard/clipboard.d.ts","./node_modules/react-native/libraries/components/drawerandroid/drawerlayoutandroid.d.ts","./node_modules/react-native/libraries/eventemitter/nativeeventemitter.d.ts","./node_modules/react-native/libraries/components/keyboard/keyboard.d.ts","./node_modules/react-native/types/private/timermixin.d.ts","./node_modules/react-native/libraries/components/keyboard/keyboardavoidingview.d.ts","./node_modules/react-native/libraries/components/layoutconformance/layoutconformance.d.ts","./node_modules/react-native/libraries/components/pressable/pressable.d.ts","./node_modules/react-native/libraries/components/progressbarandroid/progressbarandroid.d.ts","./node_modules/react-native/libraries/components/safeareaview/safeareaview.d.ts","./node_modules/react-native/libraries/components/statusbar/statusbar.d.ts","./node_modules/react-native/libraries/components/switch/switch.d.ts","./node_modules/react-native/libraries/components/textinput/inputaccessoryview.d.ts","./node_modules/react-native/libraries/components/textinput/textinput.d.ts","./node_modules/react-native/libraries/components/toastandroid/toastandroid.d.ts","./node_modules/react-native/libraries/components/touchable/touchablewithoutfeedback.d.ts","./node_modules/react-native/libraries/components/touchable/touchablehighlight.d.ts","./node_modules/react-native/libraries/components/touchable/touchableopacity.d.ts","./node_modules/react-native/libraries/components/touchable/touchablenativefeedback.d.ts","./node_modules/react-native/libraries/components/button.d.ts","./node_modules/react-native/libraries/core/registercallablemodule.d.ts","./node_modules/react-native/libraries/interaction/interactionmanager.d.ts","./node_modules/react-native/libraries/interaction/panresponder.d.ts","./node_modules/react-native/libraries/layoutanimation/layoutanimation.d.ts","./node_modules/react-native/libraries/linking/linking.d.ts","./node_modules/react-native/libraries/logbox/logbox.d.ts","./node_modules/react-native/libraries/modal/modal.d.ts","./node_modules/react-native/libraries/performance/systrace.d.ts","./node_modules/react-native/libraries/permissionsandroid/permissionsandroid.d.ts","./node_modules/react-native/libraries/pushnotificationios/pushnotificationios.d.ts","./node_modules/react-native/libraries/utilities/iperformancelogger.d.ts","./node_modules/react-native/libraries/reactnative/appregistry.d.ts","./node_modules/react-native/libraries/reactnative/i18nmanager.d.ts","./node_modules/react-native/libraries/reactnative/roottag.d.ts","./node_modules/react-native/libraries/reactnative/uimanager.d.ts","./node_modules/react-native/libraries/reactnative/requirenativecomponent.d.ts","./node_modules/react-native/libraries/settings/settings.d.ts","./node_modules/react-native/libraries/share/share.d.ts","./node_modules/react-native/libraries/stylesheet/platformcolorvaluetypesios.d.ts","./node_modules/react-native/libraries/stylesheet/platformcolorvaluetypes.d.ts","./node_modules/react-native/libraries/turbomodule/rctexport.d.ts","./node_modules/react-native/libraries/turbomodule/turbomoduleregistry.d.ts","./node_modules/react-native/libraries/types/codegentypesnamespace.d.ts","./node_modules/react-native/libraries/utilities/appearance.d.ts","./node_modules/react-native/libraries/utilities/backhandler.d.ts","./node_modules/react-native/src/private/devsupport/devmenu/devmenu.d.ts","./node_modules/react-native/libraries/utilities/devsettings.d.ts","./node_modules/react-native/libraries/utilities/dimensions.d.ts","./node_modules/react-native/libraries/utilities/pixelratio.d.ts","./node_modules/react-native/libraries/utilities/platform.d.ts","./node_modules/react-native/libraries/vibration/vibration.d.ts","./node_modules/react-native/types/public/deprecatedpropertiesalias.d.ts","./node_modules/react-native/libraries/utilities/codegennativecommands.d.ts","./node_modules/react-native/libraries/utilities/codegennativecomponent.d.ts","./node_modules/react-native/types/index.d.ts","./node_modules/@callstack/repack/dist/modules/scriptmanager/nativescriptmanager.d.ts","./node_modules/@callstack/repack/dist/modules/scriptmanager/types.d.ts","./node_modules/@callstack/repack/dist/modules/scriptmanager/script.d.ts","./node_modules/@callstack/repack/dist/modules/scriptmanager/scriptmanager.d.ts","./node_modules/@callstack/repack/dist/modules/scriptmanager/getwebpackcontext.d.ts","./node_modules/@callstack/repack/dist/modules/scriptmanager/federated.d.ts","./node_modules/@callstack/repack/dist/modules/scriptmanager/index.d.ts","./node_modules/@callstack/repack/client/index.d.ts","./globals.js","./node_modules/react-native-safe-area-context/lib/typescript/src/specs/nativesafeareaview.d.ts","./node_modules/react-native-safe-area-context/lib/typescript/src/safearea.types.d.ts","./node_modules/react-native-safe-area-context/lib/typescript/src/safeareacontext.d.ts","./node_modules/react-native-safe-area-context/lib/typescript/src/safeareaview.d.ts","./node_modules/react-native-safe-area-context/lib/typescript/src/initialwindow.d.ts","./node_modules/react-native-safe-area-context/lib/typescript/src/index.d.ts","../../packages/theme/node_modules/csstype/index.d.ts","../../packages/theme/dist/types/theme-engine/types.d.ts","../../packages/theme/node_modules/@theme-ui/css/dist/declarations/src/options.d.ts","../../packages/theme/node_modules/@emotion/sheet/dist/declarations/src/index.d.ts","../../packages/theme/node_modules/@emotion/sheet/dist/emotion-sheet.cjs.d.mts","../../packages/theme/node_modules/@emotion/utils/dist/declarations/src/types.d.ts","../../packages/theme/node_modules/@emotion/utils/dist/declarations/src/index.d.ts","../../packages/theme/node_modules/@emotion/utils/dist/emotion-utils.cjs.d.mts","../../packages/theme/node_modules/@emotion/cache/dist/declarations/src/types.d.ts","../../packages/theme/node_modules/@emotion/cache/dist/declarations/src/index.d.ts","../../packages/theme/node_modules/@emotion/cache/dist/emotion-cache.cjs.default.d.ts","../../packages/theme/node_modules/@emotion/cache/dist/emotion-cache.cjs.d.mts","../../packages/theme/node_modules/@emotion/serialize/dist/declarations/src/index.d.ts","../../packages/theme/node_modules/@emotion/serialize/dist/emotion-serialize.cjs.d.mts","../../packages/theme/node_modules/@types/react/global.d.ts","../../packages/theme/node_modules/@types/prop-types/index.d.ts","../../packages/theme/node_modules/@types/react/index.d.ts","../../packages/theme/node_modules/@emotion/react/dist/declarations/types/jsx-namespace.d.ts","../../packages/theme/node_modules/@emotion/react/dist/declarations/types/helper.d.ts","../../packages/theme/node_modules/@emotion/react/dist/declarations/types/theming.d.ts","../../packages/theme/node_modules/@emotion/react/dist/declarations/types/index.d.ts","../../packages/theme/node_modules/@emotion/react/dist/declarations/src/index.d.ts","../../packages/theme/node_modules/@emotion/react/dist/emotion-react.cjs.d.mts","../../packages/theme/node_modules/@theme-ui/css/dist/declarations/src/types.d.ts","../../packages/theme/node_modules/@theme-ui/css/dist/declarations/src/index.d.ts","../../packages/theme/node_modules/@theme-ui/css/dist/theme-ui-css.cjs.d.ts","../../packages/theme/dist/types/theme/variants/index.d.ts","../../packages/theme/dist/types/theme/font/fontsize.d.ts","../../packages/theme/dist/types/theme/font/index.d.ts","../../packages/theme/dist/types/theme/types.d.ts","../../packages/theme/node_modules/@theme-ui/core/dist/declarations/src/types.d.ts","../../packages/theme/node_modules/@theme-ui/core/dist/declarations/src/jsx-namespace.d.ts","../../packages/theme/node_modules/@theme-ui/core/dist/declarations/src/index.d.ts","../../packages/theme/node_modules/@theme-ui/core/dist/theme-ui-core.cjs.d.ts","../../packages/theme/dist/types/theme/variants/button.d.ts","../../packages/theme/dist/types/theme/index.d.ts","../../packages/theme/dist/types/theme-engine/utils.d.ts","../../packages/theme/dist/types/theme-engine/validator.d.ts","../../packages/theme/node_modules/zustand/esm/vanilla.d.mts","../../packages/theme/node_modules/zustand/esm/react.d.mts","../../packages/theme/node_modules/zustand/esm/index.d.mts","../../packages/theme/dist/types/theme-engine/index.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/types.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/box.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/flex.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/grid.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/button.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/link.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/paragraph.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/text.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/heading.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/image.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/card.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/label.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/input.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/select.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/textarea.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/radio.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/checkbox.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/switch.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/slider.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/util.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/field.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/progress.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/donut.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/spinner.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/avatar.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/badge.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/iconbutton.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/close.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/alert.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/divider.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/embed.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/aspectratio.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/aspectimage.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/container.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/navlink.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/message.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/menubutton.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/declarations/src/index.d.ts","../../packages/theme/node_modules/@theme-ui/components/dist/theme-ui-components.cjs.d.ts","../../packages/theme/dist/types/emotion/theme-provider.d.ts","../../packages/theme/dist/types/emotion/index.d.ts","../../packages/theme/dist/types/index.d.ts","./node_modules/@ammarahmed/react-native-share-extension/index.d.ts","./node_modules/@flyerhq/react-native-link-preview/lib/types.d.ts","./node_modules/@flyerhq/react-native-link-preview/lib/linkpreview.d.ts","./node_modules/@flyerhq/react-native-link-preview/lib/utils.d.ts","./node_modules/@flyerhq/react-native-link-preview/lib/index.d.ts","../../packages/sodium/node_modules/@types/libsodium-wrappers/index.d.ts","../../packages/sodium/node_modules/@types/libsodium-wrappers-sumo/index.d.ts","../../packages/sodium/dist/types-dnab56p6.d.mts","../../packages/sodium/dist/browser.d.mts","../../packages/crypto/dist/index.d.mts","../../packages/core/dist/types/types.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/insert-result.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/delete-result.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/update-result.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/type-error.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/merge-result.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/type-utils.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/operation-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/identifier-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/check-constraint-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/column-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/default-value-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/generated-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/schemable-identifier-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/table-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/references-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/column-definition-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/add-column-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-column-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/rename-column-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/raw-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/alter-column-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/foreign-key-constraint-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/primary-constraint-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/unique-constraint-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/constraint-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/add-constraint-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-constraint-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/modify-column-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-index-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/add-index-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/alter-table-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/where-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/create-index-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/create-schema-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/create-table-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/alias-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/operation-node-source.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/expression/expression.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/explainable.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/explain-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/column-update-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/on-conflict-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/on-duplicate-key-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/output-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/select-all-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/reference-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/simple-reference-expression-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/selection-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/returning-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/top-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/common-table-expression-name-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/common-table-expression-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/with-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/insert-query-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/from-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/group-by-item-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/group-by-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/having-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/on-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/join-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/limit-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/offset-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/order-by-item-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/order-by-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/select-modifier-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/set-operation-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/value-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/fetch-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/select-query-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/primitive-value-list-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/value-list-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/update-query-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/using-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/delete-query-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/when-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/merge-query-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/query-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/trigger-event-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/trigger-order-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/function-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/create-trigger-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/create-type-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/create-view-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-schema-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-table-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-trigger-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-type-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/drop-view-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-compiler/query-compiler.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-compiler/compiled-query.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/driver/database-connection.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/driver/driver.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/database-introspector.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/dialect-adapter.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/dialect.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/driver/connection-provider.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/query-id.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/plugin/kysely-plugin.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-executor/query-executor.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/compilable.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/default-value-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/column-definition-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/data-type-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/data-type-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/alter-column-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/alter-table-executor.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/foreign-key-constraint-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/alter-table-add-foreign-key-constraint-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/alter-table-drop-constraint-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/select-query-builder-expression.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/table-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/binary-operation-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/operator-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/value-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/column-type.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/binary-operation-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/join-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/join-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dynamic/dynamic-reference-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/select-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/order-by-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/group-by-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/where-interface.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/no-result-error.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/having-interface.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/set-operation-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/streamable.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/and-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/or-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/parens-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/expression/expression-wrapper.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/select-query-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/coalesce-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/partition-by-item-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/partition-by-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/over-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/aggregate-function-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/partition-by-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/over-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/aggregate-function-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/function-module.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/case-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/case-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/json-path-leg-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/json-path-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/json-operator-chain-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/json-reference-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/json-path-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/tuple-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/expression/expression-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/expression-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/reference-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/alter-table-add-index-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/unique-constraint-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/alter-table-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/create-index-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/create-schema-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/create-table-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/drop-index-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/drop-schema-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/drop-table-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-executor/query-executor-provider.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/raw-builder/raw-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/create-view-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/drop-view-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/create-type-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/drop-type-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/values-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/insert-values-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/update-set-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/returning-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/returning-interface.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/on-conflict-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/output-interface.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/insert-query-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/delete-query-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/update-query-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/cte-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/with-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-builder/merge-query-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-creator.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/trigger-query-creator.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/create-trigger-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/drop-trigger-builder.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/schema/schema.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dynamic/dynamic.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/log.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/kysely.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/raw-builder/sql.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-executor/query-executor-base.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-executor/default-query-executor.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-executor/noop-query-executor.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/list-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/default-insert-value-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/unary-operation-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/tuple-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/matched-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/cast-node.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/operation-node-visitor.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/query-compiler/default-query-compiler.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/driver/default-connection-provider.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/driver/single-connection-provider.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/driver/dummy-driver.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/dialect-adapter-base.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/sqlite/sqlite-dialect-config.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/sqlite/sqlite-dialect.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/sqlite/sqlite-driver.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/postgres/postgres-query-compiler.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/postgres/postgres-introspector.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/postgres/postgres-adapter.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mysql/mysql-dialect-config.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mysql/mysql-dialect.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mysql/mysql-driver.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mysql/mysql-query-compiler.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mysql/mysql-introspector.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mysql/mysql-adapter.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/postgres/postgres-dialect-config.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/postgres/postgres-driver.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/postgres/postgres-dialect.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/sqlite/sqlite-query-compiler.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/sqlite/sqlite-introspector.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/sqlite/sqlite-adapter.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mssql/mssql-adapter.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mssql/mssql-dialect-config.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mssql/mssql-dialect.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mssql/mssql-driver.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mssql/mssql-introspector.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/dialect/mssql/mssql-query-compiler.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/migration/migrator.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/migration/file-migration-provider.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/plugin/camel-case/camel-case-plugin.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/plugin/deduplicate-joins/deduplicate-joins-plugin.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/plugin/with-schema/with-schema-plugin.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/plugin/parse-json-results/parse-json-results-plugin.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/operation-node/operation-node-transformer.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/infer-result.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/util/log-once.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/parser/unary-operation-parser.d.ts","../../packages/core/node_modules/@streetwriters/kysely/dist/esm/index.d.ts","../../packages/core/dist/types/database/index.d.ts","../../packages/logger/dist/index.d.mts","../../packages/core/dist/types/api/token-manager.d.ts","../../packages/core/dist/types/database/kv.d.ts","../../packages/core/dist/types/database/config.d.ts","../../packages/core/dist/types/interfaces.d.ts","../../packages/core/dist/types/utils/array.d.ts","../../packages/core/dist/types/utils/clone.d.ts","../../packages/core/dist/types/utils/constants.d.ts","../../packages/core/dist/types/utils/internal-link.d.ts","../../packages/core/dist/types/utils/content-block.d.ts","../../packages/core/dist/types/utils/date.d.ts","../../packages/core/dist/types/utils/event-manager.d.ts","../../packages/core/dist/types/utils/filename.d.ts","../../packages/core/dist/types/utils/grouping.d.ts","../../packages/core/dist/types/utils/has-require.d.ts","../../packages/core/dist/types/utils/hostname.d.ts","../../packages/core/dist/types/utils/html-diff.d.ts","../../packages/core/dist/types/utils/html-parser.d.ts","../../packages/core/dist/types/utils/html-rewriter.d.ts","../../packages/core/dist/types/utils/http.d.ts","../../packages/core/dist/types/utils/id.d.ts","../../packages/core/dist/types/utils/object-id.d.ts","../../packages/core/dist/types/utils/query-transformer.d.ts","../../packages/core/dist/types/utils/queue-value.d.ts","../../packages/core/dist/types/utils/random.d.ts","../../packages/core/dist/types/utils/set.d.ts","../../packages/core/dist/types/utils/title-format.d.ts","../../packages/core/dist/types/utils/virtualized-grouping.d.ts","../../packages/core/dist/types/utils/crypto.d.ts","../../packages/core/dist/types/utils/fuzzy.d.ts","../../packages/core/dist/types/utils/index.d.ts","../../packages/core/dist/types/content-types/tiptap.d.ts","../../packages/core/dist/types/content-types/index.d.ts","../../packages/core/dist/types/common.d.ts","../../packages/core/dist/types/collections/collection.d.ts","../../packages/core/dist/types/database/sanitizer.d.ts","../../packages/core/dist/types/database/sql-collection.d.ts","../../packages/core/dist/types/collections/notes.d.ts","../../packages/core/dist/types/database/fs.d.ts","../../packages/core/dist/types/collections/notebooks.d.ts","../../packages/core/dist/types/collections/trash.d.ts","../../packages/core/dist/types/api/sync/types.d.ts","../../packages/core/dist/types/api/sync/collector.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/abortcontroller.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/itransport.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/errors.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/ilogger.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/ihubprotocol.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/httpclient.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/defaulthttpclient.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/ihttpconnectionoptions.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/istatefulreconnectoptions.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/stream.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/hubconnection.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/iretrypolicy.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/hubconnectionbuilder.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/loggers.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/jsonhubprotocol.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/subject.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/utils.d.ts","../../packages/core/node_modules/@microsoft/signalr/dist/esm/index.d.ts","../../packages/core/dist/types/api/sync/merger.d.ts","../../packages/core/dist/types/api/sync/auto-sync.d.ts","../../packages/core/node_modules/async-mutex/lib/mutexinterface.d.ts","../../packages/core/node_modules/async-mutex/lib/mutex.d.ts","../../packages/core/node_modules/async-mutex/lib/semaphoreinterface.d.ts","../../packages/core/node_modules/async-mutex/lib/semaphore.d.ts","../../packages/core/node_modules/async-mutex/lib/withtimeout.d.ts","../../packages/core/node_modules/async-mutex/lib/tryacquire.d.ts","../../packages/core/node_modules/async-mutex/lib/errors.d.ts","../../packages/core/node_modules/async-mutex/lib/index.d.ts","../../packages/core/dist/types/api/sync/devices.d.ts","../../packages/core/dist/types/api/sync/index.d.ts","../../packages/core/dist/types/collections/tags.d.ts","../../packages/core/dist/types/collections/colors.d.ts","../../packages/core/dist/types/api/vault.d.ts","../../packages/core/dist/types/api/lookup.d.ts","../../packages/core/dist/types/collections/content.d.ts","../../packages/core/dist/types/database/migrator.d.ts","../../packages/core/dist/types/database/backup.d.ts","../../packages/core/dist/types/collections/legacy-settings.d.ts","../../packages/core/dist/types/api/migrations.d.ts","../../packages/core/dist/types/api/user-manager.d.ts","../../packages/core/dist/types/api/monographs.d.ts","../../packages/core/dist/types/collections/monographs.d.ts","../../packages/core/dist/types/api/offers.d.ts","../../packages/core/dist/types/collections/attachments.d.ts","../../packages/core/dist/types/api/debug.d.ts","../../packages/core/dist/types/collections/session-content.d.ts","../../packages/core/dist/types/collections/note-history.d.ts","../../packages/core/dist/types/api/mfa-manager.d.ts","../../packages/core/dist/types/api/pricing.d.ts","../../packages/core/dist/types/database/sql-cached-collection.d.ts","../../packages/core/dist/types/collections/shortcuts.d.ts","../../packages/core/dist/types/collections/reminders.d.ts","../../packages/core/dist/types/collections/relations.d.ts","../../packages/core/dist/types/api/subscriptions.d.ts","../../packages/core/dist/types/collections/settings.d.ts","../../packages/core/dist/types/database/cached-collection.d.ts","../../packages/core/dist/types/collections/vaults.d.ts","../../packages/core/dist/types/api/inbox-api-keys.d.ts","../../packages/core/dist/types/api/circle.d.ts","../../packages/core/dist/types/api/wrapped.d.ts","../../packages/core/dist/types/api/index.d.ts","../../packages/core/dist/types/logger.d.ts","../../packages/core/dist/types/utils/dataurl.d.ts","../../packages/core/dist/types/index.d.ts","../../packages/common/dist/types/database.d.ts","../../packages/common/dist/types/utils/file.d.ts","../../packages/common/dist/types/utils/number.d.ts","../../packages/common/dist/types/utils/date-time.d.ts","../../packages/common/dist/types/utils/debounce.d.ts","../../packages/common/dist/types/utils/random.d.ts","../../packages/common/dist/types/utils/string.d.ts","../../packages/common/dist/types/utils/resolve-items.d.ts","../../packages/common/dist/types/utils/migrate-toolbar.d.ts","../../packages/common/dist/types/utils/export-notes.d.ts","../../packages/common/dist/types/utils/dataurl.d.ts","../../packages/common/dist/types/utils/tab-session-history.d.ts","../../packages/common/dist/types/utils/keybindings.d.ts","../../packages/common/dist/types/utils/is-feature-available.d.ts","../../packages/common/dist/types/utils/index.d.ts","../../packages/common/node_modules/timeago.js/lib/interface.d.ts","../../packages/common/node_modules/timeago.js/lib/register.d.ts","../../packages/common/node_modules/timeago.js/lib/format.d.ts","../../packages/common/node_modules/timeago.js/lib/realtime.d.ts","../../packages/common/node_modules/timeago.js/lib/index.d.ts","../../packages/common/dist/types/hooks/use-time-ago.d.ts","../../packages/common/node_modules/@types/react/index.d.ts","../../packages/common/dist/types/hooks/use-promise.d.ts","../../packages/common/dist/types/hooks/use-resolved-item.d.ts","../../packages/common/dist/types/hooks/use-is-feature-available.d.ts","../../packages/common/dist/types/hooks/index.d.ts","../../packages/common/node_modules/@types/react/jsx-runtime.d.ts","../../packages/common/dist/types/components/resolved-item.d.ts","../../packages/common/dist/types/components/index.d.ts","../../packages/common/dist/types/index.d.ts","./node_modules/react-native-blob-util/index.d.ts","./node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/globals.d.ts","./node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/legacy-properties.d.ts","./node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/batchedbridge.d.ts","./node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/codegen.d.ts","./node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/devtools.d.ts","./node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/launchscreen.d.ts","./node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/index.d.ts","./node_modules/@types/react-native-vector-icons/icon.d.ts","./node_modules/@types/react-native-vector-icons/materialcommunityicons.d.ts","./node_modules/@types/validator/lib/isurl.d.ts","./node_modules/@streetwriters/kysely/dist/esm/index.d.ts","./node_modules/react-native-gzip/lib/typescript/index.d.ts","./node_modules/event-target-shim/index.d.ts","./app/utils/sse/even-source-ios.js","./app/utils/sse/event-source.js","./node_modules/@react-native-community/netinfo/lib/typescript/src/internal/types.d.ts","./node_modules/@react-native-community/netinfo/lib/typescript/src/index.d.ts","./node_modules/@react-native-clipboard/clipboard/dist/clipboard.d.ts","./node_modules/@react-native-clipboard/clipboard/dist/useclipboard.d.ts","./node_modules/@react-native-clipboard/clipboard/dist/index.d.ts","./node_modules/react-native-actions-sheet/dist/src/eventmanager.d.ts","./node_modules/react-native-reanimated/lib/typescript/publicglobals.d.ts","./node_modules/react-native-worklets/lib/typescript/memory/types.d.ts","./node_modules/react-native-worklets/lib/typescript/memory/serializable.d.ts","./node_modules/react-native-worklets/lib/typescript/deprecated.d.ts","./node_modules/react-native-worklets/lib/typescript/featureflags/types.d.ts","./node_modules/react-native-worklets/lib/typescript/featureflags/featureflags.d.ts","./node_modules/react-native-worklets/lib/typescript/memory/issynchronizable.d.ts","./node_modules/react-native-worklets/lib/typescript/memory/serializablemappingcache.d.ts","./node_modules/react-native-worklets/lib/typescript/memory/synchronizable.d.ts","./node_modules/react-native-worklets/lib/typescript/runtimekind.d.ts","./node_modules/react-native-worklets/lib/typescript/types.d.ts","./node_modules/react-native-worklets/lib/typescript/runtimes.d.ts","./node_modules/react-native-worklets/lib/typescript/threads.d.ts","./node_modules/react-native-worklets/lib/typescript/workletfunction.d.ts","./node_modules/react-native-worklets/lib/typescript/workletsmodule/workletsmoduleproxy.d.ts","./node_modules/react-native-worklets/lib/typescript/workletsmodule/nativeworklets.d.ts","./node_modules/react-native-worklets/lib/typescript/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/constants/font.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/constants/platform.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/constants/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/errors.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/logger.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/types/helpers.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/types/config.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/types/style.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/types/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/style/types.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/style/config.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/style/createstylebuilder.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/style/processors/colors.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/style/processors/filter.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/style/processors/font.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/style/processors/insets.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/style/processors/others.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/style/processors/shadows.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/style/processors/transform.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/style/processors/transformorigin.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/style/processors/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/style/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/utils/conversions.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/utils/guards.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/utils/parsers.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/utils/suffix.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/utils/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/common/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/component/layoutanimationconfig.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/animationsmanager.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/animationbuilder/baseanimationbuilder.d.ts","./node_modules/react-native-reanimated/lib/typescript/easing.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/animationbuilder/complexanimationbuilder.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/animationbuilder/keyframe.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/animationbuilder/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/bounce.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/fade.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/flip.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/lightspeed.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/pinwheel.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/roll.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/rotate.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/slide.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/stretch.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/zoom.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaultanimations/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaulttransitions/curvedtransition.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaulttransitions/entryexittransition.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaulttransitions/fadingtransition.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaulttransitions/jumpingtransition.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaulttransitions/lineartransition.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaulttransitions/sequencedtransition.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/defaulttransitions/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/sharedtransition.d.ts","./node_modules/react-native-reanimated/lib/typescript/layoutreanimation/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/viewdescriptorsset.d.ts","./node_modules/react-native-reanimated/lib/typescript/createanimatedcomponent/commontypes.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/easing/types.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/easing/cubicbezier.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/easing/linear.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/easing/steps.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/easing/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/types/common.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/types/helpers.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/types/animation.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/types/transition.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/types/props.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/types/interfaces.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/types/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/helpertypes.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/models/csskeyframesrulebase.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/models/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/types/animation.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/types/transition.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/types/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/keyframes/csskeyframesruleimpl.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/keyframes/csskeyframesregistry.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/keyframes/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/managers/cssmanager.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/managers/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/animation/keyframes.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/animation/properties.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/animation/settings.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/animation/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/common/settings.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/common/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/transition/config.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/transition/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/normalization/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/proxy.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/registry.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/native/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/platform.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/component/animatedcomponent.d.ts","./node_modules/react-native-reanimated/lib/typescript/createanimatedcomponent/inlinepropmanager.d.ts","./node_modules/react-native-reanimated/lib/typescript/createanimatedcomponent/propsfilter.d.ts","./node_modules/react-native-reanimated/lib/typescript/createanimatedcomponent/animatedcomponent.d.ts","./node_modules/react-native-reanimated/lib/typescript/createanimatedcomponent/createanimatedcomponent.d.ts","./node_modules/react-native-reanimated/lib/typescript/createanimatedcomponent/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/reanimatedmodule/reanimatedmoduleproxy.d.ts","./node_modules/react-native-reanimated/lib/typescript/reanimatedmodule/js-reanimated/jsreanimated.d.ts","./node_modules/react-native-reanimated/lib/typescript/reanimatedmodule/js-reanimated/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/commontypes.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/useanimatedkeyboard.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/useanimatedprops.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/useanimatedreaction.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/useanimatedref.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/useevent.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/useanimatedscrollhandler.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/useanimatedsensor.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/useanimatedstyle.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/usecomposedeventhandler.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/usederivedvalue.d.ts","./node_modules/react-native-reanimated/lib/typescript/framecallback/framecallbackregistryui.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/useframecallback.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/usehandler.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/usereducedmotion.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/usescrolloffset.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/usesharedvalue.d.ts","./node_modules/react-native-reanimated/lib/typescript/hook/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/component/createanimatedcomponent.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/component/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/stylesheet/keyframes.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/stylesheet/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/css/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/commontypes.d.ts","./node_modules/react-native-reanimated/lib/typescript/component/flatlist.d.ts","./node_modules/react-native-reanimated/lib/typescript/component/image.d.ts","./node_modules/react-native-reanimated/lib/typescript/component/scrollview.d.ts","./node_modules/react-native-reanimated/lib/typescript/component/text.d.ts","./node_modules/react-native-reanimated/lib/typescript/component/view.d.ts","./node_modules/react-native-reanimated/lib/typescript/confighelper.d.ts","./node_modules/react-native-reanimated/lib/typescript/animated.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/clamp.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/commontypes.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/decay/utils.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/decay/decay.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/decay/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/delay.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/repeat.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/sequence.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/spring/springconfigs.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/spring/spring.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/spring/springutils.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/spring/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/styleanimation.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/timing.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/util.d.ts","./node_modules/react-native-reanimated/lib/typescript/animation/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/colors.d.ts","./node_modules/react-native-reanimated/lib/typescript/component/performancemonitor.d.ts","./node_modules/react-native-reanimated/lib/typescript/component/reducedmotionconfig.d.ts","./node_modules/react-native-reanimated/lib/typescript/mappers.d.ts","./node_modules/react-native-reanimated/lib/typescript/mutables.d.ts","./node_modules/react-native-reanimated/lib/typescript/core.d.ts","./node_modules/react-native-reanimated/lib/typescript/featureflags/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/framecallback/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/interpolation.d.ts","./node_modules/react-native-reanimated/lib/typescript/interpolatecolor.d.ts","./node_modules/react-native-reanimated/lib/typescript/issharedvalue.d.ts","./node_modules/@types/react-test-renderer/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/jestutils.d.ts","./node_modules/react-native-reanimated/lib/typescript/platform-specific/jsversion.d.ts","./node_modules/react-native-reanimated/lib/typescript/platformfunctions/types.d.ts","./node_modules/react-native-reanimated/lib/typescript/platformfunctions/dispatchcommand.d.ts","./node_modules/react-native-reanimated/lib/typescript/platformfunctions/getrelativecoords.d.ts","./node_modules/react-native-reanimated/lib/typescript/platformfunctions/measure.d.ts","./node_modules/react-native-reanimated/lib/typescript/platformfunctions/scrollto.d.ts","./node_modules/react-native-reanimated/lib/typescript/platformfunctions/setgesturestate.d.ts","./node_modules/react-native-reanimated/lib/typescript/platformfunctions/setnativeprops.d.ts","./node_modules/react-native-reanimated/lib/typescript/platformfunctions/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/pluginutils.d.ts","./node_modules/react-native-reanimated/lib/typescript/propadapters.d.ts","./node_modules/react-native-reanimated/lib/typescript/screentransition/commontypes.d.ts","./node_modules/react-native-reanimated/lib/typescript/screentransition/animationmanager.d.ts","./node_modules/react-native-reanimated/lib/typescript/screentransition/presets.d.ts","./node_modules/react-native-reanimated/lib/typescript/screentransition/index.d.ts","./node_modules/react-native-reanimated/lib/typescript/workletfunctions.d.ts","./node_modules/react-native-reanimated/lib/typescript/index.d.ts","./node_modules/react-native-actions-sheet/dist/src/hooks/use-router.d.ts","./node_modules/react-native-actions-sheet/dist/src/types.d.ts","./node_modules/react-native-actions-sheet/dist/src/index.d.ts","./node_modules/react-native-actions-sheet/dist/src/sheetmanager.d.ts","./node_modules/react-native-actions-sheet/dist/src/provider.d.ts","./node_modules/react-native-actions-sheet/dist/src/context.d.ts","./node_modules/react-native-actions-sheet/dist/src/hooks/use-scroll-handlers.d.ts","./node_modules/react-native-actions-sheet/dist/src/views/scrollview.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/directions.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/state.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/pointertype.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/gesturehandlerroothoc.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/gesturehandlerrootview.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/toucheventtype.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/typeutils.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gesturehandlercommon.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/gesturestatemanager.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/web/interfaces.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gesturehandlereventpayload.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/gesture.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/tapgesturehandler.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/forcetouchgesturehandler.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/forcetouchgesture.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/longpressgesturehandler.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/pangesturehandler.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/pangesture.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/pinchgesturehandler.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/pinchgesture.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/rotationgesturehandler.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/flinggesturehandler.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/nativeviewgesturehandler.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/createnativewrapper.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/gesturecomposition.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/gesturedetector/index.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/flinggesture.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/longpressgesture.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/rotationgesture.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/tapgesture.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/nativegesture.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/manualgesture.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/hovergesture.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gestures/gestureobjects.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/gesturebuttonsprops.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/gesturehandlerbutton.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/gesturebuttons.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/extrabuttonprops.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/generictouchableprops.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/touchablehighlight.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/touchableopacity.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/generictouchable.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/touchablewithoutfeedback.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/touchablenativefeedback.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/touchables/index.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/gesturecomponents.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/text.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/handlers/gesturehandlertypescompat.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/swipeable.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/utils.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/pressable/pressableprops.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/pressable/pressable.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/pressable/index.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/components/drawerlayout.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/enablenewwebimplementation.d.ts","./node_modules/react-native-gesture-handler/lib/typescript/index.d.ts","./node_modules/react-native-actions-sheet/dist/src/views/flatlist.d.ts","./node_modules/react-native-actions-sheet/dist/index.d.ts","./app/utils/events.js","./app/services/event-manager.ts","./node_modules/zustand/vanilla.d.ts","./node_modules/zustand/react.d.ts","./node_modules/zustand/index.d.ts","./node_modules/react-native-mmkv-storage/dist/src/encryption.d.ts","./node_modules/react-native-mmkv-storage/dist/src/eventmanager.d.ts","./node_modules/react-native-mmkv-storage/dist/src/indexer/strings.d.ts","./node_modules/react-native-mmkv-storage/dist/src/indexer/numbers.d.ts","./node_modules/react-native-mmkv-storage/dist/src/indexer/booleans.d.ts","./node_modules/react-native-mmkv-storage/dist/src/indexer/maps.d.ts","./node_modules/react-native-mmkv-storage/dist/src/indexer/arrays.d.ts","./node_modules/react-native-mmkv-storage/dist/src/indexer/indexer.d.ts","./node_modules/react-native-mmkv-storage/dist/src/types/index.d.ts","./node_modules/react-native-mmkv-storage/dist/src/transactions.d.ts","./node_modules/react-native-mmkv-storage/dist/src/mmkvinstance.d.ts","./node_modules/react-native-mmkv-storage/dist/src/hooks/useindex.d.ts","./node_modules/react-native-mmkv-storage/dist/src/hooks/usemmkv.d.ts","./node_modules/react-native-mmkv-storage/dist/src/hooks/usemmkvref.d.ts","./node_modules/react-native-mmkv-storage/dist/src/initializer.d.ts","./node_modules/react-native-mmkv-storage/dist/src/mmkvloader.d.ts","./node_modules/react-native-mmkv-storage/dist/src/mmkv/init.d.ts","./node_modules/react-native-mmkv-storage/dist/src/utils.d.ts","./node_modules/react-native-mmkv-storage/dist/index.d.ts","./node_modules/zustand/middleware/redux.d.ts","./node_modules/zustand/middleware/devtools.d.ts","./node_modules/zustand/middleware/subscribewithselector.d.ts","./node_modules/zustand/middleware/combine.d.ts","./node_modules/zustand/middleware/persist.d.ts","./node_modules/zustand/middleware.d.ts","./app/common/database/mmkv.ts","./node_modules/react-native-webview/lib/rncwebviewnativecomponent.d.ts","./node_modules/react-native-webview/lib/webviewtypes.d.ts","./node_modules/react-native-webview/index.d.ts","./app/utils/notesnook-module.ts","../../packages/editor/node_modules/orderedmap/dist/index.d.ts","../../packages/editor/node_modules/prosemirror-model/dist/index.d.ts","../../packages/editor/node_modules/prosemirror-transform/dist/index.d.ts","../../packages/editor/node_modules/prosemirror-view/dist/index.d.ts","../../packages/editor/node_modules/prosemirror-state/dist/index.d.ts","../../packages/editor/node_modules/@tiptap/pm/state/dist/index.d.ts","../../packages/editor/node_modules/@tiptap/pm/model/dist/index.d.ts","../../packages/editor/node_modules/@tiptap/pm/view/dist/index.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/eventemitter.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/inputrule.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/pasterule.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/node.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/mark.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extension.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/types.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensionmanager.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/nodepos.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensions/clipboardtextserializer.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/blur.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/clearcontent.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/clearnodes.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/command.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/createparagraphnear.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/cut.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/deletecurrentnode.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/deletenode.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/deleterange.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/deleteselection.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/enter.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/exitcode.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/extendmarkrange.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/first.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/focus.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/foreach.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/insertcontent.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/insertcontentat.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/join.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/joinitembackward.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/joinitemforward.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/jointextblockbackward.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/jointextblockforward.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/keyboardshortcut.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/lift.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/liftemptyblock.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/liftlistitem.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/newlineincode.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/resetattributes.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/scrollintoview.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/selectall.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/selectnodebackward.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/selectnodeforward.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/selectparentnode.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/selecttextblockend.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/selecttextblockstart.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/setcontent.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/setmark.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/setmeta.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/setnode.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/setnodeselection.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/settextselection.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/sinklistitem.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/splitblock.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/splitlistitem.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/togglelist.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/togglemark.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/togglenode.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/togglewrap.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/undoinputrule.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/unsetallmarks.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/unsetmark.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/updateattributes.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/wrapin.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/wrapinlist.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commands/index.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensions/commands.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensions/editable.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensions/focusevents.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensions/keymap.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensions/tabindex.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/extensions/index.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/editor.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/commandmanager.d.ts","../../packages/editor/node_modules/@tiptap/pm/transform/dist/index.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/combinetransactionsteps.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/createchainablestate.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/createdocument.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/createnodefromcontent.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/defaultblockat.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/findchildren.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/findchildreninrange.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/findparentnode.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/findparentnodeclosesttopos.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/generatehtml.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/generatejson.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/generatetext.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getattributes.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getattributesfromextensions.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getchangedranges.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getdebugjson.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getextensionfield.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/gethtmlfromfragment.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getmarkattributes.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getmarkrange.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getmarksbetween.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getmarktype.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getnodeatposition.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getnodeattributes.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getnodetype.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getrenderedattributes.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getschema.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getschemabyresolvedextensions.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getschematypebyname.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getschematypenamebyname.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/getsplittedattributes.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/gettext.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/gettextbetween.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/gettextcontentfromnodes.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/gettextserializersfromschema.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/injectextensionattributestoparserule.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/isactive.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/isatendofnode.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/isatstartofnode.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/isextensionrulesenabled.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/islist.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/ismarkactive.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/isnodeactive.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/isnodeempty.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/isnodeselection.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/istextselection.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/postodomrect.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/resolvefocusposition.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/selectiontoinsertionend.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/splitextensions.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/helpers/index.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/inputrules/markinputrule.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/inputrules/nodeinputrule.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/inputrules/textblocktypeinputrule.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/inputrules/textinputrule.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/inputrules/wrappinginputrule.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/inputrules/index.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/nodeview.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/pasterules/markpasterule.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/pasterules/nodepasterule.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/pasterules/textpasterule.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/pasterules/index.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/tracker.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/callorreturn.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/createstyletag.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/deleteprops.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/elementfromstring.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/escapeforregex.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/findduplicates.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/fromstring.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/isemptyobject.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/isfunction.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/isios.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/ismacos.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/isnumber.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/isplainobject.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/isregexp.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/isstring.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/mergeattributes.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/mergedeep.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/minmax.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/objectincludes.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/removeduplicates.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/utilities/index.d.ts","../../packages/editor/node_modules/@tiptap/core/dist/packages/core/src/index.d.ts","../../packages/editor/dist/types/extensions/link/link.d.ts","../../packages/editor/dist/types/extensions/link/index.d.ts","../../packages/editor/dist/types/extensions/attachment/types.d.ts","../../packages/editor/dist/types/extensions/attachment/attachment.d.ts","../../packages/editor/dist/types/extensions/attachment/index.d.ts","../../packages/editor/dist/types/extensions/date-time/date-time.d.ts","../../packages/editor/dist/types/extensions/date-time/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-text-style/dist/packages/extension-text-style/src/text-style.d.ts","../../packages/editor/node_modules/@tiptap/extension-text-style/dist/packages/extension-text-style/src/index.d.ts","../../packages/editor/dist/types/extensions/text-direction/text-direction.d.ts","../../packages/editor/dist/types/extensions/text-direction/index.d.ts","../../packages/editor/dist/types/extensions/image/image.d.ts","../../packages/editor/dist/types/extensions/image/index.d.ts","../../packages/editor/dist/types/extensions/web-clip/web-clip.d.ts","../../packages/editor/dist/types/extensions/web-clip/index.d.ts","../../packages/editor/dist/types/hooks/use-permission-handler.d.ts","../../packages/editor/node_modules/@theme-ui/components/dist/theme-ui-components.cjs.d.ts","../../packages/editor/dist/types/types.d.ts","../../packages/editor/dist/types/utils/downloader.d.ts","../../packages/editor/node_modules/zustand/esm/index.d.mts","../../packages/editor/dist/types/toolbar/stores/toolbar-store.d.ts","../../packages/editor/dist/types/toolbar/icons.d.ts","../../packages/editor/node_modules/@types/react/index.d.ts","../../packages/editor/node_modules/@types/react/jsx-runtime.d.ts","../../packages/editor/dist/types/toolbar/tools/inline.d.ts","../../packages/editor/dist/types/toolbar/tools/block.d.ts","../../packages/editor/dist/types/toolbar/tools/font.d.ts","../../packages/editor/dist/types/toolbar/tools/alignment.d.ts","../../packages/editor/dist/types/toolbar/tools/headings.d.ts","../../packages/editor/dist/types/toolbar/tools/lists.d.ts","../../packages/editor/dist/types/toolbar/tools/text-direction.d.ts","../../packages/editor/dist/types/toolbar/tools/colors.d.ts","../../packages/editor/dist/types/toolbar/tools/table.d.ts","../../packages/editor/dist/types/toolbar/tools/image.d.ts","../../packages/editor/dist/types/toolbar/tools/attachment.d.ts","../../packages/editor/dist/types/toolbar/tools/embed.d.ts","../../packages/editor/dist/types/toolbar/tools/link.d.ts","../../packages/editor/dist/types/toolbar/tools/web-clip.d.ts","../../packages/editor/dist/types/toolbar/tools/index.d.ts","../../packages/editor/dist/types/toolbar/types.d.ts","../../packages/editor/dist/types/toolbar/toolbar.d.ts","../../packages/editor/dist/types/toolbar/tool-definitions.d.ts","../../packages/editor/dist/types/toolbar/index.d.ts","../../packages/editor/dist/types/utils/prosemirror.d.ts","../../packages/editor/node_modules/alfaaz/dist/index.d.ts","../../packages/editor/dist/types/utils/word-counter.d.ts","../../packages/editor/dist/types/utils/font.d.ts","../../packages/editor/dist/types/utils/toc.d.ts","../../packages/editor/node_modules/@tiptap/extension-history/dist/packages/extension-history/src/history.d.ts","../../packages/editor/node_modules/@tiptap/extension-history/dist/packages/extension-history/src/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-character-count/dist/packages/extension-character-count/src/character-count.d.ts","../../packages/editor/node_modules/@tiptap/extension-character-count/dist/packages/extension-character-count/src/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-placeholder/dist/packages/extension-placeholder/src/placeholder.d.ts","../../packages/editor/node_modules/@tiptap/extension-placeholder/dist/packages/extension-placeholder/src/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-underline/dist/packages/extension-underline/src/underline.d.ts","../../packages/editor/node_modules/@tiptap/extension-underline/dist/packages/extension-underline/src/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-blockquote/dist/packages/extension-blockquote/src/blockquote.d.ts","../../packages/editor/node_modules/@tiptap/extension-blockquote/dist/packages/extension-blockquote/src/index.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-bold/dist/packages/extension-bold/src/bold.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-bold/dist/packages/extension-bold/src/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-bullet-list/dist/packages/extension-bullet-list/src/bullet-list.d.ts","../../packages/editor/node_modules/@tiptap/extension-bullet-list/dist/packages/extension-bullet-list/src/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-code/dist/packages/extension-code/src/code.d.ts","../../packages/editor/node_modules/@tiptap/extension-code/dist/packages/extension-code/src/index.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-code-block/dist/packages/extension-code-block/src/code-block.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-code-block/dist/packages/extension-code-block/src/index.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-dropcursor/dist/packages/extension-dropcursor/src/dropcursor.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-dropcursor/dist/packages/extension-dropcursor/src/index.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-hard-break/dist/packages/extension-hard-break/src/hard-break.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-hard-break/dist/packages/extension-hard-break/src/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-heading/dist/packages/extension-heading/src/heading.d.ts","../../packages/editor/node_modules/@tiptap/extension-heading/dist/packages/extension-heading/src/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-horizontal-rule/dist/packages/extension-horizontal-rule/src/horizontal-rule.d.ts","../../packages/editor/node_modules/@tiptap/extension-horizontal-rule/dist/packages/extension-horizontal-rule/src/index.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-italic/dist/packages/extension-italic/src/italic.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-italic/dist/packages/extension-italic/src/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-list-item/dist/packages/extension-list-item/src/list-item.d.ts","../../packages/editor/node_modules/@tiptap/extension-list-item/dist/packages/extension-list-item/src/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-ordered-list/dist/packages/extension-ordered-list/src/ordered-list.d.ts","../../packages/editor/node_modules/@tiptap/extension-ordered-list/dist/packages/extension-ordered-list/src/index.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-paragraph/dist/packages/extension-paragraph/src/paragraph.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-paragraph/dist/packages/extension-paragraph/src/index.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-strike/dist/packages/extension-strike/src/strike.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-strike/dist/packages/extension-strike/src/index.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/dist/packages/starter-kit/src/starter-kit.d.ts","../../packages/editor/node_modules/@tiptap/starter-kit/dist/packages/starter-kit/src/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-text-align/dist/packages/extension-text-align/src/text-align.d.ts","../../packages/editor/node_modules/@tiptap/extension-text-align/dist/packages/extension-text-align/src/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-subscript/dist/packages/extension-subscript/src/subscript.d.ts","../../packages/editor/node_modules/@tiptap/extension-subscript/dist/packages/extension-subscript/src/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-superscript/dist/packages/extension-superscript/src/superscript.d.ts","../../packages/editor/node_modules/@tiptap/extension-superscript/dist/packages/extension-superscript/src/index.d.ts","../../packages/editor/dist/types/extensions/font-size/font-size.d.ts","../../packages/editor/dist/types/extensions/font-size/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-font-family/dist/packages/extension-font-family/src/font-family.d.ts","../../packages/editor/node_modules/@tiptap/extension-font-family/dist/packages/extension-font-family/src/index.d.ts","../../packages/editor/dist/types/extensions/bullet-list/bullet-list.d.ts","../../packages/editor/dist/types/extensions/bullet-list/index.d.ts","../../packages/editor/dist/types/extensions/ordered-list/ordered-list.d.ts","../../packages/editor/dist/types/extensions/ordered-list/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-color/dist/packages/extension-color/src/color.d.ts","../../packages/editor/node_modules/@tiptap/extension-color/dist/packages/extension-color/src/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-table-row/dist/packages/extension-table-row/src/table-row.d.ts","../../packages/editor/node_modules/@tiptap/extension-table-row/dist/packages/extension-table-row/src/index.d.ts","../../packages/editor/dist/types/extensions/table-cell/table-cell.d.ts","../../packages/editor/dist/types/extensions/table-cell/index.d.ts","../../packages/editor/dist/types/extensions/table-header/table-header.d.ts","../../packages/editor/dist/types/extensions/table-header/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-task-list/dist/packages/extension-task-list/src/task-list.d.ts","../../packages/editor/node_modules/@tiptap/extension-task-list/dist/packages/extension-task-list/src/index.d.ts","../../packages/editor/dist/types/extensions/task-list/task-list.d.ts","../../packages/editor/dist/types/extensions/task-list/index.d.ts","../../packages/editor/node_modules/@tiptap/extension-task-item/dist/packages/extension-task-item/src/task-item.d.ts","../../packages/editor/node_modules/@tiptap/extension-task-item/dist/packages/extension-task-item/src/index.d.ts","../../packages/editor/dist/types/extensions/task-item/task-item.d.ts","../../packages/editor/dist/types/extensions/task-item/index.d.ts","../../packages/editor/dist/types/toolbar/stores/search-store.d.ts","../../packages/editor/dist/types/extensions/search-replace/search-replace.d.ts","../../packages/editor/dist/types/extensions/search-replace/index.d.ts","../../packages/editor/dist/types/extensions/embed/embed.d.ts","../../packages/editor/dist/types/extensions/embed/index.d.ts","../../packages/editor/dist/types/extensions/code-block/utils.d.ts","../../packages/editor/dist/types/extensions/code-block/code-block.d.ts","../../packages/editor/dist/types/extensions/code-block/index.d.ts","../../packages/editor/dist/types/extensions/list-item/list-item.d.ts","../../packages/editor/dist/types/extensions/list-item/index.d.ts","../../packages/editor/dist/types/extensions/outline-list/outline-list.d.ts","../../packages/editor/dist/types/extensions/outline-list/index.d.ts","../../packages/editor/dist/types/extensions/outline-list-item/outline-list-item.d.ts","../../packages/editor/dist/types/extensions/outline-list-item/index.d.ts","../../packages/editor/dist/types/extensions/table/table.d.ts","../../packages/editor/dist/types/extensions/table/index.d.ts","../../packages/editor/dist/types/extensions/check-list/check-list.d.ts","../../packages/editor/dist/types/extensions/check-list/index.d.ts","../../packages/editor/dist/types/extensions/check-list-item/check-list-item.d.ts","../../packages/editor/dist/types/extensions/check-list-item/index.d.ts","../../packages/editor/dist/types/extension-imports.d.ts","../../packages/editor/dist/types/index.d.ts","../../packages/editor-mobile/src/utils/editor-events.ts","../../packages/editor-mobile/src/utils/native-events.ts","./node_modules/async-mutex/lib/index.d.ts","./node_modules/react-native-notification-sounds/index.d.ts","./node_modules/react-native-scoped-storage/dist/index.d.ts","./app/stores/use-setting-store.ts","./app/hooks/use-global-safe-area-insets.ts","./node_modules/react-native-device-info/lib/typescript/internal/types.d.ts","./node_modules/react-native-device-info/lib/typescript/internal/privatetypes.d.ts","./node_modules/react-native-device-info/lib/typescript/index.d.ts","./app/services/device-detection.js","./node_modules/@react-navigation/routers/lib/typescript/src/types.d.ts","./node_modules/@react-navigation/routers/lib/typescript/src/commonactions.d.ts","./node_modules/@react-navigation/routers/lib/typescript/src/baserouter.d.ts","./node_modules/@react-navigation/routers/lib/typescript/src/tabrouter.d.ts","./node_modules/@react-navigation/routers/lib/typescript/src/drawerrouter.d.ts","./node_modules/@react-navigation/routers/lib/typescript/src/stackrouter.d.ts","./node_modules/@react-navigation/routers/lib/typescript/src/index.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/types.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/basenavigationcontainer.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/createnavigationcontainerref.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/createnavigatorfactory.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/currentrendercontext.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/findfocusedroute.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/getactionfromstate.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/getfocusedroutenamefromroute.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/getpathfromstate.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/getstatefrompath.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/navigationcontainerrefcontext.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/navigationcontext.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/navigationhelperscontext.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/navigationroutecontext.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/preventremovecontext.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/preventremoveprovider.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/usefocuseffect.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/useisfocused.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/usenavigation.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/usenavigationbuilder.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/usenavigationcontainerref.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/usenavigationstate.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/usepreventremove.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/usepreventremovecontext.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/useroute.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/validatepathconfig.d.ts","./node_modules/@react-navigation/core/lib/typescript/src/index.d.ts","./node_modules/@react-navigation/native/lib/typescript/src/uselinkto.d.ts","./node_modules/@react-navigation/native/lib/typescript/src/link.d.ts","./node_modules/@react-navigation/native/lib/typescript/src/types.d.ts","./node_modules/@react-navigation/native/lib/typescript/src/linkingcontext.d.ts","./node_modules/@react-navigation/native/lib/typescript/src/navigationcontainer.d.ts","./node_modules/@react-navigation/native/lib/typescript/src/servercontext.d.ts","./node_modules/@react-navigation/native/lib/typescript/src/servercontainer.d.ts","./node_modules/@react-navigation/native/lib/typescript/src/theming/darktheme.d.ts","./node_modules/@react-navigation/native/lib/typescript/src/theming/defaulttheme.d.ts","./node_modules/@react-navigation/native/lib/typescript/src/theming/themeprovider.d.ts","./node_modules/@react-navigation/native/lib/typescript/src/theming/usetheme.d.ts","./node_modules/@react-navigation/native/lib/typescript/src/uselinkbuilder.d.ts","./node_modules/@react-navigation/native/lib/typescript/src/uselinkprops.d.ts","./node_modules/@react-navigation/native/lib/typescript/src/usescrolltotop.d.ts","./node_modules/@react-navigation/native/lib/typescript/src/index.d.ts","./node_modules/react-native-screens/lib/typescript/fabric/nativescreensmodule.d.ts","./node_modules/react-native-screens/lib/typescript/native-stack/types.d.ts","./node_modules/react-native-screens/lib/typescript/components/shared/types.d.ts","./node_modules/react-native-screens/lib/typescript/components/bottom-tabs/bottomtabs.types.d.ts","./node_modules/react-native-screens/lib/typescript/components/bottom-tabs/bottomtabsscreen.types.d.ts","./node_modules/react-native-screens/lib/typescript/types.d.ts","./node_modules/react-native-screens/lib/typescript/core.d.ts","./node_modules/react-native-screens/lib/typescript/components/screen.d.ts","./node_modules/react-native-screens/lib/typescript/fabric/screenstackheadersubviewnativecomponent.d.ts","./node_modules/react-native-screens/lib/typescript/components/screenstackheaderconfig.d.ts","./node_modules/react-native-screens/lib/typescript/components/searchbar.d.ts","./node_modules/react-native-screens/lib/typescript/components/screencontainer.d.ts","./node_modules/react-native-screens/lib/typescript/components/screenstack.d.ts","./node_modules/react-native-screens/lib/typescript/components/screenstackitem.d.ts","./node_modules/react-native-screens/lib/typescript/components/fullwindowoverlay.d.ts","./node_modules/react-native-screens/lib/typescript/components/screenfooter.d.ts","./node_modules/react-native-screens/lib/typescript/components/screencontentwrapper.d.ts","./node_modules/react-native-screens/lib/typescript/utils.d.ts","./node_modules/react-native-screens/lib/typescript/flags.d.ts","./node_modules/react-native-screens/lib/typescript/usetransitionprogress.d.ts","./node_modules/react-native-screens/lib/typescript/components/bottom-tabs/bottomtabs.d.ts","./node_modules/react-native-screens/lib/typescript/components/bottom-tabs/bottomtabsscreen.d.ts","./node_modules/react-native-screens/lib/typescript/index.d.ts","./node_modules/@react-navigation/native-stack/lib/typescript/src/types.d.ts","./node_modules/@react-navigation/native-stack/lib/typescript/src/navigators/createnativestacknavigator.d.ts","./node_modules/@react-navigation/native-stack/lib/typescript/src/views/nativestackview.d.ts","./node_modules/@react-navigation/native-stack/lib/typescript/src/index.d.ts","./app/stores/create-db-collection-store.ts","./app/stores/use-favorite-store.ts","./app/stores/use-navigation-store.ts","./app/stores/use-notebook-store.ts","./app/stores/use-notes-store.ts","./app/stores/use-reminder-store.ts","./app/stores/use-tag-store.ts","./app/stores/use-trash-store.ts","./app/components/side-menu/dragging-store.ts","./app/components/fluid-panels/index.tsx","./app/utils/global-refs.ts","./app/stores/use-archived-store.ts","./app/services/navigation.ts","./app/services/note-preview-widget.ts","./node_modules/@ammarahmed/notifee-react-native/dist/types/notificationios.d.ts","./node_modules/@ammarahmed/notifee-react-native/dist/types/notificationandroid.d.ts","./node_modules/@ammarahmed/notifee-react-native/dist/types/notificationweb.d.ts","./node_modules/@ammarahmed/notifee-react-native/dist/types/notification.d.ts","./node_modules/@ammarahmed/notifee-react-native/dist/types/trigger.d.ts","./node_modules/@ammarahmed/notifee-react-native/dist/types/powermanagerinfo.d.ts","./node_modules/@ammarahmed/notifee-react-native/dist/types/module.d.ts","./node_modules/@ammarahmed/notifee-react-native/dist/types/library.d.ts","./node_modules/@ammarahmed/notifee-react-native/dist/index.d.ts","./node_modules/dayjs/locale/types.d.ts","./node_modules/dayjs/locale/index.d.ts","./node_modules/dayjs/index.d.ts","./node_modules/entities/lib/encode.d.ts","./node_modules/entities/lib/generated/decode-data-html.d.ts","./node_modules/entities/lib/generated/decode-data-xml.d.ts","./node_modules/entities/lib/decode.d.ts","./node_modules/entities/lib/index.d.ts","./app/utils/size/index.js","./app/utils/styles.ts","./app/utils/tooltip.ts","./app/stores/use-user-store.ts","./node_modules/react-native-screenguard/src/types/data.d.ts","./node_modules/react-native-screenguard/src/types/index.d.ts","./app/services/settings.ts","./node_modules/react-native-theme-switch-animation/lib/typescript/src/index.d.ts","./node_modules/react-native-navigation-bar-color/index.d.ts","./app/stores/use-theme-store.ts","./app/utils/colors.js","./app/components/ui/pressable/index.tsx","./app/components/ui/typography/heading.tsx","./app/components/ui/typography/paragraph.tsx","./app/components/ui/button/index.tsx","./app/components/dialog/functions.ts","./app/stores/use-relation-store.ts","./app/utils/note-to-text.ts","./app/utils/time/index.ts","./app/services/notifications.ts","./node_modules/@ammarahmed/react-native-fingerprint-scanner/index.d.ts","./node_modules/react-native-keychain/typings/react-native-keychain.d.ts","./node_modules/@ammarahmed/react-native-sodium/types.ts","./node_modules/@ammarahmed/react-native-sodium/index.ts","./node_modules/react-native-securerandom/index.d.ts","./app/common/database/encryption.ts","./app/common/database/storage.ts","./app/services/biometrics.ts","./app/utils/unlock-vault.ts","./app/stores/use-menu-store.ts","./app/stores/item-selection-store.ts","./app/stores/create-notebook-tree-stores.ts","./app/components/side-menu/stores.ts","./app/utils/functions.ts","./app/screens/notes/common.ts","./app/screens/editor/tiptap/commands.ts","./app/screens/editor/tiptap/session-history.ts","./app/screens/editor/tiptap/use-editor.ts","./app/screens/editor/tiptap/types.ts","./app/screens/editor/tiptap/utils.ts","./app/screens/editor/tiptap/use-tab-store.ts","./app/stores/use-attachment-store.ts","./app/utils/constants.ts","./app/common/filesystem/utils.ts","./app/common/filesystem/io.ts","./app/common/filesystem/download.ts","./node_modules/@ammarahmed/react-native-upload/dist/index.d.ts","./app/common/filesystem/upload.ts","./app/common/filesystem/index.ts","./node_modules/react-native-quick-sqlite/lib/typescript/module/index.d.ts","./app/common/database/sqlite.kysely.ts","./app/common/database/logger.ts","./app/common/database/index.ts","./app/hooks/use-db-item.ts","./node_modules/@bam.tech/react-native-image-resizer/lib/typescript/types.d.ts","./node_modules/@bam.tech/react-native-image-resizer/lib/typescript/index.d.ts","./app/common/filesystem/compress.js","./app/utils/note-bundle.js","./app/share/store.ts","./app/share/add-notebooks.jsx","./app/share/add-tags.jsx","./app/share/editor.tsx","./app/share/fetch-webview.tsx","./app/hooks/use-notebook.ts","./app/utils/elevation.ts","./app/share/search.tsx","./app/share/share.tsx","./app/share/index.tsx","./index.ext.js","./node_modules/@ammarahmed/react-native-background-fetch/index.d.ts","./app/services/background-sync.ts","./app.json","./node_modules/@lingui/react/dist/shared/react.b2b749a9.d.mts","./node_modules/@lingui/react/dist/index.d.mts","./node_modules/react-native-iap/lib/typescript/src/types/android.d.ts","./node_modules/react-native-iap/lib/typescript/src/modules/common.d.ts","./node_modules/react-native-iap/lib/typescript/src/modules/android.d.ts","./node_modules/react-native-iap/lib/typescript/src/types/apple.d.ts","./node_modules/react-native-iap/lib/typescript/src/modules/ios.d.ts","./node_modules/react-native-iap/lib/typescript/src/modules/index.d.ts","./node_modules/react-native-iap/lib/typescript/src/purchaseerror.d.ts","./node_modules/react-native-iap/lib/typescript/src/types/applesk2.d.ts","./node_modules/react-native-iap/lib/typescript/src/modules/iossk2.d.ts","./node_modules/react-native-iap/lib/typescript/src/types/index.d.ts","./node_modules/react-native-iap/lib/typescript/src/types/amazon.d.ts","./node_modules/react-native-iap/lib/typescript/src/modules/amazon.d.ts","./node_modules/react-native-iap/lib/typescript/src/internal/enhancedfetch.d.ts","./node_modules/react-native-iap/lib/typescript/src/internal/fillproductswithadditionaldata.d.ts","./node_modules/react-native-iap/lib/typescript/src/internal/platform.d.ts","./node_modules/react-native-iap/lib/typescript/src/internal/index.d.ts","./node_modules/react-native-iap/lib/typescript/src/iap.d.ts","./node_modules/react-native-iap/lib/typescript/src/eventemitter.d.ts","./node_modules/react-native-iap/lib/typescript/src/hooks/useiap.d.ts","./node_modules/react-native-iap/lib/typescript/src/hooks/withiapcontext.d.ts","./node_modules/react-native-iap/lib/typescript/src/utils/errormapping.d.ts","./node_modules/react-native-iap/lib/typescript/src/utils/typeguards.d.ts","./node_modules/react-native-iap/lib/typescript/src/index.d.ts","./app/services/premium.ts","./app/stores/use-message-store.ts","./app/hooks/use-is-floating-keyboard.ts","./app/components/ui/transitions/bouncing-view.jsx","./app/components/dialog/base-dialog.tsx","./app/components/announcements/body.tsx","./e2e/test.ids.js","./app/hooks/use-keyboard.ts","./app/components/toast/index.tsx","./app/components/ui/sheet/index.jsx","./app/components/sheet-provider/index.jsx","./app/components/announcements/cta.tsx","./app/components/announcements/description.tsx","./app/components/announcements/list.tsx","./app/components/announcements/photo.tsx","./app/components/announcements/subheading.tsx","./app/components/announcements/title.tsx","./app/components/announcements/functions.tsx","./app/components/announcements/index.tsx","./app/components/auth/common.ts","./app/screens/settings/functions.js","./node_modules/react-native-check-version/index.d.ts","./app/components/ui/seperator/index.tsx","./node_modules/react-native-progress/index.d.ts","./node_modules/react-native-svg/lib/typescript/lib/extract/types.d.ts","./node_modules/react-native-svg/lib/typescript/elements/shape.d.ts","./node_modules/react-native-svg/lib/typescript/elements/g.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/utils.d.ts","./node_modules/react-native-svg/lib/typescript/elements/svg.d.ts","./node_modules/react-native-svg/lib/typescript/elements/circle.d.ts","./node_modules/react-native-svg/lib/typescript/elements/clippath.d.ts","./node_modules/react-native-svg/lib/typescript/elements/defs.d.ts","./node_modules/react-native-svg/lib/typescript/elements/ellipse.d.ts","./node_modules/react-native-svg/lib/typescript/elements/foreignobject.d.ts","./node_modules/react-native-svg/lib/typescript/elements/image.d.ts","./node_modules/react-native-svg/lib/typescript/elements/line.d.ts","./node_modules/react-native-svg/lib/typescript/elements/lineargradient.d.ts","./node_modules/react-native-svg/lib/typescript/elements/marker.d.ts","./node_modules/react-native-svg/lib/typescript/elements/mask.d.ts","./node_modules/react-native-svg/lib/typescript/elements/path.d.ts","./node_modules/react-native-svg/lib/typescript/elements/pattern.d.ts","./node_modules/react-native-svg/lib/typescript/elements/polygon.d.ts","./node_modules/react-native-svg/lib/typescript/elements/polyline.d.ts","./node_modules/react-native-svg/lib/typescript/elements/radialgradient.d.ts","./node_modules/react-native-svg/lib/typescript/elements/rect.d.ts","./node_modules/react-native-svg/lib/typescript/elements/stop.d.ts","./node_modules/react-native-svg/lib/typescript/elements/symbol.d.ts","./node_modules/react-native-svg/lib/typescript/lib/extract/extracttext.d.ts","./node_modules/react-native-svg/lib/typescript/elements/tspan.d.ts","./node_modules/react-native-svg/lib/typescript/elements/text.d.ts","./node_modules/react-native-svg/lib/typescript/elements/textpath.d.ts","./node_modules/react-native-svg/lib/typescript/elements/use.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/filterprimitive.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/feblend.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/fecolormatrix.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/fecomponenttransfer.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/fecomponenttransferfunction.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/fecomposite.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/types.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/feconvolvematrix.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/fediffuselighting.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/fedisplacementmap.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/fedistantlight.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/fedropshadow.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/feflood.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/fegaussianblur.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/feimage.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/femerge.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/femergenode.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/femorphology.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/feoffset.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/fepointlight.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/fespecularlighting.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/fespotlight.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/fetile.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/feturbulence.d.ts","./node_modules/react-native-svg/lib/typescript/elements/filters/filter.d.ts","./node_modules/react-native-svg/lib/typescript/elements.d.ts","./node_modules/react-native-svg/lib/typescript/xmltags.d.ts","./node_modules/react-native-svg/lib/typescript/xml.d.ts","./node_modules/react-native-svg/lib/typescript/utils/fetchdata.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/codegenutils.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/circlenativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/clippathnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/defsnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/ellipsenativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/foreignobjectnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/groupnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/imagenativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/lineargradientnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/linenativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/markernativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/masknativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/pathnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/patternnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/radialgradientnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/rectnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/androidsvgviewnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/iossvgviewnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/symbolnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/textnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/textpathnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/tspannativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/usenativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/filternativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/feblendnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/fecolormatrixnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/fecompositenativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/fefloodnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/fegaussianblurnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/femergenativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/feoffsetnativecomponent.d.ts","./node_modules/react-native-svg/lib/typescript/fabric/index.d.ts","./node_modules/react-native-svg/lib/typescript/deprecated.d.ts","./node_modules/react-native-svg/lib/typescript/reactnativesvg.d.ts","./node_modules/react-native-svg/lib/typescript/index.d.ts","./node_modules/react-native-qrcode-svg/index.d.ts","./app/components/ui/svg/module-svg.js","./app/components/ui/svg/lazy.js","./app/components/ui/svg/index.tsx","./app/components/sheets/update/index.js","./app/utils/github-version.ts","./app/services/message.tsx","./app/stores/use-monograph-store.ts","./app/stores/index.ts","./app/services/sync.ts","./node_modules/@types/validator/lib/isemail.d.ts","./app/services/validation.js","./app/components/ui/icon-button/index.tsx","./node_modules/phone/dist/data/country_phone_data.d.ts","./node_modules/phone/dist/index.d.ts","./app/components/ui/input/index.tsx","./app/components/ui/appicon/index.tsx","./app/components/ui/notice/index.tsx","./app/components/dialog/dialog-buttons.tsx","./app/components/dialog/dialog-header.tsx","./app/components/dialog/index.tsx","./app/hooks/use-timer.ts","./app/components/auth/two-factor.tsx","./app/components/auth/use-login.ts","./app/components/auth/session-expired.tsx","./app/components/dialogs/applock-password/index.tsx","./app/components/dialogs/jump-to-section/index.tsx","./app/components/dialogs/loading/index.tsx","./node_modules/react-native-orientation-locker/index.d.ts","./node_modules/react-native-pdf/index.d.ts","./node_modules/react-native-file-viewer/index.d.ts","./node_modules/react-native-zip-archive/index.d.ts","./app/components/sheets/export-notes/share.jsx","./app/common/filesystem/download-attachment.tsx","./app/hooks/use-attachment-progress.ts","./app/components/dialogs/pdf-preview/index.jsx","./node_modules/react-native-share/lib/typescript/components/overlay.d.ts","./node_modules/react-native-share/lib/typescript/components/sheet.d.ts","./node_modules/react-native-share/lib/typescript/components/button.d.ts","./node_modules/react-native-share/lib/typescript/components/sharesheet.d.ts","./node_modules/react-native-share/lib/typescript/types.d.ts","./node_modules/react-native-share/lib/typescript/index.d.ts","./app/components/dialogs/vault/index.jsx","./node_modules/react-native-image-zoom-viewer/built/image-viewer.type.d.ts","./node_modules/react-native-image-zoom-viewer/built/image-viewer.component.d.ts","./node_modules/react-native-image-zoom-viewer/built/index.d.ts","./app/components/image-preview/index.tsx","./node_modules/@sayem314/react-native-keep-awake/index.d.ts","./app/screens/editor/source.ts","./app/screens/editor/readonly-editor.tsx","./app/components/dialog/dialog-container.tsx","./node_modules/diffblazer/dist/action.d.ts","./node_modules/diffblazer/dist/match.d.ts","./node_modules/diffblazer/dist/operation.d.ts","./node_modules/diffblazer/dist/tokenizer.d.ts","./node_modules/diffblazer/dist/types.d.ts","./node_modules/diffblazer/dist/index.d.ts","./app/components/merge-conflicts/index.jsx","./app/components/sheets/rate-app/index.js","./app/components/sheets/recovery-key/index.jsx","./app/components/dialogs/progress/index.tsx","./app/components/dialog-provider/index.jsx","./node_modules/react-native-bootsplash/dist/typescript/index.d.ts","./app/hooks/use-stored-ref.ts","./app/components/sheets/github/issue.js","./app/components/exception-handler/index.tsx","./app/components/globalsafearea/index.tsx","./app/services/backup.ts","./app/components/sheets/migrate/index.tsx","./app/features.ts","./app/components/sheets/new-feature/index.tsx","./app/hooks/use-pricing-plans.ts","./app/components/sheets/paywall/index.tsx","./app/assets/images/assets.js","./app/hooks/use-rotator.ts","./app/components/walkthroughs/walkthroughs.tsx","./app/components/walkthroughs/index.tsx","./node_modules/react-native-date-picker/index.d.ts","./node_modules/@react-native-community/datetimepicker/src/index.d.ts","./node_modules/react-native-modal-datetime-picker/typings/index.d.ts","./app/stores/use-selection-store.ts","./app/components/header/left-menus.tsx","./app/components/header/right-menus.tsx","./app/components/header/index.tsx","./app/components/ui/reminder-time/index.tsx","./app/hooks/use-navigation-focus.ts","./app/screens/add-reminder/index.tsx","../../packages/editor/dist/cjs/toolbar/icons.js","../../packages/editor/dist/cjs/toolbar/tool-definitions.js","./app/screens/settings/editor/toolbar-definition.ts","./app/screens/settings/editor/state.ts","./app/hooks/use-feature-manager.ts","./app/hooks/use-app-events.tsx","./app/screens/note-preview-configure/index.tsx","./app/services/tip-manager.ts","./app/hooks/use-tooltip.ts","./app/navigation/navigation-stack.tsx","./node_modules/@legendapp/list/index.d.ts","../../servers/themes/node_modules/zod/lib/helpers/typealiases.d.ts","../../servers/themes/node_modules/zod/lib/helpers/util.d.ts","../../servers/themes/node_modules/zod/lib/zoderror.d.ts","../../servers/themes/node_modules/zod/lib/locales/en.d.ts","../../servers/themes/node_modules/zod/lib/errors.d.ts","../../servers/themes/node_modules/zod/lib/helpers/parseutil.d.ts","../../servers/themes/node_modules/zod/lib/helpers/enumutil.d.ts","../../servers/themes/node_modules/zod/lib/helpers/errorutil.d.ts","../../servers/themes/node_modules/zod/lib/helpers/partialutil.d.ts","../../servers/themes/node_modules/zod/lib/types.d.ts","../../servers/themes/node_modules/zod/lib/external.d.ts","../../servers/themes/node_modules/zod/lib/index.d.ts","../../servers/themes/node_modules/zod/index.d.ts","../../servers/themes/node_modules/async-mutex/lib/index.d.ts","../../servers/themes/src/counter.ts","../../servers/themes/src/constants.ts","../../servers/themes/node_modules/@orama/orama/dist/components/tokenizer/languages.d.ts","../../servers/themes/node_modules/@orama/orama/dist/types.d.ts","../../servers/themes/node_modules/@orama/orama/dist/methods/create.d.ts","../../servers/themes/node_modules/@orama/orama/dist/methods/docs.d.ts","../../servers/themes/node_modules/@orama/orama/dist/methods/insert.d.ts","../../servers/themes/node_modules/@orama/orama/dist/methods/remove.d.ts","../../servers/themes/node_modules/@orama/orama/dist/methods/search.d.ts","../../servers/themes/node_modules/@orama/orama/dist/methods/serialization.d.ts","../../servers/themes/node_modules/@orama/orama/dist/methods/update.d.ts","../../servers/themes/node_modules/@orama/orama/dist/utils.d.ts","../../servers/themes/node_modules/@orama/orama/dist/components/defaults.d.ts","../../servers/themes/node_modules/@orama/orama/dist/components/documents-store.d.ts","../../servers/themes/node_modules/@orama/orama/dist/trees/avl.d.ts","../../servers/themes/node_modules/@orama/orama/dist/trees/radix.d.ts","../../servers/themes/node_modules/@orama/orama/dist/components/index.d.ts","../../servers/themes/node_modules/@orama/orama/dist/components/tokenizer/index.d.ts","../../servers/themes/node_modules/@orama/orama/dist/components/sorter.d.ts","../../servers/themes/node_modules/@orama/orama/dist/components.d.ts","../../servers/themes/node_modules/@orama/orama/dist/components/levenshtein.d.ts","../../servers/themes/node_modules/@orama/orama/dist/internals.d.ts","../../servers/themes/node_modules/@orama/orama/dist/index.d.ts","../../servers/themes/src/sync.ts","../../servers/themes/src/schemas.ts","../../servers/themes/src/orama.ts","../../servers/themes/node_modules/@trpc/server/dist/transformer.d.ts","../../servers/themes/node_modules/@trpc/server/dist/rpc/codes.d.ts","../../servers/themes/node_modules/@trpc/server/dist/error/trpcerror.d.ts","../../servers/themes/node_modules/@trpc/server/dist/types.d.ts","../../servers/themes/node_modules/@trpc/server/dist/observable/types.d.ts","../../servers/themes/node_modules/@trpc/server/dist/observable/observable.d.ts","../../servers/themes/node_modules/@trpc/server/dist/observable/operators/share.d.ts","../../servers/themes/node_modules/@trpc/server/dist/observable/operators/map.d.ts","../../servers/themes/node_modules/@trpc/server/dist/observable/operators/tap.d.ts","../../servers/themes/node_modules/@trpc/server/dist/observable/operators/index.d.ts","../../servers/themes/node_modules/@trpc/server/dist/observable/internals/observabletopromise.d.ts","../../servers/themes/node_modules/@trpc/server/dist/observable/index.d.ts","../../servers/themes/node_modules/@trpc/server/dist/rpc/envelopes.d.ts","../../servers/themes/node_modules/@trpc/server/dist/rpc/parsetrpcmessage.d.ts","../../servers/themes/node_modules/@trpc/server/dist/rpc/index.d.ts","../../servers/themes/node_modules/@trpc/server/dist/deprecated/internals/middlewares.d.ts","../../servers/themes/node_modules/@trpc/server/dist/deprecated/internals/procedure.d.ts","../../servers/themes/node_modules/@trpc/server/dist/core/parser.d.ts","../../servers/themes/node_modules/@trpc/server/dist/core/internals/getparsefn.d.ts","../../servers/themes/node_modules/@trpc/server/dist/shared/internal/serialize.d.ts","../../servers/themes/node_modules/@trpc/server/dist/shared/jsonify.d.ts","../../servers/themes/node_modules/@trpc/server/dist/core/types.d.ts","../../servers/themes/node_modules/@trpc/server/dist/core/procedure.d.ts","../../servers/themes/node_modules/@trpc/server/dist/core/internals/utils.d.ts","../../servers/themes/node_modules/@trpc/server/dist/core/middleware.d.ts","../../servers/themes/node_modules/@trpc/server/dist/core/internals/procedurebuilder.d.ts","../../servers/themes/node_modules/@trpc/server/dist/core/router.d.ts","../../servers/themes/node_modules/@trpc/server/dist/core/internals/mergerouters.d.ts","../../servers/themes/node_modules/@trpc/server/dist/core/inittrpc.d.ts","../../servers/themes/node_modules/@trpc/server/dist/core/index.d.ts","../../servers/themes/node_modules/@trpc/server/dist/error/formatter.d.ts","../../servers/themes/node_modules/@trpc/server/dist/core/internals/config.d.ts","../../servers/themes/node_modules/@trpc/server/dist/deprecated/interop.d.ts","../../servers/themes/node_modules/@trpc/server/dist/deprecated/router.d.ts","../../servers/themes/node_modules/@trpc/server/dist/internals.d.ts","../../servers/themes/node_modules/@trpc/server/dist/index.d.ts","../../servers/themes/src/trpc.ts","../../servers/themes/src/api.ts","../../servers/themes/src/index.ts","./node_modules/@react-native-documents/picker/lib/typescript/src/isknowntype.d.ts","./node_modules/@react-native-documents/picker/lib/typescript/src/types.d.ts","./node_modules/@react-native-documents/picker/lib/typescript/src/spec/nativedocumentpicker.d.ts","./node_modules/@react-native-documents/picker/lib/typescript/src/keeplocalcopy.d.ts","./node_modules/@react-native-documents/picker/lib/typescript/src/filetypes.d.ts","./node_modules/@react-native-documents/picker/lib/typescript/src/errors.d.ts","./node_modules/@react-native-documents/picker/lib/typescript/src/pickdirectory.d.ts","./node_modules/@react-native-documents/picker/lib/typescript/src/pick.d.ts","./node_modules/@react-native-documents/picker/lib/typescript/src/savedocuments.d.ts","./node_modules/@react-native-documents/picker/lib/typescript/src/release.d.ts","./node_modules/@react-native-documents/picker/lib/typescript/src/index.d.ts","./node_modules/@tanstack/react-query/build/lib/setbatchupdatesfn.d.ts","./node_modules/@tanstack/query-core/build/lib/removable.d.ts","./node_modules/@tanstack/query-core/build/lib/subscribable.d.ts","./node_modules/@tanstack/query-core/build/lib/queryobserver.d.ts","./node_modules/@tanstack/query-core/build/lib/logger.d.ts","./node_modules/@tanstack/query-core/build/lib/query.d.ts","./node_modules/@tanstack/query-core/build/lib/utils.d.ts","./node_modules/@tanstack/query-core/build/lib/querycache.d.ts","./node_modules/@tanstack/query-core/build/lib/queryclient.d.ts","./node_modules/@tanstack/query-core/build/lib/mutationobserver.d.ts","./node_modules/@tanstack/query-core/build/lib/mutationcache.d.ts","./node_modules/@tanstack/query-core/build/lib/mutation.d.ts","./node_modules/@tanstack/query-core/build/lib/types.d.ts","./node_modules/@tanstack/query-core/build/lib/retryer.d.ts","./node_modules/@tanstack/query-core/build/lib/queriesobserver.d.ts","./node_modules/@tanstack/query-core/build/lib/infinitequeryobserver.d.ts","./node_modules/@tanstack/query-core/build/lib/notifymanager.d.ts","./node_modules/@tanstack/query-core/build/lib/focusmanager.d.ts","./node_modules/@tanstack/query-core/build/lib/onlinemanager.d.ts","./node_modules/@tanstack/query-core/build/lib/hydration.d.ts","./node_modules/@tanstack/query-core/build/lib/index.d.ts","./node_modules/@tanstack/react-query/build/lib/types.d.ts","./node_modules/@tanstack/react-query/build/lib/usequeries.d.ts","./node_modules/@tanstack/react-query/build/lib/usequery.d.ts","./node_modules/@tanstack/react-query/build/lib/usesuspensequery.d.ts","./node_modules/@tanstack/react-query/build/lib/usesuspenseinfinitequery.d.ts","./node_modules/@tanstack/react-query/build/lib/usesuspensequeries.d.ts","./node_modules/@tanstack/react-query/build/lib/queryoptions.d.ts","./node_modules/@tanstack/react-query/build/lib/infinitequeryoptions.d.ts","./node_modules/@tanstack/react-query/build/lib/queryclientprovider.d.ts","./node_modules/@tanstack/react-query/build/lib/queryerrorresetboundary.d.ts","./node_modules/@tanstack/react-query/build/lib/hydrate.d.ts","./node_modules/@tanstack/react-query/build/lib/useisfetching.d.ts","./node_modules/@tanstack/react-query/build/lib/useismutating.d.ts","./node_modules/@tanstack/react-query/build/lib/usemutation.d.ts","./node_modules/@tanstack/react-query/build/lib/useinfinitequery.d.ts","./node_modules/@tanstack/react-query/build/lib/isrestoring.d.ts","./node_modules/@tanstack/react-query/build/lib/index.d.ts","./node_modules/@trpc/server/dist/index.d.ts","./node_modules/@trpc/server/dist/observable/observable.d.ts","./node_modules/@trpc/server/dist/observable/types.d.ts","./node_modules/@trpc/server/dist/observable/operators/share.d.ts","./node_modules/@trpc/server/dist/observable/operators/map.d.ts","./node_modules/@trpc/server/dist/observable/operators/tap.d.ts","./node_modules/@trpc/server/dist/observable/operators/index.d.ts","./node_modules/@trpc/server/dist/observable/internals/observabletopromise.d.ts","./node_modules/@trpc/server/dist/observable/index.d.ts","./node_modules/@trpc/server/dist/rpc/codes.d.ts","./node_modules/@trpc/server/dist/rpc/envelopes.d.ts","./node_modules/@trpc/server/dist/rpc/parsetrpcmessage.d.ts","./node_modules/@trpc/server/dist/rpc/index.d.ts","./node_modules/@types/node/compatibility/iterators.d.ts","./node_modules/@types/node/globals.typedarray.d.ts","./node_modules/@types/node/buffer.buffer.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/web-globals/abortcontroller.d.ts","./node_modules/@types/node/web-globals/crypto.d.ts","./node_modules/@types/node/web-globals/domexception.d.ts","./node_modules/@types/node/web-globals/events.d.ts","./node_modules/undici-types/utility.d.ts","./node_modules/undici-types/header.d.ts","./node_modules/undici-types/readable.d.ts","./node_modules/undici-types/fetch.d.ts","./node_modules/undici-types/formdata.d.ts","./node_modules/undici-types/connector.d.ts","./node_modules/undici-types/client-stats.d.ts","./node_modules/undici-types/client.d.ts","./node_modules/undici-types/errors.d.ts","./node_modules/undici-types/dispatcher.d.ts","./node_modules/undici-types/global-dispatcher.d.ts","./node_modules/undici-types/global-origin.d.ts","./node_modules/undici-types/pool-stats.d.ts","./node_modules/undici-types/pool.d.ts","./node_modules/undici-types/handlers.d.ts","./node_modules/undici-types/balanced-pool.d.ts","./node_modules/undici-types/h2c-client.d.ts","./node_modules/undici-types/agent.d.ts","./node_modules/undici-types/mock-interceptor.d.ts","./node_modules/undici-types/mock-call-history.d.ts","./node_modules/undici-types/mock-agent.d.ts","./node_modules/undici-types/mock-client.d.ts","./node_modules/undici-types/mock-pool.d.ts","./node_modules/undici-types/snapshot-agent.d.ts","./node_modules/undici-types/mock-errors.d.ts","./node_modules/undici-types/proxy-agent.d.ts","./node_modules/undici-types/env-http-proxy-agent.d.ts","./node_modules/undici-types/retry-handler.d.ts","./node_modules/undici-types/retry-agent.d.ts","./node_modules/undici-types/api.d.ts","./node_modules/undici-types/cache-interceptor.d.ts","./node_modules/undici-types/interceptors.d.ts","./node_modules/undici-types/util.d.ts","./node_modules/undici-types/cookies.d.ts","./node_modules/undici-types/patch.d.ts","./node_modules/undici-types/websocket.d.ts","./node_modules/undici-types/eventsource.d.ts","./node_modules/undici-types/diagnostics-channel.d.ts","./node_modules/undici-types/content-type.d.ts","./node_modules/undici-types/cache.d.ts","./node_modules/undici-types/index.d.ts","./node_modules/@types/node/web-globals/fetch.d.ts","./node_modules/@types/node/web-globals/navigator.d.ts","./node_modules/@types/node/web-globals/storage.d.ts","./node_modules/@types/node/web-globals/streams.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/inspector.generated.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/readline/promises.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/sea.d.ts","./node_modules/@types/node/sqlite.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/@trpc/client/dist/internals/types.d.ts","./node_modules/@trpc/client/dist/trpcclienterror.d.ts","./node_modules/@trpc/client/dist/links/types.d.ts","./node_modules/@trpc/client/dist/internals/trpcuntypedclient.d.ts","./node_modules/@trpc/client/dist/createtrpcuntypedclient.d.ts","./node_modules/@trpc/server/dist/shared/createproxy/index.d.ts","./node_modules/@trpc/server/dist/shared/jsonify.d.ts","./node_modules/@trpc/server/dist/internals.d.ts","./node_modules/@trpc/server/dist/shared/transformtrpcresponse.d.ts","./node_modules/@trpc/server/dist/shared/internal/serialize.d.ts","./node_modules/@trpc/server/dist/core/router.d.ts","./node_modules/@trpc/server/dist/core/procedure.d.ts","./node_modules/@trpc/server/dist/core/parser.d.ts","./node_modules/@trpc/server/dist/core/middleware.d.ts","./node_modules/@trpc/server/dist/core/inittrpc.d.ts","./node_modules/@trpc/server/dist/core/types.d.ts","./node_modules/@trpc/server/dist/core/index.d.ts","./node_modules/@trpc/server/dist/error/trpcerror.d.ts","./node_modules/@trpc/server/dist/shared/geterrorshape.d.ts","./node_modules/@trpc/server/dist/shared/getcausefromunknown.d.ts","./node_modules/@trpc/server/dist/shared/index.d.ts","./node_modules/@trpc/client/dist/links/internals/streamingutils.d.ts","./node_modules/@trpc/client/dist/links/internals/httputils.d.ts","./node_modules/@trpc/client/dist/links/httpbatchlinkoptions.d.ts","./node_modules/@trpc/client/dist/links/httpbatchlink.d.ts","./node_modules/@trpc/client/dist/links/httpbatchstreamlink.d.ts","./node_modules/@trpc/client/dist/links/httplink.d.ts","./node_modules/@trpc/client/dist/links/loggerlink.d.ts","./node_modules/@trpc/client/dist/links/splitlink.d.ts","./node_modules/@trpc/client/dist/internals/retrydelay.d.ts","./node_modules/@trpc/client/dist/links/wslink.d.ts","./node_modules/@trpc/client/dist/links/httpformdatalink.d.ts","./node_modules/@trpc/client/dist/links/index.d.ts","./node_modules/@trpc/client/dist/createtrpcclient.d.ts","./node_modules/@trpc/client/dist/createtrpcclientproxy.d.ts","./node_modules/@trpc/client/dist/getfetch.d.ts","./node_modules/@trpc/client/dist/index.d.ts","./node_modules/@trpc/react-query/dist/internals/getarrayquerykey.d.ts","./node_modules/@trpc/react-query/dist/internals/context.d.ts","./node_modules/@trpc/react-query/dist/internals/usequeries.d.ts","./node_modules/@trpc/react-query/dist/shared/types.d.ts","./node_modules/@trpc/react-query/dist/internals/usehookresult.d.ts","./node_modules/@trpc/react-query/dist/shared/hooks/types.d.ts","./node_modules/@trpc/react-query/dist/shared/hooks/createhooksinternal.d.ts","./node_modules/@trpc/react-query/dist/shared/hooks/deprecated/createhooksinternal.d.ts","./node_modules/@trpc/react-query/dist/shared/hooks/createroothooks.d.ts","./node_modules/@trpc/react-query/dist/shared/proxy/decorationproxy.d.ts","./node_modules/@trpc/react-query/dist/shared/proxy/utilsproxy.d.ts","./node_modules/@trpc/react-query/dist/shared/proxy/usequeriesproxy.d.ts","./node_modules/@trpc/react-query/dist/createtrpcreact.d.ts","./node_modules/@trpc/react-query/dist/shared/queryclient.d.ts","./node_modules/@trpc/react-query/dist/utils/inferreactqueryprocedure.d.ts","./node_modules/@trpc/react-query/dist/shared/polymorphism/mutationlike.d.ts","./node_modules/@trpc/react-query/dist/shared/polymorphism/querylike.d.ts","./node_modules/@trpc/react-query/dist/shared/polymorphism/routerlike.d.ts","./node_modules/@trpc/react-query/dist/shared/polymorphism/utilslike.d.ts","./node_modules/@trpc/react-query/dist/shared/polymorphism/index.d.ts","./node_modules/@trpc/react-query/dist/internals/getclientargs.d.ts","./node_modules/@trpc/react-query/dist/shared/index.d.ts","./node_modules/@trpc/react-query/dist/internals/getquerykey.d.ts","./node_modules/@trpc/react-query/dist/interop.d.ts","./node_modules/@trpc/react-query/dist/index.d.ts","./app/components/container/floating-button.tsx","./app/hooks/use-delay-layout.ts","./app/components/delay-layout/default-placeholder.tsx","./app/components/delay-layout/settings-placeholder.tsx","./app/components/delay-layout/index.tsx","./app/hooks/use-group-options.ts","./app/components/announcements/announcement.tsx","./app/components/list/card.tsx","./app/components/list-items/headers/header.tsx","./app/components/tip/index.tsx","./app/components/list/empty.tsx","./app/hooks/use-is-compact-mode-enabled.ts","./app/components/sheets/sort/index.tsx","./app/components/list-items/headers/section-header.tsx","./app/hooks/use-selected.ts","./app/components/properties/date-meta.jsx","./node_modules/react-native-swiper-flatlist/src/themes/colors.ts","./node_modules/react-native-swiper-flatlist/src/themes/layout.ts","./node_modules/react-native-swiper-flatlist/src/themes/index.ts","./node_modules/react-native-swiper-flatlist/src/components/pagination/paginationprops.tsx","./node_modules/react-native-swiper-flatlist/src/components/pagination/pagination.tsx","./node_modules/react-native-swiper-flatlist/src/components/swiperflatlist/swiperflatlistprops.tsx","./node_modules/react-native-swiper-flatlist/src/components/swiperflatlist/swiperflatlist.tsx","./node_modules/react-native-swiper-flatlist/src/components/index.ts","./node_modules/react-native-swiper-flatlist/index.ts","./app/screens/settings/attachment-group-progress.tsx","./node_modules/pathe/dist/index.d.ts","./node_modules/react-native-image-crop-picker/index.d.ts","./app/components/dialogs/attach-image-dialog/index.tsx","./app/screens/editor/tiptap/picker.ts","./app/components/attachments/actions.tsx","./app/components/attachments/attachment-item.tsx","./app/components/attachments/index.tsx","./app/components/note-history/preview.jsx","./app/components/note-history/index.tsx","./app/utils/notebooks.ts","./app/components/sheets/add-notebook/index.tsx","./node_modules/react-native-in-app-review/index.d.ts","./app/services/app-review.ts","./app/services/exporter.ts","./app/components/sheets/export-notes/index.tsx","./node_modules/react-async-hook/dist/index.d.ts","./app/components/sheets/publish-note/index.tsx","./app/components/sheets/references/index.tsx","./app/components/sheets/relations-list/index.tsx","./app/hooks/use-stored-state.ts","./app/hooks/use-actions.tsx","./app/components/properties/items.tsx","./app/components/list-items/headers/notebook-header.tsx","./node_modules/react-native-material-menu/dist/menu.d.ts","./node_modules/react-native-material-menu/dist/menudivider.d.ts","./node_modules/react-native-material-menu/dist/menuitem.d.ts","./node_modules/react-native-material-menu/dist/index.d.ts","./app/components/side-menu/notebook-item.tsx","./app/screens/move-notebook/index.tsx","./app/screens/manage-tags/index.tsx","./app/components/selection-header/index.tsx","./app/components/sheets/notebooks/index.tsx","./app/screens/notebook/index.tsx","./app/components/properties/notebooks.jsx","./app/screens/notes/tagged.tsx","./node_modules/react-native-wheel-color-picker/types.d.ts","./app/components/dialogs/color-picker/index.tsx","./app/components/properties/color-tags.tsx","./app/components/properties/tags.jsx","./app/components/properties/index.jsx","./app/components/ui/time-since/index.tsx","./app/components/list-items/note/index.tsx","./app/components/list-items/selection-wrapper/index.tsx","./app/components/list-items/note/wrapper.tsx","./app/components/list-items/notebook/index.tsx","./app/components/list-items/notebook/wrapper.tsx","./app/components/list-items/reminder/index.tsx","./app/components/list-items/tag/index.tsx","./app/components/list-items/search-result/index.tsx","./app/components/list/list-item.wrapper.tsx","./app/components/list/index.tsx","./app/screens/notes/index.tsx","./app/screens/notes/monographs.tsx","./app/utils/menu-items.ts","./app/screens/settings/theme-selector.tsx","./app/hooks/use-app-state.ts","./node_modules/react-native-keyboard-aware-scroll-view/index.d.ts","./app/components/app-lock/index.tsx","./app/app.tsx","./index.js","./lingui.config.js","./node_modules/metro-cache/src/types.d.ts","./node_modules/metro-cache/src/cache.d.ts","./node_modules/metro-cache/src/stablehash.d.ts","./node_modules/metro-cache/src/stores/filestore.d.ts","./node_modules/metro-cache/src/stores/autocleanfilestore.d.ts","./node_modules/metro-cache/src/stores/httperror.d.ts","./node_modules/metro-cache/src/stores/networkerror.d.ts","./node_modules/metro-cache/src/stores/httpstore.d.ts","./node_modules/metro-cache/src/stores/httpgetstore.d.ts","./node_modules/metro-cache/src/index.d.ts","./node_modules/metro-file-map/src/flow-types.d.ts","./node_modules/metro-file-map/src/cache/diskcachemanager.d.ts","./node_modules/metro-file-map/src/lib/duplicatehastecandidateserror.d.ts","./node_modules/metro-file-map/src/watcher.d.ts","./node_modules/metro-file-map/src/index.d.ts","./node_modules/metro/src/modulegraph/worker/collectdependencies.d.ts","./node_modules/metro/src/lib/contextmodule.d.ts","./node_modules/metro/src/lib/countingset.d.ts","./node_modules/metro/src/deltabundler/graph.d.ts","./node_modules/metro/src/asset.d.ts","./node_modules/metro-babel-transformer/src/index.d.ts","./node_modules/ob1/src/ob1.d.ts","./node_modules/metro-source-map/src/consumer/constants.d.ts","./node_modules/metro-source-map/src/consumer/types.d.ts","./node_modules/metro-source-map/src/bundlebuilder.d.ts","./node_modules/metro-source-map/src/composesourcemaps.d.ts","./node_modules/metro-source-map/src/consumer/delegatingconsumer.d.ts","./node_modules/metro-source-map/src/consumer/index.d.ts","./node_modules/metro-source-map/src/consumer/normalizesourcepath.d.ts","./node_modules/metro-source-map/src/generatefunctionmap.d.ts","./node_modules/metro-source-map/src/b64builder.d.ts","./node_modules/metro-source-map/src/generator.d.ts","./node_modules/metro-source-map/src/source-map.d.ts","./node_modules/metro/src/shared/types.d.ts","./node_modules/metro/src/deltabundler/serializers/getrambundleinfo.d.ts","./node_modules/metro/src/lib/getgraphid.d.ts","./node_modules/metro/src/server/multipartresponse.d.ts","./node_modules/metro/src/deltabundler.d.ts","./node_modules/metro/src/deltabundler/worker.d.ts","./node_modules/metro/src/node-haste/dependencygraph.d.ts","./node_modules/metro/src/bundler.d.ts","./node_modules/metro/src/incrementalbundler.d.ts","./node_modules/metro/src/server.d.ts","./node_modules/metro/src/lib/reporting.d.ts","./node_modules/@types/yargs-parser/index.d.ts","./node_modules/@types/yargs/index.d.ts","./node_modules/@types/yargs/index.d.mts","./node_modules/metro-core/src/errors/ambiguousmoduleresolutionerror.d.ts","./node_modules/metro-core/src/errors/packageresolutionerror.d.ts","./node_modules/metro-core/src/logger.d.ts","./node_modules/metro-core/src/terminal.d.ts","./node_modules/metro-core/src/index.d.ts","./node_modules/metro/src/lib/terminalreporter.d.ts","./node_modules/metro/src/index.d.ts","./node_modules/metro-transform-worker/src/index.d.ts","./node_modules/metro/src/deltabundler/types.d.ts","./node_modules/metro-resolver/src/types.d.ts","./node_modules/metro-resolver/src/errors/failedtoresolvenameerror.d.ts","./node_modules/metro-resolver/src/errors/failedtoresolvepatherror.d.ts","./node_modules/metro-resolver/src/errors/failedtoresolveunsupportederror.d.ts","./node_modules/metro-resolver/src/errors/formatfilecandidates.d.ts","./node_modules/metro-resolver/src/errors/invalidpackageerror.d.ts","./node_modules/metro-resolver/src/resolve.d.ts","./node_modules/metro-resolver/src/index.d.ts","./node_modules/metro/src/deltabundler/serializers/getexplodedsourcemap.d.ts","./node_modules/metro/src/server/symbolicate.d.ts","./node_modules/metro-config/src/types.d.ts","./node_modules/metro-config/src/defaults/index.d.ts","./node_modules/metro-config/src/loadconfig.d.ts","./node_modules/metro-config/src/index.d.ts","./node_modules/@react-native/metro-config/dist/index.d.ts","./node_modules/react-native-reanimated/metro-config/index.d.ts","./metro.config.js","./node_modules/@callstack/repack/dist/types.d.ts","./node_modules/@callstack/repack/dist/commands/types.d.ts","./node_modules/@callstack/repack/dist/commands/rspack/bundle.d.ts","./node_modules/@callstack/repack/dist/commands/rspack/start.d.ts","./node_modules/@callstack/repack/dist/commands/rspack/index.d.ts","./node_modules/@callstack/repack/commands/rspack.d.ts","./react-native.config.js","./node_modules/@rspack/binding/napi-binding.d.ts","./node_modules/@rspack/binding/binding.d.ts","./node_modules/@rspack/lite-tapable/dist/index.d.ts","./node_modules/@rspack/core/compiled/webpack-sources/types.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/apiplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/arraypushcallbackchunkformatplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/assetmodulesplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/asyncwebassemblymodulesplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/bannerplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/bundlerinforspackplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/base.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/chunkprefetchpreloadplugin.d.ts","./node_modules/@types/graceful-fs/index.d.ts","./node_modules/@rspack/core/compiled/watchpack/index.d.ts","./node_modules/@rspack/core/dist/chunk.d.ts","./node_modules/@rspack/core/dist/loader-runner/index.d.ts","./node_modules/@rspack/core/dist/logging/logger.d.ts","./node_modules/@rspack/core/dist/util/hash/index.d.ts","./node_modules/@rspack/core/dist/lib/webpackerror.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/httpuriplugin.d.ts","./node_modules/@rspack/core/dist/util/runtime.d.ts","./node_modules/@rspack/core/dist/chunkgraph.d.ts","./node_modules/@rspack/core/dist/exportsinfo.d.ts","./node_modules/@rspack/core/dist/modulegraph.d.ts","./node_modules/@rspack/core/dist/config/devserver.d.ts","./node_modules/@rspack/core/dist/config/types.d.ts","./node_modules/@rspack/core/dist/config/normalization.d.ts","./node_modules/@rspack/core/dist/config/adapterruleuse.d.ts","./node_modules/@rspack/core/dist/resolver.d.ts","./node_modules/@rspack/core/dist/buildinfo.d.ts","./node_modules/@rspack/core/dist/module.d.ts","./node_modules/@rspack/core/dist/contextmodulefactory.d.ts","./node_modules/@rspack/core/dist/config/adapter.d.ts","./node_modules/@rspack/core/dist/config/defaults.d.ts","./node_modules/@rspack/core/dist/config/index.d.ts","./node_modules/@rspack/core/dist/filesysteminfo.d.ts","./node_modules/@rspack/core/dist/lib/cache.d.ts","./node_modules/@rspack/core/dist/lib/cache/getlazyhashedetag.d.ts","./node_modules/@rspack/core/dist/lib/cachefacade.d.ts","./node_modules/@rspack/core/dist/resolverfactory.d.ts","./node_modules/@rspack/core/dist/normalmodulefactory.d.ts","./node_modules/@rspack/core/dist/rulesetcompiler.d.ts","./node_modules/@rspack/core/dist/util/smartgrouping.d.ts","./node_modules/@rspack/core/dist/stats/statsfactory.d.ts","./node_modules/@rspack/core/dist/stats/statsfactoryutils.d.ts","./node_modules/@rspack/core/dist/stats.d.ts","./node_modules/@rspack/core/dist/util/fs.d.ts","./node_modules/@rspack/core/dist/watching.d.ts","./node_modules/@rspack/core/dist/compiler.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/circulardependencyrspackplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/commonjschunkformatplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/contextreplacementplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/copyrspackplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/csschunkingplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/cssmodulesplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/css-extract/loader.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/css-extract/index.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/datauriplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/defineplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/deterministicchunkidsplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/deterministicmoduleidsplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/dllentryplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/dllreferenceagencyplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/dynamicentryplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/electrontargetplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/enablechunkloadingplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/enablelibraryplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/enablewasmloadingplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/ensurechunkconditionsplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/entryplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/esmlibraryplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/evaldevtoolmoduleplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/evalsourcemapdevtoolplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/externalsplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/fetchcompileasyncwasmplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/fileuriplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/flagdependencyexportsplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/flagdependencyusageplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/hotmodulereplacementplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/httpexternalsrspackplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/html-plugin/options.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/html-plugin/hooks.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/html-plugin/plugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/html-plugin/index.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/ignoreplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/inferasyncmodulesplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/javascriptmodulesplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/jsloaderrspackplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/jsonmodulesplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/libmanifestplugin.d.ts","./node_modules/@rspack/core/dist/builtin-loader/lightningcss/index.d.ts","./node_modules/@rspack/core/dist/util/assetcondition.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/lightningcssminimizerrspackplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/limitchunkcountplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/lazy-compilation/middleware.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/mangleexportsplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/mergeduplicatechunksplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/modulechunkformatplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/moduleconcatenationplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/moduleinfoheaderplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/namedchunkidsplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/namedmoduleidsplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/naturalchunkidsplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/naturalmoduleidsplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/nodetargetplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/noemitonerrorsplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/normalmodulereplacementplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/occurrencechunkidsplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/progressplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/provideplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/realcontenthashplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/removeduplicatemodulesplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/removeemptychunksplugin.d.ts","./node_modules/@rspack/core/dist/taps/types.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/rsdoctorplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/rslibplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/rstestplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/runtimechunkplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/runtimeplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/sideeffectsflagplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/sizelimitsplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/sourcemapdevtoolplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/splitchunksplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/subresourceintegrityplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/swcjsminimizerplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/urlplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/warncasesensitivemodulesplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/webworkertemplateplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/workerplugin.d.ts","./node_modules/@rspack/core/dist/builtin-plugin/index.d.ts","./node_modules/@rspack/core/dist/entrypoint.d.ts","./node_modules/@rspack/core/dist/normalmodule.d.ts","./node_modules/@rspack/core/dist/rspackerror.d.ts","./node_modules/@rspack/core/dist/runtimemodule.d.ts","./node_modules/@rspack/core/dist/stats/statsprinter.d.ts","./node_modules/@rspack/core/dist/chunks.d.ts","./node_modules/@rspack/core/dist/codegenerationresults.d.ts","./node_modules/@rspack/core/dist/taps/compilation.d.ts","./node_modules/@rspack/core/dist/compilation.d.ts","./node_modules/@rspack/core/dist/multistats.d.ts","./node_modules/@rspack/core/dist/multiwatching.d.ts","./node_modules/@rspack/core/dist/multicompiler.d.ts","./node_modules/@rspack/core/dist/rspackoptionsapply.d.ts","./node_modules/@rspack/core/dist/concatenatedmodule.d.ts","./node_modules/@rspack/core/dist/contextmodule.d.ts","./node_modules/@rspack/core/dist/externalmodule.d.ts","./node_modules/@rspack/core/dist/runtimeglobals.d.ts","./node_modules/@rspack/core/dist/lib/modulefilenamehelpers.d.ts","./node_modules/@rspack/core/dist/template.d.ts","./node_modules/@rspack/core/dist/schema/validate.d.ts","./node_modules/@rspack/core/dist/lib/dllplugin.d.ts","./node_modules/@rspack/core/dist/lib/dllreferenceplugin.d.ts","./node_modules/@rspack/core/dist/lib/entryoptionplugin.d.ts","./node_modules/@rspack/core/dist/lib/environmentplugin.d.ts","./node_modules/@rspack/core/dist/lib/loaderoptionsplugin.d.ts","./node_modules/@rspack/core/dist/lib/loadertargetplugin.d.ts","./node_modules/@rspack/core/dist/node/nodeenvironmentplugin.d.ts","./node_modules/@rspack/core/dist/node/nodetemplateplugin.d.ts","./node_modules/@rspack/core/dist/sharing/shareplugin.d.ts","./node_modules/@rspack/core/dist/container/containerplugin.d.ts","./node_modules/@rspack/core/dist/container/containerreferenceplugin.d.ts","./node_modules/@rspack/core/dist/container/modulefederationpluginv1.d.ts","./node_modules/@rspack/core/dist/container/modulefederationplugin.d.ts","./node_modules/@rspack/core/dist/sharing/consumesharedplugin.d.ts","./node_modules/@rspack/core/dist/sharing/providesharedplugin.d.ts","./node_modules/@rspack/core/dist/builtin-loader/swc/collecttypescriptinfo.d.ts","./node_modules/@rspack/core/dist/builtin-loader/swc/pluginimport.d.ts","./node_modules/@rspack/core/compiled/@swc/types/index.d.ts","./node_modules/@rspack/core/dist/builtin-loader/swc/types.d.ts","./node_modules/@rspack/core/dist/builtin-loader/swc/index.d.ts","./node_modules/@rspack/core/dist/swc.d.ts","./node_modules/@rspack/core/dist/virtualmodulesplugin.d.ts","./node_modules/@rspack/core/dist/exports.d.ts","./node_modules/@rspack/core/dist/rspack.d.ts","./node_modules/@rspack/core/dist/index.d.ts","./node_modules/@callstack/repack/dist/plugins/developmentplugin.d.ts","./node_modules/@callstack/repack/dist/logging/types.d.ts","./node_modules/@callstack/repack/dist/logging/helpers.d.ts","./node_modules/@callstack/repack/dist/logging/reporters.d.ts","./node_modules/@callstack/repack/dist/logging/index.d.ts","./node_modules/@callstack/repack/dist/plugins/loggerplugin.d.ts","./node_modules/@callstack/repack/dist/plugins/manifestplugin.d.ts","./node_modules/@callstack/repack/dist/plugins/babelplugin.d.ts","./node_modules/@callstack/repack/dist/plugins/outputplugin/types.d.ts","./node_modules/@callstack/repack/dist/plugins/outputplugin/outputplugin.d.ts","./node_modules/@callstack/repack/dist/plugins/outputplugin/index.d.ts","./node_modules/@callstack/repack/dist/plugins/repacktargetplugin/repacktargetplugin.d.ts","./node_modules/@callstack/repack/dist/plugins/repacktargetplugin/index.d.ts","./node_modules/@callstack/repack/dist/plugins/modulefederationpluginv1.d.ts","./node_modules/@callstack/repack/dist/plugins/modulefederationplugin.d.ts","./node_modules/@module-federation/sdk/dist/src/constant.d.ts","./node_modules/@module-federation/sdk/dist/src/types/common.d.ts","./node_modules/@module-federation/sdk/dist/src/types/stats.d.ts","./node_modules/@module-federation/sdk/dist/src/types/manifest.d.ts","./node_modules/@module-federation/sdk/dist/src/types/snapshot.d.ts","./node_modules/@module-federation/sdk/dist/src/types/plugins/containerplugin.d.ts","./node_modules/@module-federation/sdk/dist/src/types/plugins/containerreferenceplugin.d.ts","./node_modules/@module-federation/sdk/dist/src/types/plugins/modulefederationplugin.d.ts","./node_modules/@module-federation/sdk/dist/src/types/plugins/shareplugin.d.ts","./node_modules/@module-federation/sdk/dist/src/types/plugins/index.d.ts","./node_modules/@module-federation/sdk/dist/src/types/hooks.d.ts","./node_modules/@module-federation/sdk/dist/src/types/index.d.ts","./node_modules/@module-federation/sdk/dist/src/utils.d.ts","./node_modules/@module-federation/sdk/dist/src/generatesnapshotfrommanifest.d.ts","./node_modules/@module-federation/sdk/dist/src/logger.d.ts","./node_modules/@module-federation/sdk/dist/src/env.d.ts","./node_modules/@module-federation/sdk/dist/src/dom.d.ts","./node_modules/@module-federation/sdk/dist/src/node.d.ts","./node_modules/@module-federation/sdk/dist/src/normalizeoptions.d.ts","./node_modules/@module-federation/sdk/dist/src/createmodulefederationconfig.d.ts","./node_modules/@module-federation/sdk/dist/src/index.d.ts","./node_modules/@module-federation/sdk/dist/index.d.ts","./node_modules/@callstack/repack/dist/plugins/modulefederationpluginv2.d.ts","./node_modules/@types/json-schema/index.d.ts","./node_modules/schema-utils/declarations/validationerror.d.ts","./node_modules/fast-uri/types/index.d.ts","./node_modules/ajv/dist/compile/codegen/code.d.ts","./node_modules/ajv/dist/compile/codegen/scope.d.ts","./node_modules/ajv/dist/compile/codegen/index.d.ts","./node_modules/ajv/dist/compile/rules.d.ts","./node_modules/ajv/dist/compile/util.d.ts","./node_modules/ajv/dist/compile/validate/subschema.d.ts","./node_modules/ajv/dist/compile/errors.d.ts","./node_modules/ajv/dist/compile/validate/index.d.ts","./node_modules/ajv/dist/compile/validate/datatype.d.ts","./node_modules/ajv/dist/vocabularies/applicator/additionalitems.d.ts","./node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts","./node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","./node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","./node_modules/ajv/dist/vocabularies/applicator/propertynames.d.ts","./node_modules/ajv/dist/vocabularies/applicator/additionalproperties.d.ts","./node_modules/ajv/dist/vocabularies/applicator/not.d.ts","./node_modules/ajv/dist/vocabularies/applicator/anyof.d.ts","./node_modules/ajv/dist/vocabularies/applicator/oneof.d.ts","./node_modules/ajv/dist/vocabularies/applicator/if.d.ts","./node_modules/ajv/dist/vocabularies/applicator/index.d.ts","./node_modules/ajv/dist/vocabularies/validation/limitnumber.d.ts","./node_modules/ajv/dist/vocabularies/validation/multipleof.d.ts","./node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","./node_modules/ajv/dist/vocabularies/validation/required.d.ts","./node_modules/ajv/dist/vocabularies/validation/uniqueitems.d.ts","./node_modules/ajv/dist/vocabularies/validation/const.d.ts","./node_modules/ajv/dist/vocabularies/validation/enum.d.ts","./node_modules/ajv/dist/vocabularies/validation/index.d.ts","./node_modules/ajv/dist/vocabularies/format/format.d.ts","./node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedproperties.d.ts","./node_modules/ajv/dist/vocabularies/unevaluated/unevaluateditems.d.ts","./node_modules/ajv/dist/vocabularies/validation/dependentrequired.d.ts","./node_modules/ajv/dist/vocabularies/discriminator/types.d.ts","./node_modules/ajv/dist/vocabularies/discriminator/index.d.ts","./node_modules/ajv/dist/vocabularies/errors.d.ts","./node_modules/ajv/dist/types/json-schema.d.ts","./node_modules/ajv/dist/types/jtd-schema.d.ts","./node_modules/ajv/dist/runtime/validation_error.d.ts","./node_modules/ajv/dist/compile/ref_error.d.ts","./node_modules/ajv/dist/core.d.ts","./node_modules/ajv/dist/compile/resolve.d.ts","./node_modules/ajv/dist/compile/index.d.ts","./node_modules/ajv/dist/types/index.d.ts","./node_modules/ajv/dist/ajv.d.ts","./node_modules/schema-utils/declarations/validate.d.ts","./node_modules/schema-utils/declarations/index.d.ts","./node_modules/@callstack/repack/dist/plugins/codesigningplugin/config.d.ts","./node_modules/@callstack/repack/dist/plugins/codesigningplugin/codesigningplugin.d.ts","./node_modules/@callstack/repack/dist/plugins/codesigningplugin/index.d.ts","./node_modules/@callstack/repack/dist/plugins/hermesbytecodeplugin/hermesbytecodeplugin.d.ts","./node_modules/@callstack/repack/dist/plugins/hermesbytecodeplugin/chunkstohermesbytecodeplugin.d.ts","./node_modules/@callstack/repack/dist/plugins/hermesbytecodeplugin/index.d.ts","./node_modules/@callstack/repack/dist/plugins/index.d.ts","./node_modules/@callstack/repack/dist/plugins/repackplugin.d.ts","./node_modules/@callstack/repack/dist/utils/assetextensions.d.ts","./node_modules/ajv/dist/vocabularies/jtd/error.d.ts","./node_modules/ajv/dist/vocabularies/jtd/type.d.ts","./node_modules/ajv/dist/vocabularies/jtd/enum.d.ts","./node_modules/ajv/dist/vocabularies/jtd/elements.d.ts","./node_modules/ajv/dist/vocabularies/jtd/properties.d.ts","./node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts","./node_modules/ajv/dist/vocabularies/jtd/values.d.ts","./node_modules/ajv/dist/vocabularies/jtd/index.d.ts","./node_modules/ajv/dist/jtd.d.ts","./node_modules/@fastify/ajv-compiler/types/index.d.ts","./node_modules/@fastify/error/types/index.d.ts","./node_modules/fast-json-stringify/types/index.d.ts","./node_modules/@fastify/fast-json-stringify-compiler/types/index.d.ts","./node_modules/find-my-way/index.d.ts","./node_modules/light-my-request/types/index.d.ts","./node_modules/fastify/types/utils.d.ts","./node_modules/fastify/types/schema.d.ts","./node_modules/fastify/types/type-provider.d.ts","./node_modules/fastify/types/reply.d.ts","./node_modules/pino-std-serializers/index.d.ts","./node_modules/sonic-boom/types/index.d.ts","./node_modules/pino/pino.d.ts","./node_modules/fastify/types/logger.d.ts","./node_modules/fastify/types/plugin.d.ts","./node_modules/fastify/types/register.d.ts","./node_modules/fastify/types/instance.d.ts","./node_modules/fastify/types/hooks.d.ts","./node_modules/fastify/types/route.d.ts","./node_modules/fastify/types/context.d.ts","./node_modules/fastify/types/request.d.ts","./node_modules/fastify/types/content-type-parser.d.ts","./node_modules/fastify/types/errors.d.ts","./node_modules/fastify/types/serverfactory.d.ts","./node_modules/fastify/fastify.d.ts","./node_modules/@react-native/dev-middleware/dist/inspector-proxy/types.d.ts","./node_modules/@react-native/dev-middleware/dist/inspector-proxy/custommessagehandler.d.ts","./node_modules/@react-native/dev-middleware/dist/types/browserlauncher.d.ts","./node_modules/@react-native/dev-middleware/dist/types/eventreporter.d.ts","./node_modules/@react-native/dev-middleware/dist/types/experiments.d.ts","./node_modules/@react-native/dev-middleware/dist/types/logger.d.ts","./node_modules/@react-native/dev-middleware/dist/createdevmiddleware.d.ts","./node_modules/@react-native/dev-middleware/dist/utils/defaultbrowserlauncher.d.ts","./node_modules/@react-native/dev-middleware/dist/index.d.ts","./node_modules/@types/http-proxy/index.d.ts","./node_modules/http-proxy-middleware/dist/types.d.ts","./node_modules/http-proxy-middleware/dist/factory.d.ts","./node_modules/http-proxy-middleware/dist/handlers/response-interceptor.d.ts","./node_modules/http-proxy-middleware/dist/handlers/fix-request-body.d.ts","./node_modules/http-proxy-middleware/dist/handlers/public.d.ts","./node_modules/http-proxy-middleware/dist/handlers/index.d.ts","./node_modules/http-proxy-middleware/dist/plugins/default/debug-proxy-errors-plugin.d.ts","./node_modules/http-proxy-middleware/dist/plugins/default/error-response-plugin.d.ts","./node_modules/http-proxy-middleware/dist/plugins/default/logger-plugin.d.ts","./node_modules/http-proxy-middleware/dist/plugins/default/proxy-events.d.ts","./node_modules/http-proxy-middleware/dist/plugins/default/index.d.ts","./node_modules/http-proxy-middleware/dist/legacy/types.d.ts","./node_modules/http-proxy-middleware/dist/legacy/create-proxy-middleware.d.ts","./node_modules/http-proxy-middleware/dist/legacy/public.d.ts","./node_modules/http-proxy-middleware/dist/legacy/index.d.ts","./node_modules/http-proxy-middleware/dist/index.d.ts","./node_modules/@callstack/repack-dev-server/dist/plugins/compiler/types.d.ts","./node_modules/@callstack/repack-dev-server/dist/plugins/symbolicate/types.d.ts","./node_modules/@callstack/repack-dev-server/dist/utils/normalizeoptions.d.ts","./node_modules/@callstack/repack-dev-server/dist/types.d.ts","./node_modules/@callstack/repack-dev-server/dist/createserver.d.ts","./node_modules/@callstack/repack-dev-server/dist/index.d.ts","./node_modules/@callstack/repack/dist/utils/defineconfig.d.ts","./node_modules/@callstack/repack/dist/utils/federated.d.ts","./node_modules/@callstack/repack/dist/utils/getdirname.d.ts","./node_modules/@callstack/repack/dist/utils/getpublicpath.d.ts","./node_modules/@callstack/repack/dist/utils/getresolveoptions.d.ts","./node_modules/@callstack/repack/dist/utils/getmodulepaths.d.ts","./node_modules/@callstack/repack/dist/utils/getjstransformrules.d.ts","./node_modules/@callstack/repack/dist/utils/getswcloaderoptions.d.ts","./node_modules/@callstack/repack/dist/utils/getflowtransformrules.d.ts","./node_modules/@callstack/repack/dist/utils/getcodegentransformrules.d.ts","./node_modules/@callstack/repack/dist/loaders/assetsloader/options.d.ts","./node_modules/@callstack/repack/dist/utils/getassettransformrules.d.ts","./node_modules/@callstack/repack/dist/utils/index.d.ts","./node_modules/@callstack/repack/dist/index.d.ts","./node_modules/@callstack/repack-plugin-reanimated/dist/plugin.d.ts","./node_modules/@callstack/repack-plugin-reanimated/dist/rules.d.ts","./node_modules/@callstack/repack-plugin-reanimated/dist/index.d.ts","./rspack.config.js","./node_modules/@types/istanbul-lib-coverage/index.d.ts","./node_modules/chalk/index.d.ts","./node_modules/@types/istanbul-lib-report/index.d.ts","./node_modules/@types/istanbul-reports/index.d.ts","./node_modules/@sinclair/typebox/typebox.d.ts","./node_modules/@jest/schemas/build/index.d.ts","./node_modules/@jest/types/build/index.d.ts","./node_modules/jest-mock/build/index.d.ts","./node_modules/@types/stack-utils/index.d.ts","./node_modules/jest-message-util/build/index.d.ts","./node_modules/@jest/fake-timers/build/index.d.ts","./node_modules/@jest/environment/build/index.d.ts","./node_modules/@jest/expect-utils/build/index.d.ts","./node_modules/jest-diff/node_modules/pretty-format/build/index.d.ts","./node_modules/jest-diff/build/index.d.ts","./node_modules/jest-matcher-utils/build/index.d.ts","./node_modules/expect/build/index.d.ts","./node_modules/jest-snapshot/node_modules/pretty-format/build/index.d.ts","./node_modules/jest-snapshot/build/index.d.ts","./node_modules/@jest/expect/build/index.d.ts","./node_modules/@jest/globals/build/index.d.ts","./__tests__/app-test.js","./app/components/auth/change-password.tsx","./app/components/auth/forgot-password.tsx","./app/components/auth/header.tsx","./app/hooks/use-sync-progress.ts","./app/components/sheets/progress/index.tsx","./app/components/auth/login.tsx","./app/components/loading/index.tsx","./app/components/auth/signup-context.ts","./app/components/auth/signup.tsx","./app/components/auth/index.tsx","./app/components/container/index.tsx","./app/components/ui/tag/index.tsx","./app/components/header/title.tsx","./app/components/intro/index.tsx","./node_modules/typesafe-actions/dist/type-helpers.d.ts","./node_modules/typesafe-actions/dist/action.d.ts","./node_modules/typesafe-actions/dist/create-action.d.ts","./node_modules/typesafe-actions/dist/create-custom-action.d.ts","./node_modules/typesafe-actions/dist/create-async-action.d.ts","./node_modules/typesafe-actions/dist/create-reducer.d.ts","./node_modules/typesafe-actions/dist/get-type.d.ts","./node_modules/typesafe-actions/dist/is-of-type.d.ts","./node_modules/typesafe-actions/dist/is-action-of.d.ts","./node_modules/typesafe-actions/dist/deprecated/create-action.d.ts","./node_modules/typesafe-actions/dist/deprecated/create-custom-action.d.ts","./node_modules/typesafe-actions/dist/deprecated/create-standard-action.d.ts","./node_modules/typesafe-actions/dist/deprecated/index.d.ts","./node_modules/typesafe-actions/dist/index.d.ts","./node_modules/react-native-drax/build/types.d.ts","./node_modules/react-native-drax/build/draxcontext.d.ts","./node_modules/react-native-drax/build/draxlist.d.ts","./node_modules/react-native-drax/build/draxprovider.d.ts","./node_modules/react-native-drax/build/draxscrollview.d.ts","./node_modules/react-native-drax/build/draxsubprovider.d.ts","./node_modules/react-native-drax/build/draxview.d.ts","./node_modules/react-native-drax/build/index.d.ts","./app/components/list/reorderable-list.tsx","./app/components/list-items/footer/index.tsx","./app/components/list-items/selection-wrapper/back-fill.tsx","./app/components/list-items/selection-wrapper/selection.tsx","./app/components/sheets/buy-plan/index.tsx","./app/components/paywall/index.tsx","./app/components/properties/synced.jsx","./app/components/sheets/editor-tabs/index.tsx","./app/components/sheets/link-note/index.tsx","./app/components/sheets/menu-item-properties/index.tsx","./app/components/sheets/plan-limits/index.tsx","./app/components/sheets/reminder-notify/index.tsx","./app/components/sheets/toc/index.tsx","./app/screens/settings/logout.ts","./app/components/sheets/user/index.tsx","./app/screens/notes/colored.tsx","./app/components/side-menu/menu-item.tsx","./app/components/side-menu/color-section.tsx","./node_modules/react-native-pager-view/lib/typescript/pagerviewnativecomponent.d.ts","./node_modules/react-native-pager-view/lib/typescript/pagerview.d.ts","./node_modules/react-native-pager-view/lib/typescript/usepagerview.d.ts","./node_modules/react-native-pager-view/lib/typescript/index.d.ts","./node_modules/react-native-tab-view/lib/typescript/src/types.d.ts","./node_modules/@types/react/jsx-runtime.d.ts","./node_modules/react-native-tab-view/lib/typescript/src/scenemap.d.ts","./node_modules/react-native-tab-view/lib/typescript/src/tabbarindicator.d.ts","./node_modules/react-native-tab-view/lib/typescript/src/tabbaritem.d.ts","./node_modules/react-native-tab-view/lib/typescript/src/tabbar.d.ts","./node_modules/react-native-tab-view/lib/typescript/src/tabview.d.ts","./node_modules/react-native-tab-view/lib/typescript/src/index.d.ts","./app/components/side-menu/pinned-section.tsx","./app/components/side-menu/side-menu-header.tsx","./app/components/side-menu/side-menu-home.tsx","./app/components/side-menu/side-menu-list-empty.tsx","./app/components/side-menu/side-menu-notebooks.tsx","./app/components/side-menu/side-menu-tags.tsx","./app/components/side-menu/index.tsx","./app/hooks/use-immediate.ts","./node_modules/react-native-actions-shortcuts/lib/typescript/src/index.d.ts","./app/hooks/use-shortcut-manager.ts","./app/hooks/use-vault-status.ts","./app/screens/editor/loading.tsx","./app/screens/editor/tiptap/use-editor-events.tsx","./app/screens/editor/index.tsx","./app/screens/editor/wrapper.tsx","./app/navigation/fluid-panels-view.tsx","./app/screens/archive/index.tsx","./app/screens/editor/progress.tsx","./app/screens/favorites/index.tsx","./app/screens/home/filter-bar.tsx","./app/screens/home/index.tsx","./app/screens/link-notebooks/index.tsx","./app/screens/move-notes/index.tsx","./app/screens/reminders/index.tsx","./app/screens/search/search-bar.tsx","./app/screens/search/index.tsx","./app/screens/settings/2fa.tsx","./app/screens/settings/change-email/index.tsx","./app/screens/settings/debug.tsx","./app/screens/settings/editor/tool-sheet.tsx","./app/screens/settings/editor/tool.tsx","./app/screens/settings/editor/common.tsx","./app/screens/settings/editor/group.tsx","./app/screens/settings/editor/configure-toolbar.tsx","./app/screens/settings/license-data.js","./app/screens/settings/licenses.tsx","./app/screens/settings/picker/index.tsx","./app/screens/settings/picker/pickers.jsx","./app/screens/settings/types.ts","./app/screens/settings/section-item.tsx","./app/screens/settings/restore-backup/index.tsx","./app/screens/settings/server-config.tsx","./app/screens/settings/sound-picker.tsx","./app/screens/settings/title-format.tsx","./app/screens/settings/notesnook-circle.tsx","./app/screens/settings/components.tsx","./app/screens/settings/group.tsx","./app/screens/settings/section-group.tsx","./app/screens/settings/user-section.jsx","./app/screens/settings/settings-data.tsx","./app/screens/settings/home.tsx","./app/screens/settings/index.tsx","./app/screens/trash/index.tsx","./node_modules/react-native-view-shot/src/index.d.ts","./app/screens/wrapped/index.tsx","./app/services/intent.ts","./app/stores/use-search-store.ts","./app/services/search.js","./app/stores/use-editor-store.ts","./app/utils/errors.ts","./app/utils/types.ts","./scripts/clean.mjs","./node_modules/@nodelib/fs.stat/out/types/index.d.ts","./node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","./node_modules/@nodelib/fs.stat/out/settings.d.ts","./node_modules/@nodelib/fs.stat/out/providers/async.d.ts","./node_modules/@nodelib/fs.stat/out/index.d.ts","./node_modules/@nodelib/fs.scandir/out/types/index.d.ts","./node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","./node_modules/@nodelib/fs.scandir/out/settings.d.ts","./node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","./node_modules/@nodelib/fs.scandir/out/index.d.ts","./node_modules/@nodelib/fs.walk/out/types/index.d.ts","./node_modules/@nodelib/fs.walk/out/settings.d.ts","./node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","./node_modules/@nodelib/fs.walk/out/readers/async.d.ts","./node_modules/@nodelib/fs.walk/out/providers/async.d.ts","./node_modules/@nodelib/fs.walk/out/index.d.ts","./node_modules/fast-glob/out/types/index.d.ts","./node_modules/fast-glob/out/settings.d.ts","./node_modules/fast-glob/out/managers/tasks.d.ts","./node_modules/fast-glob/out/index.d.ts","./node_modules/fonteditor-core/index.d.ts","./scripts/optimize-fonts.mjs","./node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","./node_modules/@types/jest/index.d.ts","./node_modules/bunyan-debug-stream/lib/bunyandebugstream.d.ts","./node_modules/@wix-pilot/core/dist/types/framework.d.ts","./node_modules/@wix-pilot/core/dist/types/prompt.d.ts","./node_modules/@wix-pilot/core/dist/types/logger.d.ts","./node_modules/@wix-pilot/core/dist/types/core.d.ts","./node_modules/@wix-pilot/core/dist/types/auto.d.ts","./node_modules/@wix-pilot/core/dist/types/common.d.ts","./node_modules/@wix-pilot/core/dist/types/index.d.ts","./node_modules/@wix-pilot/core/dist/pilot.d.ts","./node_modules/@wix-pilot/core/dist/common/testcontext/testcontext.d.ts","./node_modules/@wix-pilot/core/dist/common/testcontext/index.d.ts","./node_modules/@wix-pilot/core/dist/common/logger/index.d.ts","./node_modules/@wix-pilot/core/dist/index.d.ts","./node_modules/detox/detox.d.ts","./node_modules/detox/globals.d.ts","./node_modules/detox/index.d.ts","../../packages/common/node_modules/@types/react/global.d.ts","../../packages/editor/node_modules/@types/react/global.d.ts"],"fileIdsList":[[70,72,73,167,658,659,660,854,1410,1411,1481,1852,1906,1923,1924,2561],[70,72,73,658,659,660,1852,1906,1923,1924],[66,70,72,73,78,167,182,266,658,659,660,936,1285,1401,1404,1407,1417,1471,1481,1503,1672,1673,1676,1677,1703,1704,1705,1707,1852,1906,1923,1924,2099,2102],[70,72,73,167,276,658,659,660,940,962,969,1419,1421,1422,1450,1481,1852,1906,1923,1924],[64,70,72,73,167,516,624,654,658,659,660,667,669,670,1404,1423,1424,1446,1448,1449,1481,1852,1906,1923,1924],[70,72,73,167,516,624,658,659,660,1448,1450,1481,1852,1906,1923,1924],[70,72,73,167,658,659,660,962,1481,1852,1906,1923,1924],[64,70,72,73,516,658,659,660,1447,1852,1906,1923,1924],[70,72,73,624,658,659,660,962,969,1423,1852,1906,1923,1924],[70,72,73,167,655,658,659,660,1453,1481,1852,1906,1923,1924],[64,70,72,73,78,167,624,655,658,659,660,940,1284,1421,1439,1440,1441,1442,1446,1450,1481,1642,1643,1852,1906,1923,1924],[64,70,72,73,624,655,658,659,660,672,940,1439,1441,1442,1450,1852,1906,1923,1924],[70,72,73,624,658,659,660,1441,1442,1443,1445,1852,1906,1923,1924],[70,72,73,167,276,624,655,658,659,660,940,1421,1440,1441,1450,1481,1852,1906,1923,1924],[70,72,73,167,624,655,658,659,660,940,1439,1440,1441,1442,1444,1450,1481,1852,1906,1923,1924],[70,72,73,167,624,655,658,659,660,1284,1450,1481,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,1398,1399,1408,1410,1412,1481,1496,1512,1691,1852,1906,1923,1924],[70,72,73,78,658,659,660,1399,1411,1512,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,939,940,1398,1399,1412,1416,1481,1496,1505,1512,1852,1906,1923,1924],[70,72,73,78,658,659,660,1398,1399,1411,1512,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1399,1481,1496,1500,1506,1507,1508,1509,1510,1511,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,939,940,1290,1399,1481,1496,1499,1512,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,664,1399,1411,1481,1512,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1481,1512,1852,1906,1923,1924],[70,72,73,78,658,659,660,1398,1399,1410,1512,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1398,1399,1410,1481,1512,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,940,969,973,1285,1398,1401,1404,1410,1411,1412,1423,1425,1437,1438,1450,1481,1503,1517,1623,1626,1852,1906,1923,1924,2100,2101],[64,70,72,73,78,167,266,624,654,658,659,660,675,936,938,939,940,1398,1399,1409,1410,1411,1412,1413,1416,1437,1438,1439,1446,1450,1481,1495,1505,1628,1631,1644,1645,1852,1906,1923,1924,2034,2048,2088],[64,70,72,73,78,167,266,624,654,658,659,660,1398,1399,1409,1411,1450,1451,1481,1613,1623,1645,1852,1906,1923,1924,2049],[64,70,72,73,78,167,266,624,658,659,660,664,938,940,943,1398,1399,1410,1411,1412,1413,1439,1446,1450,1481,1505,1517,1623,1626,1631,1644,1694,1708,1852,1906,1923,1924,2044,2050],[64,70,72,73,78,167,658,659,660,936,939,940,1379,1399,1401,1412,1450,1481,1626,1628,1631,1678,1852,1906,1923,1924],[70,72,73,78,658,659,660,939,940,1369,1379,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,938,940,1290,1399,1404,1410,1411,1412,1450,1481,1517,1623,1626,1630,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,1339,1369,1412,1481,1514,1623,1852,1906,1923,1924],[70,72,73,78,182,266,658,659,660,1379,1503,1514,1696,1852,1906,1923,1924,2568,2571],[64,70,72,73,78,167,266,658,659,660,938,939,940,1290,1339,1369,1379,1398,1399,1401,1404,1410,1411,1412,1416,1481,1495,1514,1620,1626,1631,1634,1852,1906,1923,1924,2101,2564,2565,2567],[64,70,72,73,78,167,266,658,659,660,939,940,969,1398,1399,1401,1404,1410,1411,1412,1413,1416,1425,1431,1450,1481,1499,1503,1505,1617,1619,1620,1623,1626,1631,1634,1852,1906,1923,1924],[70,72,73,78,658,659,660,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,940,1290,1339,1369,1379,1398,1399,1401,1404,1410,1411,1412,1431,1450,1481,1617,1626,1852,1906,1923,1924,2101,2565,2569,2570],[64,70,72,73,78,167,266,658,659,660,938,939,940,1398,1399,1409,1410,1411,1412,1413,1450,1481,1623,1626,1632,1852,1906,1923,1924],[64,70,72,73,78,167,658,659,660,939,940,1401,1404,1450,1481,1495,1617,1633,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,664,872,1285,1339,1398,1399,1408,1437,1462,1481,1501,1691,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,1286,1481,1502,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,1398,1399,1408,1481,1496,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,1481,1852,1906,1923,1924,2020,2021,2022],[70,72,73,78,167,266,658,659,660,1398,1399,1481,1852,1906,1923,1924],[70,72,73,78,266,658,659,660,1285,1505,1513,1631,1635,1636,1637,1638,1646,1653,1657,1668,1669,1670,1671,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,1285,1401,1481,1497,1498,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,664,1398,1399,1408,1411,1412,1481,1501,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,1290,1408,1462,1481,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,1398,1399,1409,1410,1411,1412,1481,1852,1906,1923,1924],[70,72,73,167,658,659,660,939,940,1412,1481,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,939,940,1290,1398,1399,1408,1412,1413,1416,1462,1481,1499,1503,1517,1626,1628,1629,1630,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,939,940,1285,1290,1398,1399,1404,1412,1416,1423,1425,1450,1462,1481,1499,1503,1517,1623,1626,1629,1630,1852,1906,1923,1924],[64,70,72,73,78,167,266,654,658,659,660,940,1398,1399,1411,1412,1481,1623,1628,1852,1906,1923,1924,2046],[64,70,72,73,78,167,266,624,658,659,660,940,1285,1399,1409,1412,1414,1427,1450,1481,1499,1503,1626,1661,1674,1852,1906,1923,1924,2080],[70,72,73,78,167,266,624,658,659,660,939,940,1290,1398,1399,1409,1411,1462,1481,1496,1499,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,939,940,1399,1481,1499,1613,1852,1906,1923,1924],[64,70,72,73,78,167,266,655,658,659,660,940,969,1286,1398,1399,1411,1413,1416,1441,1442,1481,1499,1505,1613,1623,1631,1639,1640,1641,1644,1645,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,940,1398,1399,1410,1411,1412,1481,1499,1613,1631,1661,1852,1906,1923,1924],[64,70,72,73,78,167,658,659,660,675,939,940,1290,1377,1379,1399,1411,1412,1415,1416,1425,1431,1450,1462,1481,1499,1501,1503,1517,1626,1629,1630,1652,1852,1906,1923,1924],[70,72,73,78,182,658,659,660,1631,1673,1675,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,872,936,939,940,1285,1375,1377,1437,1438,1481,1852,1906,1923,1924],[70,72,73,78,182,658,659,660,1285,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,939,940,1369,1398,1399,1409,1410,1411,1481,1623,1691,1692,1693,1852,1906,1923,1924],[70,72,73,78,266,658,659,660,1285,1377,1379,1501,1623,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,1481,1623,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,939,940,1398,1410,1481,1852,1906,1923,1924,2574],[70,72,73,78,167,266,624,655,658,659,660,940,1279,1285,1286,1399,1421,1441,1450,1481,1499,1613,1623,1644,1652,1656,1852,1906,1923,1924],[64,70,72,73,78,167,182,266,658,659,660,1286,1379,1398,1399,1404,1410,1411,1412,1481,1514,1852,1906,1923,1924,2043],[70,72,73,78,167,658,659,660,1481,1852,1906,1923,1924],[70,72,73,78,266,658,659,660,1369,1496,1852,1906,1923,1924,2025,2026],[64,70,72,73,78,167,266,624,654,658,659,660,1398,1399,1409,1410,1411,1450,1481,1623,1627,1852,1906,1923,1924,2077],[64,70,72,73,78,167,266,624,658,659,660,940,1369,1398,1399,1404,1409,1410,1481,1623,1852,1906,1923,1924,2030,2031],[64,70,72,73,78,167,266,624,654,658,659,660,664,1369,1392,1397,1398,1399,1410,1411,1414,1438,1481,1501,1623,1627,1691,1695,1852,1906,1923,1924,2030,2033,2084,2085],[70,72,73,78,624,654,658,659,660,939,940,1290,1369,1377,1450,1501,1852,1906,1923,1924,2052,2086,2087],[64,70,72,73,78,167,266,624,654,658,659,660,664,1398,1399,1410,1411,1481,1501,1623,1627,1691,1852,1906,1923,1924,2030,2033,2084],[64,70,72,73,78,624,658,659,660,940,1374,1379,1413,1450,1691,1852,1906,1923,1924,2077,2087,2089],[64,70,72,73,78,167,266,624,658,659,660,664,939,940,1398,1399,1410,1411,1481,1501,1623,1627,1691,1695,1697,1852,1906,1923,1924,2033,2084,2087],[70,72,73,78,167,266,624,658,659,660,939,940,1377,1398,1399,1409,1410,1411,1450,1481,1623,1852,1906,1923,1924,2084],[70,72,73,78,167,266,624,658,659,660,1438,1481,1852,1906,1923,1924,2033],[70,72,73,78,167,266,624,658,659,660,1399,1409,1438,1481,1691,1852,1906,1923,1924,2030],[70,72,73,78,167,266,624,658,659,660,664,1398,1481,1691,1852,1906,1923,1924,2030,2033],[64,70,72,73,78,167,266,624,658,659,660,1398,1399,1410,1411,1481,1501,1623,1852,1906,1923,1924,2079,2084,2087],[70,72,73,78,167,266,658,659,660,664,1398,1399,1409,1411,1481,1496,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,1285,1369,1398,1410,1411,1412,1481,1501,1517,1705,1852,1906,1923,1924,2028],[70,72,73,78,167,266,624,658,659,660,938,939,940,1285,1369,1377,1481,1501,1620,1708,1852,1906,1923,1924,2024,2027,2029,2094],[70,72,73,78,167,624,654,658,659,660,939,940,1369,1450,1481,1852,1906,1923,1924,2030,2032,2088,2090,2091,2092,2093],[64,70,72,73,78,167,266,654,658,659,660,940,1375,1377,1398,1481,1623,1683,1852,1906,1923,1924,2598],[70,72,73,78,167,266,658,659,660,664,1410,1411,1481,1613,1852,1906,1923,1924],[64,70,72,73,78,167,266,654,658,659,660,872,939,940,1285,1286,1290,1379,1398,1399,1411,1412,1437,1438,1450,1481,1499,1517,1620,1623,1629,1630,1658,1660,1661,1667,1852,1906,1923,1924],[64,70,72,73,78,167,266,624,654,658,659,660,664,938,940,1398,1399,1409,1411,1431,1450,1451,1481,1505,1517,1630,1708,1852,1906,1923,1924,2052],[64,70,72,73,78,167,266,658,659,660,939,940,1374,1379,1399,1411,1412,1413,1437,1438,1450,1481,1630,1631,1660,1667,1691,1852,1906,1923,1924],[64,67,70,72,73,78,167,182,266,624,654,658,659,660,664,1379,1398,1399,1410,1411,1412,1431,1462,1481,1494,1495,1503,1514,1614,1623,1627,1682,1684,1694,1696,1852,1906,1923,1924,2603],[64,70,72,73,78,167,266,624,654,658,659,660,664,939,940,1285,1379,1398,1399,1409,1412,1414,1427,1450,1481,1501,1683,1708,1852,1906,1923,1924,2081],[64,70,72,73,78,167,266,654,658,659,660,1398,1399,1411,1481,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,664,938,939,940,1290,1377,1398,1399,1409,1410,1411,1450,1481,1505,1623,1695,1852,1906,1923,1924,2034,2066,2078,2083],[70,72,73,78,167,266,624,658,659,660,664,1285,1290,1398,1399,1409,1411,1412,1481,1627,1674,1852,1906,1923,1924,2043,2065],[64,70,72,73,78,167,266,658,659,660,664,939,940,1398,1399,1409,1410,1412,1450,1481,1852,1906,1923,1924,2077],[70,72,73,78,266,658,659,660,1398,1399,1401,1412,1416,1431,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,1398,1399,1412,1416,1450,1481,1852,1906,1923,1924,2074,2079,2082],[64,70,72,73,78,167,266,624,658,659,660,940,1369,1374,1377,1379,1398,1399,1400,1413,1416,1431,1450,1481,1623,1691,1852,1906,1923,1924,2054,2059,2071,2073,2074],[70,72,73,78,167,266,658,659,660,664,939,940,1398,1399,1410,1411,1412,1416,1437,1481,1504,1852,1906,1923,1924],[64,70,72,73,78,167,266,624,658,659,660,939,940,1285,1290,1370,1379,1398,1408,1413,1414,1427,1450,1462,1481,1501,1626,1629,1630,1852,1906,1923,1924,2054],[64,67,70,72,73,78,167,266,624,658,659,660,664,940,972,1392,1398,1399,1410,1411,1412,1431,1450,1481,1494,1682,1852,1906,1923,1924],[64,70,72,73,78,167,266,624,658,659,660,664,938,939,940,1398,1399,1409,1410,1411,1437,1438,1450,1451,1481,1623,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,664,940,1285,1398,1399,1409,1410,1411,1412,1416,1450,1462,1481,1501,1517,1623,1630,1631,1641,1652,1852,1906,1923,1924,2057,2058],[64,70,72,73,78,167,658,659,660,940,1398,1399,1412,1481,1641,1852,1906,1923,1924],[64,67,70,72,73,78,167,266,624,658,659,660,940,1289,1398,1399,1401,1410,1411,1412,1431,1481,1495,1517,1630,1674,1852,1906,1923,1924],[64,70,72,73,78,167,266,624,654,658,659,660,938,940,1279,1281,1398,1399,1409,1411,1412,1437,1450,1451,1481,1626,1852,1906,1923,1924],[64,70,72,73,78,167,266,654,658,659,660,939,940,1375,1398,1399,1404,1409,1411,1481,1627,1683,1852,1906,1923,1924,2098],[64,70,72,73,78,167,266,624,658,659,660,939,940,969,1399,1401,1404,1411,1412,1416,1450,1481,1505,1517,1613,1630,1631,1675,1678,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,938,939,940,1289,1398,1399,1404,1410,1411,1412,1481,1517,1680,1852,1906,1923,1924],[64,70,72,73,78,167,266,624,654,658,659,660,939,940,1369,1398,1399,1411,1416,1429,1450,1481,1623,1631,1683,1852,1906,1923,1924,2055,2072,2077,2084],[64,67,70,72,73,78,167,266,624,654,658,659,660,939,940,1379,1398,1399,1401,1404,1410,1411,1412,1481,1495,1514,1627,1682,1852,1906,1923,1924],[64,70,72,73,78,167,266,624,654,658,659,660,938,939,940,1379,1398,1399,1401,1404,1410,1411,1412,1481,1495,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,940,1398,1410,1411,1481,1517,1613,1852,1906,1923,1924,2566],[64,70,72,73,78,167,266,624,654,658,659,660,664,675,940,1379,1398,1399,1410,1411,1412,1431,1439,1450,1481,1623,1626,1630,1852,1906,1923,1924,2057,2060],[64,70,72,73,78,167,658,659,660,939,940,1398,1399,1404,1410,1411,1412,1440,1481,1504,1517,1617,1852,1906,1923,1924],[64,70,72,73,78,167,654,655,658,659,660,675,939,940,1284,1398,1399,1404,1411,1412,1416,1446,1450,1481,1504,1517,1613,1617,1630,1641,1652,1852,1906,1923,1924],[64,70,72,73,78,167,266,624,658,659,660,938,939,940,943,1377,1398,1399,1409,1411,1412,1414,1450,1451,1481,1505,1623,1708,1852,1906,1923,1924],[64,70,72,73,78,167,266,624,658,659,660,664,938,940,1398,1399,1411,1412,1414,1450,1481,1505,1630,1852,1906,1923,1924,2095],[64,70,72,73,78,167,266,624,658,659,660,664,938,940,1392,1398,1399,1410,1411,1412,1417,1450,1481,1852,1906,1923,1924,2095],[64,70,72,73,78,167,266,624,658,659,660,939,940,1369,1370,1373,1379,1398,1399,1409,1410,1411,1412,1440,1450,1481,1627,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,664,938,940,1398,1399,1409,1410,1411,1437,1481,1852,1906,1923,1924],[64,67,70,72,73,78,167,266,658,659,660,938,1289,1398,1399,1408,1410,1411,1412,1440,1481,1516,1517,1613,1614,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,672,675,938,940,1379,1398,1399,1401,1409,1411,1416,1431,1481,1514,1620,1627,1852,1906,1923,1924,2026,2085,2566,2612],[70,72,73,78,167,624,658,659,660,1285,1375,1379,1427,1450,1481,1852,1906,1923,1924,2084,2098,2599,2614,2615],[70,72,73,658,659,660,943,1852,1906,1923,1924],[64,70,72,73,78,167,182,266,654,658,659,660,664,940,1286,1373,1375,1379,1398,1399,1404,1407,1409,1411,1412,1413,1430,1431,1450,1481,1623,1683,1852,1906,1923,1924,2024,2031,2055,2628,2631,2633,2634],[70,72,73,78,167,266,658,659,660,664,939,940,1369,1375,1379,1398,1399,1409,1411,1450,1451,1481,1852,1906,1923,1924,2098],[70,72,73,78,167,266,658,659,660,939,940,943,1398,1399,1409,1411,1428,1429,1451,1481,1623,1627,1852,1906,1923,1924],[70,72,73,78,167,266,624,658,659,660,1285,1379,1399,1427,1450,1481,1852,1906,1923,1924,2077,2079,2098,2599,2615],[70,72,73,78,167,266,658,659,660,1375,1398,1399,1401,1409,1410,1481,1614,1623,1627,1684,1852,1906,1923,1924,2613],[64,70,72,73,78,167,266,624,658,659,660,1285,1379,1392,1399,1401,1404,1412,1427,1450,1481,1852,1906,1923,1924,2098,2598,2599,2608,2615,2616,2629,2630],[70,72,73,78,167,266,658,659,660,1398,1399,1411,1481,1852,1906,1923,1924,2630],[64,70,72,73,78,167,266,624,658,659,660,1369,1370,1379,1398,1399,1429,1430,1450,1481,1708,1852,1906,1923,1924,2072,2077,2084,2630,2632],[64,70,72,73,78,167,266,624,658,659,660,1369,1373,1379,1398,1399,1409,1411,1430,1450,1451,1481,1627,1708,1852,1906,1923,1924,2079,2084,2630,2632],[70,72,73,658,659,660,1428,1429,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,939,940,969,1398,1399,1411,1412,1481,1517,1705,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,664,939,940,1286,1290,1398,1399,1410,1411,1412,1462,1481,1501,1502,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,664,1398,1481,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,664,1398,1399,1400,1409,1410,1411,1481,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,664,1398,1400,1408,1409,1481,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,664,665,1398,1399,1411,1462,1481,1622,1623,1625,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,1398,1399,1408,1411,1481,1627,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,1398,1408,1481,1852,1906,1923,1924],[70,72,73,78,167,266,624,654,658,659,660,1398,1399,1412,1481,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,938,973,1285,1286,1401,1408,1481,1503,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1481,1613,1852,1906,1923,1924],[70,72,73,658,659,660,1612,1852,1906,1923,1924],[70,72,73,658,659,660,1518,1610,1611,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,1398,1399,1411,1481,1852,1906,1923,1924],[70,72,73,78,167,654,658,659,660,1410,1411,1481,1852,1906,1923,1924],[70,72,73,78,658,659,660,872,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,1398,1481,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,939,940,969,1398,1399,1410,1411,1412,1416,1481,1686,1852,1906,1923,1924],[64,70,72,73,78,167,266,624,658,659,660,664,939,940,1398,1399,1401,1408,1410,1411,1412,1440,1462,1481,1517,1614,1627,1684,1685,1852,1906,1923,1924],[70,72,73,658,659,660,1681,1852,1906,1923,1924],[64,70,72,73,78,167,266,624,654,658,659,660,675,939,940,973,1285,1369,1373,1375,1378,1379,1389,1401,1404,1412,1413,1414,1415,1416,1417,1427,1431,1438,1450,1481,1514,1652,1683,1691,1697,1852,1906,1923,1924,2051,2053,2055,2059,2061,2062,2063,2064],[64,67,70,72,73,78,167,624,654,658,659,660,672,939,940,969,973,1285,1367,1377,1379,1389,1401,1404,1408,1416,1417,1425,1437,1438,1439,1440,1442,1449,1450,1481,1494,1495,1496,1516,1616,1617,1619,1620,1671,1678,1679,1681,1683,1687,1697,1701,1702,1852,1906,1923,1924],[70,72,73,78,624,658,659,660,1439,1852,1906,1923,1924],[70,72,73,78,624,658,659,660,939,940,1285,1450,1852,1906,1923,1924],[64,70,72,73,78,654,658,659,660,939,940,1379,1401,1404,1413,1417,1450,1701,1852,1906,1923,1924],[70,72,73,658,659,660,1285,1852,1906,1923,1924],[70,72,73,78,658,659,660,939,940,1285,1379,1450,1852,1906,1923,1924],[70,72,73,624,658,659,660,1285,1852,1906,1923,1924],[70,72,73,78,658,659,660,1324,1366,1369,1852,1906,1923,1924],[70,72,73,78,624,658,659,660,939,940,1450,1451,1852,1906,1923,1924],[67,70,72,73,78,167,624,658,659,660,1285,1401,1404,1450,1481,1494,1495,1852,1906,1923,1924],[70,72,73,624,658,659,660,1691,1852,1906,1923,1924],[64,70,72,73,78,167,658,659,660,1289,1481,1852,1906,1923,1924,2637],[70,72,73,78,658,659,660,969,1852,1906,1923,1924],[70,72,73,78,624,658,659,660,1450,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,940,1481,1502,1705,1852,1906,1923,1924],[70,72,73,78,658,659,660,940,1285,1425,1450,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,872,939,940,1285,1286,1290,1375,1376,1377,1431,1437,1438,1450,1481,1501,1639,1658,1706,1707,1852,1906,1923,1924,2638,2643],[70,72,73,78,266,654,658,659,660,1285,1339,1366,1369,1377,1379,1404,1691,1706,1852,1906,1923,1924],[64,70,72,73,78,167,182,266,624,654,658,659,660,940,1290,1379,1392,1398,1399,1404,1411,1412,1414,1417,1450,1481,1495,1626,1631,1683,1688,1690,1694,1695,1696,1852,1906,1923,1924],[64,70,72,73,78,658,659,660,1369,1378,1379,1404,1450,1694,1696,1852,1906,1923,1924,2023,2075,2095],[64,66,70,72,73,78,167,658,659,660,939,940,971,972,1285,1377,1425,1431,1435,1436,1437,1438,1450,1481,1501,1659,1852,1906,1923,1924,2639,2640,2641],[64,70,72,73,78,167,266,658,659,660,872,939,940,1285,1286,1398,1399,1411,1412,1435,1437,1481,1623,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,1286,1438,1439,1481,1613,1852,1906,1923,1924],[66,70,72,73,78,167,266,658,659,660,971,972,1279,1280,1281,1286,1398,1399,1431,1436,1450,1481,1644,1659,1852,1906,1923,1924],[70,72,73,167,658,659,660,1481,1852,1906,1923,1924],[70,72,73,78,167,182,624,658,659,660,972,1279,1416,1436,1437,1438,1450,1481,1852,1906,1923,1924],[64,70,72,73,167,624,654,655,658,659,660,940,1285,1401,1421,1437,1438,1441,1446,1450,1454,1481,1495,1798,1852,1906,1923,1924,2045,2046,2047],[70,72,73,624,654,658,659,660,1279,1435,1852,1906,1923,1924],[64,70,72,73,78,167,624,654,658,659,660,675,939,940,972,1279,1280,1281,1285,1290,1369,1373,1377,1379,1401,1404,1414,1416,1431,1436,1437,1438,1450,1481,1514,1644,1675,1683,1697,1699,1701,1852,1906,1923,1924,2063,2074,2084,2606,2607,2611],[64,70,72,73,78,167,266,588,624,654,658,659,660,939,940,972,1280,1281,1285,1286,1290,1373,1377,1379,1380,1404,1416,1417,1426,1432,1433,1434,1436,1437,1438,1450,1481,1852,1906,1923,1924],[70,72,73,624,654,658,659,660,939,940,943,962,968,969,1437,1450,1852,1906,1923,1924],[70,72,73,78,167,624,658,659,660,939,940,972,973,1281,1436,1438,1450,1481,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,1285,1286,1290,1377,1437,1481,1497,1852,1906,1923,1924,2642],[64,70,72,73,78,658,659,660,1368,1369,1379,1404,1450,1694,1696,1852,1906,1923,1924,2023,2075,2095],[70,72,73,78,167,658,659,660,1398,1399,1412,1481,1852,1906,1923,1924],[64,70,72,73,78,658,659,660,1369,1371,1379,1404,1432,1694,1696,1852,1906,1923,1924,2019,2023,2075,2095],[64,70,72,73,78,167,182,266,624,654,658,659,660,938,940,1370,1379,1398,1399,1411,1414,1428,1429,1450,1481,1626,1628,1683,1694,1696,1852,1906,1923,1924,2019,2054,2055,2072],[64,70,72,73,78,167,182,266,624,654,658,659,660,664,938,940,1373,1379,1398,1399,1409,1410,1411,1414,1428,1450,1451,1481,1626,1694,1696,1708,1852,1906,1923,1924],[64,70,72,73,78,167,182,266,624,654,658,659,660,938,939,940,1370,1379,1399,1412,1413,1429,1430,1450,1481,1626,1683,1694,1696,1852,1906,1923,1924,2054,2055,2072],[64,70,72,73,78,167,182,266,624,658,659,660,1379,1398,1399,1409,1410,1411,1428,1450,1451,1481,1626,1627,1628,1694,1696,1852,1906,1923,1924,2019,2054],[70,72,73,78,167,182,266,624,658,659,660,973,1285,1286,1399,1411,1450,1451,1481,1626,1694,1852,1906,1923,1924],[64,70,72,73,78,167,624,654,658,659,660,939,940,1285,1369,1377,1379,1432,1450,1481,1694,1696,1852,1906,1923,1924,2019,2023,2054,2067,2075,2076,2084,2095],[70,72,73,78,624,658,659,660,1369,1379,1432,1450,1852,1906,1923,1924,2096],[64,70,72,73,658,659,660,939,940,1290,1373,1377,1379,1414,1427,1431,1437,1450,1852,1906,1923,1924],[64,70,72,73,78,624,654,658,659,660,940,1285,1369,1377,1379,1432,1450,1694,1696,1852,1906,1923,1924,2019,2023,2029,2075,2095],[64,70,72,73,78,658,659,660,1369,1379,1432,1450,1852,1906,1923,1924,2096],[64,70,72,73,78,654,658,659,660,940,1369,1372,1379,1404,1683,1694,1696,1697,1852,1906,1923,1924,2019,2023,2075,2095],[64,70,72,73,78,624,658,659,660,939,940,1369,1379,1450,1696,1852,1906,1923,1924,2075,2095,2653],[64,70,72,73,78,167,266,658,659,660,936,1369,1379,1398,1399,1481,1623,1691,1852,1906,1923,1924],[64,70,72,73,78,167,266,654,655,658,659,660,675,936,939,940,1284,1398,1399,1401,1409,1410,1411,1412,1416,1446,1450,1481,1517,1614,1623,1626,1630,1632,1683,1852,1906,1923,1924],[64,70,72,73,78,167,266,654,658,659,660,664,1398,1399,1411,1439,1450,1451,1481,1613,1623,1645,1852,1906,1923,1924],[64,70,72,73,78,167,658,659,660,939,940,1399,1412,1450,1481,1626,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1399,1481,1852,1906,1923,1924,2044,2051,2099,2563,2656,2657,2662,2664,2666,2669,2670,2671,2672,2673],[64,70,72,73,78,167,266,518,624,654,655,658,659,660,675,940,1284,1399,1408,1411,1413,1446,1481,1623,1628,1632,1852,1906,1923,1924],[70,72,73,78,658,659,660,1701,1852,1906,1923,1924,2659,2661],[64,70,72,73,78,167,266,654,658,659,660,872,940,1398,1399,1411,1412,1481,1495,1628,1683,1701,1852,1906,1923,1924,2598,2661],[64,70,72,73,78,167,266,654,658,659,660,664,872,940,1279,1398,1399,1411,1413,1462,1481,1623,1701,1852,1906,1923,1924,2598,2658,2660],[70,72,73,654,658,659,660,943,968,969,1279,1285,1450,1700,1852,1906,1923,1924],[64,70,72,73,78,167,266,658,659,660,938,940,1279,1398,1399,1409,1411,1481,1614,1700,1701,1852,1906,1923,1924],[64,70,72,73,78,167,266,654,658,659,660,664,872,940,1279,1398,1399,1411,1413,1462,1481,1614,1623,1700,1701,1852,1906,1923,1924,2598,2658,2660],[70,72,73,658,659,660,1279,1698,1699,1852,1906,1923,1924],[64,70,72,73,658,659,660,940,1401,1404,1413,1416,1423,1425,1450,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,872,1366,1369,1481,1694,1696,1852,1906,1923,1924,2023,2101,2667,2668,2674],[64,70,72,73,78,658,659,660,1366,1369,1694,1696,1708,1852,1906,1923,1924,2023,2667,2676,2677,2678],[70,72,73,78,167,182,266,658,659,660,1366,1369,1481,1852,1906,1923,1924,2667,2675,2679],[70,72,73,78,167,266,658,659,660,1398,1399,1409,1410,1411,1481,1708,1852,1906,1923,1924,2663],[64,70,72,73,658,659,660,939,940,1379,1413,1450,1671,1678,1852,1906,1923,1924],[64,70,72,73,78,167,266,624,658,659,660,675,940,1379,1398,1399,1401,1409,1410,1411,1412,1431,1450,1481,1495,1627,1628,1852,1906,1923,1924,2060],[70,72,73,78,167,266,658,659,660,664,1398,1399,1408,1409,1411,1416,1481,1495,1515,1631,1852,1906,1923,1924,2071],[64,70,72,73,624,654,658,659,660,940,1285,1392,1401,1404,1450,1515,1683,1852,1906,1923,1924,2098,2665],[64,70,72,73,78,167,266,624,654,655,658,659,660,940,1284,1367,1379,1398,1399,1401,1404,1410,1411,1412,1413,1441,1442,1446,1450,1481,1642,1671,1708,1798,1852,1906,1923,1924,2668],[70,72,73,78,167,266,658,659,660,1398,1399,1410,1481,1852,1906,1923,1924,2667,2668],[70,72,73,78,167,266,654,658,659,660,664,1285,1339,1369,1398,1399,1404,1409,1410,1411,1481,1517,1623,1626,1627,1683,1852,1906,1923,1924,2667,2674],[64,70,72,73,78,167,266,624,658,659,660,940,1285,1399,1401,1404,1411,1412,1413,1481,1626,1628,1852,1906,1923,1924],[64,70,72,73,78,167,624,654,658,659,660,675,939,940,973,1289,1379,1389,1392,1401,1403,1404,1407,1413,1416,1417,1425,1446,1450,1468,1481,1494,1495,1515,1615,1620,1636,1671,1675,1678,1701,1852,1906,1923,1924,2059,2567,2612,2639,2655,2667,2677],[64,70,72,73,78,167,266,658,659,660,664,1283,1285,1398,1399,1404,1409,1411,1417,1481,1623,1852,1906,1923,1924],[64,70,72,73,78,167,266,655,658,659,660,664,940,1398,1399,1407,1408,1409,1410,1411,1412,1441,1450,1462,1481,1505,1623,1626,1708,1787,1798,1836,1852,1906,1923,1924,1993,2018,2098],[64,70,72,73,78,167,266,658,659,660,1398,1399,1411,1450,1481,1626,1852,1906,1923,1924],[70,72,73,167,654,658,659,660,1285,1481,1852,1906,1923,1924],[64,70,72,73,78,167,266,624,654,658,659,660,664,672,940,1379,1392,1398,1399,1401,1404,1407,1411,1412,1413,1440,1450,1481,1495,1627,1852,1906,1923,1924,2046,2085,2609,2668],[64,70,72,73,78,658,659,660,940,1369,1374,1379,1413,1450,1691,1694,1696,1852,1906,1923,1924,2019,2023,2075,2095],[70,72,73,78,167,182,266,624,654,658,659,660,1286,1379,1392,1398,1399,1410,1411,1412,1450,1481,1623,1652,1696,1852,1906,1923,1924,2043,2682],[67,70,72,73,658,659,660,969,1401,1450,1852,1906,1923,1924,2056],[70,72,73,167,658,659,660,1380,1401,1404,1417,1442,1450,1467,1481,1852,1906,1923,1924],[64,70,72,73,167,624,654,655,658,659,660,939,940,1284,1404,1413,1416,1441,1442,1446,1450,1481,1641,1642,1652,1671,1852,1906,1923,1924],[64,70,72,73,167,658,659,660,940,969,1285,1401,1418,1419,1424,1481,1852,1906,1923,1924],[70,72,73,167,658,659,660,1289,1481,1852,1906,1923,1924],[64,67,70,72,73,78,624,658,659,660,675,938,939,1852,1906,1923,1924],[64,70,72,73,167,624,654,655,658,659,660,1284,1401,1426,1441,1446,1450,1481,1642,1644,1852,1906,1923,1924,2045],[70,72,73,167,658,659,660,939,940,973,1377,1437,1450,1481,1697,1852,1906,1923,1924],[64,70,72,73,167,658,659,660,939,940,1379,1404,1481,1495,1496,1514,1515,1516,1615,1616,1852,1906,1923,1924],[70,72,73,658,659,660,939,940,1339,1366,1368,1369,1370,1371,1372,1373,1374,1377,1378,1852,1906,1923,1924],[70,72,73,167,624,658,659,660,973,1450,1481,1852,1906,1923,1924],[64,70,72,73,167,624,654,658,659,660,672,939,940,969,973,1285,1290,1372,1377,1379,1389,1392,1397,1401,1404,1413,1414,1415,1416,1437,1438,1450,1481,1852,1906,1923,1924],[64,67,70,72,73,167,624,658,659,660,940,969,1401,1404,1440,1450,1481,1494,1852,1906,1923,1924],[70,72,73,658,659,660,1450,1852,1906,1923,1924,2685],[70,72,73,167,658,659,660,969,973,1285,1398,1401,1403,1450,1481,1852,1906,1923,1924],[70,72,73,658,659,660,672,940,1401,1404,1450,1468,1619,1852,1906,1923,1924],[64,70,72,73,78,658,659,660,969,1852,1906,1923,1924],[64,70,72,73,658,659,660,1621,1852,1906,1923,1924],[70,72,73,78,167,266,658,659,660,664,1398,1451,1456,1481,1852,1906,1923,1924],[70,72,73,78,167,266,624,658,659,660,939,940,971,972,1398,1481,1852,1906,1923,1924],[70,72,73,78,167,655,658,659,660,972,1450,1456,1481,1852,1906,1923,1924],[70,72,73,78,266,658,659,660,1456,1464,1852,1906,1923,1924],[70,72,73,78,167,266,624,658,659,660,664,943,1399,1411,1450,1451,1456,1461,1462,1481,1852,1906,1923,1924],[70,72,73,78,167,182,266,267,271,624,654,655,658,659,660,664,665,939,940,973,1289,1398,1410,1411,1412,1424,1450,1451,1455,1456,1457,1458,1459,1460,1463,1481,1852,1906,1923,1924],[70,72,73,167,266,658,659,660,943,969,1285,1450,1481,1852,1906,1923,1924],[70,72,73,624,654,658,659,660,940,943,1285,1450,1852,1906,1923,1924],[70,72,73,624,658,659,660,943,968,969,1428,1450,1852,1906,1923,1924],[70,72,73,658,659,660,939,940,973,1368,1370,1371,1372,1373,1374,1379,1380,1401,1414,1417,1427,1450,1618,1852,1906,1923,1924],[70,72,73,624,658,659,660,943,1852,1906,1923,1924],[70,72,73,658,659,660,1367,1450,1852,1906,1923,1924],[70,72,73,658,659,660,943,1437,1438,1852,1906,1923,1924],[70,72,73,624,658,659,660,943,1450,1852,1906,1923,1924],[70,72,73,167,624,658,659,660,943,969,1289,1450,1481,1495,1852,1906,1923,1924],[70,72,73,624,658,659,660,943,1324,1852,1906,1923,1924],[67,70,72,73,167,182,266,624,658,659,660,943,1283,1284,1481,1852,1906,1923,1924],[70,72,73,167,266,658,659,660,943,1404,1405,1406,1481,1852,1906,1923,1924],[64,70,72,73,624,654,658,659,660,939,940,943,1379,1404,1413,1852,1906,1923,1924],[70,72,73,167,658,659,660,1407,1481,1852,1906,1923,1924],[64,70,72,73,167,624,658,659,660,1289,1481,1852,1906,1923,1924],[64,70,72,73,167,624,658,659,660,939,940,1370,1373,1379,1413,1414,1426,1427,1430,1450,1481,1852,1906,1923,1924],[70,72,73,658,659,660,1289,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1339,1369,1376,1481,1852,1906,1923,1924],[70,72,73,624,658,659,660,1379,1852,1906,1923,1924,2097],[70,72,73,167,624,655,658,659,660,1421,1440,1450,1454,1481,1852,1906,1923,1924],[70,72,73,624,658,659,660,1450,1852,1906,1923,1924],[70,72,73,624,658,659,660,939,940,1370,1450,1852,1906,1923,1924],[70,72,73,167,658,659,660,1290,1481,1852,1906,1923,1924],[70,72,73,167,658,659,660,668,1481,1852,1906,1923,1924],[70,72,73,167,658,659,660,1377,1398,1481,1852,1906,1923,1924],[64,70,72,73,658,659,660,940,1285,1413,1425,1450,1852,1906,1923,1924],[55,70,72,73,658,659,660,1852,1906,1923,1924],[57,58,59,61,64,66,67,68,70,72,73,175,658,659,660,1852,1906,1923,1924],[61,70,72,73,78,167,176,182,658,659,660,1465,1481,1852,1906,1923,1924],[67,70,72,73,78,167,176,182,658,659,660,672,1362,1417,1465,1468,1469,1481,1852,1906,1923,1924,2103],[70,72,73,658,659,660,1852,1906,1923,1924,1928,2176,2177],[70,72,73,658,659,660,1381,1382,1384,1385,1387,1388,1852,1906,1923,1924],[70,72,73,658,659,660,1381,1382,1384,1385,1386,1389,1852,1906,1923,1924],[70,72,73,658,659,660,1381,1382,1383,1389,1852,1906,1923,1924],[70,72,73,658,659,660,1384,1852,1906,1923,1924],[70,72,73,167,658,659,660,1420,1481,1852,1906,1923,1924],[50,70,72,73,658,659,660,1852,1906,1923,1924],[70,72,73,658,659,660,1452,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1920,1923,1924,2490,2520],[70,72,73,658,659,660,1852,1906,1923,1924,2520,2521],[70,72,73,658,659,660,1852,1906,1923,1924,2520],[70,72,73,658,659,660,1852,1906,1920,1922,1923,1924,2490,2499,2516,2517,2518,2519],[70,72,73,658,659,660,1852,1906,1922,1923,1924,2499,2516,2520],[70,72,73,658,659,660,1852,1906,1923,1924,2537,2538],[70,72,73,658,659,660,1852,1906,1923,1924,2360],[70,72,73,174,658,659,660,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,2183],[70,72,73,658,659,660,1852,1906,1923,1924,2180],[70,72,73,658,659,660,1852,1906,1923,1924,2181,2182],[70,72,73,658,659,660,1852,1906,1923,1924,2179],[70,72,73,658,659,660,1852,1906,1923,1924,2179,2365,2454,2455,2535],[70,72,73,658,659,660,1852,1906,1923,1924,2360,2447],[70,72,73,658,659,660,1852,1906,1923,1924,2362],[70,72,73,658,659,660,1852,1906,1923,1924,2362,2363,2364],[70,72,73,169,170,171,172,173,658,659,660,1852,1906,1923,1924],[70,72,73,168,169,658,659,660,1852,1906,1923,1924],[70,72,73,168,169,170,658,659,660,1852,1906,1917,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,2360,2448],[70,72,73,658,659,660,1852,1906,1923,1924,2447],[70,72,73,658,659,660,1852,1906,1923,1924,2448,2449],[70,72,73,658,659,660,1852,1906,1923,1924,2360,2451],[70,72,73,658,659,660,1852,1906,1923,1924,2179,2360],[70,72,73,658,659,660,1852,1906,1923,1924,2451,2452],[70,72,73,658,659,660,1852,1906,1923,1924,2361,2366,2367,2368,2371,2373,2374,2375,2398,2450,2453],[70,72,73,658,659,660,1852,1906,1923,1924,2360,2365],[70,72,73,658,659,660,1852,1906,1923,1924,2360,2374],[70,72,73,658,659,660,1852,1906,1923,1924,2360,2397],[70,72,73,658,659,660,1852,1906,1923,1924,2369,2370],[70,72,73,658,659,660,1852,1906,1923,1924,2360,2369],[70,72,73,658,659,660,1852,1906,1923,1924,2360,2366,2371],[70,72,73,658,659,660,1852,1906,1923,1924,2372],[70,72,73,658,659,660,1852,1906,1923,1924,2179,2360,2522],[70,72,73,658,659,660,1852,1906,1923,1924,2533],[70,72,73,658,659,660,1852,1906,1923,1924,2456,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2534],[70,72,73,658,659,660,1852,1906,1923,1924,2441,2445,2465],[70,72,73,658,659,660,1852,1906,1923,1924,2468],[70,72,73,268,269,270,658,659,660,1852,1906,1923,1924],[70,72,73,78,167,268,658,659,660,1481,1852,1906,1923,1924],[70,72,73,268,658,659,660,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,1952,1956,2547,2548,2551],[70,72,73,658,659,660,1852,1906,1923,1924,2557,2559],[70,72,73,658,659,660,1852,1906,1923,1924,2547,2548,2550],[70,72,73,658,659,660,1852,1906,1923,1924,2547,2548,2552,2560],[70,72,73,658,659,660,1852,1906,1923,1924,2545],[70,72,73,658,659,660,1852,1906,1923,1924,1956,2152,2541,2542,2544,2546],[70,72,73,78,167,658,659,660,872,1481,1852,1906,1923,1924],[65,70,72,73,658,659,660,1852,1906,1923,1924],[66,70,72,73,78,658,659,660,1470,1852,1906,1923,1924],[66,70,72,73,78,658,659,660,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,2396],[70,72,73,658,659,660,1852,1906,1923,1924,2385],[70,72,73,658,659,660,1852,1906,1923,1924,2387],[70,72,73,658,659,660,1852,1906,1923,1924,2376,2387,2388,2389,2390,2391,2392,2393,2394,2395],[70,72,73,658,659,660,1852,1906,1923,1924,2377,2378,2379,2380,2385,2386],[70,72,73,658,659,660,1852,1906,1923,1924,2377,2378],[70,72,73,658,659,660,1852,1906,1923,1924,2381,2382,2383,2384],[70,72,73,658,659,660,1852,1906,1923,1924,2378,2379],[70,72,73,658,659,660,1852,1906,1923,1924,2378],[70,72,73,658,659,660,1852,1906,1923,1924,2377],[70,72,73,658,659,660,1852,1906,1923,1924,2695,2696],[70,72,73,658,659,660,1852,1906,1923,1924,2696,2697,2698,2699],[70,72,73,658,659,660,1852,1906,1923,1924,1956,2696,2698],[70,72,73,658,659,660,1852,1906,1923,1924,2695,2697],[70,72,73,658,659,660,1852,1906,1918,1923,1924,1956],[70,72,73,658,659,660,1852,1906,1918,1923,1924,1956,2691],[70,72,73,658,659,660,1852,1906,1923,1924,2691,2692,2693,2694],[70,72,73,658,659,660,1852,1906,1923,1924,2691,2693],[70,72,73,658,659,660,1852,1906,1923,1924,2692],[70,72,73,658,659,660,1852,1906,1923,1924,1938,1956,2700,2701,2702,2705],[70,72,73,658,659,660,1852,1906,1923,1924,2701,2702,2704],[70,72,73,658,659,660,1852,1906,1917,1923,1924,1956,2700,2701,2702,2703],[70,72,73,658,659,660,1852,1906,1923,1924,2702],[70,72,73,658,659,660,1852,1906,1923,1924,2700,2701],[70,72,73,658,659,660,1852,1906,1923,1924,1956,2700],[70,72,73,658,659,660,673,674,1852,1906,1923,1924],[70,72,73,658,659,660,671,1852,1906,1923,1924],[70,72,73,658,659,660,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1852,1906,1923,1924],[70,72,73,658,659,660,1789,1790,1852,1906,1923,1924],[70,72,73,658,659,660,1789,1792,1852,1906,1923,1924],[70,72,73,658,659,660,1789,1852,1906,1923,1924],[70,72,73,167,658,659,660,1481,1789,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,2492,2493,2494,2495,2496],[70,72,73,658,659,660,1852,1906,1923,1924,2492,2493,2494,2497,2498],[70,72,73,658,659,660,1852,1906,1923,1924,2491],[70,72,73,658,659,660,1852,1906,1923,1924,2493],[70,72,73,658,659,660,1852,1906,1923,1924,2499],[70,72,73,658,659,660,1852,1906,1923,1924,2175],[70,72,73,78,658,659,660,1297,1298,1852,1906,1923,1924],[70,72,73,658,659,660,1298,1852,1906,1923,1924],[70,72,73,658,659,660,1297,1852,1906,1923,1924],[70,72,73,658,659,660,1297,1298,1852,1906,1923,1924],[70,72,73,658,659,660,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1852,1906,1923,1924],[70,72,73,78,658,659,660,1297,1852,1906,1923,1924],[70,72,73,658,659,660,1312,1852,1906,1923,1924],[70,72,73,658,659,660,1363,1364,1365,1852,1906,1923,1924],[70,72,73,78,658,659,660,1339,1363,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1339,1362,1481,1852,1906,1923,1924],[70,72,73,658,659,660,1324,1325,1326,1327,1328,1329,1331,1332,1333,1334,1335,1336,1337,1338,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1324,1325,1481,1852,1906,1923,1924],[70,72,73,78,658,659,660,1324,1327,1852,1906,1923,1924],[70,72,73,78,658,659,660,1327,1330,1852,1906,1923,1924],[70,72,73,658,659,660,1327,1852,1906,1923,1924],[70,72,73,78,658,659,660,1327,1852,1906,1923,1924],[70,72,73,658,659,660,1339,1852,1906,1923,1924],[70,72,73,658,659,660,1324,1852,1906,1923,1924],[70,72,73,658,659,660,1291,1852,1906,1923,1924],[70,72,73,658,659,660,1291,1294,1852,1906,1923,1924],[70,72,73,658,659,660,1291,1292,1293,1294,1295,1296,1852,1906,1923,1924],[70,72,73,658,659,660,1291,1292,1852,1906,1923,1924],[70,72,73,658,659,660,1292,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,2186],[70,72,73,658,659,660,1852,1906,1917,1923,1924,1956,2198],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2189,2200,2207,2215,2216,2317,2321],[70,72,73,658,659,660,1852,1906,1923,1924,2351,2352,2354],[70,72,73,658,659,660,1852,1906,1923,1924,2351,2352,2353],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2215,2216,2317,2321,2360],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2196,2200,2207,2215,2216,2234,2317,2321,2324],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2215,2216,2241,2317,2321,2360],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2196,2200,2207,2215,2216,2317,2321],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2196,2200,2207,2215,2216,2220,2234,2317,2321],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2215,2216,2234,2317,2321,2358],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2196,2200,2207,2215,2216,2317,2321,2360],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2215,2216,2220,2317,2321,2360],[70,72,73,658,659,660,1852,1906,1923,1924,2234],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2196,2200,2207,2215,2216,2234,2317,2321],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2188,2200,2207,2215,2216,2266,2317,2321,2324],[70,72,73,658,659,660,1852,1906,1923,1924,2266,2268],[70,72,73,658,659,660,1852,1906,1923,1924,2324],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2215,2216,2234,2266,2267,2317,2321,2324],[70,72,73,658,659,660,1852,1906,1923,1924,2190,2191,2192,2193,2194,2195,2196,2197,2205,2235,2236,2237,2238,2239,2240,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2269,2270,2271,2272,2273,2274,2275,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2188,2196,2200,2203,2207,2215,2216,2317,2321,2324],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2215,2216,2234,2317,2321],[70,72,73,658,659,660,1852,1906,1923,1924,2210,2360],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2215,2216,2276,2277,2317,2321,2360],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2188,2200,2207,2215,2216,2234,2299,2317,2321,2324],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2188,2200,2207,2215,2216,2299,2317,2321,2324,2360],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2215,2216,2277,2317,2321,2360],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2215,2216,2317,2321],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2206,2207,2215,2216,2317,2321],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2188,2189,2200,2202,2203,2204,2207,2209,2215,2216,2217,2220,2224,2225,2226,2229,2231,2232,2234,2315,2316,2317,2318,2319,2320,2321,2322,2323],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2188,2189,2199,2200,2202,2207,2215,2216,2217,2220,2221,2222,2224,2225,2226,2227,2231,2232,2233,2317,2321,2324,2360],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2211,2212,2213,2215,2216,2234,2317,2321],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2201,2202,2203,2207,2211,2212,2214,2215,2216,2234,2317,2321,2324],[70,72,73,658,659,660,1852,1906,1923,1924,2212],[70,72,73,658,659,660,1852,1906,1918,1920,1922,1923,1924,1926,1946,1949,2360],[70,72,73,658,659,660,1852,1906,1923,1924,2211,2212,2213,2218,2219],[70,72,73,658,659,660,1852,1906,1923,1924,2204,2211,2315,2324],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2204,2205,2207,2209,2210,2213,2215,2216,2234,2317,2321,2324,2358],[70,72,73,658,659,660,1852,1906,1923,1924,2234,2347],[70,72,73,658,659,660,1852,1906,1923,1924,2220,2234,2344,2345,2346],[70,72,73,658,659,660,1852,1906,1923,1924,2188,2216],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2189,2200,2203,2207,2209,2215,2216,2220,2226,2230,2231,2232,2233,2234,2276,2315,2317,2318,2319,2321,2324,2325,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2355,2356,2357],[70,72,73,658,659,660,1852,1906,1923,1924,2358,2359],[70,72,73,658,659,660,1852,1906,1923,1924,2188,2204],[70,72,73,658,659,660,1852,1906,1923,1924,2203],[70,72,73,658,659,660,1852,1906,1923,1924,2204,2222,2223],[70,72,73,658,659,660,1852,1906,1923,1924,2315,2360],[70,72,73,658,659,660,1852,1906,1923,1924,2234,2333],[70,72,73,658,659,660,1852,1906,1923,1924,2220,2234],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2189,2200,2207,2214,2215,2216,2317,2321],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2208,2215,2216,2317,2321],[70,72,73,658,659,660,1852,1906,1918,1923,1924,2188,2202,2220,2232,2325,2326,2360],[70,72,73,658,659,660,1852,1906,1923,1924,2230,2231],[70,72,73,658,659,660,1852,1906,1923,1924,2188,2233,2327],[70,72,73,658,659,660,1852,1906,1923,1924,2220,2360],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2188,2200,2207,2215,2216,2220,2317,2321,2324],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2188,2200,2207,2215,2216,2225,2317,2321],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2213,2215,2216,2317,2321],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2214,2215,2216,2220,2317,2321],[70,72,73,658,659,660,1852,1906,1923,1924,2188,2220,2231,2234,2325,2327],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2215,2216,2317,2321,2324],[70,72,73,658,659,660,1852,1906,1923,1924,2220,2230,2324],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2188,2200,2207,2215,2216,2228,2317,2321,2324],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2215,2216,2220,2229,2317,2321,2324],[70,72,73,658,659,660,1852,1906,1923,1924,2188,2230],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2215,2216,2317,2321,2353],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2200,2207,2215,2216,2299,2317,2321],[70,72,73,658,659,660,1852,1906,1923,1924,2187,2188,2200,2207,2215,2216,2234,2317,2321],[70,72,73,658,659,660,1852,1906,1917,1923,1924,2220],[70,72,73,658,659,660,1852,1906,1923,1924,2188,2220,2232,2360],[70,72,73,278,279,280,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,357,359,360,361,362,364,365,366,367,368,369,370,371,372,373,375,376,377,379,380,382,384,388,389,390,391,392,393,394,395,397,398,400,401,402,404,405,406,407,408,409,411,412,413,414,417,418,419,420,421,422,423,424,425,427,428,429,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,449,450,451,452,453,454,457,458,462,463,464,465,466,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,658,659,660,1852,1906,1923,1924],[70,72,73,658,659,660,1801,1852,1906,1923,1924],[70,72,73,658,659,660,1804,1807,1810,1811,1852,1906,1923,1924],[70,72,73,658,659,660,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1852,1906,1923,1924],[70,72,73,658,659,660,1802,1804,1807,1811,1852,1906,1923,1924],[70,72,73,658,659,660,1800,1803,1808,1809,1811,1852,1906,1923,1924],[70,72,73,658,659,660,1801,1805,1807,1808,1810,1811,1852,1906,1923,1924],[70,72,73,658,659,660,1801,1807,1810,1811,1852,1906,1923,1924],[70,72,73,658,659,660,1801,1802,1804,1807,1811,1852,1906,1923,1924],[70,72,73,658,659,660,1800,1802,1803,1806,1811,1852,1906,1923,1924],[70,72,73,658,659,660,1801,1802,1804,1805,1807,1811,1852,1906,1923,1924],[70,72,73,658,659,660,1803,1804,1805,1806,1809,1811,1819,1852,1906,1923,1924],[70,72,73,658,659,660,1801,1804,1807,1811,1852,1906,1923,1924],[70,72,73,658,659,660,1811,1852,1906,1923,1924],[70,72,73,658,659,660,1803,1804,1805,1806,1809,1810,1812,1852,1906,1923,1924],[70,72,73,658,659,660,1804,1810,1811,1852,1906,1923,1924],[70,72,73,78,658,659,660,1819,1820,1852,1906,1923,1924],[70,72,73,658,659,660,1799,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1852,1906,1923,1924],[70,72,73,658,659,660,1819,1820,1852,1906,1923,1924],[70,72,73,78,658,659,660,1819,1852,1906,1923,1924],[70,72,73,658,659,660,1784,1845,1852,1906,1923,1924,1958,1960,1977,1989],[70,72,73,658,659,660,1784,1845,1852,1906,1923,1924,1958,1960,1961,1977,1990],[70,72,73,658,659,660,1784,1852,1906,1923,1924,1960],[70,72,73,658,659,660,1852,1906,1923,1924,1957],[70,72,73,658,659,660,1852,1906,1923,1924,1958,1961,1989,1990,1991,1992],[70,72,73,658,659,660,1784,1845,1852,1906,1923,1924,1958,1959],[70,72,73,658,659,660,1852,1906,1923,1924,1956],[70,72,73,658,659,660,1784,1852,1906,1923,1924,1959,1980],[70,72,73,658,659,660,1852,1906,1923,1924,1957,1959,1979],[70,72,73,658,659,660,1784,1852,1906,1923,1924,1959,1978,1980],[70,72,73,658,659,660,1784,1852,1906,1923,1924,1959,1983],[70,72,73,658,659,660,1784,1852,1906,1923,1924,1959,1979],[70,72,73,658,659,660,1852,1906,1923,1924,1959,1980,1981,1982,1983,1984,1985,1987,1988],[70,72,73,658,659,660,1784,1849,1852,1906,1923,1924,1957,1959,1978],[70,72,73,658,659,660,1784,1852,1906,1923,1924,1959,1993],[70,72,73,658,659,660,1784,1852,1906,1923,1924,1959],[70,72,73,658,659,660,1784,1845,1849,1852,1906,1923,1924,1957,1958],[70,72,73,658,659,660,1784,1845,1849,1852,1906,1923,1924,1958,1959,1986],[70,72,73,658,659,660,1784,1849,1852,1906,1923,1924],[70,72,73,658,659,660,1784,1836,1852,1906,1923,1924,1977,1993,1994,1996,1997,1999,2002,2015],[70,72,73,658,659,660,1852,1906,1923,1924,1993,2006,2008,2016,2017],[70,72,73,78,658,659,660,1784,1836,1852,1906,1923,1924,1977,1993],[70,72,73,658,659,660,1852,1906,1923,1924,2016],[70,72,73,658,659,660,1784,1852,1906,1923,1924,1994,2015],[70,72,73,658,659,660,1784,1836,1852,1906,1923,1924,2015],[70,72,73,658,659,660,1784,1852,1906,1923,1924,2002,2006,2015],[70,72,73,658,659,660,1784,1845,1852,1906,1923,1924,1993,1995,1996,1997,1999],[70,72,73,658,659,660,1852,1906,1923,1924,2000,2001],[70,72,73,658,659,660,1784,1845,1852,1906,1923,1924,1977,1993,1995,1996,1997,1999],[70,72,73,78,658,659,660,1784,1836,1852,1906,1923,1924,1993,1995,1998],[70,72,73,658,659,660,1852,1906,1923,1924,1995,1996,1997,1999,2002,2003,2004,2005,2006,2007,2013,2014],[70,72,73,658,659,660,1852,1906,1923,1924,2009,2010,2011,2012],[70,72,73,658,659,660,1784,1852,1906,1923,1924,1977,2008],[70,72,73,658,659,660,1784,1852,1906,1923,1924,2009,2010],[70,72,73,658,659,660,1784,1852,1906,1923,1924,2004],[70,72,73,658,659,660,1784,1852,1906,1923,1924,2002],[70,72,73,658,659,660,1784,1852,1906,1923,1924,1977,1993,1996],[70,72,73,658,659,660,1784,1836,1852,1906,1923,1924,1977,1993,1994,1995],[70,72,73,658,659,660,1836,1852,1906,1923,1924],[70,72,73,78,658,659,660,1784,1836,1852,1906,1923,1924],[70,72,73,658,659,660,1784,1852,1906,1923,1924,1977,1993,2015],[70,72,73,658,659,660,1766,1770,1771,1773,1775,1777,1852,1906,1923,1924],[70,72,73,658,659,660,1749,1752,1771,1772,1773,1774,1775,1776,1779,1780,1852,1906,1923,1924],[70,72,73,658,659,660,1751,1752,1767,1770,1771,1772,1774,1780,1852,1906,1923,1924],[70,72,73,658,659,660,1770,1772,1774,1780,1852,1906,1923,1924],[70,72,73,658,659,660,1751,1770,1771,1774,1780,1852,1906,1923,1924],[70,72,73,658,659,660,1760,1769,1771,1775,1852,1906,1923,1924],[70,72,73,658,659,660,1750,1852,1906,1923,1924],[70,72,73,658,659,660,1749,1751,1752,1778,1782,1783,1852,1906,1923,1924],[70,72,73,658,659,660,1772,1773,1774,1776,1779,1780,1852,1906,1923,1924],[70,72,73,658,659,660,1753,1754,1759,1843,1852,1906,1923,1924],[70,72,73,658,659,660,1753,1852,1906,1923,1924],[70,72,73,658,659,660,1755,1756,1757,1852,1906,1923,1924],[70,72,73,658,659,660,1750,1782,1852,1906,1923,1924],[70,72,73,658,659,660,1750,1761,1762,1852,1906,1923,1924],[70,72,73,658,659,660,1749,1761,1852,1906,1923,1924],[70,72,73,658,659,660,1751,1783,1852,1906,1923,1924,1973],[70,72,73,658,659,660,1768,1769,1852,1906,1923,1924,1962,1965,1975,1976],[70,72,73,658,659,660,1752,1852,1906,1923,1924],[70,72,73,658,659,660,1749,1760,1768,1778,1852,1906,1923,1924],[70,72,73,658,659,660,1783,1849,1852,1906,1923,1924],[50,51,52,53,54,70,72,73,658,659,660,1852,1906,1923,1924],[50,52,70,72,73,658,659,660,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1917,1920,1922,1923,1924,1926,1938,1949,1956],[70,72,73,658,659,660,1852,1906,1923,1924,2541],[70,72,73,658,659,660,1852,1906,1923,1924,2543],[70,72,73,658,659,660,1852,1906,1923,1924,2554,2557],[70,72,73,658,659,660,1852,1906,1923,1924,2546],[70,72,73,658,659,660,1852,1903,1904,1906,1923,1924],[70,72,73,658,659,660,1852,1905,1906,1923,1924],[70,72,73,658,659,660,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1911,1923,1924,1941],[70,72,73,658,659,660,1852,1906,1907,1912,1917,1923,1924,1926,1938,1949],[70,72,73,658,659,660,1852,1906,1907,1908,1917,1923,1924,1926],[70,72,73,658,659,660,1852,1906,1909,1923,1924,1950],[70,72,73,658,659,660,1852,1906,1910,1911,1918,1923,1924,1927],[70,72,73,658,659,660,1852,1906,1911,1923,1924,1938,1946],[70,72,73,658,659,660,1852,1906,1912,1914,1917,1923,1924,1926],[70,72,73,658,659,660,1852,1905,1906,1913,1923,1924],[70,72,73,658,659,660,1852,1906,1914,1915,1923,1924],[70,72,73,658,659,660,1852,1906,1916,1917,1923,1924],[70,72,73,658,659,660,1852,1905,1906,1917,1923,1924],[70,72,73,658,659,660,1852,1906,1917,1918,1919,1923,1924,1938,1949],[70,72,73,658,659,660,1852,1906,1917,1918,1919,1923,1924,1933,1938,1941],[70,72,73,658,659,660,1852,1898,1906,1914,1917,1920,1923,1924,1926,1938,1949],[70,72,73,658,659,660,1852,1906,1917,1918,1920,1921,1923,1924,1926,1938,1946,1949],[70,72,73,658,659,660,1852,1906,1920,1922,1923,1924,1938,1946,1949],[70,72,73,658,659,660,1850,1851,1852,1853,1854,1855,1856,1857,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955],[70,72,73,658,659,660,1852,1906,1917,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,1925,1949],[70,72,73,658,659,660,1852,1906,1914,1917,1923,1924,1926,1938],[70,72,73,658,659,660,1852,1906,1923,1924,1927],[70,72,73,658,659,660,1852,1906,1923,1924,1928],[70,72,73,658,659,660,1852,1905,1906,1923,1924,1929],[70,72,73,658,659,660,1852,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955],[70,72,73,658,659,660,1852,1906,1923,1924,1931],[70,72,73,658,659,660,1852,1906,1923,1924,1932],[70,72,73,658,659,660,1852,1906,1917,1923,1924,1933,1934],[70,72,73,658,659,660,1852,1906,1923,1924,1933,1935,1950,1952],[70,72,73,658,659,660,1852,1906,1918,1923,1924],[70,72,73,658,659,660,1852,1906,1917,1923,1924,1938,1939,1941],[70,72,73,658,659,660,1852,1906,1923,1924,1940,1941],[70,72,73,658,659,660,1852,1906,1923,1924,1938,1939],[70,72,73,658,659,660,1852,1906,1923,1924,1941],[70,72,73,658,659,660,1852,1906,1923,1924,1942],[70,72,73,658,659,660,1852,1903,1906,1923,1924,1938,1943],[70,72,73,658,659,660,1852,1906,1917,1923,1924,1944,1945],[70,72,73,658,659,660,1852,1906,1923,1924,1944,1945],[70,72,73,658,659,660,1852,1906,1911,1923,1924,1926,1938,1946],[70,72,73,658,659,660,1852,1906,1923,1924,1947],[70,72,73,658,659,660,1852,1906,1923,1924,1926,1948],[70,72,73,658,659,660,1852,1906,1920,1923,1924,1932,1949],[70,72,73,658,659,660,1852,1906,1911,1923,1924,1950],[70,72,73,658,659,660,1852,1906,1923,1924,1938,1951],[70,72,73,658,659,660,1852,1906,1923,1924,1925,1952],[70,72,73,658,659,660,1852,1906,1923,1924,1953],[70,72,73,658,659,660,1852,1906,1911,1923,1924],[70,72,73,658,659,660,1852,1898,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,1954],[70,72,73,658,659,660,1852,1898,1906,1917,1919,1923,1924,1929,1938,1941,1949,1951,1952,1954],[70,72,73,658,659,660,1852,1906,1923,1924,1938,1955],[70,72,73,78,657,658,659,660,662,1852,1906,1923,1924],[70,72,73,658,659,660,663,1852,1906,1923,1924],[70,72,73,659,660,1852,1906,1923,1924],[70,72,73,657,658,660,662,1852,1906,1923,1924],[70,72,73,78,656,657,658,659,660,661,1852,1906,1923,1924],[70,72,73,657,658,659,660,662,1852,1906,1923,1924],[70,72,73,76,77,266,658,659,660,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,2151],[70,72,73,658,659,660,1852,1906,1923,1924,2150],[70,72,73,658,659,660,1852,1906,1923,1924,2718,2725],[70,72,73,658,659,660,1852,1906,1923,1924,2724],[70,72,73,658,659,660,1852,1906,1923,1924,2719],[70,72,73,658,659,660,1852,1906,1923,1924,2722,2723,2726],[70,72,73,658,659,660,1852,1906,1923,1924,2720,2722],[70,72,73,658,659,660,1852,1906,1923,1924,2716,2717,2718],[70,72,73,658,659,660,1852,1906,1923,1924,2716,2717,2718,2719,2720,2721],[70,72,73,658,659,660,1852,1906,1923,1924,2404,2405,2409,2436,2437,2439,2440,2441,2443,2444],[70,72,73,658,659,660,1852,1906,1923,1924,2402,2403],[70,72,73,658,659,660,1852,1906,1923,1924,2402],[70,72,73,658,659,660,1852,1906,1923,1924,2404,2444],[70,72,73,658,659,660,1852,1906,1923,1924,2404,2405,2441,2442,2444],[70,72,73,658,659,660,1852,1906,1923,1924,2444],[70,72,73,658,659,660,1852,1906,1923,1924,2401,2444,2445],[70,72,73,658,659,660,1852,1906,1923,1924,2404,2405,2443,2444],[70,72,73,658,659,660,1852,1906,1923,1924,2404,2405,2407,2408,2443,2444],[70,72,73,658,659,660,1852,1906,1923,1924,2404,2405,2406,2443,2444],[70,72,73,658,659,660,1852,1906,1923,1924,2404,2405,2409,2436,2437,2438,2439,2440,2443,2444],[70,72,73,658,659,660,1852,1906,1923,1924,2404,2409,2438,2439,2440,2441,2443,2444,2464],[70,72,73,658,659,660,1852,1906,1923,1924,2401,2404,2405,2409,2441,2443],[70,72,73,658,659,660,1852,1906,1923,1924,2409,2444],[70,72,73,658,659,660,1852,1906,1923,1924,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2444],[70,72,73,658,659,660,1852,1906,1923,1924,2434,2444],[70,72,73,658,659,660,1852,1906,1923,1924,2410,2421,2429,2430,2431,2432,2433,2435],[70,72,73,658,659,660,1852,1906,1923,1924,2434,2444,2457],[70,72,73,658,659,660,1852,1906,1923,1924,2444,2457],[70,72,73,658,659,660,1852,1906,1923,1924,2444,2458,2459,2460,2461,2462,2463],[70,72,73,658,659,660,1852,1906,1923,1924,2409,2444,2457],[70,72,73,658,659,660,1852,1906,1923,1924,2414,2444],[70,72,73,658,659,660,1852,1906,1923,1924,2422,2423,2424,2425,2426,2427,2428,2444],[70,72,73,581,582,583,584,585,586,587,658,659,660,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,1938,1948,1956],[70,72,73,658,659,660,1391,1852,1906,1923,1924],[70,72,73,658,659,660,1390,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,2715,2727],[70,72,73,658,659,660,1852,1906,1923,1924,2728],[70,72,73,658,659,660,1852,1906,1923,1924,2728,2729],[70,72,73,658,659,660,1662,1663,1664,1665,1666,1852,1906,1923,1924],[70,72,73,658,659,660,1662,1852,1906,1923,1924],[70,72,73,658,659,660,1394,1395,1852,1906,1923,1924],[70,72,73,658,659,660,1393,1396,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,2553,2556],[70,72,73,658,659,660,1852,1906,1923,1924,1956,2707,2708,2709],[70,72,73,658,659,660,1852,1906,1923,1924,2707,2708],[70,72,73,658,659,660,1852,1906,1923,1924,2707],[70,72,73,658,659,660,1852,1906,1923,1924,1956,2706],[70,72,73,658,659,660,1852,1906,1923,1924,2445],[70,72,73,658,659,660,1852,1906,1920,1921,1922,1923,1924,1926,2466,2467,2469,2470,2471,2472,2473,2474,2475,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489],[70,72,73,658,659,660,1852,1906,1923,1924,2472,2473,2474,2484,2486],[70,72,73,658,659,660,1852,1906,1923,1924,2472,2484],[70,72,73,658,659,660,1852,1906,1923,1924,2467],[70,72,73,658,659,660,1852,1906,1923,1924,1938,2467,2472,2473,2474,2475,2479,2480,2481,2482,2484,2486],[70,72,73,658,659,660,1852,1906,1920,1923,1924,1926,2467,2470,2471,2472,2473,2474,2475,2479,2481,2483,2484,2486,2487],[70,72,73,658,659,660,1852,1906,1923,1924,2467,2472,2473,2474,2475,2478,2482,2484,2486],[70,72,73,658,659,660,1852,1906,1923,1924,2472,2474,2479,2482],[70,72,73,658,659,660,1852,1906,1923,1924,2472,2479,2480,2482,2490],[70,72,73,658,659,660,1852,1906,1923,1924,2472,2473,2474,2479,2482,2484,2485,2486],[70,72,73,658,659,660,1852,1906,1923,1924,2466,2472,2473,2474,2479,2482,2484,2485],[70,72,73,658,659,660,1852,1906,1923,1924,2467,2470,2472,2473,2474,2475,2479,2482,2483,2485,2486],[70,72,73,658,659,660,1852,1906,1923,1924,2466,2469,2490],[70,72,73,658,659,660,1852,1906,1920,1921,1922,1923,1924,2472],[70,72,73,658,659,660,1852,1906,1923,1924,2472,2473,2484],[70,72,73,658,659,660,1852,1906,1920,1921,1922,1923,1924],[70,72,73,658,659,660,1852,1906,1920,1921,1923,1924],[70,72,73,658,659,660,1852,1906,1920,1923,1924,2501],[70,72,73,658,659,660,1852,1906,1920,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,2505],[70,72,73,658,659,660,1852,1906,1923,1924,2503,2504],[70,72,73,658,659,660,1852,1906,1923,1924,2501,2502,2506,2511,2515],[70,72,73,658,659,660,1852,1906,1920,1923,1924,2501,2512],[70,72,73,658,659,660,1852,1906,1923,1924,2514],[70,72,73,658,659,660,1852,1906,1923,1924,2512,2513],[70,72,73,658,659,660,1852,1906,1923,1924,2501],[70,72,73,658,659,660,1852,1906,1923,1924,2507,2508,2509,2510],[70,72,73,658,659,660,1852,1906,1920,1923,1924,1926,2500],[70,72,73,658,659,660,1852,1906,1923,1924,2554],[70,72,73,658,659,660,1852,1906,1923,1924,2542,2555],[70,72,73,658,659,660,1852,1906,1923,1924,2547,2549],[70,72,73,658,659,660,1852,1906,1923,1924,2547,2554,2557],[70,72,73,658,659,660,1852,1906,1920,1923,1924,1938],[70,72,73,658,659,660,1852,1906,1923,1924,2106],[70,72,73,658,659,660,1852,1906,1923,1924,2106,2107,2108,2109,2110,2113,2114],[70,72,73,658,659,660,1852,1906,1923,1924,2109],[70,72,73,658,659,660,1852,1906,1923,1924,2113],[70,72,73,658,659,660,1852,1906,1923,1924,2111,2112],[70,72,73,658,659,660,1852,1906,1923,1924,2172],[70,72,73,658,659,660,1852,1906,1923,1924,2172,2173,2174],[70,72,73,658,659,660,1852,1906,1923,1924,2115,2120,2148,2149,2160,2161,2169,2171],[70,72,73,658,659,660,1852,1906,1923,1924,2120],[70,72,73,658,659,660,1852,1906,1923,1924,2169],[70,72,73,658,659,660,1852,1906,1923,1924,2153,2154,2155,2156],[70,72,73,658,659,660,1852,1906,1923,1924,2139],[70,72,73,658,659,660,1852,1906,1923,1924,1926,1938],[70,72,73,658,659,660,1852,1906,1923,1924,2116],[70,72,73,658,659,660,1852,1906,1917,1923,1924,2116,2117,2118,2119],[70,72,73,658,659,660,1852,1906,1923,1924,2162],[70,72,73,658,659,660,1852,1906,1923,1924,2162,2163,2164,2165,2166,2167,2168],[70,72,73,658,659,660,1852,1906,1923,1924,2161],[70,72,73,658,659,660,1852,1906,1923,1924,2138],[70,72,73,658,659,660,1852,1906,1923,1924,2127],[70,72,73,658,659,660,1852,1906,1923,1924,2128,2129,2138],[70,72,73,658,659,660,1852,1906,1923,1924,2132],[70,72,73,658,659,660,1852,1906,1923,1924,2127,2128],[50,55,70,72,73,658,659,660,1852,1906,1923,1924,2138],[70,72,73,658,659,660,1852,1906,1923,1924,2136,2138],[70,72,73,658,659,660,1852,1906,1923,1924,2129,2130,2131,2133,2134,2135,2137],[70,72,73,658,659,660,1852,1906,1923,1924,2126,2138,2143,2159,2161],[70,72,73,658,659,660,1852,1906,1917,1923,1924,2143,2144,2145,2175],[70,72,73,658,659,660,1852,1906,1917,1923,1924,2161],[70,72,73,658,659,660,1852,1906,1923,1924,2138,2161],[70,72,73,658,659,660,1852,1906,1923,1924,2121,2122,2123,2124,2160],[70,72,73,658,659,660,1852,1906,1923,1924,2160,2161],[70,72,73,658,659,660,1852,1906,1923,1924,2139,2141,2143,2146,2161,2175],[70,72,73,658,659,660,1852,1906,1917,1920,1922,1923,1924,1938,2121,2125,2126,2139,2148,2149,2152,2157,2158,2161,2175],[70,72,73,658,659,660,1852,1906,1923,1924,2121],[70,72,73,658,659,660,1852,1906,1923,1924,2149,2157],[70,72,73,658,659,660,1852,1906,1917,1923,1924,2139,2161,2175],[70,72,73,658,659,660,1852,1906,1920,1923,1924,2125,2126,2139,2140,2141,2142,2147,2169,2175],[70,72,73,658,659,660,1852,1906,1923,1924,2170,2175],[70,72,73,658,659,660,1852,1906,1923,1924,2126,2138,2160,2161,2169],[70,72,73,658,659,660,1624,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1920,1923,1924,1956],[70,72,73,658,659,660,1852,1906,1917,1923,1924,1954,2476,2477],[70,72,73,658,659,660,873,874,875,876,877,879,880,937,1852,1906,1923,1924],[70,72,73,78,658,659,660,676,1852,1906,1923,1924],[70,72,73,78,658,659,660,872,874,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,676,878,1481,1852,1906,1923,1924],[70,72,73,78,658,659,660,874,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,676,873,1481,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,936,1481,1852,1906,1923,1924],[70,72,73,658,659,660,1287,1288,1852,1906,1923,1924],[70,72,73,167,658,659,660,1287,1481,1852,1906,1923,1924],[70,72,73,78,658,659,660,1852,1906,1923,1924,2591],[70,72,73,78,167,658,659,660,1481,1852,1906,1923,1924,2591],[70,72,73,658,659,660,1852,1906,1923,1924,2591,2592,2593,2594,2595,2596,2597],[70,72,73,78,167,658,659,660,936,1481,1852,1906,1923,1924,2590],[70,72,73,78,167,658,659,660,888,897,1481,1852,1906,1923,1924],[70,72,73,78,658,659,660,915,916,936,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,903,1481,1852,1906,1923,1924],[70,72,73,167,658,659,660,915,1481,1852,1906,1923,1924],[70,72,73,658,659,660,931,932,1852,1906,1923,1924],[70,72,73,78,658,659,660,931,1852,1906,1923,1924],[70,72,73,167,658,659,660,930,1481,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,897,1481,1852,1906,1923,1924],[70,72,73,78,658,659,660,888,891,919,1852,1906,1923,1924],[70,72,73,167,658,659,660,888,918,1481,1852,1906,1923,1924],[70,72,73,658,659,660,920,921,923,924,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,919,1481,1852,1906,1923,1924],[70,72,73,78,658,659,660,919,922,1852,1906,1923,1924],[70,72,73,658,659,660,892,1852,1906,1923,1924],[70,72,73,78,658,659,660,903,1852,1906,1923,1924],[70,72,73,78,658,659,660,888,891,1852,1906,1923,1924],[70,72,73,78,658,659,660,882,883,886,887,1852,1906,1923,1924],[70,72,73,658,659,660,890,1852,1906,1923,1924],[70,72,73,658,659,660,888,891,893,894,896,897,899,901,902,903,915,1852,1906,1923,1924],[70,72,73,658,659,660,891,892,902,1852,1906,1923,1924],[70,72,73,658,659,660,888,891,892,894,1852,1906,1923,1924],[70,72,73,658,659,660,888,889,891,1852,1906,1923,1924],[70,72,73,78,658,659,660,888,892,905,1852,1906,1923,1924],[70,72,73,658,659,660,892,895,898,900,905,907,908,909,910,911,912,913,1852,1906,1923,1924],[70,72,73,658,659,660,888,891,892,1852,1906,1923,1924],[70,72,73,658,659,660,891,892,896,1852,1906,1923,1924],[70,72,73,658,659,660,888,892,1852,1906,1923,1924],[70,72,73,658,659,660,891,892,903,1852,1906,1923,1924],[70,72,73,658,659,660,888,891,892,897,1852,1906,1923,1924],[70,72,73,658,659,660,891,892,893,1852,1906,1923,1924],[70,72,73,658,659,660,881,882,883,884,885,888,889,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,917,925,926,927,928,929,933,934,935,1852,1906,1923,1924],[70,72,73,658,659,660,881,882,883,888,1852,1906,1923,1924],[70,72,73,167,658,659,660,1478,1479,1481,1852,1906,1923,1924],[70,72,73,658,659,660,1478,1481,1488,1852,1906,1923,1924],[70,72,73,78,658,659,660,1478,1479,1481,1852,1906,1923,1924],[70,72,73,658,659,660,1474,1476,1480,1481,1483,1487,1852,1906,1923,1924],[70,72,73,658,659,660,1477,1478,1481,1488,1489,1490,1491,1492,1493,1852,1906,1923,1924],[70,72,73,658,659,660,1481,1852,1906,1923,1924],[70,72,73,658,659,660,1484,1485,1486,1852,1906,1923,1924],[70,72,73,658,659,660,1480,1494,1852,1906,1923,1924],[70,72,73,658,659,660,1473,1481,1482,1852,1906,1923,1924],[70,72,73,658,659,660,1472,1473,1481,1852,1906,1923,1924],[70,72,73,658,659,660,1473,1474,1476,1483,1852,1906,1923,1924],[70,72,73,658,659,660,1473,1475,1481,1852,1906,1923,1924],[70,72,73,658,659,660,1473,1479,1481,1852,1906,1923,1924],[70,72,73,658,659,660,1475,1478,1481,1852,1906,1923,1924],[70,72,73,167,658,659,660,1475,1477,1480,1852,1906,1923,1924],[70,72,73,78,658,659,660,1654,1852,1906,1923,1924],[70,72,73,658,659,660,1654,1655,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,2068,2069,2070],[70,72,73,658,659,660,952,954,955,956,957,958,959,960,961,1852,1906,1923,1924],[70,72,73,658,659,660,952,954,1852,1906,1923,1924],[70,72,73,658,659,660,954,1852,1906,1923,1924],[70,72,73,658,659,660,946,947,948,949,950,1852,1906,1923,1924],[70,72,73,658,659,660,944,945,951,952,953,1852,1906,1923,1924],[70,72,73,658,659,660,952,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1481,1689,1852,1906,1923,1924],[70,72,73,167,658,659,660,1481,1852,1906,1923,1924,2617,2618,2619],[70,72,73,78,658,659,660,1852,1906,1923,1924,2617],[70,72,73,78,167,658,659,660,1481,1852,1906,1923,1924,2617,2618],[70,72,73,78,167,658,659,660,1481,1610,1852,1906,1923,1924],[70,72,73,658,659,660,792,820,821,822,823,824,825,1852,1906,1923,1924],[70,72,73,658,659,660,819,1852,1906,1923,1924],[70,72,73,658,659,660,819,829,1852,1906,1923,1924],[70,72,73,658,659,660,829,830,1852,1906,1923,1924],[70,72,73,658,659,660,827,828,831,832,833,834,838,839,840,841,1852,1906,1923,1924],[70,72,73,658,659,660,835,836,837,1852,1906,1923,1924],[70,72,73,658,659,660,819,835,1852,1906,1923,1924],[70,72,73,658,659,660,819,828,1852,1906,1923,1924],[70,72,73,658,659,660,725,819,1852,1906,1923,1924],[70,72,73,658,659,660,725,819,828,1852,1906,1923,1924],[70,72,73,658,659,660,694,695,1852,1906,1923,1924],[70,72,73,658,659,660,696,697,698,702,715,720,1852,1906,1923,1924],[70,72,73,658,659,660,702,703,1852,1906,1923,1924],[70,72,73,658,659,660,703,704,705,714,1852,1906,1923,1924],[70,72,73,167,658,659,660,702,819,1481,1852,1906,1923,1924],[70,72,73,167,658,659,660,702,1481,1852,1906,1923,1924],[70,72,73,658,659,660,702,1852,1906,1923,1924],[70,72,73,658,659,660,706,707,708,709,710,711,712,713,1852,1906,1923,1924],[70,72,73,658,659,660,699,1852,1906,1923,1924],[70,72,73,658,659,660,699,700,701,1852,1906,1923,1924],[70,72,73,658,659,660,716,717,718,719,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,693,721,725,818,1481,1852,1906,1923,1924],[70,72,73,167,658,659,660,763,792,819,1481,1852,1906,1923,1924],[70,72,73,167,658,659,660,792,1481,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,792,819,1481,1852,1906,1923,1924],[70,72,73,658,659,660,721,1852,1906,1923,1924],[70,72,73,658,659,660,819,846,847,1852,1906,1923,1924],[70,72,73,78,658,659,660,722,723,747,750,787,788,789,819,1852,1906,1923,1924],[70,72,73,78,658,659,660,722,747,748,749,819,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,721,750,763,790,796,813,819,1481,1852,1906,1923,1924],[70,72,73,658,659,660,750,791,1852,1906,1923,1924],[70,72,73,658,659,660,749,750,819,1852,1906,1923,1924],[70,72,73,658,659,660,750,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,721,750,762,786,1481,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,721,762,813,1481,1852,1906,1923,1924],[70,72,73,658,659,660,814,1852,1906,1923,1924],[70,72,73,658,659,660,751,1852,1906,1923,1924],[70,72,73,658,659,660,751,752,753,754,1852,1906,1923,1924],[70,72,73,658,659,660,762,1852,1906,1923,1924],[70,72,73,658,659,660,755,762,815,817,1852,1906,1923,1924],[70,72,73,658,659,660,721,762,1852,1906,1923,1924],[70,72,73,658,659,660,764,1852,1906,1923,1924],[70,72,73,658,659,660,768,771,773,782,783,784,1852,1906,1923,1924],[70,72,73,658,659,660,721,769,1852,1906,1923,1924],[70,72,73,658,659,660,721,762,765,768,1852,1906,1923,1924],[70,72,73,658,659,660,769,770,1852,1906,1923,1924],[70,72,73,658,659,660,750,761,762,1852,1906,1923,1924],[70,72,73,658,659,660,772,1852,1906,1923,1924],[70,72,73,658,659,660,774,775,776,1852,1906,1923,1924],[70,72,73,658,659,660,721,762,768,819,1852,1906,1923,1924],[70,72,73,658,659,660,762,768,1852,1906,1923,1924],[70,72,73,658,659,660,778,1852,1906,1923,1924],[70,72,73,658,659,660,755,762,1852,1906,1923,1924],[70,72,73,658,659,660,777,779,781,1852,1906,1923,1924],[70,72,73,658,659,660,780,1852,1906,1923,1924],[70,72,73,658,659,660,768,819,1852,1906,1923,1924],[70,72,73,658,659,660,721,755,762,1852,1906,1923,1924],[70,72,73,658,659,660,766,767,1852,1906,1923,1924],[70,72,73,658,659,660,755,1852,1906,1923,1924],[70,72,73,658,659,660,785,1852,1906,1923,1924],[70,72,73,658,659,660,816,818,1852,1906,1923,1924],[70,72,73,658,659,660,721,755,756,757,1852,1906,1923,1924],[70,72,73,658,659,660,756,757,758,759,760,761,1852,1906,1923,1924],[70,72,73,658,659,660,758,759,760,1852,1906,1923,1924],[70,72,73,167,658,659,660,721,758,759,1481,1852,1906,1923,1924],[70,72,73,658,659,660,807,1852,1906,1923,1924],[70,72,73,167,658,659,660,724,727,747,762,818,819,1481,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,693,721,749,792,795,819,1481,1852,1906,1923,1924],[70,72,73,658,659,660,796,797,798,799,800,801,802,803,804,805,806,808,809,810,811,812,1852,1906,1923,1924],[70,72,73,658,659,660,796,819,1852,1906,1923,1924],[70,72,73,658,659,660,796,1852,1906,1923,1924],[70,72,73,167,658,659,660,796,819,1481,1852,1906,1923,1924],[70,72,73,658,659,660,796,801,1852,1906,1923,1924],[70,72,73,658,659,660,801,1852,1906,1923,1924],[70,72,73,658,659,660,721,796,819,1852,1906,1923,1924],[70,72,73,658,659,660,677,721,722,725,748,763,813,818,819,820,822,825,826,842,843,844,845,846,848,849,850,851,852,853,855,856,864,865,866,870,871,1852,1906,1923,1924],[70,72,73,658,659,660,819,851,1852,1906,1923,1924],[70,72,73,658,659,660,796,854,1852,1906,1923,1924],[70,72,73,658,659,660,724,725,819,1852,1906,1923,1924],[70,72,73,658,659,660,724,726,727,1852,1906,1923,1924],[70,72,73,658,659,660,728,819,1852,1906,1923,1924],[70,72,73,658,659,660,729,730,731,732,733,734,735,736,737,738,1852,1906,1923,1924],[70,72,73,658,659,660,725,728,819,1852,1906,1923,1924],[70,72,73,658,659,660,740,741,742,743,744,745,1852,1906,1923,1924],[70,72,73,658,659,660,723,728,739,746,747,1852,1906,1923,1924],[70,72,73,658,659,660,857,1852,1906,1923,1924],[70,72,73,658,659,660,858,859,860,861,862,863,1852,1906,1923,1924],[70,72,73,658,659,660,750,794,819,1852,1906,1923,1924],[70,72,73,658,659,660,793,1852,1906,1923,1924],[70,72,73,658,659,660,693,785,819,1852,1906,1923,1924],[70,72,73,658,659,660,867,1852,1906,1923,1924],[70,72,73,658,659,660,867,868,869,1852,1906,1923,1924],[70,72,73,658,659,660,693,1852,1906,1923,1924],[70,72,73,178,179,180,181,658,659,660,1852,1906,1923,1924],[70,72,73,178,658,659,660,1852,1906,1923,1924],[70,72,73,78,167,177,658,659,660,1481,1852,1906,1923,1924],[70,72,73,78,167,178,658,659,660,1481,1852,1906,1923,1924],[70,72,73,78,167,177,178,658,659,660,1481,1852,1906,1923,1924],[70,72,73,658,659,660,1402,1852,1906,1923,1924],[70,72,73,78,658,659,660,1343,1852,1906,1923,1924],[70,72,73,78,658,659,660,1344,1852,1906,1923,1924],[70,72,73,167,658,659,660,1342,1345,1481,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1345,1481,1852,1906,1923,1924],[70,72,73,78,658,659,660,1345,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1345,1348,1481,1852,1906,1923,1924],[70,72,73,658,659,660,1340,1345,1346,1347,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1339,1345,1481,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1341,1342,1343,1344,1481,1852,1906,1923,1924],[70,72,73,78,658,659,660,1647,1648,1649,1650,1651,1852,1906,1923,1924],[70,72,73,658,659,660,1521,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1543,1544,1545,1546,1548,1549,1550,1551,1552,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1852,1906,1923,1924],[70,72,73,78,658,659,660,1519,1520,1852,1906,1923,1924],[70,72,73,78,658,659,660,1520,1852,1906,1923,1924],[70,72,73,78,658,659,660,1547,1610,1852,1906,1923,1924],[70,72,73,78,658,659,660,1519,1547,1852,1906,1923,1924],[70,72,73,658,659,660,1519,1547,1553,1852,1906,1923,1924],[70,72,73,658,659,660,1519,1547,1852,1906,1923,1924],[70,72,73,78,658,659,660,1519,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1481,1519,1547,1852,1906,1923,1924],[70,72,73,658,659,660,1547,1610,1852,1906,1923,1924],[70,72,73,78,658,659,660,1547,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1481,1519,1852,1906,1923,1924],[70,72,73,78,658,659,660,1519,1521,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1481,1519,1520,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,1481,1519,1520,1521,1522,1852,1906,1923,1924],[70,72,73,78,658,659,660,1519,1520,1543,1852,1906,1923,1924],[70,72,73,78,658,659,660,1519,1520,1542,1852,1906,1923,1924],[70,72,73,167,658,659,660,1481,1519,1522,1576,1852,1906,1923,1924],[70,72,73,658,659,660,1522,1852,1906,1923,1924],[70,72,73,658,659,660,1519,1522,1576,1852,1906,1923,1924],[70,72,73,658,659,660,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1852,1906,1923,1924],[70,72,73,658,659,660,1609,1852,1906,1923,1924],[70,72,73,658,659,660,1519,1520,1521,1523,1524,1525,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1574,1575,1607,1608,1852,1906,1923,1924],[70,72,73,78,658,659,660,1523,1573,1852,1906,1923,1924],[70,72,73,658,659,660,1572,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,2042],[70,72,73,658,659,660,1852,1906,1923,1924,2038,2039,2040,2041],[70,72,73,78,167,658,659,660,1481,1852,1906,1923,1924,2037,2038],[70,72,73,78,167,658,659,660,1481,1852,1906,1923,1924,2039,2040],[70,72,73,167,658,659,660,1481,1852,1906,1923,1924,2038],[70,72,73,658,659,660,1852,1906,1923,1924,2035,2036],[70,72,73,658,659,660,1852,1906,1923,1924,2621,2623,2624,2625,2626,2627],[70,72,73,78,658,659,660,1852,1906,1923,1924,2621,2622],[70,72,73,78,167,658,659,660,1481,1852,1906,1923,1924,2621,2622,2624,2625],[70,72,73,78,167,658,659,660,1481,1852,1906,1923,1924,2621,2622],[70,72,73,167,658,659,660,1481,1852,1906,1923,1924,2621,2622],[70,72,73,167,658,659,660,1481,1852,1906,1923,1924,2620],[70,72,73,78,658,659,660,971,1852,1906,1923,1924],[70,72,73,78,167,658,659,660,970,1481,1852,1906,1923,1924],[70,72,73,658,659,660,678,679,1852,1906,1923,1924],[70,72,73,658,659,660,681,1852,1906,1923,1924],[70,72,73,658,659,660,678,679,680,682,683,684,685,686,687,688,689,690,691,692,1852,1906,1923,1924],[70,72,73,658,659,660,678,1852,1906,1923,1924],[70,72,73,658,659,660,687,1852,1906,1923,1924],[70,72,73,658,659,660,686,1852,1906,1923,1924],[70,72,73,658,659,660,691,1852,1906,1923,1924],[70,72,73,658,659,660,678,687,1852,1906,1923,1924],[70,72,73,101,102,658,659,660,1852,1906,1923,1924],[70,72,73,78,82,88,89,92,95,97,98,101,658,659,660,1852,1906,1923,1924],[70,72,73,99,658,659,660,1852,1906,1923,1924],[70,72,73,108,658,659,660,1852,1906,1923,1924],[70,71,72,73,81,658,659,660,1852,1906,1923,1924],[70,72,73,78,79,81,82,86,100,101,658,659,660,1852,1906,1923,1924],[70,72,73,78,101,130,131,658,659,660,1852,1906,1923,1924],[70,72,73,78,79,81,82,86,101,658,659,660,1852,1906,1923,1924],[70,71,72,73,115,658,659,660,1852,1906,1923,1924],[70,72,73,78,79,86,100,101,117,658,659,660,1852,1906,1923,1924],[70,72,73,78,80,82,85,86,88,100,101,658,659,660,1852,1906,1923,1924],[70,72,73,78,79,81,86,101,658,659,660,1852,1906,1923,1924],[70,72,73,78,79,81,86,658,659,660,1852,1906,1923,1924],[70,72,73,78,79,80,81,82,84,86,87,88,100,101,658,659,660,1852,1906,1923,1924],[70,72,73,78,101,658,659,660,1852,1906,1923,1924],[70,72,73,78,100,101,658,659,660,1852,1906,1923,1924],[70,71,72,73,78,79,81,82,85,86,100,101,117,658,659,660,1852,1906,1923,1924],[70,72,73,78,80,82,658,659,660,1852,1906,1923,1924],[70,72,73,78,88,100,101,128,658,659,660,1852,1906,1923,1924],[70,72,73,78,79,84,101,128,130,658,659,660,1852,1906,1923,1924],[70,72,73,78,88,128,658,659,660,1852,1906,1923,1924],[70,72,73,78,79,80,82,84,85,100,101,117,658,659,660,1852,1906,1923,1924],[70,72,73,82,658,659,660,1852,1906,1923,1924],[70,72,73,78,80,82,83,84,85,100,101,658,659,660,1852,1906,1923,1924],[70,71,72,73,658,659,660,1852,1906,1923,1924],[70,72,73,107,658,659,660,1852,1906,1923,1924],[70,72,73,78,79,80,81,82,85,90,91,100,101,658,659,660,1852,1906,1923,1924],[70,72,73,82,83,658,659,660,1852,1906,1923,1924],[70,72,73,78,88,89,94,100,101,658,659,660,1852,1906,1923,1924],[70,72,73,78,89,94,96,100,101,658,659,660,1852,1906,1923,1924],[70,72,73,78,82,86,101,658,659,660,1852,1906,1923,1924],[70,72,73,78,100,143,658,659,660,1852,1906,1923,1924],[70,72,73,81,658,659,660,1852,1906,1923,1924],[70,72,73,78,81,658,659,660,1852,1906,1923,1924],[70,72,73,101,658,659,660,1852,1906,1923,1924],[70,72,73,100,658,659,660,1852,1906,1923,1924],[70,72,73,90,99,101,658,659,660,1852,1906,1923,1924],[70,72,73,78,79,81,82,85,100,101,658,659,660,1852,1906,1923,1924],[70,72,73,153,658,659,660,1852,1906,1923,1924],[70,71,72,73,167,658,659,660,1481,1852,1906,1923,1924],[70,72,73,115,658,659,660,1852,1906,1923,1924],[70,72,73,93,658,659,660,1852,1906,1923,1924],[70,72,73,74,658,659,660,1852,1906,1923,1924],[70,71,72,73,74,75,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,658,659,660,1852,1906,1923,1924],[72,73,658,659,660,1852,1906,1923,1924],[70,71,73,167,658,659,660,1481,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,2446],[70,72,73,658,659,660,1852,1906,1923,1924,2399,2400,2445],[70,72,73,658,659,660,1852,1906,1923,1924,2399,2446],[70,72,73,658,659,660,1852,1906,1917,1923,1924,1956],[70,72,73,658,659,660,1852,1906,1923,1924,2577],[70,72,73,658,659,660,1852,1906,1923,1924,2586,2587,2588],[70,72,73,658,659,660,1852,1906,1923,1924,2577,2578,2579,2580,2581,2582,2583,2584,2585,2589],[70,72,73,658,659,660,1852,1864,1867,1870,1871,1906,1923,1924,1949],[70,72,73,658,659,660,1852,1867,1906,1923,1924,1938,1949],[70,72,73,658,659,660,1852,1867,1871,1906,1923,1924,1949],[70,72,73,658,659,660,1852,1906,1923,1924,1938],[70,72,73,658,659,660,1852,1861,1906,1923,1924],[70,72,73,658,659,660,1852,1865,1906,1923,1924],[70,72,73,658,659,660,1852,1863,1864,1867,1906,1923,1924,1949],[70,72,73,658,659,660,1852,1906,1923,1924,1926,1946],[70,72,73,658,659,660,1852,1861,1906,1923,1924,1956],[70,72,73,658,659,660,1852,1863,1867,1906,1923,1924,1926,1949],[70,72,73,658,659,660,1852,1858,1859,1860,1862,1866,1906,1917,1923,1924,1938,1949],[70,72,73,658,659,660,1852,1867,1875,1883,1906,1923,1924],[70,72,73,658,659,660,1852,1859,1865,1906,1923,1924],[70,72,73,658,659,660,1852,1867,1892,1893,1906,1923,1924],[70,72,73,658,659,660,1852,1859,1862,1867,1906,1923,1924,1941,1949,1956],[70,72,73,658,659,660,1852,1867,1906,1923,1924],[70,72,73,658,659,660,1852,1863,1867,1906,1923,1924,1949],[70,72,73,658,659,660,1852,1858,1906,1923,1924],[70,72,73,658,659,660,1852,1861,1862,1863,1865,1866,1867,1868,1869,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1893,1894,1895,1896,1897,1906,1923,1924],[70,72,73,658,659,660,1852,1867,1885,1888,1906,1914,1923,1924],[70,72,73,658,659,660,1852,1867,1875,1876,1877,1906,1923,1924],[70,72,73,658,659,660,1852,1865,1867,1876,1878,1906,1923,1924],[70,72,73,658,659,660,1852,1866,1906,1923,1924],[70,72,73,658,659,660,1852,1859,1861,1867,1906,1923,1924],[70,72,73,658,659,660,1852,1867,1871,1876,1878,1906,1923,1924],[70,72,73,658,659,660,1852,1871,1906,1923,1924],[70,72,73,658,659,660,1852,1865,1867,1870,1906,1923,1924,1949],[70,72,73,658,659,660,1852,1859,1863,1867,1875,1906,1923,1924],[70,72,73,658,659,660,1852,1867,1885,1906,1923,1924],[70,72,73,658,659,660,1852,1878,1906,1923,1924],[70,72,73,658,659,660,1852,1861,1867,1892,1906,1923,1924,1941,1954,1956],[70,72,73,658,659,660,941,942,963,964,965,967,1852,1906,1923,1924],[70,72,73,658,659,660,963,964,965,966,967,1852,1906,1923,1924],[70,72,73,658,659,660,941,963,964,965,967,1852,1906,1923,1924],[70,72,73,658,659,660,1852,1906,1923,1924,2184],[70,72,73,658,659,660,1852,1906,1923,1924,1928,2360,2536,2539],[70,72,73,658,659,660,1852,1906,1907,1918,1923,1924,1927,1928,1933],[70,72,73,658,659,660,1852,1906,1918,1919,1923,1924,1927,1928,1949,2710,2711],[70,72,73,652,658,659,660,1852,1906,1923,1924],[70,72,73,624,648,651,658,659,660,1852,1906,1923,1924],[70,72,73,624,658,659,660,1852,1906,1923,1924],[70,72,73,645,647,648,649,658,659,660,1852,1906,1923,1924],[70,72,73,639,658,659,660,1852,1906,1923,1924],[70,72,73,199,658,659,660,1852,1906,1923,1924],[70,72,73,644,658,659,660,1852,1906,1923,1924],[70,72,73,625,639,650,653,658,659,660,1852,1906,1923,1924],[70,72,73,626,627,628,629,630,631,632,633,634,635,636,637,638,658,659,660,1852,1906,1923,1924],[70,72,73,77,198,266,658,659,660,1852,1906,1923,1924,2731],[70,72,73,640,658,659,660,1852,1906,1923,1924],[70,72,73,640,641,642,643,658,659,660,1852,1906,1923,1924],[70,72,73,621,658,659,660,1852,1906,1923,1924],[70,72,73,277,519,621,658,659,660,1852,1906,1923,1924],[70,72,73,277,516,517,519,522,525,529,546,553,555,556,557,558,588,590,591,592,593,594,595,597,598,599,600,601,602,603,604,605,607,608,609,611,612,613,614,615,616,617,618,619,620,658,659,660,1852,1906,1923,1924],[70,72,73,277,545,554,621,658,659,660,1852,1906,1923,1924],[70,72,73,519,658,659,660,1852,1906,1923,1924],[70,72,73,276,277,621,624,658,659,660,1852,1906,1923,1924],[70,72,73,277,658,659,660,1852,1906,1923,1924],[70,72,73,277,609,621,658,659,660,1852,1906,1923,1924],[70,72,73,518,621,658,659,660,1852,1906,1923,1924],[70,72,73,518,559,621,658,659,660,1852,1906,1923,1924],[70,72,73,519,522,658,659,660,1852,1906,1923,1924],[70,72,73,276,518,559,560,578,579,580,588,589,621,658,659,660,1852,1906,1923,1924],[70,72,73,277,518,559,621,658,659,660,1852,1906,1923,1924],[70,72,73,276,658,659,660,1852,1906,1923,1924],[70,72,73,518,522,658,659,660,1852,1906,1923,1924],[70,72,73,276,277,621,658,659,660,1852,1906,1923,1924],[70,72,73,276,277,522,552,554,621,658,659,660,1852,1906,1923,1924],[70,72,73,277,552,554,621,658,659,660,1852,1906,1923,1924],[70,72,73,277,552,621,658,659,660,1852,1906,1923,1924],[70,72,73,277,552,554,606,621,658,659,660,1852,1906,1923,1924],[70,72,73,277,516,517,552,554,621,658,659,660,1852,1906,1923,1924],[70,72,73,277,552,554,621,624,658,659,660,1852,1906,1923,1924],[70,72,73,277,516,552,554,621,658,659,660,1852,1906,1923,1924],[70,72,73,277,552,610,621,658,659,660,1852,1906,1923,1924],[70,72,73,277,545,621,658,659,660,1852,1906,1923,1924],[70,72,73,529,658,659,660,1852,1906,1923,1924],[70,72,73,277,549,658,659,660,1852,1906,1923,1924],[70,72,73,277,526,658,659,660,1852,1906,1923,1924],[70,72,73,276,277,596,621,658,659,660,1852,1906,1923,1924],[70,72,73,277,522,658,659,660,1852,1906,1923,1924],[70,72,73,517,658,659,660,1852,1906,1923,1924],[70,72,73,276,519,522,658,659,660,1852,1906,1923,1924],[70,72,73,277,516,658,659,660,1852,1906,1923,1924],[70,72,73,277,517,519,658,659,660,1852,1906,1923,1924],[70,72,73,277,517,621,658,659,660,1852,1906,1923,1924],[70,72,73,517,518,658,659,660,1852,1906,1923,1924],[70,72,73,277,516,517,529,553,658,659,660,1852,1906,1923,1924],[70,72,73,277,516,517,529,545,553,658,659,660,1852,1906,1923,1924],[70,72,73,277,517,522,548,549,550,551,554,590,591,592,593,595,597,601,605,609,612,614,619,620,621,622,623,658,659,660,1852,1906,1923,1924],[70,72,73,276,520,521,658,659,660,1852,1906,1923,1924],[70,72,73,516,517,518,658,659,660,1852,1906,1923,1924],[70,72,73,276,522,658,659,660,1852,1906,1923,1924],[70,72,73,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,658,659,660,1852,1906,1923,1924],[70,72,73,564,566,658,659,660,1852,1906,1923,1924],[70,72,73,562,658,659,660,1852,1906,1923,1924],[70,72,73,561,565,658,659,660,1852,1906,1923,1924],[70,72,73,570,658,659,660,1852,1906,1923,1924],[70,72,73,562,564,565,568,569,571,572,658,659,660,1852,1906,1923,1924],[70,72,73,562,564,565,566,658,659,660,1852,1906,1923,1924],[70,72,73,562,564,658,659,660,1852,1906,1923,1924],[70,72,73,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,658,659,660,1852,1906,1923,1924],[70,72,73,562,564,565,658,659,660,1852,1906,1923,1924],[70,72,73,564,658,659,660,1852,1906,1923,1924],[70,72,73,564,566,568,570,576,658,659,660,1852,1906,1923,1924],[70,72,73,371,465,658,659,660,1852,1906,1923,1924],[70,72,73,465,658,659,660,1852,1906,1923,1924],[70,72,73,366,369,370,371,465,658,659,660,1852,1906,1923,1924],[70,72,73,465,481,658,659,660,1852,1906,1923,1924],[70,72,73,366,369,370,371,372,465,501,658,659,660,1852,1906,1923,1924],[70,72,73,367,368,369,501,658,659,660,1852,1906,1923,1924],[70,72,73,370,465,658,659,660,1852,1906,1923,1924],[70,72,73,294,295,308,339,353,477,658,659,660,1852,1906,1923,1924],[70,72,73,371,465,481,658,659,660,1852,1906,1923,1924],[70,72,73,368,658,659,660,1852,1906,1923,1924],[70,72,73,366,369,370,371,372,465,488,658,659,660,1852,1906,1923,1924],[70,72,73,367,368,369,488,658,659,660,1852,1906,1923,1924],[70,72,73,310,477,658,659,660,1852,1906,1923,1924],[70,72,73,366,369,370,371,372,465,494,658,659,660,1852,1906,1923,1924],[70,72,73,367,368,369,494,658,659,660,1852,1906,1923,1924],[70,72,73,477,658,659,660,1852,1906,1923,1924],[70,72,73,366,369,370,371,372,465,482,658,659,660,1852,1906,1923,1924],[70,72,73,368,369,482,658,659,660,1852,1906,1923,1924],[70,72,73,471,477,658,659,660,1852,1906,1923,1924],[70,72,73,367,658,659,660,1852,1906,1923,1924],[70,72,73,368,369,373,658,659,660,1852,1906,1923,1924],[70,72,73,283,368,658,659,660,1852,1906,1923,1924],[70,72,73,368,369,658,659,660,1852,1906,1923,1924],[70,72,73,368,373,658,659,660,1852,1906,1923,1924],[70,72,73,314,324,658,659,660,1852,1906,1923,1924],[70,72,73,396,658,659,660,1852,1906,1923,1924],[70,72,73,281,283,315,376,381,388,390,391,392,393,408,409,418,420,425,426,428,429,658,659,660,1852,1906,1923,1924],[70,72,73,281,283,284,313,315,393,405,406,407,428,429,658,659,660,1852,1906,1923,1924],[70,72,73,284,313,314,658,659,660,1852,1906,1923,1924],[70,72,73,283,315,367,368,369,370,372,374,375,376,377,418,420,439,458,462,463,464,658,659,660,1852,1906,1923,1924],[70,72,73,506,658,659,660,1852,1906,1923,1924],[70,72,73,284,293,658,659,660,1852,1906,1923,1924],[70,72,73,284,302,658,659,660,1852,1906,1923,1924],[70,72,73,284,285,297,658,659,660,1852,1906,1923,1924],[70,72,73,284,309,413,658,659,660,1852,1906,1923,1924],[70,72,73,284,658,659,660,1852,1906,1923,1924],[70,72,73,284,287,297,658,659,660,1852,1906,1923,1924],[70,72,73,284,285,291,294,295,296,298,303,304,305,306,307,658,659,660,1852,1906,1923,1924],[70,72,73,284,352,658,659,660,1852,1906,1923,1924],[70,72,73,284,285,658,659,660,1852,1906,1923,1924],[70,72,73,284,286,287,288,289,292,658,659,660,1852,1906,1923,1924],[70,72,73,284,287,291,658,659,660,1852,1906,1923,1924],[70,72,73,284,328,658,659,660,1852,1906,1923,1924],[70,72,73,286,299,300,301,658,659,660,1852,1906,1923,1924],[70,72,73,284,285,291,297,309,658,659,660,1852,1906,1923,1924],[70,72,73,283,284,291,293,302,658,659,660,1852,1906,1923,1924],[70,72,73,284,285,291,354,355,356,357,658,659,660,1852,1906,1923,1924],[70,72,73,284,290,348,658,659,660,1852,1906,1923,1924],[70,72,73,284,287,290,297,346,658,659,660,1852,1906,1923,1924],[70,72,73,284,309,317,321,326,327,330,332,337,338,340,341,350,658,659,660,1852,1906,1923,1924],[70,72,73,284,287,658,659,660,1852,1906,1923,1924],[70,72,73,284,290,291,658,659,660,1852,1906,1923,1924],[70,72,73,284,291,658,659,660,1852,1906,1923,1924],[70,72,73,284,290,658,659,660,1852,1906,1923,1924],[70,72,73,284,316,658,659,660,1852,1906,1923,1924],[70,72,73,284,344,658,659,660,1852,1906,1923,1924],[70,72,73,284,285,287,291,292,658,659,660,1852,1906,1923,1924],[70,72,73,284,333,658,659,660,1852,1906,1923,1924],[70,72,73,284,287,291,317,319,320,321,326,327,330,658,659,660,1852,1906,1923,1924],[70,72,73,284,336,658,659,660,1852,1906,1923,1924],[70,72,73,284,344,390,658,659,660,1852,1906,1923,1924],[70,72,73,284,390,421,658,659,660,1852,1906,1923,1924],[70,72,73,284,323,422,423,658,659,660,1852,1906,1923,1924],[70,72,73,284,291,313,321,327,330,337,352,658,659,660,1852,1906,1923,1924],[70,72,73,284,285,287,309,318,658,659,660,1852,1906,1923,1924],[70,72,73,284,318,658,659,660,1852,1906,1923,1924],[70,72,73,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,303,304,305,306,307,308,309,310,311,312,313,317,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,355,356,357,358,359,360,361,362,363,364,365,380,389,390,405,406,407,411,412,413,414,419,421,422,423,424,445,470,471,472,473,474,475,658,659,660,1852,1906,1923,1924],[70,72,73,284,340,658,659,660,1852,1906,1923,1924],[70,72,73,284,340,341,411,412,658,659,660,1852,1906,1923,1924],[70,72,73,284,324,658,659,660,1852,1906,1923,1924],[70,72,73,284,411,658,659,660,1852,1906,1923,1924],[70,72,73,284,285,287,658,659,660,1852,1906,1923,1924],[70,72,73,284,309,315,316,317,321,325,326,327,331,337,346,349,351,353,658,659,660,1852,1906,1923,1924],[70,72,73,284,287,291,322,658,659,660,1852,1906,1923,1924],[70,72,73,283,284,287,291,658,659,660,1852,1906,1923,1924],[70,72,73,284,325,658,659,660,1852,1906,1923,1924],[70,72,73,284,309,317,325,327,330,332,333,334,335,337,338,339,340,341,342,343,345,658,659,660,1852,1906,1923,1924],[70,72,73,284,291,313,322,324,658,659,660,1852,1906,1923,1924],[70,72,73,287,323,658,659,660,1852,1906,1923,1924],[70,72,73,284,309,317,318,321,326,327,330,332,337,338,347,348,658,659,660,1852,1906,1923,1924],[70,72,73,284,347,348,658,659,660,1852,1906,1923,1924],[70,72,73,284,329,658,659,660,1852,1906,1923,1924],[70,72,73,284,314,315,389,390,391,392,429,658,659,660,1852,1906,1923,1924],[70,72,73,429,658,659,660,1852,1906,1923,1924],[70,72,73,284,315,380,658,659,660,1852,1906,1923,1924],[70,72,73,284,315,658,659,660,1852,1906,1923,1924],[70,72,73,284,313,315,387,427,658,659,660,1852,1906,1923,1924],[70,72,73,333,427,429,658,659,660,1852,1906,1923,1924],[70,72,73,287,391,392,427,445,658,659,660,1852,1906,1923,1924],[70,72,73,283,337,388,394,658,659,660,1852,1906,1923,1924],[70,72,73,315,340,429,658,659,660,1852,1906,1923,1924],[70,72,73,396,411,429,658,659,660,1852,1906,1923,1924],[70,72,73,283,284,287,313,315,323,324,387,390,392,396,398,424,428,658,659,660,1852,1906,1923,1924],[70,72,73,278,279,280,282,397,658,659,660,1852,1906,1923,1924],[70,72,73,283,315,325,392,396,409,427,428,658,659,660,1852,1906,1923,1924],[70,72,73,315,343,427,658,659,660,1852,1906,1923,1924],[70,72,73,283,284,291,313,315,428,658,659,660,1852,1906,1923,1924],[70,72,73,283,391,429,658,659,660,1852,1906,1923,1924],[70,72,73,390,428,429,472,658,659,660,1852,1906,1923,1924],[70,72,73,318,391,392,427,429,658,659,660,1852,1906,1923,1924],[70,72,73,284,315,344,387,428,658,659,660,1852,1906,1923,1924],[70,72,73,283,315,329,452,453,454,455,458,658,659,660,1852,1906,1923,1924],[70,72,73,283,366,368,375,658,659,660,1852,1906,1923,1924],[70,72,73,283,366,368,374,658,659,660,1852,1906,1923,1924],[70,72,73,283,313,315,393,414,416,428,429,658,659,660,1852,1906,1923,1924],[70,72,73,281,315,391,393,408,419,429,658,659,660,1852,1906,1923,1924],[70,72,73,314,329,658,659,660,1852,1906,1923,1924],[70,72,73,279,281,283,314,315,316,351,354,367,374,375,376,377,388,391,393,395,397,398,400,401,404,428,429,448,449,451,658,659,660,1852,1906,1923,1924],[70,72,73,281,283,315,387,392,408,410,417,429,658,659,660,1852,1906,1923,1924],[70,72,73,393,429,658,659,660,1852,1906,1923,1924],[70,72,73,278,281,283,314,315,316,331,354,367,374,375,376,377,392,397,401,404,428,446,447,448,449,450,451,658,659,660,1852,1906,1923,1924],[70,72,73,283,314,337,393,428,429,658,659,660,1852,1906,1923,1924],[70,72,73,284,313,315,422,424,658,659,660,1852,1906,1923,1924],[70,72,73,282,283,314,315,353,354,367,374,376,377,388,391,393,395,401,428,429,446,447,448,451,454,658,659,660,1852,1906,1923,1924],[70,72,73,354,658,659,660,1852,1906,1923,1924],[70,72,73,283,314,315,319,392,393,400,428,429,447,658,659,660,1852,1906,1923,1924],[70,72,73,283,427,428,448,658,659,660,1852,1906,1923,1924],[70,72,73,314,396,398,413,415,429,658,659,660,1852,1906,1923,1924],[70,72,73,392,397,448,658,659,660,1852,1906,1923,1924],[70,72,73,315,346,658,659,660,1852,1906,1923,1924],[70,72,73,281,283,315,316,327,345,346,354,367,374,375,376,377,387,388,391,392,393,395,397,398,399,400,401,402,403,404,408,428,429,658,659,660,1852,1906,1923,1924],[70,72,73,280,281,283,314,315,316,349,354,367,374,375,376,377,388,391,393,395,397,400,401,404,428,429,447,448,449,451,658,659,660,1852,1906,1923,1924],[70,72,73,283,393,428,429,658,659,660,1852,1906,1923,1924],[70,72,73,366,658,659,660,1852,1906,1923,1924],[70,72,73,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,303,304,305,306,307,308,309,310,311,312,313,317,318,319,320,321,322,323,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,355,356,357,358,359,360,361,362,363,364,365,366,367,380,389,390,405,406,407,411,412,413,414,419,421,422,423,424,445,470,471,472,473,474,475,476,658,659,660,1852,1906,1923,1924],[70,72,73,297,306,308,310,311,312,353,354,358,359,360,361,362,363,364,365,367,658,659,660,1852,1906,1923,1924],[70,72,73,278,279,280,282,330,375,376,388,397,409,452,453,454,455,456,457,658,659,660,1852,1906,1923,1924],[70,72,73,366,367,368,371,373,375,467,658,659,660,1852,1906,1923,1924],[70,72,73,367,371,375,467,658,659,660,1852,1906,1923,1924],[70,72,73,366,367,368,371,373,374,375,376,658,659,660,1852,1906,1923,1924],[70,72,73,376,658,659,660,1852,1906,1923,1924],[70,72,73,366,367,368,371,373,374,375,658,659,660,1852,1906,1923,1924],[70,72,73,297,315,367,368,374,375,439,658,659,660,1852,1906,1923,1924],[70,72,73,440,658,659,660,1852,1906,1923,1924],[70,72,73,298,314,378,381,658,659,660,1852,1906,1923,1924],[70,72,73,292,308,314,367,374,376,377,384,658,659,660,1852,1906,1923,1924],[70,72,73,308,310,314,315,367,374,376,377,429,658,659,660,1852,1906,1923,1924],[70,72,73,308,314,315,367,374,376,377,379,381,382,383,385,386,430,431,658,659,660,1852,1906,1923,1924],[70,72,73,308,314,367,374,376,377,658,659,660,1852,1906,1923,1924],[70,72,73,292,293,314,315,378,658,659,660,1852,1906,1923,1924],[70,72,73,283,310,314,315,367,374,376,377,393,427,429,658,659,660,1852,1906,1923,1924],[70,72,73,311,314,367,374,376,377,658,659,660,1852,1906,1923,1924],[70,72,73,312,314,315,367,374,376,377,379,381,384,431,658,659,660,1852,1906,1923,1924],[70,72,73,283,314,355,358,367,374,376,377,393,428,429,459,658,659,660,1852,1906,1923,1924],[70,72,73,314,359,367,374,376,377,658,659,660,1852,1906,1923,1924],[70,72,73,314,360,367,374,376,377,409,440,658,659,660,1852,1906,1923,1924],[70,72,73,306,314,367,374,376,377,658,659,660,1852,1906,1923,1924],[70,72,73,314,361,367,374,376,377,658,659,660,1852,1906,1923,1924],[70,72,73,314,362,367,374,376,377,658,659,660,1852,1906,1923,1924],[70,72,73,314,363,367,374,376,377,658,659,660,1852,1906,1923,1924],[70,72,73,314,364,367,374,376,377,658,659,660,1852,1906,1923,1924],[70,72,73,314,365,367,374,376,377,658,659,660,1852,1906,1923,1924],[70,72,73,292,299,314,658,659,660,1852,1906,1923,1924],[70,72,73,375,376,432,433,434,435,436,437,438,441,442,443,444,460,461,658,659,660,1852,1906,1923,1924],[70,72,73,301,314,658,659,660,1852,1906,1923,1924],[70,72,73,278,279,280,375,388,397,409,452,453,454,458,460,658,659,660,1852,1906,1923,1924],[70,72,73,283,658,659,660,1852,1906,1923,1924],[70,72,73,315,658,659,660,1852,1906,1923,1924],[70,72,73,278,279,280,282,283,367,377,658,659,660,1852,1906,1923,1924],[70,72,73,283,367,658,659,660,1852,1906,1923,1924],[70,72,73,278,279,280,281,282,658,659,660,1852,1906,1923,1924],[70,72,73,581,658,659,660,1852,1906,1923,1924],[70,72,73,583,658,659,660,1852,1906,1923,1924],[70,72,73,581,583,658,659,660,1852,1906,1923,1924],[70,72,73,275,658,659,660,1852,1906,1923,1924],[64,70,72,73,658,659,660,1852,1906,1923,1924],[70,72,73,658,659,660,1146,1150,1152,1154,1191,1193,1195,1197,1227,1229,1231,1233,1235,1237,1239,1241,1243,1245,1247,1249,1253,1257,1260,1262,1265,1267,1269,1271,1273,1275,1277,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1144,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1144,1145,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1203,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1238,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1276,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1274,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1263,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1264,1852,1906,1923,1924],[70,72,73,658,659,660,979,980,1852,1906,1923,1924],[70,72,73,658,659,660,1147,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1152,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1261,1852,1906,1923,1924],[70,72,73,658,659,660,1234,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1146,1147,1149,1151,1152,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1153,1852,1906,1923,1924],[70,72,73,658,659,660,1142,1852,1906,1923,1924],[70,72,73,658,659,660,1266,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1219,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1240,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1221,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1270,1852,1906,1923,1924],[70,72,73,658,659,660,1268,1852,1906,1923,1924],[70,72,73,658,659,660,1259,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1258,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1246,1852,1906,1923,1924],[70,72,73,658,659,660,1248,1852,1906,1923,1924],[70,72,73,658,659,660,1272,1852,1906,1923,1924],[70,72,73,658,659,660,980,981,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1256,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1255,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1252,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1251,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1151,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1150,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1155,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1146,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,975,979,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1143,1145,1146,1147,1148,1149,1151,1153,1154,1156,1157,1159,1160,1184,1185,1187,1188,1189,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1278,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1163,1180,1181,1182,1183,1852,1906,1923,1924],[70,72,73,223,658,659,660,1852,1906,1923,1924],[70,72,73,223,658,659,660,1160,1852,1906,1923,1924],[70,72,73,658,659,660,1180,1181,1852,1906,1923,1924],[70,72,73,263,651,658,659,660,1159,1162,1181,1852,1906,1923,1924],[70,72,73,651,658,659,660,1181,1852,1906,1923,1924],[70,72,73,199,651,658,659,660,1163,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1181,1852,1906,1923,1924],[70,72,73,651,658,659,660,1163,1181,1852,1906,1923,1924],[70,72,73,658,659,660,1159,1163,1180,1852,1906,1923,1924],[70,72,73,658,659,660,975,978,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1186,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,262,658,659,660,1852,1906,1923,1924],[70,72,73,658,659,660,979,988,1054,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,979,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,979,980,981,982,988,989,990,1053,1852,1906,1923,1924],[70,72,73,658,659,660,979,983,984,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1054,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,979,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1054,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,987,1852,1906,1923,1924],[70,72,73,658,659,660,987,1047,1852,1906,1923,1924],[70,72,73,658,659,660,991,1048,1049,1050,1051,1052,1852,1906,1923,1924],[70,72,73,658,659,660,979,980,1056,1852,1906,1923,1924],[70,72,73,658,659,660,979,1852,1906,1923,1924],[70,72,73,658,659,660,980,988,1852,1906,1923,1924],[70,72,73,658,659,660,980,1852,1906,1923,1924],[70,72,73,658,659,660,975,979,988,1852,1906,1923,1924],[70,72,73,658,659,660,988,1852,1906,1923,1924],[70,72,73,658,659,660,988,1056,1852,1906,1923,1924],[70,72,73,658,659,660,980,988,1054,1852,1906,1923,1924],[70,72,73,658,659,660,980,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1852,1906,1923,1924],[70,72,73,658,659,660,981,1852,1906,1923,1924],[70,72,73,658,659,660,979,980,988,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,988,1852,1906,1923,1924],[70,72,73,658,659,660,983,984,985,986,987,988,990,1053,1054,1055,1107,1113,1114,1118,1119,1140,1852,1906,1923,1924],[70,72,73,658,659,660,1108,1109,1110,1111,1112,1852,1906,1923,1924],[70,72,73,658,659,660,980,983,988,1852,1906,1923,1924],[70,72,73,658,659,660,983,1852,1906,1923,1924],[70,72,73,658,659,660,980,983,988,1054,1852,1906,1923,1924],[70,72,73,658,659,660,979,980,983,984,985,986,987,988,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1054,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,980,981,985,988,1054,1852,1906,1923,1924],[70,72,73,658,659,660,1115,1116,1117,1852,1906,1923,1924],[70,72,73,658,659,660,980,984,988,1852,1906,1923,1924],[70,72,73,658,659,660,984,1852,1906,1923,1924],[70,72,73,658,659,660,979,980,981,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1054,1141,1142,1145,1147,1149,1151,1153,1190,1196,1198,1200,1202,1204,1206,1210,1212,1214,1216,1220,1222,1224,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1852,1906,1923,1924],[70,72,73,658,659,660,1198,1852,1906,1923,1924],[70,72,73,658,659,660,1202,1852,1906,1923,1924],[70,72,73,658,659,660,1192,1852,1906,1923,1924],[70,72,73,658,659,660,1204,1852,1906,1923,1924],[70,72,73,658,659,660,1242,1852,1906,1923,1924],[70,72,73,658,659,660,1236,1852,1906,1923,1924],[70,72,73,658,659,660,1212,1852,1906,1923,1924],[70,72,73,658,659,660,1190,1852,1906,1923,1924],[70,72,73,658,659,660,1214,1852,1906,1923,1924],[70,72,73,658,659,660,1218,1852,1906,1923,1924],[70,72,73,658,659,660,1220,1852,1906,1923,1924],[70,72,73,658,659,660,1194,1852,1906,1923,1924],[70,72,73,658,659,660,1230,1852,1906,1923,1924],[70,72,73,658,659,660,1232,1852,1906,1923,1924],[70,72,73,658,659,660,1244,1852,1906,1923,1924],[70,72,73,658,659,660,1254,1852,1906,1923,1924],[70,72,73,658,659,660,1250,1852,1906,1923,1924],[70,72,73,658,659,660,1228,1852,1906,1923,1924],[70,72,73,658,659,660,1149,1852,1906,1923,1924],[70,72,73,658,659,660,1196,1852,1906,1923,1924],[70,72,73,658,659,660,975,1852,1906,1923,1924],[70,72,73,658,659,660,978,1852,1906,1923,1924],[70,72,73,658,659,660,976,1852,1906,1923,1924],[70,72,73,658,659,660,977,1852,1906,1923,1924],[70,72,73,658,659,660,1226,1852,1906,1923,1924],[70,72,73,658,659,660,985,986,987,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1141,1142,1145,1147,1149,1151,1153,1190,1191,1196,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1209,1210,1211,1212,1213,1214,1215,1216,1217,1219,1220,1221,1222,1223,1224,1225,1228,1230,1232,1234,1236,1242,1250,1259,1261,1264,1268,1272,1274,1279,1852,1906,1923,1924],[70,72,73,658,659,660,1200,1852,1906,1923,1924],[70,72,73,658,659,660,1206,1852,1906,1923,1924],[70,72,73,658,659,660,1208,1852,1906,1923,1924],[70,72,73,658,659,660,1210,1852,1906,1923,1924],[70,72,73,658,659,660,1216,1852,1906,1923,1924],[70,72,73,658,659,660,1222,1852,1906,1923,1924],[70,72,73,658,659,660,1224,1852,1906,1923,1924],[70,72,73,77,198,266,658,659,660,1852,1906,1923,1924,2732],[70,72,73,658,659,660,974,1852,1906,1923,1924],[70,72,73,658,659,660,975,976,977,1852,1906,1923,1924],[70,72,73,658,659,660,975,976,978,1852,1906,1923,1924],[70,72,73,221,222,658,659,660,1852,1906,1923,1924],[63,70,72,73,658,659,660,1852,1906,1923,1924],[62,70,72,73,658,659,660,1852,1906,1923,1924],[70,72,73,273,274,658,659,660,1852,1906,1923,1924],[70,72,73,273,658,659,660,1852,1906,1923,1924],[70,72,73,272,658,659,660,1852,1906,1923,1924],[70,72,73,264,658,659,660,1852,1906,1923,1924],[70,72,73,184,199,218,263,658,659,660,1852,1906,1923,1924],[70,72,73,77,184,218,224,265,658,659,660,1852,1906,1923,1924],[70,72,73,184,199,219,220,223,658,659,660,1852,1906,1923,1924],[70,72,73,77,266,658,659,660,1852,1906,1923,1924],[70,72,73,184,658,659,660,1852,1906,1923,1924],[70,72,73,210,658,659,660,1852,1906,1923,1924],[70,72,73,184,208,209,211,212,217,658,659,660,1852,1906,1923,1924],[70,72,73,184,216,658,659,660,1852,1906,1923,1924],[70,72,73,208,658,659,660,1852,1906,1923,1924],[70,72,73,190,191,658,659,660,1852,1906,1923,1924],[70,72,73,192,193,658,659,660,1852,1906,1923,1924],[70,72,73,192,658,659,660,1852,1906,1923,1924],[70,72,73,203,658,659,660,1852,1906,1923,1924],[70,72,73,194,196,199,200,201,202,658,659,660,1852,1906,1923,1924],[70,72,73,196,199,203,658,659,660,1852,1906,1923,1924],[70,72,73,199,201,205,658,659,660,1852,1906,1923,1924],[70,72,73,204,658,659,660,1852,1906,1923,1924],[70,72,73,77,190,266,658,659,660,1852,1906,1923,1924],[70,72,73,195,658,659,660,1852,1906,1923,1924],[70,72,73,186,658,659,660,1852,1906,1923,1924],[70,72,73,188,658,659,660,1852,1906,1923,1924],[70,72,73,187,658,659,660,1852,1906,1923,1924],[70,72,73,189,658,659,660,1852,1906,1923,1924],[70,72,73,225,226,658,659,660,1852,1906,1923,1924],[70,72,73,225,234,658,659,660,1852,1906,1923,1924],[70,72,73,199,205,208,225,658,659,660,1852,1906,1923,1924],[70,72,73,199,225,226,658,659,660,1852,1906,1923,1924],[70,72,73,199,225,251,658,659,660,1852,1906,1923,1924],[70,72,73,199,237,244,658,659,660,1852,1906,1923,1924],[70,72,73,208,225,226,658,659,660,1852,1906,1923,1924],[70,72,73,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,658,659,660,1852,1906,1923,1924],[70,72,73,225,230,658,659,660,1852,1906,1923,1924],[70,72,73,199,208,213,214,658,659,660,1852,1906,1923,1924],[70,72,73,199,213,658,659,660,1852,1906,1923,1924],[70,72,73,205,208,658,659,660,1852,1906,1923,1924],[70,72,73,215,658,659,660,1852,1906,1923,1924],[70,72,73,206,658,659,660,1852,1906,1923,1924],[70,72,73,77,185,205,266,658,659,660,1852,1906,1923,1924],[70,72,73,207,658,659,660,1852,1906,1923,1924],[70,72,73,77,197,198,266,658,659,660,1852,1906,1923,1924],[70,72,73,221,658,659,660,1852,1906,1923,1924],[70,72,73,658,659,660,1735,1736,1739,1740,1741,1852,1906,1923,1924],[70,72,73,658,659,660,1726,1734,1852,1906,1923,1924],[70,72,73,658,659,660,1726,1852,1906,1923,1924],[70,72,73,658,659,660,1726,1737,1738,1852,1906,1923,1924],[70,72,73,658,659,660,1725,1726,1852,1906,1923,1924],[70,72,73,658,659,660,1725,1726,1727,1728,1729,1730,1731,1732,1733,1742,1744,1852,1906,1923,1924],[70,72,73,658,659,660,1734,1737,1738,1743,1852,1906,1923,1924],[70,72,73,658,659,660,1725,1852,1906,1923,1924],[70,72,73,658,659,660,1763,1779,1852,1906,1923,1924],[70,72,73,658,659,660,1766,1852,1906,1923,1924],[70,72,73,658,659,660,1775,1852,1906,1923,1924],[70,72,73,658,659,660,1752,1766,1770,1771,1772,1773,1780,1852,1906,1923,1924],[70,72,73,658,659,660,1752,1771,1852,1906,1923,1924],[70,72,73,658,659,660,1751,1782,1852,1906,1923,1924],[70,72,73,658,659,660,1752,1764,1782,1852,1906,1923,1924],[70,72,73,658,659,660,1749,1763,1765,1771,1775,1780,1782,1784,1852,1906,1923,1924],[70,72,73,658,659,660,1749,1751,1752,1760,1763,1764,1765,1781,1852,1906,1923,1924],[70,72,73,658,659,660,1751,1763,1778,1852,1906,1923,1924],[70,72,73,658,659,660,1753,1754,1758,1759,1852,1906,1923,1924],[70,72,73,658,659,660,1720,1852,1906,1923,1924],[70,72,73,658,659,660,1711,1712,1852,1906,1923,1924],[70,72,73,658,659,660,1709,1710,1711,1713,1714,1718,1852,1906,1923,1924],[70,72,73,658,659,660,1710,1711,1852,1906,1923,1924],[70,72,73,658,659,660,1719,1852,1906,1923,1924],[70,72,73,658,659,660,1711,1852,1906,1923,1924],[70,72,73,658,659,660,1709,1710,1711,1714,1715,1716,1717,1852,1906,1923,1924],[70,72,73,658,659,660,1709,1710,1720,1852,1906,1923,1924],[70,72,73,266,658,659,660,1721,1724,1746,1747,1748,1785,1852,1906,1923,1924],[70,72,73,658,659,660,1723,1852,1906,1923,1924,1928],[70,72,73,588,658,659,660,1852,1906,1919,1923,1924,1928],[70,72,73,658,659,660,1746,1786,1852,1906,1923,1924],[70,72,73,658,659,660,1745,1746,1747,1852,1906,1923,1924],[70,72,73,266,658,659,660,1721,1852,1906,1923,1924],[70,72,73,266,658,659,660,1724,1745,1748,1852,1906,1907,1918,1919,1923,1924,1928],[70,72,73,658,659,660,1784,1852,1906,1923,1924]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"c2c2a861a338244d7dd700d0c52a78916b4bb75b98fc8ca5e7c501899fc03796","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"adb467429462e3891de5bb4a82a4189b92005d61c7f9367c089baf03997c104e","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"0505895c1a037d7aabf201d3a6c09114e1bf697116127dca0f4e80e6e7e97cb7","signature":"0838eafbad42bc4f7c86e603f57dda8d915939ec487862ef47d108222a2f6d35"},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":1},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":1},{"version":"f4c5cf9bb78e85f15dc27180260637cf24b2a24bc39e0788783a3accc4dde614","impliedFormat":1},{"version":"f8aa5e4adfb4f9be4c770a10413bebcade004e18a3cbe23918470aaf48c48d65","signature":"e5a8bd48298e757be9670fc529a0633c69e6a317e00b22128ddf02b829ebac69","affectsGlobalScope":true},{"version":"b623ea4bf5ee763294a03e348ff303b06fe9b168ef0873e5e9a06139e6fef071","signature":"63c41448536247de404abb79a3e675b4c12a570dced92d8a687ddfc4a3aa4c0c","affectsGlobalScope":true},{"version":"bed89253ece0bb183c07ddede67a70917b8bbb84e37f24427123fa269834b990","impliedFormat":99},{"version":"5abe279c3717db9fd50d1f68344e07631bcc11ed2bc754b282325088f489b7e9","impliedFormat":99},"9d55593052d80c13ae8c2b089b683adbf936623c8354e496f5e8283328f4a407",{"version":"e54127956052f666d2255bd806e67775594206dd5771d83244b54f37b72d2543","impliedFormat":99},{"version":"5abe279c3717db9fd50d1f68344e07631bcc11ed2bc754b282325088f489b7e9","impliedFormat":99},{"version":"6b713e7a765e9b62bc4e032ddfb153a7dbc106102bb7c79348624f7d9a45cc17","impliedFormat":1},{"version":"ffdb35e554b3e7ca09f591d80833f321b7e5793d1b8a9c468994be599ab2e8f2","signature":"da23356a0a27c426ddfe1680d0e1869224521616971614709a2e4e3cde9f8b08"},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"3a909e8789a4f8b5377ef3fb8dc10d0c0a090c03f2e40aab599534727457475a","affectsGlobalScope":true,"impliedFormat":1},{"version":"fd412dd6372493eb8e3e95cae8687d35e4d34dde905a33e0ee47b74224cdd6ab","impliedFormat":1},{"version":"9d3b119c15e8eeb9a8fbeca47e0165ca7120704d90bf123b16ee5b612e2ecc9d","impliedFormat":1},{"version":"9f66eb21b8f041974625ec8f8ab3c6c36990b900b053ba962bb8b233301c8e47","impliedFormat":1},{"version":"005319c82222e57934c7b211013eb6931829e46b2a61c5d9a1c3c25f8dc3ea90","impliedFormat":1},{"version":"54ccb63049fb6d1d3635f3dc313ebfe3a8059f6b6afa8b9d670579534f6e25a6","affectsGlobalScope":true,"impliedFormat":1},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"0ff1b165090b491f5e1407ae680b9a0bc3806dc56827ec85f93c57390491e732","impliedFormat":1},{"version":"232f660363b3b189f7be7822ed71e907195d1a85bc8d55d2b7ce3f09b2136938","impliedFormat":1},{"version":"e745388cfad9efb4e5a9a15a2c6b66d54094dd82f8d0c2551064e216f7b51526","impliedFormat":1},{"version":"d11cbcaf3a54861b1d348ba2adeeba67976ce0b33eef5ea6e4bddc023d2ac4b2","impliedFormat":1},{"version":"cf1e23408bb2e38cb90d109cf8027c829f19424ad7a611c74edf39e1f195fe22","impliedFormat":1},{"version":"8ebf448e9837fda1a368acbb575b0e28843d5b2a3fda04bce76248b64326ea49","impliedFormat":1},{"version":"91b9f6241fca7843985aa31157cfa08cc724c77d91145a4d834d27cdde099c05","impliedFormat":1},{"version":"c5dc49c81f9cb20dff16b7933b50e19ac3565430cf685bbe51bcbcdb760fc03f","impliedFormat":1},{"version":"d78d4bc8bbda13ed147b23e63ff4ac83e3dcf4f07012afadd59e8a62473b5894","impliedFormat":1},{"version":"3dfa3a6f2a62259b56fa7bcebfbacf886848dfa037298be5bed07c7a0381ee4f","impliedFormat":1},{"version":"1882680f8c88c5648d603408dd1943857ca831a815e33d3126be8368f7a69252","impliedFormat":1},{"version":"24b6109bdf5e2027f0a4366b9e1f988d648f08ea3748ebd690e76bba65115bf9","impliedFormat":1},{"version":"e7d56fa3c64c44b29fa11d840b1fe04f6d782fc2e341a1f01b987f5e59f34266","impliedFormat":1},{"version":"0f86beb951b048eb7e0a17609e934a59a8686683b2134632975baeacaf53c23d","impliedFormat":1},{"version":"e1835114d3449689778b4d41a5dde326cf82c5d13ddd902a9b71f5bf223390fb","impliedFormat":1},{"version":"16000ce3a50ff9513f802cef9ec1ce95d4b93ce251d01fd82d5c61a34e0e35bd","impliedFormat":1},{"version":"42bacb33cddecbcfe3e043ee1117ba848801749e44f947626765b3e0aec74b1c","impliedFormat":1},{"version":"4e1bfec0f44a463f25cc26528a4505bc592feef555706311a143481f69a21d6f","impliedFormat":1},{"version":"cd2156bc8e4d54d52a2817d1b6f4629a5dd3173b1d8bb0fc893ee678d6a78ecd","impliedFormat":1},{"version":"60526d9010e8ccb2a76a59821061463464c3acd5bc7a50320df6d2e4e0d6e4f7","impliedFormat":1},{"version":"35e068ea47e779f232417d5c9fd595af9a85d26b2b77f89ae6afce17343d31e7","impliedFormat":1},{"version":"963dfba66d1744c7b35ae81cf6ebda2921df916806b6958ba093b63b0ef8c74a","impliedFormat":1},{"version":"70533e87167cf88facbec8ef771f9ad98021d796239c1e6f7826e0f386a725be","impliedFormat":1},{"version":"0600b6952abba5696c5079a62cc14430ba48682b1e1b7fbade74290c9857cd9a","impliedFormat":1},{"version":"9054417b5760061bc5fe31f9eee5dc9bf018339b0617d3c65dd1673c8e3c0f25","impliedFormat":1},{"version":"c6b68cd2e7838e91e05ede0a686815f521024281768f338644f6c0e0ad8e63cd","impliedFormat":1},{"version":"20c7a8cb00fda35bf50333488657c20fd36b9af9acb550f8410ef3e9bef51ef0","impliedFormat":1},{"version":"c94f70562ae60797cce564c3bebbaaf1752c327d5063d6ac152aa5ca1616c267","impliedFormat":1},{"version":"2aeb5fcdfc884b16015617d263fd8d1a8513f7efe23880be4e5f0bdb3794b37c","impliedFormat":1},{"version":"b561170fbe8d4292425e1dfa52406c8d97575681f7a5e420d11d9f72f7c29e38","impliedFormat":1},{"version":"5fe94f3f6411a0f6293f16fdc8e02ee61138941847ce91d6f6800c97fac22fcd","impliedFormat":1},{"version":"7f7c0ecc3eeeef905a3678e540947f4fbbc1a9c76075419dcc5fbfc3df59cb0b","impliedFormat":1},{"version":"df3303018d45c92be73fb4a282d5a242579f96235f5e0f8981983102caf5feca","impliedFormat":1},{"version":"92c10b9a2fcc6e4e4a781c22a97a0dac735e29b9059ecb6a7fa18d5b6916983b","impliedFormat":1},{"version":"8205e62a7310ac0513747f6d84175400680cff372559bc5fbe2df707194a295d","impliedFormat":1},{"version":"084d0df6805570b6dc6c8b49c3a71d5bdfe59606901e0026c63945b68d4b080a","impliedFormat":1},{"version":"9235e7b554d1c15ea04977b69cd123c79bd10f81704479ad5145e34d0205bf07","impliedFormat":1},{"version":"0f066f9654e700a9cf79c75553c934eb14296aa80583bd2b5d07e2d582a3f4ee","impliedFormat":1},{"version":"269c5d54104033b70331343bd931c9933852a882391ed6bd98c3d8b7d6465d22","impliedFormat":1},{"version":"a56b8577aaf471d9e60582065a8193269310e8cae48c1ce4111ed03216f5f715","impliedFormat":1},{"version":"486ae83cd51b813095f6716f06cc9b2cf480ad1d6c7f8ec59674d6c858cd2407","impliedFormat":1},{"version":"039f0a1f6d67514bbfea62ffbb0822007ce35ba180853ec9034431f60f63dbe6","impliedFormat":1},{"version":"fff527e2567a24dd634a30268f1aa8a220315fed9c513d70ee872e54f67f27f3","impliedFormat":1},{"version":"5dd0ff735b3f2e642c3f16bcfb3dc4ecebb679a70e43cfb19ab5fd84d8faaeed","impliedFormat":1},{"version":"71a9a3cf1e644ec071aa3ec6417ad05aae80c7bd55ef49b011be3cf1f17b7421","impliedFormat":1},{"version":"b7d1cdc9810b334734a7d607c195daa721df6d114d99e96d595ff52db1df627b","impliedFormat":1},{"version":"79150b9d6ee93942e4e45dddf3ef823b7298b3dda0a894ac8235206cf2909587","impliedFormat":1},{"version":"77282216c61bcef9a700db98e142301d5a7d988d3076286029da63e415e98a42","impliedFormat":1},{"version":"57b242af775e000ef0e0abb946542b0094fdb761ea52affb69b59b85ad83d34f","impliedFormat":1},{"version":"75ff8ea2c0c632719c14f50849c1fc7aa2d49f42b08c54373688536b3f995ee7","impliedFormat":1},{"version":"85a915dbb768b89cb92f5e6c165d776bfebd065883c34fee4e0219c3ed321b47","impliedFormat":1},{"version":"83df2f39cb14971adea51d1c84e7d146a34e9b7f84ad118450a51bdc3138412c","impliedFormat":1},{"version":"96d6742b440a834780d550fffc57d94d0aece2e04e485bce8d817dc5fb9b05d7","impliedFormat":1},{"version":"bdb2b70c74908c92ec41d8dd8375a195cb3bb07523e4de642b2b2dfbde249ca6","impliedFormat":1},{"version":"7b329f4137a552073f504022acbf8cd90d49cc5e5529791bef508f76ff774854","impliedFormat":1},{"version":"f63bbbffcfc897d22f34cf19ae13405cd267b1783cd21ec47d8a2d02947c98c1","impliedFormat":1},{"version":"9da2649fb89af9bd08b2215621ad1cfda50f798d0acbd0d5fee2274ee940c827","impliedFormat":1},{"version":"df55b9be6ba19a6f77487e09dc7a94d7c9bf66094d35ea168dbd4bac42c46b8f","impliedFormat":1},{"version":"595125f3e088b883d104622ef10e6b7d5875ff6976bbe4d7dca090a3e2dca513","impliedFormat":1},{"version":"737fc8159cb99bf39a201c4d7097e92ad654927da76a1297ace7ffe358a2eda3","impliedFormat":1},{"version":"e0d7eed4ba363df3faadb8e617f95f9fc8adfbb00b87db7ade4a1098d6cf1e90","impliedFormat":1},{"version":"676088e53ca31e9e21e53f5a8996345d1b8a7d153737208029db964279004c3e","impliedFormat":1},{"version":"de115595321ce012c456f512a799679bfc874f0ac0a4928a8429557bb25086aa","impliedFormat":1},{"version":"896e4b676a6f55ca66d40856b63ec2ff7f4f594d6350f8ae04eaee8876da0bc5","impliedFormat":1},{"version":"0524cab11ba9048d151d93cc666d3908fda329eec6b1642e9a936093e6d79f28","impliedFormat":1},{"version":"869073d7523e75f45bd65b2072865c60002d5e0cbd3d17831e999cf011312778","impliedFormat":1},{"version":"bc7b5906a6ce6c5744a640c314e020856be6c50a693e77dc12aff2d77b12ca76","impliedFormat":1},{"version":"56503e377bc1344f155e4e3115a772cb4e59350c0b8131e3e1fb2750ac491608","impliedFormat":1},{"version":"6b579287217ee1320ee1c6cfec5f6730f3a1f91daab000f7131558ee531b2bf8","impliedFormat":1},{"version":"2586bc43511ba0f0c4d8e35dacf25ed596dde8ec50b9598ecd80194af52f992f","impliedFormat":1},{"version":"a793636667598e739a52684033037a67dc2d9db37fab727623626ef19aa5abb9","impliedFormat":1},{"version":"b15d6238a86bc0fc2368da429249b96c260debc0cec3eb7b5f838ad32587c129","impliedFormat":1},{"version":"9a9fba3a20769b0a74923e7032997451b61c1bd371c519429b29019399040d74","impliedFormat":1},{"version":"4b10e2fe52cb61035e58df3f1fdd926dd0fe9cf1a2302f92916da324332fb4e0","impliedFormat":1},{"version":"d1092ae8d6017f359f4758115f588e089848cc8fb359f7ba045b1a1cf3668a49","impliedFormat":1},{"version":"ddae9195b0da7b25a585ef43365f4dc5204a746b155fbee71e6ee1a9193fb69f","impliedFormat":1},{"version":"32dbced998ce74c5e76ce87044d0b4071857576dde36b0c6ed1d5957ce9cf5b5","impliedFormat":1},{"version":"29befd9bb08a9ed1660fd7ac0bc2ad24a56da550b75b8334ac76c2cfceda974a","impliedFormat":1},{"version":"ed8a8dedbd26d5c101bcc2d1691535d1fd0470dc82d7e866391e9b31b851ea8c","impliedFormat":1},{"version":"0aba767f26742d337f50e46f702a95f83ce694101fa9b8455786928a5672bb9b","impliedFormat":1},{"version":"8db57d8da0ab49e839fb2d0874cfe456553077d387f423a7730c54ef5f494318","impliedFormat":1},{"version":"ecc1b8878c8033bde0204b85e26fe1af6847805427759e5723882c848a11e134","impliedFormat":1},{"version":"cfc9c32553ad3b5be38342bc8731397438a93531118e1a226a8c79ad255b4f0c","impliedFormat":1},{"version":"16e5b5b023c2a1119c1878a51714861c56255778de0a7fe378391876a15f7433","impliedFormat":1},{"version":"f65096bb6555aad0429c5b6b21b92683398434be9b2ce0d3a1fdbb651c1243f1","impliedFormat":1},{"version":"a090a8a3b0ef2cceeb089acf4df95df72e7d934215896afe264ff6f734d66d15","impliedFormat":1},{"version":"151f422f08c8ca67b77c5c39d49278b4df452ef409237c8219be109ae3cdae9d","impliedFormat":1},{"version":"412a06aa68e902bc67d69f381c06f8fd52497921c5746fabddadd44f624741f5","impliedFormat":1},{"version":"c469120d20804fda2fc836f4d7007dfd5c1cef70443868858cb524fd6e54def1","impliedFormat":1},{"version":"a32cc760d7c937dde05523434e3d7036dd6ca0ba8cb69b8f4f9557ffd80028b7","impliedFormat":1},{"version":"00c7ab5888c75baf6d492a8ffc269ffca585dee86bc0cdf62f06a5e7d27f6161","impliedFormat":1},{"version":"cee9bddb4afbcf856ef29ea5d9494060f664c6825f4d83eb27a5dbd70d587f74","impliedFormat":1},{"version":"aa070c46b09394ca34c144dac1a0699a197f045306e983ef2af01c00d1b5b515","impliedFormat":1},{"version":"42194319978a35fe926b74c19aae29a16352f39fb5a8cfd1fd0dc82fccfb88d7","impliedFormat":1},{"version":"6f309ed571d126cf8908c1b35d0e4b4a0a6a0a27f0ff53507e98e52ea798ccce","impliedFormat":1},{"version":"3db5a13e1f7194e0acb1f2acf705f968acbdd3c1ee3be7d8181f331bc8348413","impliedFormat":1},{"version":"0f651c7fd0543398fdb505b5caad6f1e69a8730d7577053090e1eae9a0f697e6","impliedFormat":1},{"version":"00fc117f05aa7a840c54a942685ba51406d14c2883719e2a1d4e1d2dd5ff82a7","impliedFormat":1},{"version":"ee2766eaf0e6f10efa870617474af45bf5788c6c15be34d38f0c834e7f2d95d9","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"e8e7db72a298245092d46b0f5957c0bf4b5ef8c31d849d82431f22c32b77cf30","impliedFormat":1},{"version":"fbe0b74882e6b44032f60be28dfe756ccd90c2a76d0a545f6cf7eadc8b1ccf2a","impliedFormat":1},{"version":"e431c2b334f9c1f822b4eb4cdc70f999ae4ccd3bce0b6bb93ad5e46ece08cbb0","impliedFormat":1},{"version":"c3e91c5161d6a6d5383e7866e20b088b09f47dbc6dc95a6e25588a6802d52cd3","impliedFormat":1},{"version":"d45bc498046ac0f0bc015424165a70d42724886e352e76ba1d460ebc431239a5","impliedFormat":1},{"version":"9f638d020ab5712be98b527859598539c36737e98a1a4954785d2eb7d9f8e6f8","impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},"2533127044627ce9bfefba8f4b9e26ef2503da338edd6b2e30f54022b1549ea9",{"version":"e565b2115f3e2b5f1b1f8afee55ea38676e4ab777f301d3ae6b2573a5359abeb","impliedFormat":1},{"version":"4dcdbdbc992d114e52247e2f960b05cf9d65d3142114bf08552b18938cb3d56b","impliedFormat":1},{"version":"b75d56703daaffcb31a7cdebf190856e07739a9481f01c2919f95bde99be9424","impliedFormat":99},{"version":"ddb5454371b8da3a72ec536ad319f9f4e0a9851ffa961ae174484296a88a70db","impliedFormat":1},{"version":"fb7c8a2d7e2b50ada1e15b223d3bb83690bd34fd764aa0e009918549e440db1d","impliedFormat":1},{"version":"b75d56703daaffcb31a7cdebf190856e07739a9481f01c2919f95bde99be9424","impliedFormat":99},{"version":"9c909c17f69f125976e5c320eded3e693890d21b18cbc4caa246ec4fda260dcd","impliedFormat":1},{"version":"7915d50018073244a9bcb3621e79b8e0ad4eedfb6b053fc945cad60c983bb11b","impliedFormat":1},{"version":"ea7b47bc357858506e6161065b1a8997cfbc5d1dcdf233966da9d01d74721ef8","impliedFormat":1},{"version":"50444daaee4bf4ad85ad8eb52e3ad5c6bba420aad9e2a800043a78f4d8bc436c","impliedFormat":99},{"version":"1fa33d8db2a9d2a7dbfb7a24718cccbcde8364d10cce29b1a7eea4cf3a530cbb","impliedFormat":1},{"version":"b75d56703daaffcb31a7cdebf190856e07739a9481f01c2919f95bde99be9424","impliedFormat":99},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"65ff5a0aefd7817a03c1ad04fee85c9cdd3ec415cc3c9efec85d8008d4d5e4ee","impliedFormat":1},{"version":"c469d07daf4f88b613f0c99d95389e049e85c14f28f58120abca6785a0b3813d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd805bb241b70dcb5eb3ddf78a23c561c81528a0e4baeb10ccfb967705c9132b","impliedFormat":1},{"version":"83e56d3337e1a6dbafdbe5a2502a84c330b1a328ed2860d689b2ded82b1f5c95","impliedFormat":1},{"version":"f186de91b1c50640e4d2bef41307ee06446d7ec76f787d4384ef808981025546","impliedFormat":1},{"version":"4886055af73784b27ea115b68763c1c0c30df8528ba50e7d1d3e0922c6e7d8e3","impliedFormat":1},{"version":"3288d226aeef7a603df43231c9df0f951b00e9137114edfd9832480bfd1a047c","impliedFormat":1},{"version":"b75d56703daaffcb31a7cdebf190856e07739a9481f01c2919f95bde99be9424","impliedFormat":99},{"version":"4712458223359f81d69f8d244590a097d913abd33fc71aa6de2913fc20ec6ec0","impliedFormat":1},{"version":"4044be033f8bbbacdb5839d712e882d6fedb3d1c33fe4837a6dcc4b000e22e7c","impliedFormat":1},{"version":"b4fbfaa34aacd768965b0135a0c4e7dbaa055a8a4d6ffe7bedf1786d3dc614de","impliedFormat":1},"f653870f223631bd516502c87117fcc8563bc8bdaebb6f67a241c8b30b5afef4","b3c74fd824e07445c53453eefc2affe8586fca0ad1816cdee885eb757c6c577c","b2c0358f86a056aef3b51d82cbb110ce06cdc08657c2e17ebe28e939bce38fe2","365a914d8dbf76c99b2bc0a9fcd67d2fc59086aaf0b79d456d6a79af9f5e9fa5",{"version":"8fdb1dec971bdb6873cd098e8f6db7fe46859a14fecd4f473d573830cff59246","impliedFormat":1},{"version":"11d67ba9494b270a088edf59ceeb153153482b0d60daef15400ad10bb85c6bf1","impliedFormat":1},{"version":"e3c621dae18e69ccd7ba445bc5313052603bcd237387150fa5f74c7716adc0fb","impliedFormat":1},{"version":"b4fbfaa34aacd768965b0135a0c4e7dbaa055a8a4d6ffe7bedf1786d3dc614de","impliedFormat":1},"535ab92b73092591d3eb841f88e4a8be1ce9ec67fae9ac2c295031f292579b5e","1eed8ba05e21db230d84c438746bdea35792ef0ea7d1fcf7a41328895287f5b7","ba6e47109207a3b673464a931a7974aa19a503ae4e6cc41051762428d4188985","9c915c626e44ec54f1adcd3b19b2a5b85288b810f6f161017a7c1e3ef23228d4",{"version":"41f45ed6b4cd7b8aec2e4888a47d5061ee1020f89375b57d388cfe1f05313991","impliedFormat":99},{"version":"98bb67aa18a720c471e2739441d8bdecdae17c40361914c1ccffab0573356a85","impliedFormat":99},{"version":"8258b4ec62cf9f136f1613e1602156fdd0852bb8715dde963d217ad4d61d8d09","impliedFormat":99},"e55d4c86293302e5a7b8319deb257de5b25386b6d65a7854b061d94286ae60da",{"version":"3b659dddbc3a5406cd89501fae952ca69dded0df1c7a41bbfedf59f1b7e3a0e1","impliedFormat":1},{"version":"221cf9a566ceba4c0ef1f157aa2b735d982ae291435d3122a4e319af6812d084","impliedFormat":1},{"version":"62354efe30ce0e25c8b94e4288684dfe06a2866d330f71b80ee6811955efd3db","impliedFormat":1},{"version":"cc3b0b707be028d72050c6b1eddb91bf17608de8cfc5850faf0dd91b96ee5056","impliedFormat":1},{"version":"ffe8c50a97e93027b923d4f4695edb8b77cd54c9480e43a1fafc2a83f81a17af","impliedFormat":1},{"version":"ae853fd596e71ea91f85542e63cb8469073af02d145b0da6a6f0905ec327d358","impliedFormat":1},{"version":"0770431c9cce252c60beab0daddc5b8f52643d8d779836f7e2a1ea061c791879","impliedFormat":1},{"version":"e3b61baa3f81c3221cfb8b4a7f6b8bd08584eef5e24fc14985acbc5e42ecd79c","impliedFormat":1},{"version":"a827f37b90d947f7ccc746034073d548cb6b29b582b25b31a49973da5ebb55ce","impliedFormat":1},{"version":"46ce94a7115d432efe8c9207739e3f780d7f80f4abe30f349f0f715ec6428692","impliedFormat":1},{"version":"5f9f3f7f40c307deeff1f82eaaf5e1a17f1c5457500ac8e39307404fe26aba86","impliedFormat":1},{"version":"09a36db8a78e8e66dc874338200849636f82f62e359c599e5e4bb24f4b9f22b8","impliedFormat":1},{"version":"2dec7873d5d1a128fd22b66d1fbcb8085ee0d8028126ed693999df82e134bd6a","impliedFormat":1},{"version":"e62cee446524622a0942b66b5ed27cc05ec389899772864d145c9d350ff7a0d5","impliedFormat":1},{"version":"620b72dff95c135c35e3ce8a3ae76b07d58165fc052b02725fdfba691b0bc4d7","impliedFormat":1},{"version":"b3005ba6325fd5f960c11a26d23f6066ce4e291527afd1a4d446853e9aa9cd17","impliedFormat":1},{"version":"452c13b56b5ffcd295985afc3146e3e874368c506a195f0bd7938bb783d5c9f1","impliedFormat":1},{"version":"f14a9716f06b83f9ec6731749378dd6b04e3e7844e2976d4dae15c6c8afe91f8","impliedFormat":1},{"version":"07009b6f90d6ccb17a88560c441bc7830c355933caaff9bb4c405afd76362410","impliedFormat":1},{"version":"df33402503c1d9803adc338035516825d9aecd3698102f033f67cf17649990f2","impliedFormat":1},{"version":"058aa6ddf4f241687a68259178e8ab97a52efd93972beb7a4f716fd292ce0809","impliedFormat":1},{"version":"1234e09c6252a4a720516b5a7afebae3227e088f638bfb87b30aabc583ec4642","impliedFormat":1},{"version":"84791183a253d339bcaa24a0491cc2d64ab3377aa66fd24abf944e538c020c51","impliedFormat":1},{"version":"6277c3025ca713736ad0ea4426f8737d6927fe08c7fe700e8ccbe7be4afbb1e4","impliedFormat":1},{"version":"15a61c6bc3f32eb32bf2708cf58ba698d1e8a85a90ae26a259b9d6d626ac3a85","impliedFormat":1},{"version":"d04b5364ea9b58d4c2ddcf6c8acd45437dfbcd1e39389c7af26eaf758845a958","impliedFormat":1},{"version":"ca98fb6ae0232adab967ffda4dd229b36e5816fce48add5d5b709c1876064438","impliedFormat":1},{"version":"f79bb3dbae1185900fb22f6d2cf7ddde504a219b1d57ababcdc571623afc190d","impliedFormat":1},{"version":"40a2cfbe8bf261117fb6250534e1fa82ebe1c6c9a082f8a73d6453cf9eee12c0","impliedFormat":1},{"version":"c9c5b3ddf558dd6ef2a7c733bf064f4e1925b420d2fbd45e33784ccc395b225b","impliedFormat":1},{"version":"9fb81bf2216500dc2e2c2ca5285b77f13659de9a71e6f4f01169d1eed452af28","impliedFormat":1},{"version":"33deeafcc4594f7d2d2f87a48d9a6a5c4f61d5762013d2de10d0541e2b165eb3","impliedFormat":1},{"version":"02e80a44b77aaa502a6a8d5c685d36e2093a66e348df13be74ae4d3c18df34f6","impliedFormat":1},{"version":"93f3e5e4f516eca16d6780f8da84adb0faecf6018ebe505937286e4b6dbd48c5","impliedFormat":1},{"version":"618c2d0755a3572de12660b42ae5b0535f967bfa11cc0b93890f45676a7801d4","impliedFormat":1},{"version":"2e824ad4eaa93b6e7ffe428589253f6243be70642657dc7ce454defb35b87b59","impliedFormat":1},{"version":"6b7eaa8a827e025d9bc4181ab930e21830eedb8713bf86dd7989f6e043947450","impliedFormat":1},{"version":"ba374c4b2ab2c3f4bd1b6aff1adf8686cd48699e8f4015f253cf038fd2d64ffc","impliedFormat":1},{"version":"b4fbfaa34aacd768965b0135a0c4e7dbaa055a8a4d6ffe7bedf1786d3dc614de","impliedFormat":1},"25a69daf2a470cf88ab3ee75ac9fa99929a147ca78172a7157af5b64785c677a","66886121d687ba36ab07675d0f62d667047b61322fa6c3b2338dfaa14dc79b98",{"version":"f94b15af0cbde5d5297dcd5a2a1ca2b9b404c3d26abe9274d973374fd00ac9f7","affectsGlobalScope":true},{"version":"96d661cc4fa3b12bf80b89eae092f3631da870bcb0b9aae48062b272debfa8b9","impliedFormat":1},{"version":"33920badca0c866c0f4a6c33609b2ebd6fc5a02f8ef26f757be5e728db8c0a04","impliedFormat":1},{"version":"741b9e9ea9cac1ad33bfb6f68160c7d500d1b029ac38981fd89e0ee1d576a4e0","impliedFormat":1},{"version":"df79bba9981a732901c66726aca5134e4cf5ba80a12156fc1eddc119a99ce3e5","impliedFormat":1},{"version":"33c3923482590028a702748cc1d1daf42a65fcc6e328197696fe23a9a0f93d1d","impliedFormat":1},{"version":"5a236f163c1e5aeda28ab6668404da9f7fc6f5631c1428804057880ac099b579","impliedFormat":1},{"version":"d2f1b9c92eee79f2fb46bed558dd2c3c51306c3a864b472908ed6d4a2920753f","impliedFormat":1},{"version":"8315e95ab6965118f0b85f20a9fe4ca5ab47ed7455eedf73ab5265517ba0731e","impliedFormat":99},{"version":"757dfd5f2f9346eab2d0ab4fcf9d3c00b10e4387b1e7cb681d1e5a53f2fde14f","impliedFormat":99},{"version":"9543f7ff8a3dd649304fc2d3942a9ae1a106ac81700df7353fea4e9f15be0efe","impliedFormat":99},"2feafa0630bf9c8c4933c39aa08888fe90c8f0c55b03c55b82c983dc5ccb944e",{"version":"ce204b35155aba46f9365e408abc48d903c8624c46fa9c6774a75ed04f0cebeb","impliedFormat":99},{"version":"2fc9c7c6695b151ffd3ed667d6d793c2f656461978e840eff1d1350fc0bb1ebb","impliedFormat":99},{"version":"4d590f0e0b4abaf693f94d08b5c414928f2571aea5ac6efb97e4646e195dac48","impliedFormat":99},{"version":"bf1655c135bd654637f98f934f9a9eb4d6450194ca2f4968b79263608da59fdd","impliedFormat":99},{"version":"1ebe079cc9ed9ec4cd11d02c70f209caf16e9dd8e1e801a36648ce711bb3c404","impliedFormat":99},{"version":"b3fbfe08fd74b7dadda7ede285cfeedd07db2428725d16666fb24ff1c5d08d99","impliedFormat":99},{"version":"c465804e58f429ab621043025e381dc028d14446e68c557c558e7153d4a59054","impliedFormat":99},{"version":"c5acf9061cb86da7716d98e12d6e96e2e356641eb0a21b33165653fb2cd6680f","impliedFormat":99},{"version":"ebd02963d7c47cf26f254068e7ad81858433e51e0e5c4ffd7b3b2f6fd0bce17a","impliedFormat":99},{"version":"3a648a8b64b69923c0930df4fa3b390dfa9d61ac0d17cfca55a29d6703db1b42","impliedFormat":99},{"version":"55bb540169182762bc332474d3547675dc00627e00a491b80b01dbc6c9e018fa","impliedFormat":99},{"version":"0f11987bd734a55e04f7ee8376a8f5be9374d887b67a670d076c6a5cc7211226","impliedFormat":99},{"version":"45a02ead1994cac3ac844522b01d603c5c36289259488b794e616f1655ecb7db","impliedFormat":99},{"version":"4dc4c3eca0a15be5bafa5ac220d839188097dfcfb44951221459b9b11e733352","impliedFormat":99},{"version":"db367fd2faba92ed81ca1cb947d94d7bf104dc55caf18c44d2a2b6ac1b1dfafd","impliedFormat":99},{"version":"c18b9de619509cb2e83fb6db359d017de6cb5e9fe2838aed5361623ea44ef56a","impliedFormat":99},{"version":"e0ad85268102b4d552b53de0f93f8d27dc52cebe2ee6ca3f3f4cb88131c6a3a3","impliedFormat":99},{"version":"f6f03c94d64776248cad31d4503b9a5ee102bb1ce99b830a5a74c908927d2459","impliedFormat":99},{"version":"9ba212cc8d5f5e0bbbcdc8b31c1969dcace0d4bb0dc1dbbe14a288617d68a6db","impliedFormat":99},{"version":"d4b914632888f47bee35d94706dce53e9c35481d38a560180779469f4ee9159e","impliedFormat":99},{"version":"c19d8eb43817185ce1210471e1b59269112f6c25fc63fb455fba7b6c74a25bfe","impliedFormat":99},{"version":"a1c67ed6b95884898b1b6bf7ddc0d6f7236de11836d2d3ba57d12f97ffbd571d","impliedFormat":99},{"version":"a3d150bd1c3c1f43d3b389f148fc224aa5bd372d0f513d2b379099acc7c08551","impliedFormat":99},{"version":"c22d27ef7cee80270300b6b36af51cd3e3a57b4df569349721036a1738de525e","impliedFormat":99},{"version":"3c1744f5cfe172914996a588a4a791221868be5f21419473b870cb67681eb787","impliedFormat":99},{"version":"05301dc91249ca23b960eaf3e5efcd7aa99d493807cc18ddd955a4d0fe113f5c","impliedFormat":99},{"version":"fa473ebc4a55939b20e229501fd9d3aac5f578e4779f0f8f6a6306c848e1632a","impliedFormat":99},{"version":"e7a6ee2d07d956992ee90bf2d4055ca3a15342ba05cc5b7e2e7fd15f69cbfe61","impliedFormat":99},{"version":"487b0dbdebde79164f7b2ea782788737a4252b9040781db6c3a9722e2bb9ecc8","impliedFormat":99},{"version":"b71bbca9b845474bcd410aa47ef73dc14f55384e614e1558d588809f3413374e","impliedFormat":99},{"version":"fd31c7e0d6921e9a919e419404c50b1cfc257f10dab2b2b0f191738aa67dc674","impliedFormat":99},{"version":"b67227c32b487f6d4f76b6cfecfef75034390d2b14aed5ee33d1f01b2ac584df","impliedFormat":99},{"version":"663eb800efde225856c1e789ba85b6ec6603e12028473670221333c2c7f3bbb8","impliedFormat":99},{"version":"3936a5aaeb9d200a9b00225d230881437d29002a9b6e9719b4f782a44e215150","impliedFormat":99},{"version":"3fc35b978a159e75f36c8b9f5ae51c95de011eac0a994befd85a03972e06906f","impliedFormat":99},{"version":"fcbc330594ee211b8e7eb56f4ec59175ab239288ecc7749634e665dee33ca181","impliedFormat":99},{"version":"fd1a6d390ef510226ddf46350854d278a53738921cbb9e4de78bf7b6105df48d","impliedFormat":99},{"version":"fff0a5e5aee54af6c47b7c1acf0799fb3c55686ca5d589be31ef179e9d7302b6","impliedFormat":99},{"version":"53c89482e50d4edcb80e217cf20d9126c6a595bc204ee834131d372895160018","impliedFormat":99},{"version":"7322a3401773f0c9fa87c7ef2ee13e0c660a5a926507ae8aca263bb3f4b2334e","impliedFormat":99},{"version":"a513595cad81255731831101bd714d77c3c7fadb3d5ebf1829d77fe025124b77","impliedFormat":99},{"version":"4ee05c416af71157410043a44a0803671e03c8bfca346d6f832ea047334b1cb6","impliedFormat":99},{"version":"1e74e54ccc165f3ddbe5460e2c6cc6c8aa2d3145a094d1b67c237303f61bb022","impliedFormat":99},{"version":"c940f913dc8325a06b5abdaaa3a10651aeb6af99ccf2dd91cae6c3729fef8f81","impliedFormat":99},{"version":"5743905ac2de3204bcd9768fdeaec993fed8291bde54094ddabfa7f28573936d","impliedFormat":99},{"version":"643700414df81efee3059191cc2759c29623ff95f462190a0e4a6afe2c1640eb","impliedFormat":99},{"version":"707669372976b9a569b6ac40c5aafd61b6f9d03c12f60c06cfad234c73d18369","impliedFormat":99},{"version":"20640c93feb6d5f926e147456f6d19bcf3648d52d17ed1d62bd11cdee59761ca","impliedFormat":99},{"version":"3fd14efbc5a75b0a0ca5d581549b796f6e19b50d40a0ad4f67205fcb19274ee6","impliedFormat":99},{"version":"c65d7fae88667583386f30789ef1a77041df5a210f73338c34125a1bd4d98f7e","impliedFormat":99},{"version":"ea88eb7247f90f0de73f3617a700625fc1b8c037ff03f4665534b978f3c3fd01","impliedFormat":99},{"version":"d6cb4d8b3499d80fb3d17e1911c6290928ef5a4d1a7751bca143bbef441012d9","impliedFormat":99},{"version":"b2ec10940611f3311aa42fce3bb65d3476b4eb48a00e9a93d1f85b6989c79500","impliedFormat":99},{"version":"90afc0e0333be68a5fc2ceaabc31d1772836f38011259206dcb73a13c13211f8","impliedFormat":99},{"version":"d6513ddef6323a64583ee62ed1a8c9f2dd0ddb755772702181d0855c521e41ac","impliedFormat":99},{"version":"70efc2aa2b0bad5614d70c4697e7c4efb954e868d92c4d750b009c75758ecc07","impliedFormat":99},{"version":"2f8b2550af2d98da27a168baac999bb025cc3e916711b34b03bde2cce68e9be9","impliedFormat":99},{"version":"4cbf4d996793d757ff712ae7bd96b1227a09fb95fac447090d9cce63e0eb9460","impliedFormat":99},{"version":"8cbe9368fca284e894250d336b795a83c64397b574c249d25efe40ba657db8b8","impliedFormat":99},{"version":"8bc221401fa34951834e20c7c8dc8f659e68cf368d7ec7d078b9ecebb5a9c35a","impliedFormat":99},{"version":"cbaa48aef231497ab562060d3742707984c43a9d0e2ee28da7abb2efe4a0b392","impliedFormat":99},{"version":"e1951d09be373ebc5370c0eff4af4a86e841251df119e6727e97e7ca714fc6ff","impliedFormat":99},{"version":"fb50f6ddb8016518940b3f8702562acfda9726ca4221c71a2ccbabaa96fcfcc3","impliedFormat":99},{"version":"9c70dde5822201db2c3f208eb8d95f463caa103d211b49399569dfcd0f394a92","impliedFormat":99},{"version":"b345d1cb103363741f885729eb562931b5bffb63d06acd6cf634212ea945cb9e","impliedFormat":99},{"version":"deab327003debcefe7668fa28d2373b5a3c40b258f7948496b57ced275bb3eb3","impliedFormat":99},{"version":"fca8f9bf4b3544e8f293725684ae0a982e234504ce08b5dd4a477e06c3c792c5","impliedFormat":99},{"version":"5d17ad04870e5304037f31da3cc752da331e2b70ce333fb3c14a8884709a95b3","impliedFormat":99},{"version":"a619f8d47568e0b881c2ba50d75659df8bb90f88b5b551fef75f75f72ba6d060","impliedFormat":99},{"version":"0b4ba5551e44d84fd641b8f06eb3df38aa343d2c23a1358ad1b61f001764bf5f","impliedFormat":99},{"version":"0d75677f2e01e829154f73b93af966b3437b2d9565d10fc4eb03175bdb988cb7","impliedFormat":99},{"version":"b0d05cca4f77e7b8c4d3ae29e4a4d6ccc538c4f2a1926327d6664770a9c6dd39","impliedFormat":99},{"version":"2f7c95858885b15628d20c06d1b41d2b91b6b4cd3dfc8e1389a1446420e6a74b","impliedFormat":99},{"version":"554d3bf9c7d62e5a1115417f927ee1bf129de36e2415d4bbecb94eca32764d73","impliedFormat":99},{"version":"00dd58e1e52bdfd6c0b9d4dd3756014bbb02d1c3fb377d92a70a19893e1f33cd","impliedFormat":99},{"version":"ce18553ba933ecb462b568debdce82c1831ea3034d2eca87d691c75d97a84608","impliedFormat":99},{"version":"802cf71c93b8a331e1a9929a079d5c61eaa4e847abae4b0d386ffd77a6927aa0","impliedFormat":99},{"version":"0f29ca6f17d73ce1f49b2e717ccbf0860982a0f92f3ee0fed9746f89929a2e95","impliedFormat":99},{"version":"81c34634970f44866adca064a5a00e16bcad7bb6cb4a20f71403ca9909b5eccf","impliedFormat":99},{"version":"aaf2c6a7eb583c145f1bd2491cced2654160785a4ba146dd57bb3ad8d1ad756c","impliedFormat":99},{"version":"d87ec7aa05c123631c191966e218deb6514b7658d582ba08c0892b3e0a42ae9f","impliedFormat":99},{"version":"786472a3998767cd537f73515de1ea9ee1b98b1eb2884c06bf2afd63802cb750","impliedFormat":99},{"version":"88779dc6d2d69b984969c2ac9450b512f8b4c54beae5bd51025b3e7b3909145c","impliedFormat":99},{"version":"a3a613da8d5a5b13af698d39b09fff499efdb0e8f536ab242e84c13370e3fce2","impliedFormat":99},{"version":"e161d627db35259f52c3eea227dab5483e0de833299fd7bc61823071927cda60","impliedFormat":99},{"version":"28bc3fcb29fa8cde6a00c470ff8d0a555b6a7e8968ac19cff3c9c07b53066c0a","impliedFormat":99},{"version":"0ab06534ed1471f55971306ebd9151f2843d39e926f182773edc44afae2b3035","impliedFormat":99},{"version":"17e3178d17edec81153b214b3b8b1167c8951130100919a709d8157a117a12b6","impliedFormat":99},{"version":"fcae6e433560aca81cdbcc48a1503eb99bd8d1cb76e34e777817e8931cafe2ee","impliedFormat":99},{"version":"50058d1fef5e1fd40d9923b3e932d7720744e5e85e100d853bbe2484a991f6c0","impliedFormat":99},{"version":"aeb6835b950ddfd91e84787c26dd0f44668180c8d14f657614c67c93204568f0","impliedFormat":99},{"version":"23aefc6c178f0e19494c2eeba7416669c3ecf082db14ee80a5a22ca6bd8d5709","impliedFormat":99},{"version":"4be799bfee1766047c11b3b5d371ca9e3993526d50c3e276e7cdb3943dd680a6","impliedFormat":99},{"version":"b2232321aea33213cda3b2ddbfb7332bc1d79ef37379186b6e216cef677f2287","impliedFormat":99},{"version":"3e57fd3a8f13addca1c32a9a792e63d21baa4fcf706d23930f01ea312afacb04","impliedFormat":99},{"version":"38e61720edb6523a2ff0c62d2b06160d9b1c5916f8b04d3bf31e93f370fd5a29","impliedFormat":99},{"version":"5d6ef65ccf14b0d51af503adffccdbaa846848cf0fe82310816cf82eb364d107","impliedFormat":99},{"version":"33fc357cfccc15d0c5829af2cadedb500063f1d28a917908d4a19ba87f76946e","impliedFormat":99},{"version":"5294085fe8259915fe56a66674d18cfcda5a5a4455b341060afdaa5aa640d1e7","impliedFormat":99},{"version":"456bf57ef493ec750b79ffe7849813631db7b60827f36786cb672049a131d376","impliedFormat":99},{"version":"5f94250b6f8f598b1c42e624702098872b3afdf2ae6e391a02be7c0549aa64e7","impliedFormat":99},{"version":"85350eea2d43e710d64a9aeac650cc34b24d93f11ccb098df376da99556424f2","impliedFormat":99},{"version":"a40a75b4d4010077a911591554902897e1dd013f8a85225b6037a62f7056d437","impliedFormat":99},{"version":"ee8e06eaf1522a5e00fbfaa6473fea44dd74afd6f4e95f9da1a89af671aa2918","impliedFormat":99},{"version":"1891f3abf3fa8907221cb2ef567f11f1a39ab3ac0318d48c80db6c54d007e969","impliedFormat":99},{"version":"9e22adacca7d1de31f486abe4cbce49203c103d4530700a5c6f632f1c51f03eb","impliedFormat":99},{"version":"84b450f992fbbf825e6523f07d6464c944e79aa2e67ece8888814416143f3400","impliedFormat":99},{"version":"d2f3adf5a2ddd461ff09e5562c9ed403245e905e86b5287b0d0578b9d48bfa44","impliedFormat":99},{"version":"995564ce50215678ed1a073b9eb63b5243c3b67e4edf44df299ccc0a8374cbe2","impliedFormat":99},{"version":"dcdf9db983566c2bb9fa49641bc001a72a07a3df1546d6a1bf24497b44340fd7","impliedFormat":99},{"version":"6c29c48758edb3c45cb92e892bb6d91a43477b5b940dc3aaf38c5f503b379bbd","impliedFormat":99},{"version":"5515019e3a6ebbd431a945b6a43f31d139ae4b93e0a5ae91a915e02caef1832c","impliedFormat":99},{"version":"eb0ca7737f9fbc78b265201c1ac5fb93a26a0a0c457501f23097607318da6251","impliedFormat":99},{"version":"9f054267c51ac465965d91c20fd5057fd36cea9bd4656d514f4bebcade9c911a","impliedFormat":99},{"version":"1bdd8abd4ef45e3b5e3a66826d937843ce43a2022fe245e33a96597d716255b1","impliedFormat":99},{"version":"75c4008fe916b067ee4ddef78222d33024327da376289e9cbb100f356e117a03","impliedFormat":99},{"version":"85ad7a1017cff3848472528d792291038ebaf44b049a3afcaf0db612fa1b23a0","impliedFormat":99},{"version":"c02cd1d63db6f81f665fa888a1fed6a2eb0f64ad2ee69be0ee4392b7ca9028a2","impliedFormat":99},{"version":"9096832f382f5b5cb27ba00faa8c231d562623db74fc4025b0aba6bd233b8818","impliedFormat":99},{"version":"22b54bbe3779cb65ac35e420f96ec152a90be7a785b80ef9fa499d73b1ec58f1","impliedFormat":99},{"version":"f8cd953b8a2b4dcf46d86af66f7d3f2b6a9a1ec8e10db4195d54d6f910695155","impliedFormat":99},{"version":"5fee9904e02e1475a281704b9afe8fc962e40084df5dffff4b4395dc7d552da2","impliedFormat":99},{"version":"6eb37fa34b083320aaa52e69114c2172782e42c5f157f620aa0b06eca1c1965e","impliedFormat":99},{"version":"f29d44cfd07de9939378795273c4232c8430a950ffdfac7010438b03577477e6","impliedFormat":99},{"version":"228e796062abd583bd87436562070d78425a0166aeac16b63459983b02acedb3","impliedFormat":99},{"version":"f5c623592de0fe3277e4195f52950c8d1f81e920d9be54682f609573b5503ba6","impliedFormat":99},{"version":"e7e299902501e75b2d7eb842d7fef27c3bfa14aa967e5b05456be2393486cde0","impliedFormat":99},{"version":"22ad4f64a29216936a641bc51587ad5c4d2e843643091ebea4f9d0a472b8692c","impliedFormat":99},{"version":"0661abac34d843381137240cdd238d481637f5023ad952046b24a627c256194c","impliedFormat":99},{"version":"0cf60f5f3c66ac7b22d1e4a685c0b513328688886cb879394089f42f993e43a5","impliedFormat":99},{"version":"6027b329dbfdf47dbcd105db7487cf835a3f73a1c8adbc59bfdc4ebdc31137e7","impliedFormat":99},{"version":"d400fd6302282d8f6d09af93200500669c4d3d42600b23b71ba706746413d49b","impliedFormat":99},{"version":"8887205714f61e6586adf32374134738e460b4d8cfe03d513a38999913862daf","impliedFormat":99},{"version":"e1e593588e6cf59347c7a20017b214ac4b00562f6a2ec8e5c609e0ae965075f6","impliedFormat":99},{"version":"276367f57e2b9e574e1ca1a48eb22072a60d906295c96bd7aeafad5fc3d08b77","impliedFormat":99},{"version":"31d4161e79a2eeecae8e3f859da4d3d9afb1e6f3dfe1dc66380450a54c97528f","impliedFormat":99},{"version":"daf8a97bad1755e977235196005545caf9e230413fbe0f5ce1ef360a350633d7","impliedFormat":99},{"version":"1494274584ccf5a2af0572f0c3107739ed59b15aa96990db50fd8116eb4b3ccd","impliedFormat":99},{"version":"05c6f60cfa77f8fdd202678ab3641f63baa1f23e02126bca681c6f6c4737dfc7","impliedFormat":99},{"version":"47ca66d531a64ef8b93cb07b1f3d47ecb5ead404ec6535307c58bb4aabda57e9","impliedFormat":99},{"version":"e2e481d414e3944aff2c0520edf91357971c15c34d15aaa20459a5b4aabebcbe","impliedFormat":99},{"version":"790bef520dfac9dd348fe22c53568f048c6cb3ce21a8e3f046d01e8c0a66a943","impliedFormat":99},{"version":"f201350305673baab74b8917bf96149b3322d9806c683d510267d9a139b44900","impliedFormat":99},{"version":"d1893af3d12efecdb31c4062a82a92ce789e4d34aeb2a218c301c2c486d4fc78","impliedFormat":99},{"version":"25822bc7f060daf4c5f2e5fa075b2caf7f8bdedcbbab000269a97ff45f974745","impliedFormat":99},{"version":"da9e88283164077cae7301cdbb258966dde1d8a67e6af6b05c7a18349dde6321","impliedFormat":99},{"version":"e3f384585923f83d37a4ef1b75d1642632349c27e8f629acf23ea835877ddef3","impliedFormat":99},{"version":"f97686570034aac05b2a6bec073daf81743561d2b5fdd7eba5a0d38b4f1f7be1","impliedFormat":99},{"version":"3bb5c33e46d256998d12908375054dad7d82c6ccb866fd9e0fef3dac96acc402","impliedFormat":99},{"version":"031ccb4c80f52d095127aa2a7be8998a1bfde9294edcab03e4febb741265d8a6","impliedFormat":99},{"version":"77bdf606434a7182de2ae5fe635523a95eccaf0c144f91df95e102a7c46c97a2","impliedFormat":99},{"version":"8d95114eac22e8ef4f8665a186d6608b55206f8d34a426c980dc9d2cd18b1e0d","impliedFormat":99},{"version":"17387caf3ce28d2233568b3d3aef3f8b1519693f40adcc5cec950c700d928390","impliedFormat":99},{"version":"406ece1b33fa9bd5cd7359477ee0492fc88faa7834379ae59e220271fa0fd9fc","impliedFormat":99},{"version":"24d011a27c8077bb60458105aeb30349786399dca6cea392a70db25068f54327","impliedFormat":99},{"version":"465e84b9e824d62c531c6003c66f1bc73ba508bf60aa5c9797e2e3a4ec7a108b","impliedFormat":99},{"version":"156d4e8169fa27ddebf8c26b1158180fce5fca563216c8c16bdc2c5db663296e","impliedFormat":99},{"version":"123f42d2725b338dc92c55fe8f65730af1b29fd6f63685509e057835bb83517e","impliedFormat":99},{"version":"ceff24a8c06a2b16792aae8426b706018c4234e8504acf1cbba8ee6b79390161","impliedFormat":99},{"version":"1cce3949d58c46bc0764c89482a0be2b58d0b2a94a15e3147c88e73359658a40","impliedFormat":99},{"version":"7322c128662ae51bafb78bfa85a03e3da779b52e72d164c1bf22cdc65236270c","impliedFormat":99},{"version":"9a40c1020a86217fb3131a564315af933ce48aa1ef9264545bb1a2b410adb15c","impliedFormat":99},{"version":"a01d2fff3266ca29b8df1cf7c223adf804aaa2ce8735b9f261574825261e8c1e","impliedFormat":99},{"version":"922d235d0784fdc0437ae8c038372fabb0b874486b65a47774fa34bda34dff3b","impliedFormat":99},{"version":"dc5aff116a7790b183c5f09e94f83a7c7e608c6085e6ad75b1629a83f5fc6c36","impliedFormat":99},{"version":"f783860596115cc16bce1e54c45a5f26f353a7dc8067271918e748448c168bc0","impliedFormat":99},{"version":"484b9305a7ff05e1028722f4a992db637cb6e31197490763deae399b36849d3e","impliedFormat":99},{"version":"ad0d9cecb6cf3ca943759fb015f684b455700272602349bc9754efdd5c73b2ae","impliedFormat":99},{"version":"4b75bbb5000a38175a6e728aaab07b10dda25c887c10f22c036261cba87471d2","impliedFormat":99},{"version":"653c70ed4316ca8b3bce79ef9adf800ab737ba8b3631739d5a93224662b5f0ab","impliedFormat":99},{"version":"daf0673602c9217ac44106c295b579681811096ec2fa57a3fcd4d6470eaac8b8","impliedFormat":99},{"version":"7d28f874573461de6f2edef652d689deee9dee86e02397cdbe2556dba600bac1","impliedFormat":99},{"version":"e3a20ae5a66bec485856ac56217c3656b7a7d14667796dfe0ca45b452f975475","impliedFormat":99},{"version":"7274dfc7369c4ea8f951d02346cffde1b0a20d0e47faa36306813b3081baea69","impliedFormat":99},{"version":"c3abd4d6b89e3ba4b388a9eb9f5ebc83355c81cf39eb12a48660fa196c3c2236","impliedFormat":99},{"version":"15ebfa1212ee1352194493f0bc09d09a1bfd9f5d58f49bd39bac28352c7a317b","impliedFormat":99},{"version":"1434c811267c045eed8ae5529e33404614d76ccd57bf8c175bbc5e3bb6b53302","impliedFormat":99},{"version":"3b2ac31bb38b7b625e5c5a69834dfe310248fb42edd297ca682de50d44555b1b","impliedFormat":99},{"version":"735331968e5f9c95e860641150eee5cd76e3f4d32d91d308fd31ba96bcecc49f","impliedFormat":99},{"version":"8d9cc59fd1a17ad25f44ea8e092b4385cc35ed3f5a6ddc5b8cbf1aff4f472504","impliedFormat":99},{"version":"1b018076fa6fd5c226a2567c5369e40dac0366e5aa6145e203f0749ff87747fb","impliedFormat":99},{"version":"decb9009e3ba094f7da1a969f658e4787ee5222657650771c2e805df47c2ab0c","impliedFormat":99},{"version":"c89aa2a07bb87e1476e981fcd27a88f51b2e8e972c3e539a0fc1448fd023498a","impliedFormat":99},{"version":"42af42fc4d1c2d9a00d19e71b7d4c2d7daf2e0366291a850ac15e1961c21ac36","impliedFormat":99},{"version":"a12015aa7e1f6093110916cdcc658c14cec7e8d16cf6cc0759fd0730f203d909","impliedFormat":99},{"version":"65e47bc8d076093498feba0294912692a32bcfbda2f7a4a52632d8366b66064c","impliedFormat":99},{"version":"4a2961d4a84e09c94a69e26eb58fbc4f28932a016e92a61ffa1276b9a5a0ae43","impliedFormat":99},{"version":"9f426146ac63e39c94070acdaae9a85c3fa7ea12de82848b6b319f34d9df4d45","impliedFormat":99},{"version":"fa0039a64b904b19f7938423b93e0fba751a4d31a23c4144f44b30167538de25","impliedFormat":99},{"version":"3917fde9ed0a3f904724e331f69b2eefd99f80a9a4f721c7bd41ac7c52ec424f","impliedFormat":99},{"version":"08766d8cfdaae6e2e96009fb939c8f0bb457b70ddefc24373d0e022f94dcb210","impliedFormat":99},{"version":"4033b35f38b85606d366e29401cd63bb44b11c631fbe530e7cb6dea285dbce1e","impliedFormat":99},{"version":"6fca4a007c11a2cb5cfe738643b21c59127d45d8ac3356c1fcce8d2ea5c9b2ed","impliedFormat":99},{"version":"53c5c0ad9ed0605c92add7c41b57b99dce5cdabbf7ca05748d5555883d6dd486","impliedFormat":99},{"version":"5a13364736cf0eee277e0ea30431627ad754b51c96b95da0e5cae0155ba48d6d","impliedFormat":99},{"version":"b7e920c3467c6146140f4b95c402aef269731c2ba92299efe2eec22dcc71f30b","impliedFormat":99},{"version":"adb4426a3053d8d0f06b034134b939a2ebad9a29a07c595b9c70c736e4a52911","impliedFormat":99},{"version":"945740c51603a9a460909d8a5a6e32463a5c0cc2aa09ee7b928f2d72b6090734","impliedFormat":99},{"version":"38638b101ac74c16d0f70b88c25844762d17bdda307d55aa46215f13fe00ac2d","impliedFormat":99},{"version":"eb066db25a443a8d5f333a9e4f4bcdd04d6ea3762c9797532ab1be45862003b3","impliedFormat":99},{"version":"e7c940ea5bcfe1616f567f6a505b4b6fe5caef9e34d26988ef0a1fb40a3abbe1","impliedFormat":99},{"version":"2ef6dc247554af42f4a3e3c8e21742cae4599fa05f59a9c2504e982f508adbbc","impliedFormat":99},{"version":"189bf753c5e1e03fbefee8c915f5bd48806183a329c443e1e95c6268c779f171","impliedFormat":99},{"version":"a5f9db2098ba650880bceb00aa750bbecfab946264f0fac87d185e80b4c307a3","impliedFormat":99},{"version":"4232ec8f460c0485c081f91381162bbdff18fe2de916770a4e946ce12388b4d1","impliedFormat":99},{"version":"49d3dacad2aa3680975ed967177cd45a49e0aa39811686269014941fd28356c8","impliedFormat":99},{"version":"161652af6fa3a0b2fc2bcfecfe88927f8f7f0dfd753d7166fb5f8f76d1c3575e","impliedFormat":99},{"version":"2c94d2217244dd31275ca5e404560c5c2105b5f06f8985d0f039f39caa1e9e30","impliedFormat":99},{"version":"9c88b05bdfe9898787a8776baaacc92b0499b0083905032bd9f3615a3135c26f","impliedFormat":99},{"version":"f0d37dc88ab8c863d39af6a97f57f857d10b13e0844ea34ddd5881cf90e933f7","impliedFormat":99},{"version":"507029db6003a8e49680a599deb3898856d23b218c69900d2bba4083c1a34a97","impliedFormat":99},{"version":"7eda1f0806110518d3f03d78f93925af494ac263872eea3a85a5bfebd2b48bcb","impliedFormat":99},{"version":"9d72e652abce6361d6256118706b6e58a5d4a69c10c3b492b3d1652282cfc6a4","impliedFormat":99},{"version":"afab761b301923855eb2a1849d23fe9d1dfee534fd986f6c227ed520d02a2d59","impliedFormat":99},{"version":"6da7497c314303f19ba36082297c9347ac524e7e9789714f688893fc786f4f9e","impliedFormat":99},{"version":"232bc0ccf031ebf6c8b800ec0ca161bebd59525f599a87eb9a06e00e83357b71","impliedFormat":99},{"version":"e20a390b32ff2428314c43c37b7c5b74203d4df190ba4dca78e8e583a4b1730d","impliedFormat":99},{"version":"6ec56e1d3822c311b013f38145ceee9d3f52e384f63b1cad502c7b1000582297","impliedFormat":99},{"version":"f037ed5250876c6be9ed862687f133a35242b367681db9147f03dd7de2fef358","impliedFormat":99},{"version":"09eeab65aa4dea908f57c2a0c74f782588c5e5699ef45c534c6f9297a629fcd5","impliedFormat":99},{"version":"e06d432a94dc47f95de8488b0b4bdde54b888b1b0632eb946d7b112fa5c14eac","impliedFormat":99},{"version":"5a49571bb0a0f9e06b610eaa2dd7ea867ef1b20bba1b9c36725639203145509d","impliedFormat":99},{"version":"13a9ab480675d24f21b3a3d3a4e7f659d988d84fe5f29e30ac4da1a2738e36de","impliedFormat":99},{"version":"25fffceb7ab08fc16c79698abfef8ddb89e5b00c6df45e45f9b55af99ed839f6","impliedFormat":99},{"version":"e61ccfac1b24d6feede2dd2afba891e6b288830ae71102459496f22560fcc004","impliedFormat":99},{"version":"a36dd0ef2be08622b042f3f450fefbdddc24bb10791949c5c5d71976a17a26a2","impliedFormat":99},{"version":"56cadc658182ee85d96ac84a5d31139eae2545aaf62cd1effaf0db5aa6b70e05","impliedFormat":99},{"version":"e48ff4b89eb69807c5e51a5fbc75ffc81db54807f5357b90b59ebffc0b9415e0","impliedFormat":99},{"version":"ef813791bab87fdd5d746a49a9376520517e74963b036952457f3cee55719e6f","impliedFormat":99},{"version":"07723b68de12b6d9e7071c6413e36b73287a9b747eb0ac7d5e1065d066d9649b","impliedFormat":99},{"version":"e6a704fbc2b60d8d203d49e2f2caecafffb77e363c38d255c38e229b8e22946a","impliedFormat":99},{"version":"b243a9f1986ad2a517d0fa5986ac8a4603e08a8d13995b87306caa279d1d50fe","impliedFormat":99},{"version":"06690b396726acb3836e76d185029247ceb052c61c9c7494f4a16b6ca5797a85","impliedFormat":99},{"version":"44f7b257d1c0d16e58bfb2591b9683660cf8e8fde67e182b3b05452fa99d2f10","impliedFormat":99},{"version":"67059e2f63687cceeda138077ee88b48f497557d5b9799d4b1816a77947ac864","impliedFormat":99},{"version":"6aa1382bb761d5b585a03df5d432149dfe4fa0012aa5edc99d54c52babe6801a","impliedFormat":99},{"version":"e9214291673a507e06de72638d08cb77a5a83946ff371fe3118231fd14b66148","impliedFormat":99},{"version":"6afd93aec340602a842a3fd846432339eed3581ee1328e65dc9ddf04967681d0","impliedFormat":99},{"version":"9f2f5761674a589f162e7b6f2494c4c50f6867a3de50dd3d395fecb9425f39a1","impliedFormat":99},"ce3c7c3ba150faae7db46761a76bfaa8b9db00f6855d27f77e939ff9c716fe8f",{"version":"ca72f9c28f15b1a5c23a7ddb567852ceb99f608228234e50c127ed3cd0d973b8","impliedFormat":99},"ae1fa7a9df22ff9adffeefe6e0f4b5ba10d3d1f7d4ca776895a66e2ad3e21efe","4ee1d290abbf1f0217d8095a7d5b03fde59d033ed6cd2144f44d00d4be253802","9429655b9453f05980a3b91ef39f6441cb0ef6a78b3f3e354acddfc123036e77","31d0ab74de1fd9fce21839c6c876787ead786d1a203d1c189eea4de6ce090eac","06d5d1b2431791f8962535ae80ba5e0c8401a1a144422e82360b1c6ce3f5b549","08b93c76e8434688573127c9bce7c714359870e4b4241b387011b95394ecd9ba","b52b0fcab15c980829f48682c221292eaaef670a1e61ddc476143d77d95c97aa","67962201e53660ba7feb584fa4d28b3bdfe153259085db0df2e4fffb003f638c","96e41fbc195e047eb64ffd020b0591d11128cac60634fac2dff654df8233d552","d436ea703f3c0fbc7df46f76569f563696e11ef4ae2a19513166904d952022e3","96d8c20a4255328f451d66f76ed50165c1bbbd82631b2472bc2e344d5fec976b","19081e8ac7bb0705122ce049f41c969d0c4e7513749238d7d61259d063b14f46","683aaeff15d4f52bbf061ff5f43a839ae6a1243f73ef9d10b73c514f3c362c61","77f249c007a9a71afb86d6116cd1cdbadb4fedcbc315bab407c76e5521ad6a7d","dcc60cf9860afd9c1cab8dde170fd7f98b97341ba788047fa9589a583ed37612","7f233ea8d4aaab3fbd48f9dee7a756c4dd35b0356f6c406d67258e769faea922","ca924cca346a1a3712bdbdaf36afbde25db401968931f273b228a5b67631b068","ae1590b9e7200a4c5c5efc28c73cd47355b87948ecd971024ce528350c6c8369","7095a70ca4999ade02963347448b6f0efe1549cad1ec360211fe48f9339d879c","cf60423dcf0125fe1dab33e267195eda0d2cdf4a94ead2f2a514d7e87c2627f7","3bba8d0ac1c5648a02b0f1ffcc998f613ac4033f00f94704e372f0b6d2d20377","bef54edb931a7c15f5b5d5cac2e5384975dcc319b83622398d1b377ff617508f","294eeb82cbe341a720270c0bb8c928dafce01a5d4dd1effb40393e3ab9e04bc8","8cfe96e5d22240ac7d68d48d8413cb30366c367ae9cd82b41f51f8b83b33915e","65c4a978ecc84db99f2a9fe93d2d83d3781ef14eb511e8726e258c9ac8531060","b1811d886f0a7b6540eb582c160d2abd357821048f8988fd12bbb2fc7c88fe4c","8c0b904cc61cc7dbb3253ca01a346ff472b54902ff1a5c93063ca89f7383c27c","59d9b4fde13f448e6b6a2d9d12562bd73bf295935b467140393b352aeeea8517","629d7f8983182de6063fd561609a6d1480808164861189255f43e4f188397b80","069851e20af736d6710b403bec53fbc3b2cb5cd1adadbcf0b7007376b05b54c1","6dfe821ee1b570f3dcc405e4b14108931b22e135e29819b6cc955e1caaa45933","8cf229172647204252430a1bc4e6a3c09ec88aad5e02e69248d8ff7ae1932ad6","195757555f5b8e4ced13b31f9202e5d005010545753fff6966d54dae57948de3","c02e08b95e6abace2da20e963c1398c6e53791d9d7a364a572578a4636c482f2","58c572bea38ee2468072ff68f7a8a78dea371dbbffa901a2739902a625ce1cb2","d78ee85931b652935e455149c4e9640c28456f942b143ba9520060aa40fe76f6","e7ee93a85bd9ddd1d5c117bbbdbc77df692efd485501ff5bf0b80e0650b479c4","b459e02ec0a2db4c571bc6002bbc8f503333849cf1ed43dd80b704546e75d69a","18cb3635290d0372c38eadb2d4281b80d7980d7785f28845ba9a189651286d4b","ba1c78cb52fa44d22f1343c2965f5db96d56231c35237dacd00c39bfde5f35d0","160654c8a0de36598f781317287fbfbbcc47ceb1d31d00577bf5ad27b4b37c66","5188e534a9f349b4a80d29a19cfe8e9db8875254969632677e7bb52b21c48154",{"version":"ae00023c4fb6d8310666f6f047f455331ded1cd758182decd54d7f3f2bdc7e73","impliedFormat":1},{"version":"1e380bb9f7438543101f54ecd1b5c0b8216eea8d5650e98ec95e4c9aa116cdd5","impliedFormat":1},{"version":"d0b73f1df56fbd242fd78d55b29e1de340548048f19ac104fe2b201dc49529ff","impliedFormat":1},{"version":"287fa50a234cad0b96ebba3713fe57a7115f7b657dc44638fbce57c45ac71397","impliedFormat":1},{"version":"c42852405dff422a8b20dd3a9ada0130237ee9398a783151aa0f73474c246aeb","impliedFormat":1},{"version":"d3260c8d6fb8ab6b92c412c3c0b793dc524dbcc6737300cd4cf22198122479a4","impliedFormat":1},{"version":"f7ebfaa84846f84bd01665f4dd3773ff2b1c38c7992fd1042cd9132bf0afc82d","impliedFormat":1},{"version":"b03829b7141ddbc20c9da5de4f8021ef99b57b169e753d28ba5582d02bc9d5da","impliedFormat":1},{"version":"d1c49ba10ba80d18dc288f021c86c496d5581112ef6e107e9e9c20f746ee7b0a","impliedFormat":1},{"version":"f3c5ea78b54672f9440be1a2ae3f6aeb0184f6a4f641c3cca51949e9cd00a258","impliedFormat":1},{"version":"18c80d84f84c86fe54b60fcd30445c2e4ff24d9a14998bdf28109fb52eb9863c","impliedFormat":1},{"version":"d91e9e625a2903192e9a63361b89330f0d95c340d9bb4602b89f485e9f93cdd6","impliedFormat":1},{"version":"176a47d228081ad51c1d62769b77b064abbeb6827115033cce1cdeb340a8d46c","impliedFormat":1},{"version":"b5eaf1cc561810ebfb369039a6e77a4d0f74bf3162d65421a52fc5b9b5158c2c","impliedFormat":1},{"version":"7d12ec184af986cc2a0fdc97f6c7f5a547ecdd8434856a323ea7ff064e15f858","impliedFormat":1},{"version":"8535298578313ba0f71a41619e193767baec9ccf6d8fad90bc144bcba444307a","impliedFormat":1},{"version":"582c2a0f6644418778de380a059c62fbc13d8a85e78a6b7458b2e83963257870","impliedFormat":1},{"version":"7325d8a375ba3096bc9dca94c681cc8a84dba97730bae3115755ee4f11c9821e","impliedFormat":1},"f1f0173f36a3ddc23d4a09b4b4189bee76b770ea8d9513b46d8810982b27de7e","0d2e135dec04a36281d5bc1a70466d16054e343027a7fccb46d3b738cdab75cd",{"version":"f3815045e126ec1b9d224782805a915ae01876a1c7d1eb9b3e320ffadbd63535","impliedFormat":1},{"version":"d07557f21b2ad690bfe37864aa28090bd7d01c7152b77938d92d97c8419c7144","impliedFormat":1},{"version":"b843ea5227a9873512aa1226b546a7e52ea5e922b89461f8b202a2f2a3f0b013","impliedFormat":1},{"version":"64b4d440f905da272e0568224ef8d62c5cd730755c6d453043f2e606e060ec5a","impliedFormat":1},{"version":"d6b58d955981bc1742501b792f1ab9f4cba0c4611f28dcf1c99376c1c33c9f9c","impliedFormat":1},{"version":"f0b9f6d5db82c3d1679f71b187c4451dbc2875ba734ce416a4804ad47390970a","impliedFormat":1},{"version":"a5c38939c3e22954a7166d80ab931ac6757283737b000f1e6dc924c6f4402b88","impliedFormat":1},{"version":"31a863da9da2a3edec16665695bdbc3134e853195f82dafec58e98c8e1bb3119","impliedFormat":1},"ea6bc17b58d0f6e4b6c479c4bb21993c3ae557a7ce4a33f00954a686ecae31e4","7111027ef7aea1e2dd059569c47bea02e4afcbc72e2d1a7702447ed791e8de22","b3c7ec93ea0e40ed28275e6f301de022cbb2026d4e97fc763f79916f6141f7bb","01d3c2c0583182e8b66a41984e5953ea26a77057755ea0e21a24fa95d6d86271","b278c5bcee3ce4dbd560dc6c50a656a919d3400a8ee7c2cd6eb3460fd0d26739","6c64d45371b5d063456fdce13fbc55f6f053ba298f1976173cf739367a2798e4","1812e8b1a12bc5857e721ffc0d996d6a6fb0c12cf1f4e485bd511a1365085b5d","d3d313d258c1c4cb34d504fa9aeaeebefb3b9985d1e9e0f89cbe3e02a199e2cd","f7bc2f50c841db75dac3696b38fe2151fe9213e067b7c5fdd785ca42e1e99f29","5be3c087190e23af13d156b8ccb70ad29dc5ef36cee58fd28703b15e8b54bac1","4a65d7bb13a94ec2c3c69567fcc059778b0c348530dc42d885034a54ffd20626","f560bc2005a54e0242ce57051cd13bfdcfd9e574607b8c01d798c66933ecf8ed","ff89b56c0a9a93e40373a8ee2a24e51a1793d102156bad8883ab3ce93d5161fe","d8fd0efef2a82107438e9bd01bba0d2fd7c1c436476e73c9d05fc8ea27ff5d1a","e441470cdac825d3f8b6c28999f8693880ff9923b45619beb217aeecb56c0e23","41c0fb8577bc70f165f0273500d328786f52294cc29590d61cb61cd1b72de798","e311c492faceef366dbff60af3b59c1a438bda7943619ca3ee541313c001fd9d","b380c706f9de72bf933a237a1b50befeebca6ea5f534fdfb57c2d6cd1a92d522","2a58801bf8bc12236f3ac135f45926ad40b6242462dbaa799b4e0c90fad82f96","5a4304349625de99341863043e613641838ea8ae641d4a8d1da4f61ba5fdc022","9d7c1fc91a81529bc24dfa082f8e1090ce9e30bed1a418623341cc9dbfda7264","fd3e792cc8996c1704e2679e6984092b395c88867a15441a888399f6bcd69c20","5fe256dda45854c34992b8d5d82a73762a38ee14ee44c2230e09b3046131a1d1","ff5685483e06fd0e22bf16af1a1bb047494c4e5252ffd46d74296eea580685dd","1f1c04a6a43c3d582339961ea2faa03aac0cecae68b6b27fb9b3afcb5745b940","7e7b0f8df715f7e9f4c68a795c2f775d0a060ee0f44e19fefd032f569c8a6e25","f4a33e1a56426a7d7b14926e9d3e0deef9d05a3bba132a6512ee3afdabdb36f1","64511ad1477e4f80c0481a30af4307bf2af8e1d8af5c82b3cb8cd74232b7fd71","df690e1ad297fb02ae0fc26f5384f487990c5089ac6563d12df91da3bb40155c","1283f9e9c63a1c12d7675193ec30e06b4c7e24dc46c58b86cc38ffaee162ec1f","511eee4e40293728b79ced7b44bc87195fa41cba1b0e9c590181e082c7be71a3","05d09693f478a29f372a3b8fa50f90d0c6de3acb044352eeadc2f0597d6d2632","aaec614ebb72dc9fcd69000dfb41280e7ebfeb288a834a8161e04bd99df08099","3632e3be47e6fd799fcfc9983e922e2f8bdd9280d67ff6507ea4df036739cff8","71190a059221e8ebc31bbe01bce94d3469e902ead927c35b349f8b7908e3a7a2","86c59a84c6e53302bb1103be50537e588501845e6b495d029bbb9e3577a17117","15511126c00c2621b98581871f798af551fd09c9e8985f8cb1873deb077c4c5b","22bbaee7f5522608a945b0a79262d61683431c745b907bbbecb0166ca0fab408","03cbe6262fa484aae254ea69fd64ce70b1ea91704ddb4ef5988b0cda1446dd17","168b5ac44b2399ebcf5e2cb12857958df9c11e22a44f5fcada797002c0b491cd","61f8bbfb9e0f9aefff7d8ee385beda59f1d834cb1034f34dc178636fb594d4da","d24f905667e2f28f8111d80b6b588c776f7d8e0e0517b3790aa1a8570cf0f05c","4068aa9b9669b3cc11b8a9bdfe0dce10b1f6f0981f0506c8e35c64f6e68afda5","a1141b37c965ae048e424e336f875ee60415a23e5fbe2009d510de33be21724f","f00a705e36df17bef9679c89439be28d858d411b92f9b5274179a66642496a2c","32e260349b941f9522b190a0cda7166b2332c93297acd45423d735290112d7bd","1891ebae3da4c7d53a78303f2cd1c648d8aaacc3bb283af27662a28d38d821c4","834ce6a42d1f387d5c5150f30eadea4fc5d08f107e70a9568b0798ec2cadcc49","dfac1ef396b71f0a2b5e11b5e6ab1d7d1218102fae553e0e53db6578c186d0a0","6ceea6d77c85d4a17fadb71778695457879d409287d439469c8d2b2427c15a52","e1e875d4ff17299d40fe69e9c047f844894573a05a0a87ac82048ce5e749a248",{"version":"90a9296d18c3bb120a49902d61865a6ba6ebad9ed5d208f5913d87beb687c32f","impliedFormat":1},{"version":"fc4841d2121456f1b3b73a883a4fbcd90eb82bca0a63103aabf4e4b9b48c1552","impliedFormat":1},{"version":"892a80669ac232c14837d2e7ef1cd29b9c4e501181440c4a995fd59c17c62295","impliedFormat":1},{"version":"835de90953b9b6133cab1664bf1ee40472a4be2a10b8faa0dd450316741761ec","impliedFormat":1},{"version":"f0f6d06f66eae1df3031325b3cc6338962fa0f9e13eabc90a0adcce76079a2ca","impliedFormat":1},"0c98b172ec6e37fcb56df203e5bd09c4b0d4e587e33c1b491e75c4cf51ccc9a1",{"version":"c469d07daf4f88b613f0c99d95389e049e85c14f28f58120abca6785a0b3813d","affectsGlobalScope":true,"impliedFormat":1},"d2beb027655cd554b6083693f6a0207d1a7b271413dee7185a9ca4f8cf28d426","2b4ec135db1995cf242618d2ccb8c06305957e302e58d11ceebae727bce66b4e","42c14fd16b9c488867f9c1938ffb5ff61976951cb0343755aea3f10502ecb699","6a2f6e28b6b5d87f90e39e2926da8a4d32f65bc6054f3c44b0a7fe3e4fb11256",{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},"61baa97687c2f109f6db2a60cd41f5bc17da53ae855dc92d8903864d81b6ade1","0dff438a8ee392c9dd423c235d429152d4d710ba3dfcea04e91c47e636bf27c3","33101d6c1fc44fcaf57bd8fe67f103af9bfb8a8cad74fdb1c59f5353433ef206",{"version":"97f8e94dd0146423f95c860461ca82c98e4d9a8c32afc14556712b28f106c970","impliedFormat":1},{"version":"88da16eba1d14750f3b3ee00292123e52fb08f779a30fde6901d5cb72501a40a","affectsGlobalScope":true,"impliedFormat":1},{"version":"879fc44ada933941a7d2b20e6d0d1749081f17b4e911237794cd2038fdb746be","impliedFormat":1},{"version":"c60f4f6cb8949ec208168c0baf7be477a3c664f058659ff6139070dc512c2d87","affectsGlobalScope":true,"impliedFormat":1},{"version":"901f5d41fb92706eb4c4ca3e7dccc2671501bed1b910185611958bbda9f0c74a","impliedFormat":1},{"version":"52ae84fa49dc45cfb37f55379dd6e01b532840bd942e1c32954035f4c5b206a4","impliedFormat":1},{"version":"d08cd8b8a3615844c40641ad0eda689be45467c06c4c20d2fc9d0fcf3c96ae3f","impliedFormat":1},{"version":"8a14c2a1fe0288eebd8f827a60af906a8d055b3a137e73d1d7d52965bb9a768b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8092423644a68740e620384e547f254472386b6ea1e2d233a799068dee2aea99","impliedFormat":1},{"version":"c047bd5c3ad275b8649a5fdc99f4d0549584b0bd94e08a84a77b555a28e9885c","impliedFormat":1},{"version":"9f642953aba68babd23de41de85d4e97f0c39ef074cb8ab8aa7d55237f62aff6","impliedFormat":1},{"version":"9f2f5761674a589f162e7b6f2494c4c50f6867a3de50dd3d395fecb9425f39a1","impliedFormat":99},{"version":"8a6838a1bdbe6fb96d147a4ab237c66d49f2804a4ae05be916e809b9b389e1a2","impliedFormat":1},{"version":"2859adaa4f2db3d4f0fc37ad86f056045341496b58fba0dbc16a222f9d5d55b1","impliedFormat":1},{"version":"10a9865f99888e7a0f386994802f5453265fae845a951ec7f17aa89d5f4b22f3","signature":"543a57fb2aea6bc8e9f126adf3f993c9aa0a0c5d068559d2af55144a5cc9effc"},{"version":"5f73e6bb2d002a3cf576c034cf322d276c87a52d46ea04e1afbc16787713ffa6","signature":"990f94f40771793b940ac1a82d3d040cf65d39531ea251ceab308bd1df00762f"},{"version":"20765168551099b20a1102b2ef34897b51aa4cdf16b6580dda5618202fb288b6","impliedFormat":1},{"version":"ff88e3403522f6104b89729cc09f28bd0ea47d3a1d5018cac1d52ba478fabfb1","impliedFormat":1},{"version":"6b2879aa1c1ed48cd3b421a546f3abb5c05536e659edbce40f09073b097fad89","impliedFormat":1},{"version":"7c5780095ed74d698e9f7b2fb59c2701854901605e606e21da0828d97d479298","impliedFormat":1},{"version":"3827fede532f1f65239e45a2d2faabf19538bf0c56f6f0f95f642eba7a30b3de","impliedFormat":1},{"version":"1e5eb88de97808474ab1e552fd1256c6765d4044633b98fb5acc662f2800895f","impliedFormat":1},{"version":"be362a31dff85020118be44789e37329db7ceda72245145122234b3c7377dc54","affectsGlobalScope":true,"impliedFormat":1},{"version":"76292c6ef47b769a72de772e800eb08427c75cab39398fa0741d9f8b1fac5865","impliedFormat":1},{"version":"4cfa4ff43365d4be2e7e30b10fdb87b640b70937eba6c55dd3c8d167883c445d","impliedFormat":1},{"version":"5cfcb3a022da06031a63ca0c1a12b63d3b2b52d16309a856eb9de37ad2741182","impliedFormat":1},{"version":"f5e7925f0ce3a1671a7a2809ed2ec12312badb2834d8034a9e906c99546a7932","impliedFormat":1},{"version":"7a262b150b6f170ac6c555fd26909bc8e5ad0bb962537c5edbd1e10042b1b224","impliedFormat":1},{"version":"6a42594a49d1ab90a79287c9b1f52770dfe25c66a11e3730e02476ea4e3af322","impliedFormat":1},{"version":"b1aa6957cc9be4f2e9d8e2f3aab92978bd8854837771fda706b8eb4b1e2bbc96","impliedFormat":1},{"version":"cac1fd8a544e2f3f5fd047981156da014ca88503df42a8c4384581cf5a58b11c","impliedFormat":1},{"version":"1858da773f5eaa3f3c8dc07b401e85d3057ff01771c84c905c11a34472487742","impliedFormat":1},{"version":"19c3e56faf9a401b93ec37507d97572d295f4bb00a775d0455bc920d58e58250","affectsGlobalScope":true,"impliedFormat":1},{"version":"01ea032563dc4d47643b8e88ec094bfe5b2b274fcfd59f446369b18c963ade93","impliedFormat":1},{"version":"6697273e52441af8e34ecd87f018e292a75c3c5c022d4b4dfe93874751314a25","impliedFormat":1},{"version":"c179a885e989742ad1f1b58024a0674810bbca1a771ad82f543dc68d5468d396","impliedFormat":1},{"version":"64730ab9b396c96b2a01e3307d1ce8a9eb2a4c8e8ac82dd0eb4d6e7ddd3081a8","impliedFormat":1},{"version":"0f4e6fabcde74a53922bdb5d18fb99f2d69b92e01e9afa1816ef0680a9d5fed6","impliedFormat":1},{"version":"719ad5dd3a1e287cb54b4377967f99813e8144c61e1c954c585a644df3d7e87f","impliedFormat":1},{"version":"488fc0ca71cc34d5d6e674a722397298bd734216ad0275826df0a82cfa0a03bf","impliedFormat":1},{"version":"76d66649fffda5bc10184fbc693349e2660e6aeb91a30ba34e8281c3474cfaa2","impliedFormat":1},{"version":"173b33acde20c6612a11582a959e6f41e708947986cc5e13ed8999151d37a481","impliedFormat":1},{"version":"2e9b7ad4e7f1a9b3ccaab7ac7604fa43996d11ed09eb562bf38cfe1bb0b13483","impliedFormat":1},{"version":"f40b2b971585a200e416ba520cea15bbeb51705a54623f615c8e41425d43be36","impliedFormat":1},{"version":"ec834b82517e87c79085f2113554378a3d5cbf8eb3e898e80fdf12acc20c708b","impliedFormat":1},{"version":"09a55b7ca68a2365748bdaeab629b5534193802b2863e1457b40c8ff3eefc984","impliedFormat":1},{"version":"0385edc4f8972548a3f66458c0729b415e43a631c048c9d23ccefcda318a1f2e","impliedFormat":1},{"version":"42377ae0566eed293c98f52f72591eb9fcca2f06ea2eaec0455cdbe403ba1bb8","impliedFormat":1},{"version":"c1acb8b36a8f7386992c041ad140c0c24a2fce4441b8423251644611f65f9ed3","impliedFormat":1},{"version":"bdf2d2e5c28070e9329cc40ca536ae87250392333bd2d635b247847966c158e7","impliedFormat":1},{"version":"8616e6f003a26e4aaa4be5cc6d5a141ec5ad5f1e8c0c9bce105f8ae4723cf344","impliedFormat":1},{"version":"1dba1d968f3b4e6e0006853ec7b316a5b8f8386d3bb2849d72abdcdbe4269e19","impliedFormat":1},{"version":"4330111fed7b7d4d3fa2f8da44fe991e1e4d2b5a2b46809ef09c03d4b97c138f","impliedFormat":1},{"version":"7c6c76e829081ac329abcd59c189f25d2eee3fa21c9525db26d970d4b22400ec","impliedFormat":1},{"version":"a2d050a52412f0852654dcfa5984400b6b0d114dc88e619f5a6d94ef66e2969e","impliedFormat":1},{"version":"64cffcbc9792bf9dba611e6fbac1f82be478ca6f2df45d9a4bd92c96f88a34df","impliedFormat":1},{"version":"791a2e500643d44583d78c622e55b9e473e76dcef0249205d775368ef1e8c03b","impliedFormat":1},{"version":"0cc29c72e67ed4f91194f0b7c64fbb3e1448260269d72aac4f20e175c49df3f4","impliedFormat":1},{"version":"b572cdd4092362eda885c5739565f9958debb945a2ba04455730f7ea83e2c63c","impliedFormat":1},{"version":"e3aef2d7cc285aa3f16a7c8576e0c92a9ce041ad82343444245974337f99d284","impliedFormat":1},{"version":"4447d3229f5f11ed9c21a577415c634d6f0f88c20f39d4a416ac6d359f5568d9","impliedFormat":1},{"version":"65d78c142572b4f26777d8dfc9cc224ace704171a86b8598fa30ea7d63362b61","impliedFormat":1},{"version":"6a827ea24bdf7f3e8255dd676452a8ef6d1e6d1f8603156cb0c7f9c0f813dbc9","impliedFormat":1},{"version":"a2663c0878d107a5fe897e53a842fc487907741173cb9ff329988a295fa15f84","impliedFormat":1},{"version":"cbdc36d10a56cb4f8e90fd6c1969981f000c1bd2908aea5e5015ec7e71140d44","impliedFormat":1},{"version":"1852dc4bc8fa5de32b6e9902078138ef53d4a9e0c1feee7544c607d72a5ea6f9","impliedFormat":1},{"version":"ec50dbe52edac6e58a904159891b2129c2e55369b3ee73b5b91a4ec96f5b52c9","impliedFormat":1},{"version":"b93550d2b60509ff48c4aa237d76736971bc28bc2a044bc1c443bdf7a1314c1c","impliedFormat":1},{"version":"54b6a7f3dee8f6b3be09c83c7981fad5b748e996e50dfb1ee18a9e1156d38254","impliedFormat":1},{"version":"073066006ee7f63c193b14616d2980299b5506d394e367016db33862b2bbeeae","impliedFormat":1},{"version":"4efe5bf668103e063f470bfb29456f92bb1ea45587393781e1976a42f4e7d111","impliedFormat":1},{"version":"db7d16ef1835aa16a51befa5a68cd7f260597f775de2f443c2e20b1bd17dd3c7","impliedFormat":1},{"version":"c093d945ff065b5256e6c3ba7033fb7372ce5158b7bb34ac4f0bf4071604afa2","impliedFormat":1},{"version":"b00375bf3294048fa0d37c1b00713f8a679a8b0801802c79bdad335fe112a14e","impliedFormat":1},{"version":"83b4a79b75090e1b35bafd68ab0fc1fa9678719d3bf9eab05b1376e4ace701c5","impliedFormat":1},{"version":"7c3c8fef31b5badb5c01645e1ed4313efef1a2f61c31792a182d59272c29d43e","impliedFormat":1},{"version":"d30146c76542db9811d76be1473e17386f444f206b92fb3e504dbd4a293d9781","impliedFormat":1},{"version":"37a299a6f7425a624b13c14326b712654495647424c0683e38ff5ff89043bdfc","impliedFormat":1},{"version":"51741ad2e093a68359030f1b37d11cae828be5fbad7da1d9497664299b36a099","impliedFormat":1},{"version":"e9edbba023c30a46cb5e20066418427780310ac9da314a589889db00f1f3f89d","impliedFormat":1},{"version":"8f6c40eff2221bbf8e156e502b612480090256eada3671fdcbd92581a4a719d3","impliedFormat":1},{"version":"e4248b0a728dfd3c9ce2b25b19394b02709c1d5e7f0036e290974c5e8a71a2f7","impliedFormat":1},{"version":"43a4a8768d59987d33f80a60c6f51cd922d0367e18a4c0f7a21e10a22d201243","impliedFormat":1},{"version":"ef67fb59776bede370e8b78a9554ccb6a1863b21fdcf41730919afbed00d0ddc","impliedFormat":1},{"version":"39746082f882a595a185e65a63b3c530c90d9a38a02723004261a9e297129c9e","impliedFormat":1},{"version":"aaa5654ffca4c560d37c5ad236df82f70810c2cca081a1849a9447abf5539ddf","impliedFormat":1},{"version":"2d5e8a00a806fa1536c4d5f314756ffdfe4f91037ac3401b44e6643c074e19d7","impliedFormat":1},{"version":"0d12963e824879f33ce26b5379aa1281413d89e86a5f1dd3a5db81c0a2fe9c4c","impliedFormat":1},{"version":"8c6713c6e4e87c4d29b1354d49675a7b4f94183b4d03358d21b7a2d8145ecdbe","impliedFormat":1},{"version":"fae1240010a374142711478e4bb4cb8c5c3833f59cce5680d3eae591ada4ae5f","impliedFormat":1},{"version":"962886aac4d1668b030cfb02cd8b4e3c7477b050a0fb363558b570cc1847a558","impliedFormat":1},{"version":"99bc8d6863512a9431df6577c5c2fe3862cb1bee8799f3d27867e93edc0dd519","impliedFormat":1},{"version":"d5d9eb73098ffd2b47702a63f6702d0a75e47b9287230eb1cb36763a947ed41c","impliedFormat":1},{"version":"3ceab852a52fb3969014e5a117018ffb1ef09bbf1c645657d2d253961bd8f49b","impliedFormat":1},{"version":"5cad2832a7a1b526ee8c879e10d9cad0069a81bedbd6ecd3a6b238bde1cafd75","impliedFormat":1},{"version":"b16cb14b1bd77fd99d8933795d39d064f9563242de7f3320143ffb0e9ea3c209","impliedFormat":1},{"version":"145f6416d156ee0a4ca0d32b73a0068db1b1565f3aa5776a215f35e66abe6d3f","impliedFormat":1},{"version":"012841c703f070be20484a69c5a6b90a757a123b1b005fe8196c951217067f78","impliedFormat":1},{"version":"161e3ba2ac76d6cc324d254ede6ac484d2e9ed425348cfa87d189ea69945821f","impliedFormat":1},{"version":"0039fd95c84be02289e15fa2c4bb6c35eb934d761564bfe703a61ab14b1ee014","impliedFormat":1},{"version":"260ded48dd3435416a98aff8292889ef4aa40b1930ab94031a528ebe9ef49972","impliedFormat":1},{"version":"658cae7f6e6fecab96f7bd1dcb533777d3a037c0e4669aadd2cba3ad308a5f01","impliedFormat":1},{"version":"3cad82b241cdf2d7223e22d4ade169ec7d0062515ab78793700409bb8be09995","impliedFormat":1},{"version":"09c59b63947e1f70cdbb70fd31b7d231200ea1ab5c0d3cea7782c6bbff502eb4","impliedFormat":1},{"version":"45e8c5bbeb35cf833f6010cc55243bcfa0d13a2034bced78c39f7b6b27462c10","impliedFormat":1},{"version":"fab6f1fbb462e32e6a85236b711f7e40fe44ae594b3a86eca7117e1334bebcfa","impliedFormat":1},{"version":"a36f021977924f8ba2fe2f195098e2a3bf9ae243bcddbc929b9159e03926d79a","impliedFormat":1},{"version":"79424f24f5acd14066ae056b484e5ca7c274acfd27d65839f646be67c95fe82e","impliedFormat":1},{"version":"381d28f1a0cf470fec400c7c194ba1969cf06d1fb8b42735056a3f68ffe91d6d","impliedFormat":1},{"version":"9d9aa6351477667c7d5ef6cd0ad975b3e2283a7aac7ce58d25b858e08eda3efe","impliedFormat":1},{"version":"9f6eb1f32a51bfe805ece0bb44d1865bcf9963e88e6c0ea1e39ecaee02fb8dfb","impliedFormat":1},{"version":"7befb3c372fd513146798ec62157c5e22d80b01e47d6c0ee8c296ee8ab940e95","impliedFormat":1},{"version":"ba57f6882bfe7ca9d8e12319c10175ab2e0d6a548231d8c04d4b5f40650d3bb7","impliedFormat":1},{"version":"f18b4bea2d3930ce7379e9a008384d55200985a74c45a52956cf5358021eeefb","impliedFormat":1},{"version":"b736875b02254de4533c2e30b6925b29b1e36d3a044b13b869341e55e7db23ea","impliedFormat":1},{"version":"122d853aef74183269bef94f6eb8c6b26e53d43247c54b3d8ecd8fc97dd1b3d7","impliedFormat":1},{"version":"28150e454e690d820a291e3f43b2b9edd555fab29c75361f43717f8fb3128500","impliedFormat":1},{"version":"8027f19e88b2f8f37b128e643286233e8ee6d87bec59359459d84e216116d7fb","impliedFormat":1},{"version":"3c4b44c5f88256d11bcadc47eae39af72f7ec13d623ddeb2ccc4a29c3dd22da5","impliedFormat":1},{"version":"ea9086d9114c2d2dd77f9ff734010f2ffc9916dc1b3ab9ecaafb6770aa68d8c5","impliedFormat":1},{"version":"adab54c16578685abbb9d0f12d29f328dde6040c1d858b698778c63944d8b019","impliedFormat":1},{"version":"635bc99642d72c8444c5937fb6e8d8a449cef4f73824ecb3c9ff5bcd96d9d023","impliedFormat":1},{"version":"9a8118dbaed0a95b33528f4fcb1cf21c569dfde81425f72d3ecf9feab28d7720","impliedFormat":1},{"version":"2c797623016f76f4d97a445ec1a1f091e91c5e0bbde9d17f6e8bc8136270c9a5","impliedFormat":1},{"version":"0115e4e6f08b8384d2f356c8d392e1a8237cfd9105081eeecb9f0393de22e628","impliedFormat":1},{"version":"fb35442fa2fb13cb73e7b6a42f2d1db3540b7cf893078d42dbaf6cd48dd120c3","impliedFormat":1},{"version":"57810fb8b19f3f7244192a6b2f8a648e0acf36d277c026c9f842f0ab21d30eb3","impliedFormat":1},{"version":"2d7925113e1f6e495aa5b4d346d9903f0578829f6b96a44f934cd8fc139d785f","impliedFormat":1},{"version":"a9ee8731b5bec4a3497ca3f0b93b61f98243d24bc510c2612543c6294e6ed707","impliedFormat":1},{"version":"6135cf12655d3b70b93338842da056d658b5977907b4b92714f7452f8e953beb","impliedFormat":1},{"version":"b55f09e270ed9f51094592273fdfd689730023afc670679b27136aac411c31af","impliedFormat":1},{"version":"c625fc7d1c4cdedf1b79a59a93dbec5832902e3853fc374bf147174b378fd0f1","impliedFormat":1},{"version":"2a8bc121d549734f6a74fdfa4c752097ee1c7fdc4877612c696486368356c11c","impliedFormat":1},{"version":"63f0452683148deb6d2ad4db4921aee4eaf53287bf6989782cf71b7d5b63efbd","impliedFormat":1},{"version":"9b095e7439ec6d17683c4b8cdc16a87db2499bde75b7d81cf07e643c77f2d67f","impliedFormat":1},{"version":"d697569469dd141d7433b90af8e7ad0c6edc729e560bb6e5a1db96a050b844fd","impliedFormat":1},{"version":"aef0a8a66f490966476e0f7728cde03c4e748db29f3429219dc793b069fe3215","impliedFormat":1},{"version":"216f7b739e42cce623bb8ba2fea296d6489f6bb54239d9fe2f4b00ee6a7a2007","impliedFormat":1},{"version":"4e5aee348b26d529601354035cf2625d329301fc44b2d0eb5a1f6b833732f5fb","impliedFormat":1},{"version":"4648f637303911189851831c3686938af70072c2fee6b7c7280c1a8b9065cd92","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f729d0146ff542673fd712f5e280434a9c38c92b991f6b9a92cecee73095094","impliedFormat":1},{"version":"ba3e9e48b52de2e8fdc050162f0099c32c5c3bd601f8718c847c59829e285a42","impliedFormat":1},{"version":"68cd0b9e1afca90bc8c736851374357e8495b9616ee33a1ed11663090e358a2f","impliedFormat":1},{"version":"6b3e4459d162395fbfba21c863b7911ced06fac343d263e1683b461545733b4c","impliedFormat":1},{"version":"93d423cd58a0e6ac7a3ba49f2a047fae456466c0f395df7631e8b9622dd16356","impliedFormat":1},{"version":"bcb325fdabb860f23cfdddf9e9ffb78f5e9f507843bebdfb7f944ba5f62f5e8d","impliedFormat":1},{"version":"b8a6e4f1147e4c30099fef56b72974674657d64cf12f2266aeb80ac1f15337b6","impliedFormat":1},{"version":"23067de9b81e897d2c68a6d7612192d997378cfe4d2e93a452dbae2e98f5c4d3","impliedFormat":1},{"version":"7f55cb3505ff27a690976effa7f8f53b52bd950933009a50851c8f06bb0771c3","impliedFormat":1},{"version":"64ab0e3cd827f4a357d6c460a490d6c2c22300b3f2b5cdfa656c2078b527f25c","impliedFormat":1},{"version":"9b721d33825ffd9481eb823168a1a52d3c41d9d234e5b1cca4ee42c8628597d9","impliedFormat":1},{"version":"b8bc044da2e581bf30b13cd9f24a6a6dca7e6f26ffad5778ace0f6aa4e1f56e8","impliedFormat":1},{"version":"c6303e5e7521fee29c0ca0136b910ebd7195946951f8cad148723903c2c171b7","impliedFormat":1},{"version":"6698be6dcb2077ebfc3947bfca08c15deca04ab9a6968afb5f8f03b285f384f2","impliedFormat":1},{"version":"2b3d174c8ec514f94090f99d55cee8363c7e35c269ec22efb40a8475f77efe2c","impliedFormat":1},{"version":"fc35623e8bf53237f55218f80d42594188b6af7b62cd8b2888c4f2d7a02611fd","impliedFormat":1},{"version":"f3d53b9e8d49c7f8c4e263e98f95eb533ff3f66c41dfbefef5c9b54ca98a1c3a","impliedFormat":1},{"version":"6479ed26ec9727adca52957a18b6bb92f266104adc8e43025c382d76ba81060f","impliedFormat":1},{"version":"c5541ed4e56a3cc7ab181a4bf4ba91763fc462d94b71687da4b4657f38af207f","impliedFormat":1},{"version":"00bea5e1b1e25e3f247d9625f33f23b87a299aa9244332948031243a5e8e500b","impliedFormat":1},{"version":"644a3153fad384d1916117edcaf79f754c7a128f2b790b9b3d1c6aadb9370e28","impliedFormat":1},{"version":"858c632d088f3e404d32dad5029ded59bdc5280c1e8a90db02c34b57d393a81a","impliedFormat":1},{"version":"713e89bd552ba627a8c9c684fed2a52331644d7fc683738443ee734cafd95ee7","impliedFormat":1},{"version":"fcca8a506d32ccfa31521a6bd84bab9c508b175c0a544b56f7dc7401e171f8c3","impliedFormat":1},{"version":"841c360a904137ecff72e776545dd961d379efb564662975a18ab58f5ab6f04b","impliedFormat":1},{"version":"0aa68223f0e7f0d77372b1cdded3f7477dcbc0e46612ed3fc7928d41f2b660e5","impliedFormat":1},{"version":"efe6b247e53a10da680ae881037adc08e107c0da75dd7e95aa964f8265b7ba85","impliedFormat":1},{"version":"2f99bcd69f6272fe5673ebfa4a98de7a68a4e11920a7068bab1245b1321f3158","impliedFormat":1},{"version":"95827cd2c7e5bffb2cbcc104bd3035cc74c5e9d61857142f397042a092502daa","impliedFormat":1},{"version":"148a178507eaff8afad8ecac9118580a637a18bad730e3824ae8d8c328374632","impliedFormat":1},{"version":"cb83da5b102a0a7b8bb6138ca90b0497707c7659dabc60a77b99d1f13bdf9fa2","impliedFormat":1},{"version":"a92458efbc9a8017e36614181faf85334f20315bff7e84ec3e25edfb7575b4b2","impliedFormat":1},{"version":"aa10e87dd89789375e9043ca12f3a43dc6fbf6a01d9dfaaa05be545380035211","impliedFormat":1},{"version":"a3bab9e5e0cbb1a5567b3518ffa2862589172f39551afc15b942138c1bbe6d54","impliedFormat":1},{"version":"e117e2338388fac73a2d8317db2c8b24d57ef98601deca94288956a8fe4e7f8e","impliedFormat":1},{"version":"3a07224f5c15ff2d9ea61c396379b644896a12436235cb223b2e050b23c4925e","impliedFormat":1},{"version":"8e58eba9304f25a63c67ca6213b758a24fc8d79ec0084f5296d3d3f389af5be1","impliedFormat":1},{"version":"816f4676a7f0521b45751530feb1da99a3553fac1dfceb44b099046b4f241544","impliedFormat":1},{"version":"e7cea9972cca905d58890f759b558b84111bdaa1694dd8f04173bb32e0fc6609","impliedFormat":1},{"version":"8e75753120195cce058c27a4fc1d1bd364c98188895ce0de18d72ec74259019c","impliedFormat":1},{"version":"29d877024e36f24df56056f7f9447ff3300f89375f83f99c067d6ee3bb61a73b","impliedFormat":1},{"version":"84737d32ba8b544fe0a9bbc7abb81225c348bdbf60a3484e439f5ccf150e6a21","impliedFormat":1},{"version":"00791a99dcf184e20342294940bd6c1347bef14fa212ca5205b674fda8e6e77f","impliedFormat":1},{"version":"19ab703c28eaa2916f416a57b7c3858b5fbbc48c02a78fb18c76ca0e561e25a1","impliedFormat":1},{"version":"de751db9f0aa22ab3c2ed5e3e5b041af7f5e849ccf1322c14feae5a3fa041e24","impliedFormat":1},{"version":"5506f93fed799ae0ab9b969d2802aec981864ae5a438fde411bbb947f5b7cb25","impliedFormat":1},{"version":"de3d741197565b49b8f82925ae19c85e5a33c6225013cb905bd7c81c8ad8843c","impliedFormat":1},{"version":"5f42b1318f1e3a30751839ec9dc8bff750a4996d9757083b8aa73c277437859b","impliedFormat":1},{"version":"a4ecb443bde398167e2708f94ecde85c474680135471a8744f315fbf40dc307c","impliedFormat":1},{"version":"698cf1f3dd82d97b63ccecdf1e03f966b0280514b97cf31774bca8b9afb19e39","impliedFormat":1},{"version":"fea565679a5fa428e926c7a9e58f09d30fc5a44b1da880647efbcee6eba1b87a","impliedFormat":1},{"version":"1207a20a196612f076c33d5d7439c6c0726b4ce57584759db1494bf10fd456ab","impliedFormat":1},{"version":"9e8d53296c9a5a416551494f9a02d18d75e0f782251aa86332dee4207d3b33fc","impliedFormat":1},{"version":"dfc9bdabd76caf74530773482374213b815ed3487bd9ee8c346da3a3f217bf3a","impliedFormat":1},{"version":"09f1a6bd37278453af46c6d90f31175bc861d85ac6f431e6eb6058b5d945446d","impliedFormat":1},{"version":"a57571c89df6ac15c7f142ccc273fb1c233de18199a9224472877edad5090de1","impliedFormat":1},{"version":"28bba2ebe72280267f47043ae770fb44c0b9c14abc71a15950bfefec753c6e3f","impliedFormat":1},{"version":"a985b356fe365e36c5549397bd2600bd92010c182ec4daf26057a9361eb19053","impliedFormat":1},{"version":"c884d330029844c2ee0d40393b00eb5184f897939e24ea8ca89cfcd37567a29f","impliedFormat":1},{"version":"df508df6a1aadae4499d327c2360816978e28839560c044099e4acffcde5489d","impliedFormat":1},{"version":"ee419aa23d2ae89eaed21b74c0004909d79e59b929d744c17487748360f4c99a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c500872ac8d703db2d8a8ea3875ba62ee19b2dd2cbded000197fd901eb0ecbaa","impliedFormat":1},{"version":"bf800f80818dcc4380151ad1c0fd7fdd3e6cd37be49287c712fe7b6506c572c4","impliedFormat":1},{"version":"21d601090c0135850fda0e6d5e3166c4523b041969a1f97bbc1aba1e968f084d","impliedFormat":1},{"version":"9de99571f4468d112ee8453462e13335672e4b72102d9f96596c6fe1c218318b","impliedFormat":1},{"version":"2057ab1ed9ed4aea453d7f48d3d995d54fd9e6c54b765e1b1a929ff8b5a75e17","impliedFormat":1},{"version":"212e4b57441198c05ea4eca4e5ebe1f0d1d30a88fe4277c63b1a17ba08e920a3","impliedFormat":1},{"version":"dc274bd65b77188d49e59ee204a0705a9f8c49431c15f6cefcb9a3928d1a8b52","impliedFormat":1},{"version":"172aa53f22d64f64a4f01dbd6673fff4acdd222b5968867521b2ccc7c3a2fa72","impliedFormat":1},{"version":"deb91ff4aaac0028c4c11666b445bfe512de11bfa0ee6f0b3e16062654ac1572","impliedFormat":1},{"version":"25df589bf92e6611d7b0eeaf78a00f9f89bed9e33559f12cc500ed1a2cb38bb6","impliedFormat":1},{"version":"83b29f8d47132069c6ccf47d3d389d4544c1a993d676f2c942838ad751ba90a4","impliedFormat":1},{"version":"46fdba15c7a90ebf37d27c51e051a4701e0075ba6b110c2daed57fdb8b749210","impliedFormat":1},{"version":"86e34ebc62d1513ef57e89f5e19e6a3fe571e1c9a3e8f364fca552e839f6c520","impliedFormat":1},{"version":"99f551a50dd44127b94fd6a9f0218d5ee7f7883d207722ea3538f469a9641f36","impliedFormat":1},{"version":"db063d3ec8175067198eb238e869662a795d4412e2498f32ea8349b163a8dd05","impliedFormat":1},{"version":"1c336b798915b89b810058b96f5e7fa7bc6c4bfa400e6bf863a4abd0f676478a","impliedFormat":1},{"version":"68bf537faa19a862ba87fabe0d991f90b1423780ff92cd2eadc67bdc0ba53b2b","impliedFormat":1},{"version":"2a4e9e1a9a50d2d0196681570b6b91138586a01f5b6e3b31c02a1d87290c25c3","impliedFormat":1},{"version":"e6759fb10c68b1ea0ce318c45300c3d9c5509bfb0597903d4429eb72d879d5d3","impliedFormat":1},{"version":"ccb972496f73a32708ef234ae097da13db3a24cb892ca6bc405cf69ec7024b64","impliedFormat":1},{"version":"e8585aef560c17a552fb2991f1c9fb3fe5857b5ad7a68b920b0cfaa4208c0662","impliedFormat":1},{"version":"9f853918dcf76d72dce3e77b2f47436d210ceef20a4cec3803fe0232706c34eb","impliedFormat":1},{"version":"439a983becc98cf640e5266b7786feedf9d633b06f05ea89a41576587a53124a","impliedFormat":1},{"version":"8a491a0482ad5f28c33bf5c6d9aa0f7250e272f517ed2033771297071ff264cb","impliedFormat":1},{"version":"8339ea639580818b04616879ca477c11be2115312875533f09ce67a178e0c0e7","impliedFormat":1},{"version":"72366ef1fa990929063122e7e15f579a61d6027ab8654c7437cdb6b929b4b241","impliedFormat":1},{"version":"7cceda8c6f7955121132870361f698884a5eeeeaddefe7413ac660b17bb3fe27","impliedFormat":1},{"version":"58ec5d8048b7dd32e6ad3a43a9c60b58272febb3bd54db408dba3aa639a08dce","impliedFormat":1},{"version":"9c25b2109ed9280da48f8e5a9564f011be8d2301c6b3a765ea2c61be4a092d8b","impliedFormat":1},{"version":"1014d4c78026b0d1492850ec2715db8dd02728637a1c131546cf240c8ebe0867","impliedFormat":1},{"version":"02dd08d47b068191b930ce5ab6a4f812eb2818d70030ff3e294482390eb90d83","impliedFormat":1},{"version":"7ebc8e06b3aca2e2af5438f56062ddd4664dfb6f0fdc19a3df50e1a383ed6753","impliedFormat":1},{"version":"5931ee44572dce86df73debec64b69c6766c5a85ca36560a42b9d27f80f44e79","impliedFormat":1},{"version":"c9d34ca257fe78c6ea8e6f50cdd082028859e7c257a451cad5efc938d573ec9d","impliedFormat":1},{"version":"cfaec796e5531757d3834e79ec66c78e3c4ac29e70e320ce1673ec20a59e3740","impliedFormat":1},{"version":"13ceb5c2bab5231ea85d17524665ee976dce8418c934af349735310da0631d2d","impliedFormat":1},{"version":"fc8fcedbae85698b04f9b0da193b52d378ec9589f86574e0f4b4cb6e13910047","impliedFormat":1},{"version":"4190e192a51f256a059a2f6643306550751d27e0fedfe7b5c1990a509528ec1d","impliedFormat":1},{"version":"bdb76953a3b8e77d8b2731d5811f0f8493a104b67117aa00507e50cb2eb1e727","impliedFormat":1},{"version":"395595f5fb22cd8084c9dc0e9ba7e204a98d2ce20c28571687aad9b0a11c8ec2","impliedFormat":1},{"version":"57eab48a7bb66bdd1831565faf6f99268899ec685c1d36823874c6b109beca2b","impliedFormat":1},{"version":"1b5fb867db1ecf42cae316f7f7af210ef0896fe43c397f7b5bc2dd485ab66ac0","impliedFormat":1},{"version":"810204c888046e4f1cfea3bcc183261be7630aad408e990b483c900aa7eb1da6","impliedFormat":1},{"version":"d3045fc8585220833efaa5e7341fc056d69e912fab3e2023c50a06c484776361","impliedFormat":1},{"version":"489443eb9ed0ec5d31335e3dde44a8d4e77e63521f2aa5b6ff65f0aeebf29877","impliedFormat":1},{"version":"3b8835f0ae1f3adfe79cab05bbe2c31452f48e7a2837931c4d2caa2709867862","impliedFormat":1},{"version":"881936bb56fc17b13eb2456084f3c054632f4aff7336b6cee058f374683a7349","impliedFormat":1},{"version":"439023fea7651b82aff011e852ed25bb5df9258c3a842d23ff848cefbde054c8","impliedFormat":1},{"version":"9301927e69fee77c414ccd0f39c3528e44bd32589500a361cabbeda3d7e74ba5","impliedFormat":1},{"version":"7bf076f117181ab5773413b22083f7caee4918ccb6cf792920efb97cda5179ce","impliedFormat":1},{"version":"be479eef7e8c67214d5ca11a9339ece2bbd25325ab86b336e5d3f51d0dac1986","impliedFormat":1},{"version":"d94fe4ab3b8d4035f1dfe7ca5c3f9225e7c74090cab6892b901280f0d3ea6a27","impliedFormat":1},{"version":"639bdba9222a1d443eb01e3dedb7097c30aa1fb4b4d4d58e970a162255e8da0e","impliedFormat":1},{"version":"3ca75cdeffce7973fd95dcd5f75afb6367cc8b6434801c48a6d56d03f9d60408","impliedFormat":1},{"version":"cb93c3a5a607b023dbd2d73e600e297bf392957b6a180238f72ec88ae89f495b","impliedFormat":1},{"version":"32dc611ffb88c70b8cab36c2cf23b93476dcf99217902435f145d03e41081b6e","impliedFormat":1},{"version":"9b4c284371fc9b8ec060e6c61d31bec7897cba3c9a86370e8317e4038e077bf0","impliedFormat":1},{"version":"969b450418a39e16dc58b9376abc4a24f1e4f8277c9ec3bf462b36ddc5a6b855","impliedFormat":1},{"version":"b5b96fae5fec816f065b7401664ec69dd63ddd190c55c7d35a13c3a0ed020e91","impliedFormat":1},{"version":"20e3c35088d83915f5c903f1a81180388bc759ccc85cc684d0064e83442d6d65","impliedFormat":1},{"version":"3233a2c9caa676216934d2c914a33de5e5e699b3f0c287c2f1dfbb866bf761d0","impliedFormat":1},{"version":"05a83c01130e03d19fe78411895af517cb3d8985a0e84e70926418540853dbb1","impliedFormat":1},{"version":"302dc8440b85072dc5e1d30c39dc1d4ddda46ca5a10ff2d40b8d8e99fc665232","impliedFormat":1},{"version":"335bd16d540e601a8a3b80044b08043422b140c4d708b53834864659e6d5a295","impliedFormat":1},{"version":"ba0ea399a131ae764c0bda400c191bb82876e7ba01c3d201e5ba9edcb9bfb1ac","impliedFormat":1},{"version":"d2dd9601857d3cfc3b7da4c37f4492a6cf3efbf4c803a9d31a0ac0a766b9f496","impliedFormat":1},{"version":"68f204992bd1fe55fd0e77e79820c3202157b76fd9808c77358f97a25638474e","impliedFormat":1},{"version":"57f0161f1bb74573e21c738b229ead3b64ebf66d4d4cddb74b620aca1193429b","impliedFormat":1},{"version":"5da72db7084e8d880093f1ea208b3e1fbdbc0b92422556eecda88025e4e98859","impliedFormat":1},{"version":"e1aba05417821fb32851f02295e4de4d6fe991d6917cf03a12682c92949c8d04","impliedFormat":1},{"version":"63cf8b8bd4de61b04c19ea77db82c7e4afc057e3208130bc1886c3918d9e1dfe","impliedFormat":1},{"version":"6d7bdae4d2049d8af88dc233a5b277ed96079cb524c408765ad3d95951215fc0","impliedFormat":1},{"version":"504c1426e4d5f7b8c56526ba8bf228baa2431b29002182546b14e2710d5b538d","impliedFormat":1},{"version":"d43d05f2b63a0a66e72b879c48557a54b4054b17cc9ee36342f41df923f15ffa","impliedFormat":1},{"version":"13ed0ea58b434c9a1cb87545a1f4c7a6611ef9c180c03333f65387b2525d068d","impliedFormat":1},{"version":"f314ac2c5a7d33f9147f0d3e4bc8f80db29d135977c4784ed9c6b8d1c8b870bf","impliedFormat":1},{"version":"3c9709e0ff5fe0d928cce5e735a6d3cb5e36caf04acc685d77438c4410b783bf","impliedFormat":1},{"version":"63ebfb0a8d32d6aed76c219eeb9b51f5e94c575ec659deaa99e8f41e13ccad0a","impliedFormat":1},{"version":"b6678585be337f0524bba99bd932248344f7d077ca22dd9f59ddca36d85dca84","impliedFormat":1},{"version":"50fa4532e87f95ee828ae32882b352fb6a5707eb09f09c56824266ce8a8c71e1","impliedFormat":1},{"version":"4bb4c3174734ab7664012245546a9d78c8e07f1b792025d1df95705fe00b6198","impliedFormat":1},{"version":"ed8ce283b17f23bd52154e9c64e4aa805883f8da8e3b5fa339cd36d7fac19a7e","impliedFormat":1},{"version":"4544494553a24212843d08614c3d84f7e3a10f06d27ddc7948544770aa6cead6","impliedFormat":1},{"version":"37aa37a7ac66a00f900362bf15a1eb58bb6c5ed9fb734a9541a247e5a5838bff","signature":"abd5d0971eab4cf149f3314db21e3f90a133de432e89835423a2d6e3a1462e07"},{"version":"bcb756a44db72f2233ba36a73e0547a3d3b1d04daf4910485d45078418e075fa","signature":"632a0f7b0c00f9d2bfd7de7e830faaf845b63ffb344d89204a780a7c3c42fa14"},{"version":"41f45ed6b4cd7b8aec2e4888a47d5061ee1020f89375b57d388cfe1f05313991","impliedFormat":1},{"version":"95e6580d60d580c8cd6a42d3853eda0da840d64139a58ecb56ed9a2f8ff42d6e","impliedFormat":1},{"version":"bec45e0777e88662fdbb5e8ef48f3fd1a474768075abe838b184973025c94244","impliedFormat":1},{"version":"bf95958629e734c28d1a2751e4a390ecba3de3e5ef15ce5129e87b95e26a9b31","impliedFormat":1},{"version":"cf6ab5b952c8a81bf9d82ae231f1d7835e7d656f23f6a68856bf79d914f0c3a7","impliedFormat":1},{"version":"e9c09e150ad859e6fd220292838cf1676fde98e72de40802a0e38a39ffe9ba78","impliedFormat":1},{"version":"6eedd55b798a444cf196fc0e84ed8588c4b02a64a1eefcdbd9706a7a77819d63","impliedFormat":1},{"version":"a410446b68b7f7fd6c125c66a2f7d62d1919d01c1fbe6d3d2a36abfd7252b88b","impliedFormat":1},{"version":"c220d971a25f0757dac2a16e7e3486edfae72cfc21e77ad02215deda4b37912d","impliedFormat":1},{"version":"b4d69ab771e06f3e6521194b26bb8e52548dd9f85a8d22c0d45954edefe054fe","impliedFormat":1},{"version":"489539fed7a3fa9d6c0683706051d88ad0072eb596701052d37a6745a1005748","impliedFormat":1},{"version":"cc087c7bf1ed09f163d2465c0ea15325d1171ef24d9541b9315deeb1f5999da1","impliedFormat":1},{"version":"dd420fdfd95fa762f6455424e6fb4551abe0c72a9fdfea64a314e050fa64eb87","impliedFormat":1},{"version":"9771666faae7e4edafa62386a45629c179bc628b0972f1c2b0051b5d35025c9b","impliedFormat":1},{"version":"0aa6afbe9bcff81c6a9b200d1df9bc81adef90f1318d7c6a8da4a87952c4f594","impliedFormat":1},{"version":"feb62eb605a34f112481e347af226133d6b9870cae6221af8fd5a61c4f33594e","impliedFormat":1},{"version":"d3f4d2138eafd828745a0caaa17a860b4dd8fa63d40cc9eb013072c116062969","impliedFormat":1},{"version":"73d253d6850f103e900b024ce351c99a4cc5dec1c56f286ffb305015198c1f13","impliedFormat":1},{"version":"0fdedf8b8cf8fa73fab00e3f57aaefba4babbefc6bbe108164c6eaed935b3840","impliedFormat":1},{"version":"f7746264e6dcac5c13382e31a38346413670522bc264da4b2c3d5ea406155cd3","impliedFormat":1},{"version":"f8c0895803058e1eeed51022fd9c5b26dd1f2398bac9b925de652858c1397f98","impliedFormat":1},{"version":"f0f36a6e9a078b8e724dc5a7f2ca71e793d76a00aec6d0c06582d46e05f2bbd8","impliedFormat":1},{"version":"e44e4e7dbd46782bad9f469021aed39d77312510683c3f9cb0042b5e30680186","impliedFormat":1},{"version":"231d5cbf209cec46ffa15906bfc4b115aa3a8a1254d72f06e2baa4097b428d35","impliedFormat":1},{"version":"75f2bb6222ea1eddc84eca70eab02cb6885be9e9e7464103b1b79663927bb4a4","impliedFormat":1},{"version":"b7e11c9bf89ca0372945c031424bb5f4074ab0c8f5bac049c07a43e2fe962a35","impliedFormat":1},{"version":"1abc3eb17e8a4f46bbe49bb0c9340ce4b3f4ea794934a91073fbdd11bf236e94","impliedFormat":1},{"version":"28ae0f42b0dc0442010561fb2c472c1e9ef4de9af9c28feded2e99c5ab2a68ea","impliedFormat":1},{"version":"8f4eb43204663ffefe235de069cf9d8f7e405992300c4299838ac4ce418f6c98","signature":"e97fb6feb056dcc438e91a3a2af2702ddd9e796014af76f1e37b3f7ed183d4cc"},{"version":"e2ddbe6522370662d36ce3118411f9a6dab3e2fc847a6fc8f0e490fe0aecc323","impliedFormat":1},{"version":"bebc4da83fb5062fc1da3afc9f4e22b45ccd0761a2d62f860ce860fc5916b5ac","impliedFormat":1},{"version":"3ee52d00379b0c3df10e2bc8e988da0d1b3a4d29fe56ad81d81e1f6996053f88","impliedFormat":1},{"version":"36bf6687210a2f245ddb5a3333a636c35beb7cf39a5bb19ed03a122d50f4c78a","signature":"3be52137381c49b2509e5095247071424f74f69696384f2b0825b1a656fb0dd3"},{"version":"264f935450101e4b000eb351cf75c9d799ca20a278b260a9e5770303b5f2b6a3","impliedFormat":99},{"version":"5d397401fd58e55fa1a75cf509591e160bd4a3b58a891f6866002951a340791e","impliedFormat":99},{"version":"570fb3e86599cb179cc91b04fc5034c5b8af33aa7ede111048f2d40aeac2eaa6","impliedFormat":99},{"version":"0bfa81a8b71a10d7e332b88bfc482e6d6a74692705a9d4510bf6b049ceaaa0d2","affectsGlobalScope":true,"impliedFormat":99},{"version":"e29c3246bccba476f4285c89ea0c026b6bfdf9e3d15b6edf2d50e7ea1a59ecfb","impliedFormat":99},{"version":"e689cc8cd8a102d31c9d3a7b0db0028594202093c4aca25982b425e8ae744556","impliedFormat":99},{"version":"478e59ac0830a0f6360236632d0d589fb0211183aa1ab82292fbca529c0cce35","impliedFormat":99},{"version":"1b4ed9deaba72d4bc8495bf46db690dbf91040da0cb2401db10bad162732c0e2","impliedFormat":99},{"version":"5b997c0658cbe4dc3196853c1600f9208b90ae27527815da0ead3347bd5c7edb","impliedFormat":99},{"version":"8a778c0e0c2f0d9156ca87ab56556b7fd876a185960d829c7e9ed416d5be5fb4","impliedFormat":99},{"version":"b40f92e533725152c3976ee7941ece6e177fd15adbc815a957bab4a2d0e967cf","impliedFormat":99},{"version":"8751085924cfff29e52322071e3b77d328b02ec3b47b7c47c37a06a30e97f570","impliedFormat":99},{"version":"e08685c946d49f555b523e481f4122b398c4444c55b164e5ac67c3ba878db8d1","impliedFormat":99},{"version":"3c99d5232a3c8b54016e5700502078af50fe917eb9cb4b6d9a75a0a3456fcd5d","impliedFormat":99},{"version":"a1c4ffa46e41ac35003f44108d4468bcadd8b458562cc42f5fb1bac664f33e75","impliedFormat":99},{"version":"4923a256a6cf1f55e30f7df82151ba360e59bee70078db609509f775bdd796ed","impliedFormat":99},{"version":"f865343c121abc3516abf5b888d0c1b7596ec772229d8e4d4d796f89e8c9d0c0","impliedFormat":99},{"version":"77114bdbc7388aeeb188c85ebe27e38b1a6e29bc9fea6e09b7011bbb4d71ec41","impliedFormat":99},{"version":"3df489529e6dfe63250b187f1823a9d6006b86a7e9cac6b338944d5fc008db70","impliedFormat":99},{"version":"fe0d316062384b233b16caee26bf8c66f2efdcedcf497be08ad9bcea24bd2d2c","impliedFormat":99},{"version":"2f5846c85bd28a5e8ce93a6e8b67ad0fd6f5a9f7049c74e9c1f6628a0c10062a","impliedFormat":99},{"version":"7dfb517c06ecb1ca89d0b46444eae16ad53d0054e6ec9d82c38e3fbf381ff698","impliedFormat":99},{"version":"35999449fe3af6c7821c63cad3c41b99526113945c778f56c2ae970b4b35c490","impliedFormat":99},{"version":"1fff68ffb3b4a2bf1b6f7f4793f17d6a94c72ca8d67c1d0ac8a872483d23aaf2","impliedFormat":99},{"version":"6dd231d71a5c28f43983de7d91fb34c2c841b0d79c3be2e6bffeb2836d344f00","impliedFormat":99},{"version":"e6a96ceaa78397df35800bafd1069651832422126206e60e1046c3b15b6e5977","impliedFormat":99},{"version":"035dcab32722ff83675483f2608d21cb1ec7b0428b8dca87139f1b524c7fcdb5","impliedFormat":99},{"version":"605892c358273dffa8178aa455edf675c326c4197993f3d1287b120d09cee23f","impliedFormat":99},{"version":"a1caf633e62346bf432d548a0ae03d9288dc803c033412d52f6c4d065ef13c25","impliedFormat":99},{"version":"774f59be62f64cf91d01f9f84c52d9797a86ef7713ff7fc11c8815512be20d12","impliedFormat":99},{"version":"46fc114448951c7b7d9ed1f2cc314e8b9be05b655792ab39262c144c7398be9f","impliedFormat":99},{"version":"9be0a613d408a84fa06b3d748ca37fd83abf7448c534873633b7a1d473c21f76","impliedFormat":99},{"version":"f447ea732d033408efd829cf135cac4f920c4d2065fa926d7f019bff4e119630","impliedFormat":99},{"version":"09f1e21f95a70af0aa40680aaa7aadd7d97eb0ef3b61effd1810557e07e4f66a","impliedFormat":99},{"version":"7a9e1836ca2a5cb127f632c943bf1a602d8dd9b92e5eedea26e626df53b72be2","impliedFormat":99},{"version":"11c3710131c71746f85e2ceea40ec33953f4e46f74f157265cadbd69fab32ee8","impliedFormat":99},{"version":"2a9b4fd6e99e31552e6c1861352c0f0f2efd6efb6eacf62aa22375b6df1684b1","impliedFormat":99},{"version":"ad9f4320035ac22a5d7f5346a38c9907d06ec35e28ec87e66768e336bc1b4d69","impliedFormat":99},{"version":"05a090d5fb9dc0b48e001b69dc13beaab56883d016e6c6835dbdaf4027d622d4","impliedFormat":99},{"version":"76edff84d1d0ad9cece05db594ebc8d55d6492c9f9cc211776d64b722f1908e0","impliedFormat":99},{"version":"ec7cef68bcd53fae06eecbf331bb3e7fdfbbf34ed0bbb1fb026811a3cd323cb4","impliedFormat":99},{"version":"36ea0d582c82f48990eea829818e7e84e1dd80c9dc26119803b735beac5ee025","impliedFormat":99},{"version":"9c3f927107fb7e1086611de817b1eb2c728da334812ddab9592580070c3d0754","impliedFormat":99},{"version":"eeae71425f0747a79f45381da8dd823d625a28c22c31dca659d62fcc8be159c2","impliedFormat":99},{"version":"d769fae4e2194e67a946d6c51bb8081cf7bd35688f9505951ad2fd293e570701","impliedFormat":99},{"version":"55ce8d5c56f615ae645811e512ddb9438168c0f70e2d536537f7e83cd6b7b4b0","impliedFormat":99},{"version":"fa1369ff60d8c69c1493e4d99f35f43089f0922531205d4040e540bb99c0af4f","impliedFormat":99},{"version":"a3382dd7ef2186ea109a6ee6850ca95db91293693c23f7294045034e7d4e3acf","impliedFormat":99},{"version":"2b1d213281f3aa615ae6c81397247800891be98deca0b8b2123681d736784374","impliedFormat":99},{"version":"c34e7a89ed828af658c88c87db249b579a61e116bea0c472d058e05a19bf5fa9","impliedFormat":99},{"version":"7ae166eb400af5825d3e89eea5783261627959809308d4e383f3c627f9dad3d8","impliedFormat":99},{"version":"69f64614a16f499e755db4951fcbb9cf6e6b722cc072c469b60d2ea9a7d3efe8","impliedFormat":99},{"version":"75df3b2101fc743f2e9443a99d4d53c462953c497497cce204d55fc1efb091e0","impliedFormat":99},{"version":"7dc0f40059b991a1624098161c88b4650644375cc748f4ac142888eb527e9ccd","impliedFormat":99},{"version":"f6180169cfdf699aee7fddee717de1b8825ecb12bec11e009a3eb581d98c6fee","impliedFormat":99},{"version":"d64f68c9dbd079ad99ec9bae342e1b303da6ce5eac4160eb1ed2ef225a9e9b23","impliedFormat":99},{"version":"99c738354ecc1dba7f6364ed69b4e32f5b0ad6ec39f05e1ee485e1ee40b958eb","impliedFormat":99},{"version":"8cd2c3f1c7c15af539068573c2c77a35cc3a1c6914535275228b8ef934e93ae4","impliedFormat":99},{"version":"efb3ac710c156d408caa25dafd69ea6352257c4cebe80dba0f7554b9e903919c","impliedFormat":99},{"version":"260244548bc1c69fbb26f0a3bb7a65441ae24bcaee4fe0724cf0279596d97fb4","impliedFormat":99},{"version":"ce230ce8f34f70c65809e3ac64dfea499c5fd2f2e73cd2c6e9c7a2c5856215a8","impliedFormat":99},{"version":"0e154a7f40d689bd52af327dee00e988d659258af43ee822e125620bdd3e5519","impliedFormat":99},{"version":"cca506c38ef84e3f70e1a01b709dc98573044530807a74fe090798a8d4dc71ac","impliedFormat":99},{"version":"160dbb165463d553da188b8269b095a4636a48145b733acda60041de8fa0ae88","impliedFormat":99},{"version":"8b1deebfd2c3507964b3078743c1cb8dbef48e565ded3a5743063c5387dec62f","impliedFormat":99},{"version":"6a77c11718845ff230ac61f823221c09ec9a14e5edd4c9eae34eead3fc47e2c7","impliedFormat":99},{"version":"5a633dd8dcf5e35ee141c70e7c0a58df4f481fb44bce225019c75eed483be9be","impliedFormat":99},{"version":"f3fb008d3231c50435508ec6fd8a9e1fdc04dd75d4e56ec3879b08215da02e2c","impliedFormat":99},{"version":"9e4af21f88f57530eea7c963d5223b21de0ddccfd79550636e7618612cc33224","impliedFormat":99},{"version":"b48dd54bd70b7cf7310c671c2b5d21a4c50e882273787eeea62a430c378b041a","impliedFormat":99},{"version":"1302d4a20b1ce874c8c7c0af30051e28b7105dadaec0aebd45545fd365592f30","impliedFormat":99},{"version":"fd939887989692c614ea38129952e34eeca05802a0633cb5c85f3f3b00ce9dff","impliedFormat":99},{"version":"3040f5b3649c95d0df70ce7e7c3cce1d22549dd04ae05e655a40e54e4c6299de","impliedFormat":99},{"version":"de0bd5d5bd17ba2789f4a448964aba57e269a89d0499a521ccb08531d8892f55","impliedFormat":99},{"version":"921d42c7ec8dbefd1457f09466dadedb5855a71fa2637ad67f82ff1ed3ddc0d0","impliedFormat":99},{"version":"8ba931de83284a779d0524b6f8d6cf3956755fb41c8c8c41cd32caf464d27f05","impliedFormat":99},{"version":"34db640ce413888a468f52ab69cdb1340c838067ad62902f252e613655b92b8d","impliedFormat":99},{"version":"96ae321ebb4b8dcdb57e9f8f92a3f8ddb50bdf534cf58e774281c7a90b502f66","impliedFormat":99},{"version":"6ef5957bb7e973ea49d2b04d739e8561bca5ae125925948491b3cfbd4bf6a553","impliedFormat":99},{"version":"466ee93c609ca2463dd7c11231d9a96cd38d82d69e411c48d2872934d1c1ba28","impliedFormat":99},{"version":"976c1b964d20eb5504afad9cb762d427860208eb88442ec418b528dc65186b25","impliedFormat":99},{"version":"4f1c9401c286c6fff7bbf2596feef20f76828c99e3ccb81f23d2bd33e72256aa","impliedFormat":99},{"version":"3e94295f73335c9122308a858445d2348949842579ac2bacd30728ab46fe75a7","impliedFormat":99},{"version":"b711cdd39419677f7ca52dd050364d8f8d00ea781bb3252b19c71bdb7ec5423e","impliedFormat":99},{"version":"ee11e2318448babc4d95f7a31f9241823b0dfc4eada26c71ef6899ea06e6f46b","impliedFormat":99},{"version":"92a3096d3b30380847d81be5c627691099a2edf3ffc548b0195e96ab0174c9ad","impliedFormat":99},{"version":"a0057fd417f67791534e7daca9409a8e6a88920391820cf2bb083781d8ba5d6d","impliedFormat":99},{"version":"6c72a60bb273bb1c9a03e64f161136af2eb8aacc23be0c29c8c3ece0ea75a919","impliedFormat":99},{"version":"6fa96d12a720bbad2c4e2c75ddffa8572ef9af4b00750d119a783e32aede3013","impliedFormat":99},{"version":"00128fe475159552deb7d2f8699974a30f25c848cf36448a20f10f1f29249696","impliedFormat":99},{"version":"e7bd1dc063eced5cd08738a5adbba56028b319b0781a8a4971472abf05b0efb4","impliedFormat":99},{"version":"2a92bdf4acbd620f12a8930f0e0ec70f1f0a90e3d9b90a5b0954aac6c1d2a39c","impliedFormat":99},{"version":"c8d08a1e9d91ad3f7d9c3862b30fa32ba4bc3ca8393adafdeeeb915275887b82","impliedFormat":99},{"version":"c0dd6b325d95454319f13802d291f4945556a3df50cf8eed54dbb6d0ade0de2f","impliedFormat":99},{"version":"0627ae8289f0107f1d8425904bb0daa9955481138ca5ba2f8b57707003c428d5","impliedFormat":99},{"version":"4d8c5cc34355bfb08441f6bc18bf31f416afbfa1c71b7b25255d66d349be7e14","impliedFormat":99},{"version":"b365233eaff00901f4709fa605ae164a8e1d304dc6c39b82f49dda3338bea2b0","impliedFormat":99},{"version":"456da89f7f4e0f3dc82afc7918090f550a8af51c72a3cfb9887cf7783d09a266","impliedFormat":99},{"version":"d9a2dcc08e20a9cf3cc56cd6e796611247a0e69aa51254811ec2eed5b63e4ba5","impliedFormat":99},{"version":"44abf5b087f6500ab9280da1e51a2682b985f110134488696ac5f84ae6be566c","impliedFormat":99},{"version":"ced7ef0f2429676d335307ad64116cd2cc727bb0ce29a070bb2992e675a8991e","impliedFormat":99},{"version":"0b73db1447d976759731255d45c5a6feff3d59b7856a1c4da057ab8ccf46dc84","impliedFormat":99},{"version":"c814e7354540279a27782ddb17a0ea48772f40b9aa85acf1b64be90b3406dcef","impliedFormat":99},{"version":"2762ed7b9ceb45268b0a8023fd96f02df88f5eb2ad56851cbb3da110fd35fdb5","impliedFormat":99},{"version":"9c20802909ca00f79936c66d8315a5f7f2355d343359a1e51b521ec7a8cfa8bf","impliedFormat":99},{"version":"31ddfdf751c96959c458220cd417454b260ff5e88f66dddc33236343156eb22c","impliedFormat":99},{"version":"ec0339cf070b4dedf708aaed26b8da900a86b3396b30a4777afcd76e69462448","impliedFormat":99},{"version":"067eed0758f3e99f0b1cfe5e3948aa371cbb0f48a26db8c911772e50a9cc9283","impliedFormat":99},{"version":"7dfb9316cfbf2124903d9bc3721d6c19afbf5109dfbc2017ca8ae758f85178ab","impliedFormat":99},{"version":"919a7135fa54057cf42c8cd52165bf938baeb6df316b438bbf4d97f3174ff532","impliedFormat":99},{"version":"4a2957dfe878c8b49acb18299dfba2f72b8bf7a265b793916c0479b3d636b23b","impliedFormat":99},{"version":"fad6a11a73a787168630bf5276f8e8525ab56f897a6a0bf0d3795550201e9df5","impliedFormat":99},{"version":"0cc8d34354ec904617af9f1d569c29b90915634c06d61e7e74b74de26c9379d2","impliedFormat":99},{"version":"529b225f4de49eed08f5a8e5c0b3030699980a8ea130298ff9dfa385a99c2a76","impliedFormat":99},{"version":"77bb50ea87284de10139d000837e5cce037405ac2b699707e3f8766454a8c884","impliedFormat":99},{"version":"95c33ceea3574b974d7a2007fed54992c16b68472b25b426336ef9813e2e96e8","impliedFormat":99},{"version":"1ecb3c690b1bfdc8ea6aaa565415802e5c9012ec616a1d9fb6a2dbd15de7b9dc","impliedFormat":99},{"version":"57fc10e689d39484d5ae38b7fc5632c173d2d9f6f90196fc6a81d6087187ed03","impliedFormat":99},{"version":"f1fb180503fecd5b10428a872f284cc6de52053d4f81f53f7ec2df1c9760d0c0","impliedFormat":99},{"version":"d30d4de63fc781a5b9d8431a4b217cd8ca866d6dc7959c2ce8b7561d57a7213f","impliedFormat":99},{"version":"765896b848b82522a72b7f1837342f613d7c7d46e24752344e790d1f5b02810b","impliedFormat":99},{"version":"ee032efc2dd5c686680f097a676b8031726396a7a2083a4b0b0499b0d32a2aea","impliedFormat":99},{"version":"b76c65680c3160e6b92f5f32bc2e35bca72fedb854195126b26144fd191cd696","impliedFormat":99},{"version":"13e9a215593478bd90e44c1a494caf3c2079c426d5ad8023928261bfc4271c72","impliedFormat":99},{"version":"3e27476a10a715506f9bb196c9c8699a8fe952199233c5af428d801fdda56761","impliedFormat":99},{"version":"dbb9ad48b056876e59a7da5e1552c730b7fa27d59fcd5bf27fd7decc9d823bb8","impliedFormat":99},{"version":"4bd72a99a4273c273201ca6d1e4c77415d10aa24274089b7246d3d0e0084ca06","impliedFormat":99},{"version":"7ae03c4abb0c2d04f81d193895241b40355ae605ec16132c1f339c69552627c1","impliedFormat":99},{"version":"650eddf2807994621e8ca331a29cc5d4a093f5f7ff2f588c3bb7016d3fe4ae6a","impliedFormat":99},{"version":"615834ad3e9e9fe6505d8f657e1de837404a7366e35127fcb20e93e9a0fb1370","impliedFormat":99},{"version":"c3661daba5576b4255a3b157e46884151319d8a270ec37ca8f353c3546b12e9b","impliedFormat":99},{"version":"211513b39f80376a8428623bb4d11a8f7ef9cd5aa9adce243200698b84ce4dfb","impliedFormat":99},{"version":"9e8d2591367f2773368f9803f62273eb44ef34dd7dfdaa62ff2f671f30ee1165","impliedFormat":99},{"version":"9e49f7da9489d2adb89903feb27947a13c3ef39bd8ccc7839b7788cc8625b331","impliedFormat":99},{"version":"e4826bd7d31b5e3e665bf93a89c87146aef71873b1577decd15cc388fbd36c91","impliedFormat":99},{"version":"63868d70d64647c8087b1ca8b5ce3f60ef0bb25a51e7874cb69f078f07c9ce7e","impliedFormat":99},{"version":"6f5bb86c42cb5380ef95bf3ffb863f2bfa71fabbeff3fde1da401c26be77ed16","impliedFormat":99},{"version":"d643bc5859170c034cedfafd6efc32b03b925caccfba8cbd5c043a092be3f363","impliedFormat":99},{"version":"bf80dda0220be36ed95fa116bfe0ea4dae5153009e142d3c2b95cbb6f7e7f7e2","impliedFormat":99},{"version":"8d3e416906fb559b9e4ad8b4c4a5f54aeadeb48702e4d0367ffba27483a2e822","impliedFormat":99},{"version":"2b08774daeb69024e88925ded25e5d4cfcf4f99643dab356910fc6379bf4e529","impliedFormat":99},{"version":"56c1e14ce9c81c86186b4ce6c72d91e33aa1014382a1667555aba015f43aae73","impliedFormat":99},{"version":"8c42659846464a13a504edcfd92ec3d7944b3e5db07944b0ad6ed6008917639b","impliedFormat":99},{"version":"e1c48089a95e2b294112da7d3e9e2d3a847a1ddf047e55bcb76b073d3e99a2e7","impliedFormat":99},{"version":"e1c2ba2ca44e3977d3a79d529940706cef16c9fdd9fd9cad836022643edff84f","impliedFormat":99},{"version":"d63bfe03c3113d5e5b6fcef0bed9cd905e391d523a222caa6d537e767f4e0127","impliedFormat":99},{"version":"4f0a99cb58b887865ae5eed873a34f24032b9a8d390aa27c11982e82f0560b0f","impliedFormat":99},{"version":"831ec85d8b9ce9460069612cb8ac6c1407ce45ccaa610a8ae53fe6398f4c1ffd","impliedFormat":99},{"version":"84a15a4f985193d563288b201cb1297f3b2e69cf24042e3f47ad14894bd38e74","impliedFormat":99},{"version":"ea9357f6a359e393d26d83d46f709bc9932a59da732e2c59ea0a46c7db70a8d2","impliedFormat":99},{"version":"2b26c09c593fea6a92facd6475954d4fba0bcc62fe7862849f0cc6073d2c6916","impliedFormat":99},{"version":"b56425afeb034738f443847132bcdec0653b89091e5ea836707338175e5cf014","impliedFormat":99},{"version":"7b3019addc0fd289ab1d174d00854502642f26bec1ae4dadd10ca04db0803a30","impliedFormat":99},{"version":"77883003a85bcfe75dc97d4bd07bd68f8603853d5aad11614c1c57a1204aaf03","impliedFormat":99},{"version":"a69755456ad2d38956b1e54b824556195497fbbb438052c9da5cce5a763a9148","impliedFormat":99},{"version":"c4ea7a4734875037bb04c39e9d9a34701b37784b2e83549b340c01e1851e9fca","impliedFormat":99},{"version":"bba563452954b858d18cc5de0aa8a343b70d58ec0369788b2ffd4c97aa8a8bd1","impliedFormat":99},{"version":"48dd38c566f454246dd0a335309bce001ab25a46be2b44b1988f580d576ae3b5","impliedFormat":99},{"version":"0362f8eccf01deee1ada6f9d899cf83e935970431d6b204a0a450b8a425f8143","impliedFormat":99},{"version":"942c02023b0411836b6d404fc290583309df4c50c0c3a5771051be8ecd832e8d","impliedFormat":99},{"version":"27d7f5784622ac15e5f56c5d0be9aeefe069ed4855e36cc399c12f31818c40d4","impliedFormat":99},{"version":"0e5e37c5ee7966a03954ddcfc7b11c3faed715ee714a7d7b3f6aaf64173c9ac7","impliedFormat":99},{"version":"adcfd9aaf644eca652b521a4ebac738636c38e28826845dcd2e0dac2130ef539","impliedFormat":99},{"version":"fecc64892b1779fb8ee2f78682f7b4a981a10ed19868108d772bd5807c7fec4f","impliedFormat":99},{"version":"a68eb05fb9bfda476d616b68c2c37776e71cba95406d193b91e71a3369f2bbe7","impliedFormat":99},{"version":"0adf5fa16fe3c677bb0923bde787b4e7e1eb23bcc7b83f89d48d65a6eb563699","impliedFormat":99},{"version":"b5a4d9f20576e513c3e771330bf58547b9cf6f6a4d769186ecef862feba706fd","impliedFormat":99},{"version":"560a6b3a1e8401fe5e947676dabca8bb337fa115dfd292e96a86f3561274a56d","impliedFormat":99},"8c41ef40eb246b9f712e44a58e3651c436ea1118c27408171fcb3bda393f6b6e","6bafe023f6fa48178d0c5bbcac2d304b12ed043583484e681265cf215b8f7827","fc84d9d5b7341572beb663386efbe6b6d63b5f0aae93f484931d82a7ddc5d779","c8df58fa7a180cccf9541b2f4370228c884b9d0a0fe4c4b399c697f0defd7b63","9b07253f897be39ff6a0f9263ac3d786a69855648b954afb4130d4f8fabd55d7","b4efc1ed88b692e37684ab26fa64e56e4d1e66e65574ed57537bd8227fe9469d","063c7b7675bfdae7f65e3a953479b20b74891e0265eb5851d7a51e34867a3df7",{"version":"191f3389c8a36494dc82e84ba1eb80cb95f5570d045108448704595a54996609","impliedFormat":99},{"version":"3c2ee3ef559588b93daa9757e6169d1bcb898b0853cc46cb7aa76364286f9ad4","impliedFormat":99},"62df35bf454f38649c488443c351e9086dff02f3983fbbce078b38914f4aecb4","c783a0cca1f33a2997b51e947bd620754e8bc770ffb06a55a1aeb01af3daa091","94eec62368463be10e35059e62eaca6fd3e1fba4494790293c1ec20874889049","d60a7f8215c3c89afa0bebba83d344caa7d23a5df7370c1b625b6f9c6ff2c376","04995d1ebd22d52764b69679440b3695f2f42fa10264b072bc3fdd10369262a6","308ed4dbbec8cbc9a512957fc232d7602bbdc2539faba3bd3817cff1ec22811e","bef21a9dcaf4d518ba72e29d8c1108132444ff366e4a396c0614ad976e53b37f",{"version":"b4fbfaa34aacd768965b0135a0c4e7dbaa055a8a4d6ffe7bedf1786d3dc614de","impliedFormat":1},"6d1c1f5c685a442dbb83e42b1894aa4892634c1646e884c19e36e49ce7cc8fe4","4684d749b343c61a87b0bf5e69c8eacfc90f96f036fcd04ce7575d4aabced541",{"version":"8258b4ec62cf9f136f1613e1602156fdd0852bb8715dde963d217ad4d61d8d09","impliedFormat":99},"6a78bd95bbafadd9af9d3807ad23a96dba2c763c9156b5120b63618f6ea5d47f","bce34cf5361f7f5c101871f16f84a9512e0049d563af05fcc1a4a67c5aad8cea",{"version":"c469d07daf4f88b613f0c99d95389e049e85c14f28f58120abca6785a0b3813d","affectsGlobalScope":true,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},"d05a769cc4908a47b2ed4e33461be5f8917b68e4a187d8797d1c1bcd1079bb25","800de8d8eddf34f9b8fb45a6d9eda6b7b418658b51a344fa435e8cb6db2e17e9","ec47cee80c9700ef80180c153b88d99bfb7da2495df209a8493acc87c20ffea2","d68754644c58163dca3abea72f5fa65b1c62b73bdb50a7d456175367d44aed16","f8390928d876298db19dd1f2e53f1758a991e314f118fe977431765a9acc6b99","c47bd0cc0bd18af217680c20360962830466c7de54e8dfd9d7a50446a888ad25","47d39f0d3f35bcbc6fed93163ece2025f15e79066e20b7c871da3da5055a484a","46cf12afc56c71a190a430ed1af1fc61c9847fe5372030aa893cd8e9da7a01be","c5d499cfb31a4199431d8e6aa08d4b0e9ab02943e6560140c112bc7ca14e71ac","5c41a40f6562c3fd45160c7a36a7f24c7a9ea8d60ec05e3346cfc0fb199249b0","261578b082ade4a9d4fcea56fce70d77038f1648ba556b4b4b3120f60694fce0","3c47b748abc9229b531fe62a7f17025c8db9962c07ee69a5effeb660158bc0cd","6f7d3e085a492427f9cf513812a7d0ff2104e4da89b51fa89adbd1864d9e3fa7","bf52314d9c79cf0bcb2c13442d66ea0484ed93d92b91c0972975197d2c0d55fc","2c7e3054a5907bed8f38112bfb16ed01ed8b8b707c61d3174d8e7142a6b49f54","e4cdfeef544a3cd588d3e0b02918b8df3b5111c1ae4e8a08b7d24d778099519a","35d10921be3852c9d5fe99b34b4cefa03a845fcbef33c9e7ecccdff58ddc77bd","340c3218d82171dc70e14419875819c00b2bd4ce9db90da8da864d9acc71ecb3","6758b2522c71388e2c0fab238281d7fe4c65a0e1804e06ab08fa55ab7c59db18","bd262446b965d62a764c77a195dab085868f0cf44e0041228956966066de9b6f",{"version":"9d2495c09f18b4a839854c5d37bda43ce8191b613ebc571a8c2d0f5bdfcf2a3f","impliedFormat":1},"c0a4568b6d799c090769e1e3903307c4dc9fea298c2a88f61b6a12b5495b7a7a","899a3e6980b6bb29eec4c108e053f3bedeb97c54eaf6e6a08a1dfba4ab16284b","aea506f8b608c6c0cafeee26a92aae01b44a99431f44e7b706995a51c8d4cb09",{"version":"614d5a3113da6375ed51c5ab4ee07c4b66aa71892596733db4e25fafbe7d264c","impliedFormat":99},{"version":"94a3f5e0914e76cdef83f0b1fd94527d681b9e30569fb94d0676581aa9db504d","impliedFormat":99},{"version":"5e0a3a73aedeb82593976a47787b18ef04a61514b98b45b328d48b6dd1eddf6c","impliedFormat":99},{"version":"04d3cf25db718998c566296c7bc938a3170f4462b1fbbf1d324b21be40177af8","impliedFormat":99},{"version":"4c1f82aa595ccf1ce285b2219b5c472cee8f4c9d21b2fe53d9be65654d12a893","impliedFormat":99},{"version":"9a851864e5702fa1f59d49855bbe667d77e61b0e1138675acd9933f57f9be311","impliedFormat":99},{"version":"e19e82d9834303b10cc49945c9d1e2f5349004bd7c8c4a1f0ae9b69be682fbc5","impliedFormat":99},{"version":"bea9a1eeca967c79b1faef469bf540f40924447c754435325185c53ee4d4a16b","impliedFormat":99},{"version":"9f10481b11a6e7969c7e561c460d5688f616119386848e07592303e5f4912270","impliedFormat":99},{"version":"16e3c387b5803cd54e89e7d7875d5847648e6019265e00c44e741e16e9e13287","impliedFormat":99},{"version":"866a4060991136808d3c325420d03e47f69405cb364395c65018affc0948fa9c","impliedFormat":99},{"version":"3d330974280dab5661a9a1bd00699daf81df36ad766c4f37283582894ffb15de","impliedFormat":99},{"version":"ad5a9d47bd9596164e00bc129f9eb8074ef1863812a679f57fa4af4833ad87ad","impliedFormat":99},{"version":"850e32fe7a5e300eb330562410011ffbc8843fbaa02fbe7562ff9bd860903b87","impliedFormat":99},{"version":"9e85500050a593f63b579b0a9340909c810987a48a9c09d5f7e46d5196bc5368","impliedFormat":99},{"version":"654bf243ceac675b96807da90603d771546288b18c49f7deca5eebdcac53fd35","impliedFormat":99},{"version":"80aecf89123febc567973281d217209da5f5e1d2d01428d0e5d4597555efbf50","impliedFormat":99},{"version":"ed239ff502ac351b080cbc57f7fbd03ffdd221afa8004d70e471d472214d88c4","impliedFormat":99},{"version":"ec6a440570e9cc08b8ad9a87a503e4d7bb7e9597b22da4f8dfc5385906ec120a","impliedFormat":99},{"version":"0cfacd0c9299e92fcc4002f6ba0a72605b49da368666af4696b4abe21f608bb0","impliedFormat":99},{"version":"7cc93ff349774f09694f3876f4ccaeb6110638b1d523637672c061a72dc9f769","impliedFormat":99},{"version":"df2c9708aec11e8c271acbdfdc5d246db35abcdff5917ab032da29a2cd3f7891","impliedFormat":99},{"version":"bb871e5403f70b415aa8502df7f3086dfd7755395ef591706465ae3af6ff2918","impliedFormat":99},{"version":"8a98f6435239b5f20c98864ea28941d6fb30f1b84c88c05174ee94e9a6a83c50","impliedFormat":99},{"version":"dd96ea29fbdc5a9f580dc1b388e91f971d69973a5997c25f06e5a25d1ff4ea0a","impliedFormat":99},{"version":"294526bc0c9c50518138b446a2a41156c9152fc680741af600718c1578903895","impliedFormat":99},{"version":"24fbf0ebcda9005a4e2cd56e0410b5a280febe922c73fbd0de2b9804b92cbf1e","impliedFormat":99},{"version":"180a81451c9b74fc9d75a1ce4bb73865fefd0f3970289caa30f68a170beaf441","impliedFormat":99},{"version":"8a97c63d66e416235d4df341518ced9196997c54064176ec51279fdf076f51ef","impliedFormat":99},{"version":"87375d127c4533d41c652b32dca388eb12a8ce8107c3655a4a791e19fb1ef234","impliedFormat":99},{"version":"d2e7a7267add63c88f835a60072160c119235d9bda2b193a1eed2671acd9b52c","impliedFormat":99},{"version":"81e859cc427588e7ad1884bc42e7c86e13e50bc894758ad290aee53e4c3a4089","impliedFormat":99},{"version":"618c13508f5fedefa6a3ecf927d9a54f6b09bca43cdefa6f33a3812ad6421a9a","impliedFormat":99},{"version":"4152c3a8b60d36724dcde5353cbd71ed523326b09d3bbb95a92b2794d6e8690c","impliedFormat":99},{"version":"bf827e3329d86aeef4300d78f0ac31781c911f4c0e4f0147a6c27f32f7396efa","impliedFormat":99},{"version":"23034618b7909f122631a6c5419098fe5858cb1a1e9ba96255f62b0848d162f0","impliedFormat":99},{"version":"cb250b425ab81021045f6dc6a9a815e34a954dfaaec6e6c42a2980b0b2a74f9e","impliedFormat":99},{"version":"7a8fabc8c280dd5cc076910119ac51abfc6c54a62a7f06d34b44c0d740b70b72","impliedFormat":99},{"version":"23036c4ae22fa5b1da63f6c0cda9670a4db7fd87668397a465598882fee9de76","impliedFormat":99},{"version":"e0127fc5a1114a4d2c02ace6aa5fee5bdd083e0d757376b10cb5c55efa5c32e7","impliedFormat":99},{"version":"1a36dc16e64e5890734f1496e3270d1235f97b2ad3bb815e626759e20c9ad4de","impliedFormat":99},{"version":"8055e82c33db5088291ac0d19e8ed84cde792c1a4ce27fb5dac7032441a4f535","impliedFormat":99},{"version":"6f9b89d1f1d1259e7f04fb3631d4571f08d61fbd7129b640482ae25eef3dfd82","impliedFormat":99},{"version":"f0de359fafd04f32f2d8e8ad6e061d98e589545460475d5ebd51e8492cc14ae8","impliedFormat":99},"e0c73d17de044dc62b314ac4c159b9d09d41c519ad70668956f45a4ba6c21250","6249363fc9ac86fe2d55e3fa20a7aa71dff7ef3fce3cde37d4e0752884054112",{"version":"2449badd44b1585a56a6bf3bd5ea44f31fa8c36e3f967c38b2a218366e308c92","impliedFormat":99},{"version":"c2b44619f5b7ae7826198385f265b7c11f3569bf1c96cfa6d00af69857632391","impliedFormat":99},"ceec23b5be097fa2f39ddf5d2e4a41ac34d92df2e84c99e762a117fcbbcd68e7","715cfe5659c3147e673fa08d39d5a25a78f1b5dc8e56bb4ea89765f17c1f4115","7e3183ee04a82271bd0edceb7370e792fe66bad3dab5a8229e7f042884305daf","f8faef6d5e57b31ac8e81532e7a0ae7fd9e2fb0864630b162a27ebbad4028739",{"version":"f9d5d369ca3d41bac562069c38aca068c73b33e9d76fa0f582459720d3423fe1","impliedFormat":99},{"version":"daf6ff3ec1d79aeddfb3c9aa3b6f4c892c4ec916a89de64a34306e193a96e3f5","impliedFormat":99},{"version":"da2c4843c3dee4f24ccaaa9f116d42f57cd290134ed238327a1b5f461983679f","impliedFormat":99},{"version":"dafb34c287e807a22b3e64ce21e2f3d5f413f1e30456e6d4b3a26f9c1505156e","impliedFormat":99},"c2044e47c463780d0b6bb4c7279edd5e50d4d5e4129829891c5316fd89295cb3","d124c961ad2e56b60651a48484bfac6412db9da63de6c8b4f9e7333b26c184f6","c8e45f03f8009f81ffe08011099035fbc9e6f1aa83c874324fcb72bc01de1861","966f91beca42c3af93bfb805a7bbba85a65c72439211aef6e2b7348a81602a2f",{"version":"7f8100513274d35a3fc22a543d469134aa3c15f0c5601b7e6d28954f6a4a4e35","impliedFormat":99},{"version":"4ba483f583e1583499cba49664f0a5e4bd5f481f0b3d49f7d6a7dfbe985d2c93","impliedFormat":99},"e69a7cb8cd3183bad132fee57fdc9afa62501042459a82f38d5f10536444ee1a","14ea473542ce7c88c51cdb34e3bed838e015a2173e72c8cde710f65c858d0d90",{"version":"8816d9f4313ef51b4cbe4a6b3be164603cd0fc8ea22dd85a61edef12340a4a5a","impliedFormat":99},{"version":"ac60b42b63f76a0d715f6a3c2ed72dced3bc50626c45cb4f5fc501fc7b64aabc","impliedFormat":99},"e27224f5b68a8c223eaf147904c12b151e77889fd4d10f0a1d9182edda811990","96b21cb167c108bc3ab93e415c9ad26abe96a4f2059b5339e45eaac6d872130e","e6a4932f15d86690c9ca6a35b1a96483c34fac70face885f3117003a8d51bc0a","4b818f84f8a82a25867b592a5e66f98499ed797d93baa2222cce4aad1e1e593f","73339229107d1da36e023bde9262d53d2d66c34b2cc127bf0e585973326cf0d7","06463f1c2adfd2da9d5fd4c18e7e115945a7b90fa94af26052d2e964035ee4ab","f0f6d1774973a94681fdd05b01c8973f209d72717586f0e4a2ed8bd203f8e111","0a2a189b6c0bbba27d4d4afc88a0c5921b4d09f9dd79808c1b31d18bb359a54d","6df7d3baf675dc4732a8af713fa18d97b859970de5c3bd4c64942303fb537b80","a2ffab64c5a0d96a1a83c0f29dcf7cf44b1ae0f90eb19b5218ee7547bec7fe36","67263406333cf7e4684cef0dcdbbe0f26ae88fa890adaa4013a7f3184bb7cade","6b68c651d409a46c85b47d5d21a8df27705516f0b943bf9a8064412628a9f05a","7b3d57763a5524367a44b243450c8a3b8f804b01d2f0249c7afab91ca67dd948","06ada0b136c41d30eccfb1a803475de0d4581a236f116a1e3f5bae07107f4dd4","4fe822ee6e2fbeadbe31511ff954e982b0d8ee52dc525773384f4b5f526de016","a43a87ad633f381b5f9f9a9a5cea62ee968d6d4c3b121d13805765becd3cb69f","fe49dcab1afdfac78abdece0c189c8215e6c17d7b3032ca6f86ccbd6646fa30f","0c19f0e0aaded4d51cf757bee461619fddaca5d7b6ed15e491c6d15b692697d5","6f36e85c8f669f3b66a592c2a8e7097f2d339c98243f5e65464f7c3d0eaacafa","523d8676256833edf41ea144559b5ddc20aa6ef1cc4c0aa3fad59564ad99a382","69bb86d740ad55a08170380c3d4278c63891b693df832f9eed95ac8c65714487","edc1ee23ab797751ff917c4e3aff90401a01cd3d1d109ad7c59412f5f6a8c845","25621f2abcefc9b39faf750ef8538ba890f7c85cf42635ad6808036c2d773869",{"version":"51747d7a7a3f85461049c283a951c46c04369f8029fa5b04263fdd0a0c2b0685","affectsGlobalScope":true},"e0d83a226b1c2ca6aa366f96662612fc25746b678d39f3a2180f9936bcae4cc6","5250aabc78d8ca21ba7763b34848e1f540889c33877b874b95eb7003d711818e",{"version":"31a863da9da2a3edec16665695bdbc3134e853195f82dafec58e98c8e1bb3119","impliedFormat":1},{"version":"0ac5a62a300e7d6915beea3e6b51549d1cc3afc6715930c775928f05255dae03","impliedFormat":1},{"version":"8171717a40fc99f4a8875fdef9203a3cd239d81c77e59cdf2c594cba97f2947d","impliedFormat":1},{"version":"7bbc221ff2b974f2b06c19c87b5e1047ddfc8a8ba2bee74b2ef09c2b9b177ba8","signature":"4c8134d97b9ff285afa78d10aaf869b7477dafe189930ade379164aacbd62bd0"},{"version":"2f146b569ee27944441130016496d079a9afe76f4769d2ba69ced490b82d6941","signature":"fa23e9c5fe4399a1c674daa74b4d31d29520a7a2489904f5576ef3fa95d3fd1c"},{"version":"389f590e8caf51cdcb9f8c5a9456b2432aa618221cfcfb104545b1053e55f0fe","impliedFormat":1},{"version":"bf3096a4833a5aee6db86392731cd2220c26d2c2a1289c99926ed08b190c2204","impliedFormat":1},{"version":"11c8c7fa6125ae624e1db191f9a8e5c32928e6f9a716d7369fec1f60de1ac7a9","impliedFormat":1},{"version":"01229c00f28c7a335d91a0053e3cae6ef41943ac3d3bfef8735dc2e638d628d9","signature":"026f816710ac0d68d8a903b6c63681ccdd3cee1ee34c8df1c5aa62ed9ea27d4f"},{"version":"ebbb00848f3db995d98f84b6421445d0d1fa71cae5539e417580cb3fe27b001d","impliedFormat":1},{"version":"4dbb8c6126700a8537d55b1fb956cfda0c841cc9e866c2cb1a08ce3f3421ca0c","impliedFormat":1},{"version":"12ecd7d96b7209ad27d566cfb4b04d73489287375a67d6a11fb2fecc03cc4789","impliedFormat":1},{"version":"d8225bfefaa53cdf029a26c182092d671eb2826a0169860218e889876780f606","impliedFormat":1},{"version":"44bd273abbfcf6db677189ab0341335838f79ef25f42ba80607486065a6cb022","impliedFormat":1},{"version":"17787b85e06e1c5eb9fbec2333b897a82c53f7f1eedf1c9be60ce0b789b697fd","impliedFormat":1},{"version":"6a87e68ee8b64da2c7747aec468d0f01ef2f0f9364159192dce1cda1bfab526e","impliedFormat":1},{"version":"3ab840d4b93a1068d45bedb562703565aaf56ed126a4a60b5b68d7f7929bad6e","affectsGlobalScope":true,"impliedFormat":1},{"version":"977ef7423f6df4dcf70144712833da7922293e37813293db43a728f482d25abd","impliedFormat":1},{"version":"0debb34aee907e610f311f90b8ea7a672e95f30826abeaadc2b31af4076c9344","impliedFormat":1},{"version":"b0474fec7c45a73eca31ad530914fc587ebddeed29f69f96653d9afc4144da45","impliedFormat":1},{"version":"717c85e439a2e28054138caa84613aa81252448a4a9f4f4c8e66cf430f399cf9","impliedFormat":1},{"version":"19bace661c2611c1ae473e95fba01e7f2ba898e14833585e97004dd13ffdaeda","impliedFormat":1},{"version":"6cbd90b625406162c9716c2a280046fc69c660cad543cc86546df943f35c1508","impliedFormat":1},{"version":"3003d045b098f9f972dd88da5f02849aa77f08d7da5908a615e7d7c54b22414a","impliedFormat":1},{"version":"492b2b0b901339423d352437bc1c36bd4999fbc9b2f4a2d6c8556bc169a42dab","impliedFormat":1},{"version":"32ab20cd6b684e58cffe5ff53e16388726e9480a1b87402581e0a29f94dcb500","impliedFormat":1},{"version":"a109bab41468dc2b6cf8e54cf4c3a4816cf254ead4ab82af17f2f8d63bea14fa","impliedFormat":1},{"version":"a7eec4015f9f31540f7a0c5e5bb27024d656ae818052edcf72f8eb450277574e","impliedFormat":1},{"version":"45016de701bf4c613b68e2722e07f3d44dc5d3785bc042736caad77e6eb8617f","impliedFormat":1},{"version":"d7ee2ba7aff83a473c8326c68b20f1e0c3ff19c41ae5fdc6b77914de30cf154e","impliedFormat":1},{"version":"b0efcfd1541793bf77bb92a5f3cc599976dfc39cf423c57ca667527ec3b99bfb","impliedFormat":1},{"version":"51db3a0ae7ea95784cbf098b02245c903e501e5e61280318e46c263636396e33","impliedFormat":1},{"version":"183ea071b38c670283f0da9588e300e9ba0ce042a871e76a073316db3edee384","impliedFormat":1},{"version":"9ebbaba0e0405c1de896520d4fb403abf8d8ee72d26f002d4ae880b04e3fe504","impliedFormat":1},{"version":"8b3799f3f6e33fff531175f2b3263fa3ae8a86171885f7346e40cf2b220c4b10","impliedFormat":1},{"version":"7c3cb1295e68bbb50a196c6f01c7fa39332019cad4c6f9b2aad18d05050863c1","impliedFormat":1},{"version":"ce4505fec4d5ccce704bd761032150ac777220e86ca4a7076680f9d5cb4c4c9b","impliedFormat":1},{"version":"020ee28c1bddda2f86be05d890ba4c149f57ca56074143a8fe78d83899758425","impliedFormat":1},{"version":"42c9a8be7e38915cde51ef418e77c9f7214594ce8bbae2ddfbfff5bb483b8fb7","impliedFormat":1},{"version":"e1e60044a3fc7d50148e5a9c532e362dd2cff372ebdae6cb2c581a9db2dda870","impliedFormat":1},{"version":"13a57c395e9c3f521f5dbb3f5402bd292a021256add5b82423dd72eaca430682","impliedFormat":1},{"version":"c4fe4b713057e24f416d3d1f31b3dd3e7e4076ac45df9a0ad84b39e4f752cf76","impliedFormat":1},{"version":"e34099c974f092f6cc8c14c85bb0afbffbb68931f2de5bfe48647d2b5b36a0df","impliedFormat":1},{"version":"22881092dd29229f7021406037952a140af6a31e3bb6e5afe2d34631bce395dd","impliedFormat":1},{"version":"a367142fa6b8c731477132e4544a186cc026c9de4a141f1e4b01ef8a7021d39b","impliedFormat":1},{"version":"04420d078d6623ebbc2535afc161752d946332ba1dfe5521d43e7b89dffeb4ba","impliedFormat":1},{"version":"b50cbbd2634768355f6a0e4c4627ecf38335255c329774c5b6a427ddd5d0d7e0","impliedFormat":1},{"version":"ef96aeba50c084deebbabc1a20531661a7dd1ca156a1949a5e6a1851da56faf1","affectsGlobalScope":true,"impliedFormat":1},{"version":"47b7e252c48ff7df4ad699fd075a0cb886af3331bebeba1aabed0b91455c0342","impliedFormat":1},{"version":"7af83d3e12b6001b13aa61a18d7a387e6f1d18046feb6e0d88cacb687a0f9e4b","impliedFormat":1},{"version":"528e7087c8e41701cd1af78e52bdc107553eeb44245885c5cd92b2dd3209a6b4","impliedFormat":1},{"version":"48f3e2543105da93484b51b1979764f345befa92e4d2031109cf2297739c3c95","impliedFormat":1},{"version":"ed72a007824232a882f64f8f2a740b559395daa92d64bc1a2b2d7d46b5043f2b","impliedFormat":1},{"version":"2f2275fb011f92825710c151ae9cd29d9aa1dedbcd99fcdd412dbbe644757e4d","impliedFormat":1},{"version":"5aab0beb002a8377f057c3c01ee0bbbea15dea9910d232ff0901246ff38b409a","impliedFormat":1},{"version":"8ed87063aee382f86ccfae2b7d3fae2e74da134925abb80b183bdf46349cc0c0","impliedFormat":1},{"version":"47185e54e14ed8200ce9d92659fe20814fb41c818fda66de9a355a7e966fffcd","impliedFormat":1},{"version":"4c3eb6793b9a964d4733f058fcce788aa9ad6ba20c15c2bc4b70e9be8a7a5f00","impliedFormat":1},{"version":"9620e0f8e0e9eaab580c0a58975c2cceff1e3c849d751803d10ce638ccc7d79f","impliedFormat":1},{"version":"7fa548f715d6efb9260523c13004c14c260d117483e2db94bcaf69e06271bc3e","impliedFormat":1},{"version":"bfbeb754b74a0417c11e1c8e73de108afd3ff10ebcf9a9982a1582a2222e7a94","impliedFormat":1},{"version":"5a2a29cf8d1992bbbd9c42dd13df0e36a89b71430f3ae5b95e49dca472f62de8","impliedFormat":1},{"version":"ba824ca8cc1d6aa8b9c271e2dc303f2df87111667648837ad7eceedff53af1de","impliedFormat":1},{"version":"5ff8dbf3ca49231ca698550c93e68f6a5b2decb982640f266d5b01b664b797eb","impliedFormat":1},{"version":"e47d9ea0c1f685c8bc22af368bfab9b8d7a597a46c0caf5f94f986b8ae378e7f","impliedFormat":1},{"version":"6dd37bad0dcfb23fb6b2e1cb562aa11bfd3690e5195e912d296fe4c55bae0130","impliedFormat":1},{"version":"2a4b6ac70b71d5132ac61aea1d8e2e69e5a48049d6a0caa1a5cc8f4401656b2b","impliedFormat":1},{"version":"b99c28abec21c11032a77cd3152ea1a423e85cf63beb1b5b1a334aab0f903989","impliedFormat":1},{"version":"98ea1f69ceadcaabbc7d3ecebcca7812fbcecd357cad4d580ed590107c5f6190","impliedFormat":1},{"version":"784ea15b7d316235e9c0c5c389b03c7f1b4c4ebeae43775874a24d7515f54d8d","impliedFormat":1},{"version":"d0cb9f970a6c9ecc3f207b0ff78f2c9b362bb5dd884eea8f293c9f4a313164c8","impliedFormat":1},{"version":"13901d6ae6a46b2a00c31ea4642e97a132890482ded15f1cb5aaf75e9a1cd12c","impliedFormat":1},{"version":"703c7e1672aa6bed30995e7f8957f5d2d6185f81f58c0981ce01eda8e8cc0688","impliedFormat":1},{"version":"718a8901abf31edd5d7ce45b4bd9685ecced9b2e7f63358e75ce4cbd5975bf96","impliedFormat":1},{"version":"04abab10474ee8525c0a75279b148f003f087e96add3a530b53b4ba03e6cfef2","impliedFormat":1},{"version":"b511a2cd2beb613dcab7d7dade28043a585daae27d4a3b3f090e8de755eacc77","impliedFormat":1},{"version":"e75f775af15a872e041f24a603757dec876ed7f3e00ef196bf27cff997400c31","impliedFormat":1},{"version":"fbd4252743bf7c516bee742646cf63378684ac4cf81a3c1fbe042ef92c3c4609","impliedFormat":1},{"version":"c3d013d67e14885b4be9821499c4d18765c5aad60fbdd94deea94b4dcded5d2c","impliedFormat":1},{"version":"9ff70f1f2888794b7add8e71f4cdf678c5d77617994c7ba6a68c3c9286cd5e73","impliedFormat":1},{"version":"e7129e188b4e49e6874e81addcbe762ccbb968038fab5fad5314b191c8b87e84","impliedFormat":1},{"version":"79a6a1c92eb5c0d50af51c0aa13bbf4ea375fa458eceac97e20d6612de3cfa0f","impliedFormat":1},{"version":"0aa61eda668cc649a15601ab9ebefb17c5e39dc4e12c7b858b3b87633520027c","impliedFormat":1},{"version":"ac4da7c64922b43f7d5d1c525afcf724a86a6517422435dd363c6e584fcc63e4","impliedFormat":1},{"version":"ceec3e35a0418dd4f8481d1982c9e5779bcc01081ac8ec52e036a7d56141ca33","impliedFormat":1},{"version":"671555eb6a40157b285499d4c319252326f7fcb7e8a0b152f3d3623bc4dc3977","signature":"53b7ccb8d97251d795061ed5099da785eb656e99b20a2ce5ab51a4e91bd2f253"},{"version":"4101097afe4a6d8204f41ff6078be359472cfb3d9fef81c35d8c4175023b3299","signature":"4ff2da075bd8413afebe72df435cce50aeffd0edaf33ff28892786e6dcba6eca"},{"version":"b4c08335afb748ea77ef9f9570755d1d2ed9e03504b7ec3150a61c2e2b2ecb97","signature":"da76485c653c673856213f3ba382b20c68305f755958de9ed928de1c4a77fa0b"},{"version":"9fc5d731128308eed5142d102df5625c696705795e4a2ee4267636abc3961160","signature":"0528dc235c3b80b119817c5489980c96a74109d2f562e74bb4391e638fb991c7"},{"version":"2bdb5874394cc8acac477b8ed970cee4f6a7b0ee16227ec8ca75cd271fae9c17","signature":"831304c0a4c6b4cc1db5e16545644fdb82e48c1167cbac4899abac6bab472915"},{"version":"efeba10b347d003545b9efe63ac6cf1549e7735df7c68229227a461683d2188b","signature":"51af423c6c963435d5bedadef4fbbe6d16d26dd3e9f7514158c7e682b85b2cf9"},{"version":"2f88e588772648bd7ba4c33352781ce0aa5e1442fda772bde11de274651b99af","signature":"08ae17c88f50b4a92d38aa2793fd85613b73c0eb1ad7b9688410cb86af1bef77"},{"version":"0d8cd0a79c6460060a97a5b2335470f471c3e2c8b6cb7edd9257424cc30a97d4","signature":"ccc08661815bcf7a3534913b56d23b2bf8ab153da964abab4da3f846bb8d0b43"},{"version":"577a968a34f3aa9f4e8ac6455f3f175e1bc8ef95a903296fa501aec5e29da27c","signature":"a7805b0a16c393e0d0cbccbe81deb0eadb3b2b33890b25124c03a93c24ac964b"},{"version":"81e25dc8cf34848c5a4a7cb7e0aade4e182e7f24367ef5b430f27b05fcd38c00","signature":"3e32888a833922c5664cd3ec1bf8bff6f1c3bea6ed779fedfec6730ccac7ec82"},{"version":"0b5645f7d1f0a9cf33cb61ae469804345157b0bba13f9c3c03e2816023a596a8","signature":"333b2508bdcb20f33ad73957ff398aaefe1bda4d6c3ef22cfe7de417a13c5c79"},{"version":"df97bdb36f4f643dae51290cda37d2e2c582f8034564c3fc5c412c4519c88234","signature":"ebb7fe4595c29bf5ce55ee35dd27cf2074f31bb0a9558a74d6fec3e45da497d4"},{"version":"497409a31c65e2be030cf61af486c5da35800d8429191cd52c35d0efef8f0fe5","signature":"25b17c7b0eea060cae14f3042fb48e88289ded284f73e84f368e59ef6a9839c8"},{"version":"9fc948111d3349399913be4d18ca80b739e162d11249cd0f813fa76da65395ee","signature":"f27f6409851a03c41156a3ba3a1313a2eae8657eb655f6c8bb096ee44d503b24"},{"version":"846a4f3c67515605c9f349a06ababe90e868951cefe0a9bad4d22c5449bacfbf","impliedFormat":1},{"version":"cb2356e9caa7659c6e43dc829185509affe07196fef73e24e92eb23a4e13bde5","impliedFormat":1},{"version":"e99d6bab52ec834d15f96e8db4e4318035f830976e7a75281efd011f7fc79aff","impliedFormat":1},{"version":"12358f668683605d515fa570848941e73fce47ca6107fabd61fa4b5d22383526","impliedFormat":1},{"version":"6fde26f25b1b994237bffff0117d0a0a32dba279693b93b2a75fb442fd545dba","impliedFormat":1},{"version":"c6a36c0f1cc8448d0e1af050afbcf699bf8e84b5c82b07fe7b23d98af0e3f1a2","impliedFormat":1},{"version":"41a40ec6ec8f4796b0a1c49ca1d8e55a9b0867d18e216eeed8544c7318b51f13","impliedFormat":1},{"version":"d8b61657ba0d006524f084539e79d4a68539db92bca70dfd670db3737f8f5793","impliedFormat":1},{"version":"1805927f1679fda033b8795397c638beb52b27f1928cc1e7514ec7219209e7d8","impliedFormat":1},{"version":"73a0ee6395819b063df4b148211985f2e1442945c1a057204cf4cf6281760dc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"d05d8c67116dceafc62e691c47ac89f8f10cf7313cd1b2fb4fe801c2bf1bb1a7","impliedFormat":1},{"version":"3c5bb5207df7095882400323d692957e90ec17323ccff5fd5f29a1ecf3b165d0","impliedFormat":1},{"version":"89b844027d4476926247de2226cca6ce7a8b19830f89a786186c96f31e3fc3a2","impliedFormat":1},{"version":"3ee468ba409b231f05d8120a257d8fd52f81db173cfd55d2d38825d4a9e0d4d8","impliedFormat":1},{"version":"3ee468ba409b231f05d8120a257d8fd52f81db173cfd55d2d38825d4a9e0d4d8","impliedFormat":1},{"version":"f6df88822756d6c81588555f24af0724a79f511f01a89027e13a518cec8b77ac","impliedFormat":1},{"version":"faa5c507b5ee926b4e5c8a30859b25877980bb42e003f085a6f55db3f1ccbc88","impliedFormat":1},{"version":"816ee40c2ecf1cae9c324cc2f7cd449c592a401f3b8c719c8c726b3c5b96df87","signature":"8ed0f033ac63ed787c537c457f0adf2b77a25eba5bf5ae05c538037337f16be6"},{"version":"b882c5452bdbc8be110b5b4f87cea1c60ef432bc7483a2494c31b34b06b39d41","signature":"6060c8ddfdc7eb5780577e85a5d673be94eae6cd3af0465c10579991646ef709"},{"version":"466c3699871d87b33127727cb6276010afb888ba409d0e54bd24ca204705b771","signature":"19a938f7baf196c077e38eb8c5ac4f74b3071d8668c0a565530d7c52ba521a8a"},{"version":"7aaf9d7fd184213afcbab89d5b9df258809f49b0c924a891e68168b6326ddabe","signature":"6e3a6ad412842dec9f32334d7b540fae3865255a522f12a7497f3111f88160b8"},{"version":"34a2cb6ab1077c01bd282b48f8304dc1f443a31557f8dcbbdfca056ebde67cd9","impliedFormat":1},{"version":"db0d0f66be497338078b069f73ad118c94feac624bb1434ffa8c65e88c5762ef","impliedFormat":1},{"version":"9c4096b0842a645dda00f9fcde7f0385b81378b8bc3625be7ab38da7602508f6","signature":"7eda6b7ddb5a3f1c7ba0bde0713c70d245f16edd9cd1b08bad25934c66ff80b8"},{"version":"e040319034de233dd2ca3a4b1c17b232e1f148888ed084eb623a01a66cf738b1","impliedFormat":1},{"version":"0c86e68c529327415ad07864d08e36ab8e809bc49b5410c2adf180b36e34041f","impliedFormat":1},{"version":"abbc488ea1729e18c0bc70d7ac2e4b972f1c5283f506630eec81d598fa9a3262","signature":"74a7ec56dbf3cc12c1cbf1f042314c721184c1b94b80ea5306cd8827ff237588"},{"version":"f0900202a5acf8e856f5ce5fe82080f4223e8029d79ce0e46473314c14a2bef1","signature":"d0c11b15c838ec57981dc1183dc69bb70523a42940d343a09606e2ca8250cb79"},{"version":"dc76de702748d8c4e2b8f9e46b87b19bf69cbc15f4dc8e2480a35ef6d65ef687","signature":"373ba52912d95b023fc9b64285a016dfed3d378f91c230b209bce50b7604d81d"},{"version":"b09c8964d55b72684dea5bd92b0e2eedd93a85d15e42dcc77577d3381ec776a2","signature":"1c87e91074d2f8aa0579b9252ca8f218f14235e8a629ac1411f59bd3fb2c8005"},{"version":"88ca0da7c28ddbc6a0b5ee1c0b6ef4a4e39d9fee437dcfb2a31ab49c7248f4bf","signature":"2cfc01e70e8fc0fb4899a2885b49b11c783fcdeb7464687500365f4a8d9a6390"},{"version":"693527ed864056e531a23722d6e74c065faaf623927d60c5dfb90eb78335c5cc","signature":"688db8476581f4d95dfc3cab961c44dfede131777947dc0a220b5ce4fdb12c3a"},{"version":"7fce8824062933d156a80fbc1bdf2400bdc4748b85bfb044844b837341efacef","signature":"ef0664c55749bc3d827cf5860813a25abad0210925e413f66ea51c43d9d6e4d9"},{"version":"643c9650efdd1332b184b94d5f353577b6d826b507e8933fd2237b868e87c81d","signature":"a0453c575202895c8da052cf788ffffaef2be8a9b7a299f1c8bc38ae11bc6ac9"},{"version":"723dfcd0f248d37c07988d5cfff497851f69afa660ea4ed1f8443541f3f767cf","signature":"5971f31a1c028989cef095445d06aadb1e7ffe01155de0f1aa95f87f3b5d85c2"},{"version":"9310db71a900c87dd8a7d0ea48659a3d770f6720fcef0e9887eee09d2a7559d4","signature":"4a4f72ab54be0feef6d75260b26edee3f2ce84104cc0427dc0812e5c574fb46f"},{"version":"022e47982e0327739fe998c006f0cb7273a528ed4400c99be824a92ccabcd4f2","signature":"17e5566ce7e8c452b584a36e522ebfa3ce550c10f7c19a6f86dfb9fa0fec3541"},{"version":"2254babb501647ab3a6b405290e048542bfcd25cd09aa1929dd20cc4496d5ad6","impliedFormat":1},{"version":"3f1bf42c227a21c60749f5857b78615f080696c2f568946f47f75c1bd2b44294","impliedFormat":1},{"version":"a735b20cca90083d634186c4037686e3450743c9215b15d66cdeb7307856ab06","impliedFormat":1},{"version":"40a68a2eff8da324fd161fc35bdc0af0a400862befd40d63cb72f4db49dcdb40","impliedFormat":1},{"version":"428acea8852c559dce300b1c8c0bb24d2acc714d6f5475e43c75948346aa9a64","impliedFormat":1},{"version":"99d0a4bd4d9bd8a23c6ee4419c5c11a98edb4fd68f5c1ea3012f29b5794e487c","signature":"1e739418f350a1a5eca9915afa1fb77cb22841688672e08038d8e6b599c59e58"},{"version":"8210b4042940f773b544ec464c6e171d345c6a04a8d03b865dfd701916b7170b","signature":"8a7802086a01675d0623eb1eb28f2c66525b6db62a11063f9ba89c25c98e07d8"},{"version":"cc207dd2961b934c9b42a7a901b9ef0bfc972f0e16adfb42b43c7955c5566bde","signature":"1af6c07b2fc083313e79d0b036ddaa496d82d893b27f720772197f52733d178e"},{"version":"7d935134f63739e8f25c2c32c3761dd0fe748046068a2c28e359f67cc0692ebb","signature":"87065b9fe2289ef564b764a0196f522626823c11a16a4d7bd060698bc0eed6ee"},{"version":"2b6bed7f7c509e68db1bb8841bf6a2f21ac6716a769ca895dd5a06dd9e799e02","signature":"0afac873ba113c14589e2ef07985f0875eae8b00e77e9e21378205737fe1a5cd"},{"version":"f574e5d664bda570c897977385a6e8ea62e96b772b67b16e30637a4c0f844d68","signature":"1e787f92484a6d4981f71f7f812f81f01c168cc1f2231be32b4200e6376fd829"},{"version":"074c0a218685addd548d58b11b0d1896e0b0a0dc99d3b42055edfebbe18ef668","signature":"622139aa42389e34f5850cab5483d51632d7c9ee29c654b7fd7e6513a94b6154"},{"version":"41bf4f69f5367d80ebf88a36acaa68ac7da2d981c89dfb8e7c5c8ac7d97ca6c4","signature":"236be064f21ca754955ce48fab25f0ea5eda8aad704a939ff192679a2f38fa09"},{"version":"e37f54afdea7dc4dcdc16ec5ec9beacca420dbc0cbba803da140de14c64a3af8","signature":"c5709ff2e44f9dd6a35555e7c69626039f13952bdb7078222998c894fc4d4e2e"},{"version":"8674f7f451e3467a526ad1cf4e66e2ba419ad8c1352a1f9019e562037bbd0c17","signature":"13f321aebcda871723eb5231a59d50413a15570e1b1dcc4e29d97e1b71d980fb"},{"version":"a2f29209494b353edab1fa8e37caa0a3816d55b3a042850a82f34fe6907b8739","signature":"90587f9a696ba316b0f1050468a35cb3a36b2a2102c89da3dfa1b195a6b78d84"},{"version":"c6535714a00282f32fedd7a89a1abb0e409caf6548e88b01b4f9138fa2dac40a","signature":"5ef127063c66d9445c16098d25170eee286f8a409ee75dab1c0c7f18d6032e28"},{"version":"35b9cace47728192c58ee78fb2ebe26dfed42ebd3df93d262fd457aa4d888b99","signature":"dd0895824181a6fe96fc6043f7250c0db909b9064cafd7f744f29c7a700ccb90"},{"version":"30546444c5c63bae95d4edf0ea2f45bf59c8836f668537ec4427289625faaaf6","signature":"ad61897ccf4a1f61413ca5dc49cd2dbc37e653ffc6de3b75b1ee0ea450537484"},{"version":"dfe374a55311d34c9f08eeac7321d3f38318e73575b3b6f6976e1f909b70d89a","signature":"d7b0d858f639b127cb25512fa4b081f4a9d4836cce811cba6d07c11bfe245c3e"},{"version":"9566789d678b7b2a24f1665030d2d3dde7779c609b97734d70562c6936666f86","signature":"69ab0fefc49e2b5255673caad042ac161d4967741daa19003e2fa6940dd3be3e"},{"version":"165e99d37909e8fec89beebae75da0d3b9039ccbcc2fcfb55a0a1114709757d1","signature":"246c4cb8b899c02225b5fbed940929385854bb2eed1aeb997647d7e208e30563"},{"version":"4327cae6a5fbaddd6067873dae35a9af3e17cca8d9cc8cbc8f4ff45f20aa2172","signature":"6a7879521393fb8a8ad387eb093c563752b7a1785139b27262ca561c489b8126"},{"version":"d7be16ad46cb3a5bbf1fd341e4a82f8599c418b64a2352a9e3dac1fb20bcbae7","signature":"ead1abc57fc8518d17e35686122840ac2b760aba10e13a06dea926942e5a44fd"},{"version":"f500fcd4aceabe49f4a43e88e50a858ccefcc3dd5a1851f796d2d88b34e9ac2e","signature":"7eb939f17a27bc3fd01ae2eaa34bae1ff8eacb3047dcef42c6bc1562b12a7ee6"},{"version":"8ac2a5b707fad6917f2fa7ee2341e5d1708363a65b399a2ab75f7660328bdc15","signature":"a5a557b12ddc69c68adf008419d6c4dbdb479f08ef853ab85a9e7d5590cbad36"},{"version":"5f655e2a43e16b0a409a2dd8e9017a49d09b5f319e32de87ddbb7c418691e7f1","impliedFormat":1},{"version":"dfe3d24c6cad59f6e066bca5d3a2e59d0db0718587b1f4b3f0fd9f8758c27d2e","signature":"2d731db43fe46887ec9ee25af02d7befab96c900fe542848a99e45a1d9913352"},{"version":"0dedb6289ab473ba3c2d2d44414626e8859103e9bb02fc2eb69c5eea8c9f1edd","signature":"7abde5db0650644da585c98c304da2eeb8587dfa007d3dbd3f5a184ed979a338"},{"version":"99830e076260fe8db9fc8e2f88f61c7f040630084610497f701599eeffa067ec","affectsGlobalScope":true,"impliedFormat":99},{"version":"edf64b60082f2f146f2b50bd3fec4d0fea1f0a1080bc7f2fa797bb081177d08d","signature":"1986d29f29f76447bbaa4d8a330b7c3e85a5244f5068485b9b8f6267be74e24f"},{"version":"f020d231f267837eb54c2407951a1b40dd8a61b4e429bd5fec367fffc8ee79a5","signature":"51c5b07992a9202ec629807e7aa64b67381a730ddc614e63d1cc6370c9067bc0"},{"version":"ef0d80027ff27c09dd0bb3fb1b793e5d7178ad6440f83a6e16f60cb4573bdce7","signature":"677d99fc9b9cbdc5406fd165b43fec7d4861940ca7f8110c71a4143acc4c960f"},{"version":"e913747b8c7df5ebb4b1c371aef1e44442d43e75848f0ff57802fbbb480a7047","signature":"d8d1527449c796bc8bb42bc6e5c756543103a2e3811173f1120f1b983067172c"},{"version":"389db27b79eb73dad3e5bae260931df975e1336b23994d50b1d6c3f22bbc37c3","impliedFormat":1},{"version":"9d72a4c1c90ad1f09702abf9c5174a4323881af6d943bcff9e46856e51549fde","impliedFormat":1},{"version":"4fcf2a0cc24118c494aeb0753d4bd0053e54085d53fc3437aae08a5a7e6ceaff","signature":"d60d31cacb990da0b3a310add10422a33a76b3760c040e33215e56fce3fccba7"},{"version":"c927d9a662a7a6ceaa5e1823e2bbc14d842700d84dfbec6689e0ef6d99a57c0a","signature":"c89aa9eff0e6291f40a06a00cc544f6aee5bc2cf65900af2e1a12efac6b0098e"},{"version":"0764bb7836f5525b337687fcb7a81e65d220b9258e900b5bdff9248e2a9bf892","signature":"aac57fb3595cef157004f3be80088d53995a29d0cd344cf0d1523f67dd417a3b"},{"version":"a8ec4ea0fb5fa7453d19ac40ef8a8bb526334df5d0482f189212720a79c548c1","signature":"37469dc4cca6316bddda98e693d98e9ad8f7680cfdd9cc01baa51227798a3387"},{"version":"d8621ab6b895af459d2d2f8feab17be443f5f0f28f455c6c5176efe51ce0a563","signature":"9685de38c4fe61f9347385cfb2a863a6f0a93b6333da108cea3669c0470f6d28"},{"version":"d36e10c3e88b6227dc00034ffa93cb06c6617c99a542c8664c346f108b0ba644","signature":"8c874cc5dded6d4d1236d4d7746bc0963f64d52c89d54ffb38eb390b300861c3"},{"version":"90807f7c9a45b2d1b329077baaf95b8efeca7f5075fb965d307f72d55c4a90c6","signature":"878f1f553fb52eb63061fa4a85b2345621cf54f8cb10458922a82c231844fcf0"},{"version":"9cbaf92bd123a3c4e087343042520dcea8ac0fdefc495510984ceaac4646b90b","signature":"1e81df0e78c7258c9d66ebc729c1ed632c9ddc99640f19d038b13baf05938c73"},{"version":"f48054001242b190fcda3cb84870a24b705eef11bc150e4bbb3cfcc89de3d5b5","signature":"a76343bd7153d6f37943ff8227c56356be010dfd11318c18928a663791df8332"},{"version":"0cfbe1f9656aa5614179f8a8c7d722fa80e3e2de5af61fe114d3aeddf167b468","signature":"f9698d27658c6a403b259059d22c4c389cd86f0d1de66675f8b55110bdfea750"},{"version":"8d97e2268640165fa6879ea8fbd97ddd40e5cf63a2bb9d22ce5699331c22c3bb","signature":"5ff2b167ce33097a6b9c8cc59c97f123f35be34be1e5cec4713782049ef55443","affectsGlobalScope":true},{"version":"e58de475c5a2ef7bce543f5cdf7377bacf5ba27a73b446343cc00d483fb7e1f0","signature":"f60c2a816c0cbfd4555d6d892bb3e969a665a1c54b975d6f6d56686536cefea4"},{"version":"24530e8efc61c240516d058566843cbb5aa5cf40bc8c72e0d773ef4672105a84","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"39193a26ba6f8676df8f71eb29ce9db7ef94b54023bcc0d2e2f49210bce297ee","impliedFormat":1},{"version":"0320e12a4639bd25f69de8756f76b213f78010b912bc8e2f90e9cb4c95ed4a49","signature":"befcafdcd72c9a07ae5056a50105d41181f6068bd06509b08adebf784a8e5962"},{"version":"175cc818bbe2cd35631bc0402704b1a982c87f12dcadf1c151366806e2d945dd","signature":"e7256c25992660c0c33ec539eb205d704513a3d6db483aa70c516f07b1add3ed"},{"version":"7897fbf1dd911226c99fc97104f8a03b902d079ef5246d8846907e5811606d5b","impliedFormat":99},{"version":"0e9b5ca042c4c12adee54b8e539f501ef60866ae9a0cb80702f3d141713a89b1","impliedFormat":99},{"version":"6ee583092663faa55a055bb14126542c6ba07f44cc0e2b1720c6bfe3996a6560","impliedFormat":1},{"version":"d8eeceb0c8b827c23d4825f7cd62b2231423fecf58aa8148dc1d2ae8c5868196","impliedFormat":1},{"version":"495d101745052f7659cf8eb7c2ce3ff71388f6b1f09a492e5698107a970f99a9","impliedFormat":1},{"version":"d4affc62c884bb6b0152835737a86daa02e62ecb053b3ac2ec65821d7f0a7438","impliedFormat":1},{"version":"3f7c2e7176ab59c4c6d806ab19fbef8c9709313ebfe37199c52e00f04e55bb66","impliedFormat":1},{"version":"1a385370e7cbb52ef8008686f597ae0fe9edf2c06ed9fbdf680508c50b0f0408","impliedFormat":1},{"version":"de12e2f4f6012ebeb7b76b043e086c5739b92d2713e2f712bf55db24c28cf562","impliedFormat":1},{"version":"471513db96d65bf5b8d7bcb33673df883472ebfc4499822db1d09227b95d4a69","impliedFormat":1},{"version":"e3145ac91bb78ce80455ddc328bc35f65eeb974be3d745db9e170b597c37ea9a","impliedFormat":1},{"version":"283ecd272b631e3e012196e9222e9a1de2aede45b031bc7421a1ac5267404ffe","impliedFormat":1},{"version":"017c79da6d33af7b16faa42335c19a8693b76ed9cf376685f3b85a2d6b7513c8","impliedFormat":1},{"version":"1e13ac590512080fb769217dbda62fb48011dc9bc4dee1d5212b8edcc0b6324e","impliedFormat":1},{"version":"4cead234f4235b8b8db738e46ffb28bbcb1e6299508ad6ae4fd4635474d793d5","impliedFormat":1},{"version":"3e2b6149fdfd6fdc473d01aad6a7ffce166f2dbb977733f5093d830436c6df55","impliedFormat":1},{"version":"43ad005290fc4fe32a42a366cb09747d109c2f899fba16de1b6c4e46ae4ca68f","impliedFormat":1},{"version":"4bb333de295c2d01b261a28bb9beac9bc8edbad9e596968e4d8e352b5449e1b0","impliedFormat":1},{"version":"ce38fe6359597383e7344225c6fd4f1269609474b80124c7aa62570f44218967","impliedFormat":1},{"version":"57814312bd8e17790b6f5abb6f89461581b373942c9f6aa4950531812e44c4c1","impliedFormat":1},{"version":"9bbc78eb1e28e035f5eef6609a89046d0c743fe78408a550e69f2776dba61d91","impliedFormat":1},{"version":"f5120f01e2d3c450987d58a8974187cb1fc0a2553444edc34aef039bca71d548","impliedFormat":1},{"version":"24705e69452283b1dbd49a12937939258c4b233cd1dabed96b80d40420cefed3","impliedFormat":1},{"version":"123febd323d76031d7627cbf495d8135ec7092bcccff691c05a2f5635b7ef1f6","impliedFormat":1},{"version":"e4cd7ac19736cd68b8895e45880e09428fe7344800942558b876a85ca6680c1d","impliedFormat":1},{"version":"fac4f3515606cd726a5eb5c9462e5d7dcf7fc1860be5a6235a920454c71556aa","signature":"4255beb439b83d71ec22e2ff19f913ee40700b2ec11a6c986c0ad4d0d4c9708c"},{"version":"2b0be755e444b945fb3f71aaa5c811533a147b456833d2d510f275260adda6a8","signature":"cb372fff9a4245aa276aef1506e8957f52504a0fe18f3b61b5da3b70b2c32174"},{"version":"eb5b0b9bc8e9777fc689dbb76c0eb5970a9389e4c78891b42dcadd65dee567ef","signature":"5ebf63628599033be9aff9848aa8b7c40c72abe1e454f0798ec1e488e98ce39c"},{"version":"04edc6bf1b0c9a872b6df1dd2f7aba179e5e3ab0d5a33ea3969926feb119384d","signature":"0abba405d99e5704f11ae496786d7005b5120aeaa9728df8f86c14b280c1dfc6"},{"version":"d59ec0b783a6c5f878c5ece2e9c15e01181228999cc2693e41aedd29b638d83f","signature":"4e0f37db178ecd6948be04fd13d8bdb36046b003662f0eb9c33ff383f53a49ad"},{"version":"bb147b3b7d03f47bf65572da2004d3f876b1a6d08ebb9341e9ba7355182f3d55","signature":"fbfbeb7ac445d097f6015efe7f0fe5093930e8fbebfb43205130ef63e3f44ae6"},{"version":"9c02aef464348defe9acf04d87173c7e70ba078f0c8f00928a7c0af808e4ba07","signature":"6bc327525616022dc2c0174f73fd237dcf3fbf10a13d75bde274847da3329650"},{"version":"413f4d65bde6572a22c88bc4baa166f95269a19860b6ce5af6824dde211b0286","signature":"35f4981b0588bc4ae2934153a8988d87e590ec700bd902efbb8c892ddb4d23b4"},{"version":"4b38fdb1cb42573c3fc38d24f1c2d554d26b4cb8d4e7c432dff152f0e35a4f2e","signature":"9d5d3b598e1dacbeb3856f91d6231a81422befdab95d19310555dd6bbc096b35"},{"version":"0eb05850835d9d130e5f994076de9b3dc8d5196015149c7921404aef6a1be984","signature":"e0a3ad2afd21ac7e790583d71d735ccec0f2838a9e5f846124ec553670dfd32f"},{"version":"38626b10dbb022e921114f92387294e1026a065267b4bdb94056964d1aef65e1","signature":"e60fba8d56cd4f36791cdce90314804beee81cbf5223900fdb1185cac92a7d66"},{"version":"b4e49b95c12bce2bf263ca9ed7be836bf7a5a7961fd6316915abb6164ce33772","signature":"fa0d425f44eb70c5c0c0cbc5f3fc883e03554ceb7eb13e18b9fc5167e2e2bca2"},{"version":"8fec33148c9f898faa9df31329848de051cbdb477c18a2ee4a22f4062e7937a4","signature":"b6bb3fa7fd2199e94ca819ea1b819b1f2f58d67178f9ea0bcb29fc907ae3c96a"},{"version":"9f16b56ef218243330013b1190ede065997806d60a4868cf2cd94d962a7b7ca6","signature":"432c8c754223f8fc4f650598bacbd89f6328762eee8cfad98f239c71a7bf1ddd"},{"version":"f9a31c8ce1c25eb5c8f45bda84b2415063743d6e9bb07d96b6c11fab30822a93","signature":"44f5cc687c20bddde4a9b6d030e2d317fdae141060bb87d16cd109750822d06d"},{"version":"2ad55de42820c74a63bfa12b433d92211c7b6937394ecf31ffce9e10d40fa347","signature":"e0d44453b2fbcdba7c3709ccc2c8a2a565a120ddb2672cc04ba20bcbdbf0bdc7"},{"version":"58e7a5aeb81282be46237f225a04ca432cc76f53a9a1c97c5b7b87acb9d27e87","signature":"05761231402ddb64e443840bb4cf807f6e109a43184f79f52c4c3a62ae0fea95"},{"version":"8852471db0c23ddda951d22a494dc7b34b3e70b2b8f184c43101907c518c4a75","signature":"5ccd9b4cf686449d2c913de74e075d83ee42778335504681f1e7b3ec90c20264"},{"version":"638a3f95d79dbb41c1068946c8826b4debc1a602e1386fbc5bfce9bcfe2cc542","signature":"f9985c4ffb4ee65824a2ea24a22bc04ccb9ac445065ffa85f465dba3bc43eff9"},{"version":"1939b3b11c99dd8ed303897a11f65410a60e03d399d952a8c064f7df5259b940","signature":"9931e6ac7cb10f8f8c414f9870e8dd75c26264aa80a17e8b45facd6000645f4d"},{"version":"5dfa094ad0e30530a6069c8ec42e6bd2bfaa0c87c696a3ccecf7d082723e5be6","signature":"0a54c9269314285d90cffec03ccee8570c03f86158a1f99905dc766209f7dd31"},{"version":"dc58752f53f0998da7a52ab2f35a2f4d624e60a4a3c44d0310f2825b7d363b55","impliedFormat":1},{"version":"64cc220f1fc13ae4f7ed4c8d79aa90dfe8f44ecc9d35f9da544d75fcec0d6c14","signature":"10b2cf552c4eb57e648d6634c17d19be78529b6f802d2aa47d02f8ff8aacd450"},{"version":"b547b512dfc32b77df72a9f489880f65b677b345313251837b30cf2e99714e96","impliedFormat":1},{"version":"93c4f4a553b7303b21eb3cad7fda5c5e30e3096073af82fc383751f2da517258","impliedFormat":1},{"version":"97147bb597c8918d902d00f7f6a589a4b93199282a507c18a25d7d321ee48af2","impliedFormat":1},{"version":"1ae706763000d4e4af8b84cacb5045f201e59ee538467d58a7d9fbc1f3e7db3a","impliedFormat":1},{"version":"fdbe1458d1a479d214cb34814218b7f8cae0bda7ee53ec068d6a58f0cb7716f5","impliedFormat":1},{"version":"4ec38490302700388cf142af4121441c6135f4f5ca9efdb5eec6a7f4fc57f2ad","impliedFormat":1},{"version":"93c783e571c79fd5f031e598aa02a3e2c2806236e17ab380d214b3ad6750a153","impliedFormat":1},{"version":"7763bdedb536d487b6711024e9adb16b4fda265ec10cd1c445d9c089099312d1","impliedFormat":1},{"version":"817df0ae8b2dd40c4767e652542071a6be40435b4cc749608e824160fb3ede73","impliedFormat":1},{"version":"48affd18f9a66887e8b02ca8e279b7139d8c2a1ddbf8e7878595463d423151df","impliedFormat":1},{"version":"5e5fcc1af5d64ff695c486a719234b904c4724dba2acd399d8f8879614a4e6a9","impliedFormat":1},{"version":"83ef1a1c45af93416a683d2c189745abde2303b9ece61e1cdca3246444834832","impliedFormat":1},{"version":"b59e627dc446eff64c8d9305e4ac847bd2713b2c4151e5f78a84c11cd68167c9","impliedFormat":1},{"version":"f38253edcf6bdc7c97ce4754eb1113c3da7b5ba34e4a12ad4df4a40633786518","impliedFormat":1},{"version":"6642c8e9a481870e7ce03e9ac011a3589a9dea46dba6b0669214a93110705529","impliedFormat":1},{"version":"67669b4bc5a59db366b0df081d50ffc54fd77e47a034e4c5f8768e8dab816b5b","impliedFormat":1},{"version":"b57360fcabfc9c0c262285df07542060b16c1b3fe36580e5b85d95f2f87e1499","impliedFormat":1},{"version":"8ff9c9012f6e7d31c5e12983d8d90d1cea0d18bdf2726b33f6cb2edfc6908baf","impliedFormat":1},{"version":"bdb4a67b43d921db79d64201c344acad10a636530b657e73b12d02bf6f45ce49","impliedFormat":1},{"version":"b00333b0e9e46801696386811b49b23f336c15322842544bd8615c3da9b3b94d","impliedFormat":1},{"version":"a9e671f61b0ad754f5106eff0d017f84b894013926ebfb4143ece77bdcdf59ba","impliedFormat":1},{"version":"223ead7e347fca1e4b3e1f37fb93ac99c10b7650d295186108330e37d09f7b94","impliedFormat":1},{"version":"287235908bf0b91234c4d4a595f38d06d5845bd7fd7b44742665b3e7ae03e68f","impliedFormat":1},{"version":"361e1c5d3d24570b68d709eb5dd3f97876b43dbe63c58678b400f163cd26d40a","impliedFormat":1},{"version":"8c8fad8314ebf96f2ffa7b6a53caffa74ea2fc067e0cbb0502b7994edd4297cc","impliedFormat":1},{"version":"6304eeee383a48bff33032635df7e4b840618ca3cd898915a984a261f6d93f35","impliedFormat":1},{"version":"ca0dd25667adf2a5f14cf14d04c0ba45534ed3b7b9cf760230008a6f923f7e42","impliedFormat":1},{"version":"6e035089f12bd757a664c5e82c4cd7bc1fb12347ff865ebfac8001e534c8bfa3","impliedFormat":1},{"version":"c68b6dff47b2440ac8347153d4335be3557812a422def221a9dcdadf0ce40abd","impliedFormat":1},{"version":"705a65018f2dff20bb282a246aa0ef2d2b904f780d82bd904c4f32ff2ff5612a","impliedFormat":1},{"version":"3a4aeb43e1fbf7312e4211811bda0b112297caac746f91c20fc47913da3df771","impliedFormat":1},{"version":"5effdf3f7be049db933b2f57465f4a638b40b19965bad1706c1fe78de13d5372","impliedFormat":1},{"version":"90281d43ebfac47405c86382598d53401f22c760a3ef21dbd77bc079f59fced7","impliedFormat":1},{"version":"74a4d94b2aaba4c3b955d1b178145413941f7280758ca4062c450bf73392eaee","impliedFormat":1},{"version":"098ed01db40b5622ae5c8aef0b6485e0149ee59e2a4294825b0cfa4ecf2a8a7b","impliedFormat":1},{"version":"8ceda0d6a6143bf2e19eb97f18524b25f832b563f12c5fc7dba83dd1085d6dc6","impliedFormat":1},{"version":"8a30fb936ff175fe6d094b4b95cb1774c5d17983aa5186c6d6b0aa33ef9111e6","impliedFormat":1},{"version":"635c26288e144cfb4092c46d5d4a5165eac45f46c81afc07480f715289a6f834","impliedFormat":1},{"version":"3f7a8c2b8f35b7d81d5449ebdf42b13412aab13edbabc76c4ea32ff0db057ecc","impliedFormat":1},{"version":"0d670c3dca19c238f0c67e9f87bf2081bcc5031cf5e5bbd080c0de047a44583d","impliedFormat":1},{"version":"50815e3a3e17062c2a201cd0f9b8128fa527286862751d77b84a00aadde516f3","impliedFormat":1},{"version":"aae7587a50ea51dc486efafe24c8fa7093893dfced81dfce0734cfc9366c77d3","impliedFormat":1},{"version":"e783f5939b607bc1c249a04971ac50ab78a4e147f55498043aec20c5f6136847","impliedFormat":1},{"version":"9951ee0e3a4eeae04888e7c7db19d1b5e0242f8af14a6e2ad9a47b64ab2682cc","impliedFormat":1},{"version":"fcb07fbcc4ab1427ef262e417d9dd937b906bca696c73ef072b252d4b4086187","impliedFormat":1},{"version":"d44a1a221d47cebab961acf6455f8830c866e79b6289fab8e0486bf178eceae8","impliedFormat":1},{"version":"05226b3b3478d1d542ec45bd8d79f8addc994f03455fc972860637e5d417aa9a","impliedFormat":1},{"version":"acc9239d75f2c08a8916398d09365fa872daa03a6d9c416718cd3164eee89882","impliedFormat":1},{"version":"5fc0bb5ead26154bb362d94e96bee9ad0aec5261ef04cba0234883b50b4660d8","impliedFormat":1},{"version":"280843b714acbc5805b0c2271dc149579a12c266c5a71a09462a60bf7ff688df","impliedFormat":1},{"version":"dc783264c900bc57eecae12f869b19c8fa6b2885a0907f718f3daa8813159d07","impliedFormat":1},{"version":"a6feabaf3c2c6cd3319ec5bbdf079458b6272a6fc654eb69e7046e7c9a1f819e","impliedFormat":1},{"version":"430ffb37c6b634cd1aff239185056e94c9a1b5d88709d37d33e170f4b392769f","impliedFormat":1},{"version":"65f9aa17cf8993164eca73d9e84ea5bf16dc840502e4072ea4547bd0d51431bc","impliedFormat":1},{"version":"4a5546b5a406d121930ccce02549040c57a70cc9d936fa9a569fb7275a9216c4","impliedFormat":1},{"version":"48da7ebd3896d6be9fcee9d91ed64574b61bf14560aded8baf9f7b02f4808d47","impliedFormat":1},{"version":"9af9da4189746b2b21464735aebc9e0894d4d9f55ddf32bd0d824c3ef8cfeef2","impliedFormat":1},{"version":"dc28904f8ea69eb3a123617b80be1425e1da9dc3fea0bdc77cb70a1b2ef84657","impliedFormat":1},{"version":"c3c26b7dc516eb77e8a71c763c49ddcbed77d3cafab96ecceaee0692000c6e3e","impliedFormat":1},{"version":"8371b7ba645aadcf1c1de4c1b9538944c5313326ae5582cebb3c7b86cda97adc","impliedFormat":1},{"version":"11c48eb2b845619b439e8f975674a44233239218bd19d4dc5b4158c32f0c2adc","impliedFormat":1},{"version":"6d760385e3c07101963978e1b292f416ba9be92c059a7e146058f1e78740f59b","impliedFormat":1},{"version":"5da9bf76e65a1a41b775ff386a9b7ed8e5678e5667a6c57a4125f5044c9b89fc","impliedFormat":1},{"version":"b0803ebc2c0ca8a885b654b29c2a0cb6efa4e601f40c0c9fc28dde73ec0788ce","impliedFormat":1},{"version":"3f08d4a744d58fb3dfe0c28412769e195243a0700fc59b408e1a5615fdbd5086","impliedFormat":1},{"version":"74f1c7a70a7032aabe6a685e5bb7f79bb3d497127fcef1001ad4eeaaa55f6706","impliedFormat":1},{"version":"e3f61f6c437d44776e7ff82f14a63d1db60d1dfa287e4d320f1e7bf86e8be835","impliedFormat":1},{"version":"89a21013986c46314b5126648e37c2669a4d6d93d91a0908cfe6570c5e9b9190","impliedFormat":1},{"version":"fa04871432560898c79a6ce1a40d690d74f3690706514527c3faffe58d833bb5","impliedFormat":1},{"version":"42df6a6cf45d86b342f28c27eeb4e81d5113c1eefcbadc63b3b24de14c8a5c41","impliedFormat":1},{"version":"163392757209b9926b7c23dc8c6f95dba5bb5b09fea53b4b47c04a76ad16dff2","impliedFormat":1},{"version":"ce0ff5e88bc89dbabd9f73a4d75ed9dbd81c8c8667b139c6a1a202e23414aa60","impliedFormat":1},{"version":"e6dfeab27ed61d5c3813a0347ebf6900ebee1304138eed25e45533677a71d151","impliedFormat":1},{"version":"c659cfc3ed7ef103252da4afbd9040d9e929228b10178ef0e777e3d2813e6215","impliedFormat":1},{"version":"9428fb08af0dc369ce95c690ec977f8ec5576e5a9b0f9e9e778f899f55fd1ef3","impliedFormat":1},{"version":"2063599d941d0bd66363c7886406d34d34167846b581fc974e95dc374b1d88cd","impliedFormat":1},{"version":"0a06d298498fbdc7b6ed30705d8a7c880eb1dcfab475869f7ee54f261e99f2c7","impliedFormat":1},{"version":"4334ec0d3e6cc2576edf684b379f30dd8f4506a585f6ec441997a17354304d17","impliedFormat":1},{"version":"cc2077d5ddf3691590ef193be1b4cfbb649004753e707beea35c2bcdc605b518","impliedFormat":1},{"version":"01e72031d2618d8b3366fd266137a3bd28dd2f67ad6b03b9af3337b818b8aa6b","impliedFormat":1},{"version":"7e996aba74ff60c2b6d1b9e833b71839f2da926cd6837127472e4a8452c2779d","impliedFormat":1},{"version":"ce281a0b70ba8f38d164d3c22b0930d2a0a748e43c9157a1686586463b829103","impliedFormat":1},{"version":"340e6cbf8fd4a5ae90ae8f14689f9fa1f02c4fc3b62c13c43cb6cfefa75fc3e9","impliedFormat":1},{"version":"8a2c7138406501cb37ff12f83eeee4a59493edaf8563a103f23c30c83ae2b92d","impliedFormat":1},{"version":"79fa5f0b477d00706f8fbc0a4fa3f6bd1649481da92847141e71f67e8c045a95","impliedFormat":1},{"version":"e6c3d10cf65e7fc05db91cbb6f10cc42a3e06610bb7d7e49c6d33981dfeb2901","impliedFormat":1},{"version":"7b74f1a5d7c7272318b01b404de39398d35de94fc42844eb04117cb7a815bb76","impliedFormat":1},{"version":"b42d65119a0f9850966d64d146b891990f0c165853d9d54791b3a4c047de3736","impliedFormat":1},{"version":"1107d9e14599bac7b1ca36a9f9d7145275edf483730f4f242be38fa6279cee42","impliedFormat":1},{"version":"d096a4878051270318c49c52ccd565eeba95e09a3dad951f26938d50336f3d06","impliedFormat":1},{"version":"2e2e965a9adde2adb2a89699a43baacc0feffcbac4436cdc16db2c21d6852142","impliedFormat":1},{"version":"1a65205c72c61bcf494604f4ba3570ffcb9dfda5f56707d72d876a2cabd51125","impliedFormat":1},{"version":"f677b752cbdd1fcfd16c5fee7708883793701c2fd848615316806c1997d95f7d","impliedFormat":1},{"version":"b17dc51df3771f5f833200db56379b3df8d93df631213c6273f3ab9a3a3cb85f","impliedFormat":1},{"version":"2321cf8c88bdfbbe495e0b4c2966ca6811baf1526d41f1899369bbe00b9afb5e","signature":"6cf8406671d9518f3e010b386c6da9f2a5e45017ebc3ae05df580e4c42bebb5e"},{"version":"183349a4a62e76dc4adc9447a94140cbb3e7de762862c512865a8dfd2bc22832","signature":"f484bcba43ef1e48dee76ed4ebaddb8f87c799902a63c848aead28cf355f5260"},{"version":"2ce23068f9ead36dee64c9e46ef62ae0765e037f418b60d7740efc614f4a441b","signature":"95c5a8112f729725999b16ccf018c3a2ef8c0e11b004fa9762975372dbec9dda"},{"version":"a6078f85c62d1f0dd99d22b5bb76e2adcb3b83990701879244dd04dbd3c8042d","signature":"5d7532b37ef3257b632eb3b084e899d157a29c13a3c6470376255a3d774a1ea2"},{"version":"f1f9757f2ad9fab08f54f34fa2a88d78efcb0a2e152150e6bfbd033ed576d10d","signature":"22abfea5ed1408e4942fd599e17c89387d4281235fe393aede5f0cf594945d34"},{"version":"d70c671765000101b32d802a8bb49b2d31b3e613a54f3b250fd56418c37e012a","signature":"61a4351fb04d9b0bdb4bf859ceccb5a27a973be797e124de836b1e1f7c6b5164"},{"version":"9239d720a7b92604bb8a27d83eacb2bfc14f278fe6d7ffa0c12c3228568048a0","signature":"edc70153763a47f1e6f812be8cc30faede707ccf79f3a39e818587d7a111e928"},{"version":"eed1dfb4756fecc20919e24f72b872e35787bf9e2e8f68f8e1212a3014ef3d85","signature":"38e64498a330fdb15ad6c1f320b4e4ead1935cd03b6bd61706ed865118f2e29b"},{"version":"5e76370864fb70d73b4e2ccda7263fc916147def796c8dc58fe0e1b39816defe","signature":"6b6908f697d111b840243d832a4127d557cf411e36ab0c1092680d36a8f0c168"},{"version":"203d75f653988a418930fb16fda8e84dea1fac7e38abdaafd898f257247e0860","impliedFormat":1},{"version":"ff692a6c9ce100d81461041c338f788811caea43c2f25e11b1379028b9d7b77b","signature":"fcdabfb9439805f81654008c2776fb9fcc5cdf61fda5972930457c4e89e7bae7"},{"version":"b8fa078d0d26f56bbfc8b3be5ddea22383b395934e2504263fa108d3abf6f2d4","signature":"8bc7ab7972b1881062494d4a7382bc6056a85a8ed673eeca0e989bcfabeb769a"},{"version":"b327af3c54c2a791380f4abbe2967607ac364ca3176063ddcb8d9c81b5d33042","impliedFormat":1},{"version":"f757a95518b0777db9913de73eb08f0368237f3e38510fc76fc447a3d3c05200","impliedFormat":1},{"version":"1d86b2c4846ea0807da02d025b6b3e2616484808733d2c7e670814a0ff3339f7","signature":"daf7d7016bcef76383b1098d0dcd5caf4390a417eb839e730d25ef5057557afa"},{"version":"7a8a0101534d76095f1519735e90530515747a0e71b3ad5fef4dc11e8228c594","signature":"369e4247ce63787dd3365d852e1d803d9f26bbc79d027bff1df9827479a76ab8"},{"version":"a447815f68a1d2e1edab0b488ad0e23b01fc03d3d9125003828848cc9b8f4dfa","signature":"9402c5eb8902335f7b4c3360ba8af888cb4e9fc61a4a47f062cd5ca89635ced1"},{"version":"8b94dcf8a203e456b9a4c5402f0824e1d682b060302bc48a112c132f3a326c9c","signature":"068a317f9d6c28b6daad53fb6103579e01152f0734c72f029b3fd923282bd27c"},{"version":"98b144bfa66d1169fba7e6c412d676db009d18b3ac0775fb54070eb0152bf9e1","signature":"dc6bca99f07f461e3187c169a6e7796dd35d83893db00b43ecbc5764d53730b8"},{"version":"24a3e8d5f8fbbb93e24a6e6d381c367511ed470e762bee15cba1e3b96925c13d","signature":"7d000c17594cbcfea039e0fe7a117ca7be12194f24a13162fbd44efdd209fbeb"},{"version":"46ef5c0ec61a734fe97ce9b09867bff4c72c56174c6f2a208c33b47ab8ff64f6","signature":"be32c5b791f179b3702dfbc49319e917981af72744618965f21fc116ff47aeb7"},{"version":"541af3de6fa338159b2b1604241766fa9fe51425dfbc4ff6bb29e4ce12d495af","signature":"1ae320bbb8715547497525a6a36b4b478961afccda9a5cbdaf89f84dc526cd09"},{"version":"c2cb8df24a90d1a422c5fdeaffa7c6edc3a1bb9e7168017c87faf1ec8c6f18de","signature":"60409ac7d4e5828b94119db9cc433ea6eceeabe4ca3752adc2c4e91bd6d6e6da"},{"version":"00fca32974e072be0341650b851e1c84d609afdd1ed722dcbb22e38f2edc7b55","signature":"7d523c4191e1732cd2b8cc0fdcb0a50c6227aa3059dcb66d31a35ede70d14995"},{"version":"249d88d304e6ebb7000ca1f0dd64da16e064aabf3a9f8871f59ca5e57770d492","signature":"0d2467de818e00ba5b6c527213494587a03a0afe7baab7fcd9cf501513c1073f"},{"version":"e42c832fd757a9071cc8ddd65299a79470460a0fc5b6629ccf5121a9627de9a5","signature":"50419909ad756ec7a81f45989c2e090db02704890f109482ab7d434d4b338a2e"},{"version":"c9dd7373217ce31f1e3353240f971a5fcd157bc742f9208218a38ac30b802ece","signature":"f900e98cdadd0c086b7db7decbc9f12f3520ccd65976e7eef4ba2accbc2541b3"},{"version":"50c74e73abd6f4ea1c5494ce6a843ea20762eb62da094ba2b1f8a1e04ccca8a8","impliedFormat":1},{"version":"e311e94d2bd4ac2bb11d47eb1056167de5544bbf78cba94602dc17af439c9206","impliedFormat":1},{"version":"21fe737aba7e9dc9dc6a8246101909ffa6d286ab9a7cdb3e4856e14de099da88","impliedFormat":1},{"version":"9097b5d03e6dde2e0336026783a4175a3dc528c647d5abb402b4b0b894416b1d","impliedFormat":1},{"version":"ed2eae8b73d93e65bc27ff4f52df3baf20d0ffc2bc2a2e767af8086c02c90a8c","signature":"efb913c292d08e95db2809014c022a119d35fd16daaeeca2cf64e424535b1a0f"},{"version":"5d558ddcd9bb96be924315573c340362945a1e27e0317de751274f8681ab41f9","signature":"f6882c2155c651fc5850f2b0b9755938992813e5e29bf7b20523bbe6f9d9391d"},{"version":"686e4d879f4cad94de045dc0bb0531fb264e214f9b76ffd2a927687cca1c512e","signature":"cf1c8a02aa44379954f1ac7d33a8d69ed990df7e8ad995d937f38552747c98aa"},{"version":"f32438bc39b77ecab3c63eaa57b39b795d9960f4cec3f4c5a26513dfbab38872","signature":"3293ef2dd8a543b58f3fd397624d30a27fcf08f92386c7a72c165b21803e410d"},{"version":"ea961ba8b4b8b2a005b5cfd165767d9531a8cad66b3ab611bd51b807e035f301","impliedFormat":1},{"version":"34722429e05c79e076b3e7f442de20413e49c817139f819fa12af4e334989887","impliedFormat":1},{"version":"6a921c070789554b97930786b8425ccfc8aaf718c8660e773ffc0398b15968b9","impliedFormat":1},{"version":"0d84a5db64ed2328788adce5f0d0f4f1744965e0f7cb216faa9a22ec27186c5b","impliedFormat":1},{"version":"79785435cbb7b489fb0094f074060ed0bb593b0998ebd6705f9ad92380bff990","impliedFormat":1},{"version":"6708995639bbfc30698d783f78878c16e0a6e64b47e72d6f0bbdb8dc66c25cf1","impliedFormat":1},{"version":"0e4f99712d81bbc15ecc96056c714bfc88fedaef4cda4bcd5229c462592dae78","signature":"e3dcf1c4d16a592c634f29de456bf54f2b9dbe8386e0882df5e4097dd57c2a4b"},{"version":"92ad306375684124b66ec917ce9e9ec6c5ca55c6d98ecde1ac725f9e2f1ededb","impliedFormat":1},{"version":"1293be38ef5e8a59467d758028d0f4cb5363382a77046970978fa463c75bfec5","impliedFormat":1},{"version":"2d8ad968495fa16d2f26d30aac8f252d5622314b2ee5aadab70f32762bb9a6e5","impliedFormat":1},{"version":"dc00c5b08c5e9f3927aa061602b252d38eb47663625fd7b2f18bbb02797c171c","signature":"57b7f85f2f3f36cad99cc3e2a1a89c1d031bbd94651ead443e6803149f4f6323"},{"version":"c6d10f50aadca42851b68d297cac0993c33d43c67aa8a51c93cc5cf659f23047","impliedFormat":1},{"version":"a4cfe05ca26c1f9ade663f26414498a08b0a6ad2b6f8192ecc3018133588dc7b","signature":"cc4c37ace820c5bc603b634b6a83de8449060e08363600c31023e22051ef94ad"},{"version":"69ce679637d6c41f343de6e927ca49f9055e658a2ec4db9dcea974341a684e09","signature":"89c886502619f1a11be8a54d49e874cba850dacfd73937357f656649dd27bb19"},{"version":"89e4e3800a4e17d72f2d5dc37d4e7c3ec8832bf77302b701074ce641ce15e108","signature":"9d379d6ed2eaababfc55be936a657ea5a1b35919cff2166a9b46352767441bca"},{"version":"dd9ce704bd8f208e945bc604a6e01c160a760a82150dcaf8c06b37ef4a674211","impliedFormat":1},{"version":"d9231ac81413c9684b81db9bf304b218b03a3fc2055966262f965d6fbe75a5bf","impliedFormat":1},{"version":"03edca0908f835f7ffb38b829ca44405f2aac7d4f62eecd6c20ee0007f36ca9e","impliedFormat":1},{"version":"2b4873e38e4ae0884aed98d02ba1bc3487aef7fc7a20612014bcdfa68e01c72d","impliedFormat":1},{"version":"b84b1b19e8e6a25ec0c1461be551980d1f9f8fee20a8b61fc5c87f63c94f06db","impliedFormat":1},{"version":"0b9f2b4eb6b92e923c4478a870736e428a24a767f4e8d3ed2fdf5ede48e91722","impliedFormat":1},{"version":"35162f36b71bc05d09e117d9d45594fcb7e1c4703ad2b2113a3b24ff160ec2b3","signature":"b1e9ce85142ef1a65b0cb58013bf3035832d8e5cb236f703df7bdefd83ac3ba5"},{"version":"9bab264bc6a8a4c91223d343d32da2449bd36c3c656ee2ee8fcad700c363bed7","signature":"08023f73af67c21080585dc9b143b13b6c596bb8224973372e6ae619f97ed613"},{"version":"dfbaf997557b016782b3aa38eed2f4c8df6795058e140cb63466c1a5a82d059b","signature":"408f76c02dd9634e8456e1d612eb6e02def29fd6ee844cf260b8dc6d4ee933bb"},{"version":"af23f025567e7d121f3f345faf2b9ca2f950864e06ddf4559877ed127ef96527","signature":"e246fc57f28fa31f2cd5edf3a0fad661b8ae276cf04530fdbb9c8c1f63b3f78d"},{"version":"7dde330bea95397f5f77f842bc142c24482d4958116026584469bd46f9c9bce6","signature":"e42b02c26b15c7884d35d0c30c90addba5e3e813506b3cee828c1ece549aa1ae"},{"version":"2a69bd90a398a0930302b4f49b439ca905fce8b7d90bb4ce297a5643480f99d7","impliedFormat":1},{"version":"bf19449d4c2cdb18b998250355ef06754a06a1f95154d2bdbd43a119a2b1cdc4","signature":"b3ba8306c32e0419953dfdd12642aeb18070383c83c78c6678a1f7100bdd0955"},{"version":"386d422404e5783315453ed8ddf9813b93ccff2ef7c81c5e397a9d04343ca35f","signature":"d761c45efd2ac5d78d1467af4f0d27684ccd8235611bc0a521dffb29775a2b98"},{"version":"3417ae1daaa59f088a5ac353b70437fa468bca57f8842ba761098dfb2e85dc07","signature":"4684cce83638ef0c6b77644ed07c4d4dc61e06426ccdbc05cd04f19dee01673f"},{"version":"d91b5dfe042257616b98d4e7491f6044c34d1a9e41354f82f2bff4616d6a0c40","signature":"af0fcfbbf33b02604620326eae8727d7dcfb8ba440bb521709c8a3682b6b46e8"},{"version":"3dc53d0fa573c1304c0fb44fa69ec52060adf3db204382cc54d72ae62ce3395e","signature":"7753d09c4a257d4f351a1f792ef71f2fcef1c07f97e1b4d41120a2fcd8d8c07f"},{"version":"7702a93e5a0b71e56d47e5fb41e0653471b4e5e588445414781d0694f43cf08e","signature":"8d2be478118abbb1c83a5ddf40d4fdbb56f2d5c4fd4dad6689ebc727a7340d58"},{"version":"b1dca14ffa10f811476c31fcef0ae2769340196d63bd64e9abe482eef9c34aab","signature":"4ad5dfacd2be6c940a726d1995fdecef95f777c4bf1ec0c8ef001701b4c8d99d"},{"version":"1ddba8aeca1007278a1d70af8116cd84ae57a2e01159073c4e4ca2dfc2f4860d","signature":"51c831ae8d63c8732d10ca1ff7b2485c964abe2ee12f23af21df45fe2a052ee8"},{"version":"37f36f732b654cc3035b7abe207af14d5f08129fdf291c873e88c71583a98c99","signature":"27b70ed95e0cc921b0f8d71c5540702f3890599c3c91dce4473733a4d5f948d4"},{"version":"80461c9dae28ce976965ce70e306bb1287d273ae91eb7961c1c3ca02d36006b9","signature":"6d2f543e27cceb1ab0ccc16abe0a3699c90fb314aea404be49e73e0537575839"},{"version":"a6732994a65d613bdfd9c3ca7308b15c24039e210b9a1d7097e7359b6f488a34","signature":"a7473f60c84af0eb910d86210258dcf9ee47b5d048deb5de0445d830080b22cf"},{"version":"85df7f664475e0c164a4ce7ff9bedcda15b19451446147a74789ca35a9063e61","signature":"34bd3607b63a2f522b925df91afbbb98323af377fc8e8dcdc60c6b4f1f76f582"},{"version":"0758af4ca6bf60c893275e39210cb7b73ec6a4a5c56b582543496263b37291ee","signature":"05d13d777b1a0e2254a5e784cae23efceda7a0a60bda9d7bc089f5623869f7da"},{"version":"3027e7edac0196e867bad00f58c6b9f316de108d218f8ea5f51b4ad27af5db18","signature":"dfdc65e82384a04427e817898a97fcb20654ff4eae23f113e6ebca01e47bdf7b"},{"version":"6c27fd6ff5a48e102b9a6df04615569854548703f033efc9246385c138d5f128","impliedFormat":1},{"version":"6d467dac6affb1161d70676fd7b2c47e05d46f6f0f00e732aebf9dc47e2eb8bb","impliedFormat":1},{"version":"914bdbe4d2967cf4c2a06ee5c9cec4e68799c0b4fd1fe72d3f46063810c90923","impliedFormat":1},{"version":"801c8694781e1867f8ad91cc330951b3b575ddc8603ef9edad80bd463955b1d5","signature":"7bc5908509f8c2da95bccc13efdd7df457665f13cbfa3d6672b67da906280d83"},{"version":"72fc857c42694ec85f698a2f6ebc68c2c2cfc100173e2c69d7a79566a845288c","signature":"0b0c2177e045fd3e92d725a9d3c883d9742fca38b589da263fe20265da5ded8d"},{"version":"26370388e607b7feff8630b7f2f59e688d3cd00712882fed5708e32077040b6c","signature":"29ec99c1e8ae04fca65de595837a4bb9d3e5119c0646a2c61aa9f7b8fa15ede9"},{"version":"8803aba7df41db558c2453e752e2d412dafa48aeb50f86cb1310841ae6053024","signature":"29c67fd0396b0f37f782bd6473ccdbfb79e72bf9a8139ed1dcb02ac5164997b7"},{"version":"36449f53ef0698ee7dddbbbe3fe5e8d06d5afe855775e2d7fbfede5e730ea75a","signature":"a5510946dfbcadf45029510223cbc6b4353d9faf211bcad5e84b18c2b6070087"},{"version":"0a84e147693d21625a9daba9c04195f52ab885dd05409f2620b947d03eaf0c31","signature":"f4fda24e18a6504f0a35599fb20a11f8a0cb020c91a49800b44fc959a566c3d4"},{"version":"73df6918de9cb71a231dcab6bd22da305b3b8273a8d67564ac23942251d877f8","signature":"1fed0dc13b4a5e60bb1fb76f753522deb5518758b18639ea28c9c2b65c8732ae"},{"version":"226c2ab617fe880a6f2f10d26eed46f8675fb358ece605afb7babd0622829ee7","signature":"5765085250cca7734be04016118e3da3065ade433e00d9cda7a42b18e93cec6c"},{"version":"3b390e2c1137fbb6fde64b50f833423f49385081b0cd62384c829ed7a79b0b84","signature":"9bcebd0fdeedf3a77a4ecf1e3a1141c3ab743e4ff6d01c56b27c28cb92253a81"},{"version":"4247ba99568e6ea9b756ac36c71373ef07b4df5ade9f6e85bea8674df5f0b557","signature":"3a1c8780583e521faa83f28d6df12ddbfd518c01b8b3c570c5e3a1f51c8fe28b"},{"version":"4e6081d95201aa8efaf6010ff8c33fdf6521ae875abc5ca9585ae427babec04c","signature":"9d0990f7e740e1618472dbb1e1ea6ceb25eb5acdd73d6d900220486426d83743"},{"version":"2250be7cf5b56fa29d2b443b73e3c93a960dffa4d2cae253c127792f21415e35","signature":"40d81d31c1cceb687cf196f2c1b1c6c2c90f32e7f1521dfba0b78483e527a050"},{"version":"2845a13c21346ab2923141c1e5a2697475bbb380dfbb9da9b6f40bd560e15144","signature":"40c081ae4bc943ea41441b0e727e61d6d382fca187db94bd4f6b8c368435d0cf"},{"version":"f9a0752581410a97feb965d166f17f18dc6899eeda92d49866026d18d07fb7d9","signature":"2921c0969743578a948771efc7c8c6265b561f3f5c962288f9ffcbb3ba326dc3"},{"version":"c4e1a0943c4abefcf11e378429e230299c869df213e648e2ff1a5e3a1ac8d42b","signature":"d90bd5b24bf11f0941a6a5cfd263e01d15975cd8949ab3f201e6439ed3b1596a","affectsGlobalScope":true},{"version":"3ce4234f10e688c5707eed535877496a59816264e3c7d352cb54babe49db903b","signature":"f973a294b9159d69e03fa94669e7749d63e7900e9c66b5e5b4356120bc6f97ee"},{"version":"350266f88201f3caedb738d1c4aa165f053f50802ff86e3fe6a48d44f3d24fe1","signature":"84adffa9e7afe2c4fab80f82694dd43cd2fd9a51950896578076afd0c1b739eb"},{"version":"b39353f21ad4fa7103e0d3c57e905eb9d6e269e88c42b5ff0ba24006b57c443a","impliedFormat":1},{"version":"5487b97cfa28b26b4a9ef0770f872bdbebd4c46124858de00f242c3eed7519f4","impliedFormat":1},{"version":"c2869c4f2f79fd2d03278a68ce7c061a5a8f4aed59efb655e25fe502e3e471d5","impliedFormat":1},{"version":"b8fe42dbf4b0efba2eb4dbfb2b95a3712676717ff8469767dc439e75d0c1a3b6","impliedFormat":1},{"version":"8485b6da53ec35637d072e516631d25dae53984500de70a6989058f24354666f","impliedFormat":1},{"version":"ebe80346928736532e4a822154eb77f57ef3389dbe2b3ba4e571366a15448ef2","impliedFormat":1},{"version":"83306c97a4643d78420f082547ea0d488a0d134c922c8e65fc0b4f08ef66d92b","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"98a9cc18f661d28e6bd31c436e1984f3980f35e0f0aa9cf795c54f8ccb667ffe","impliedFormat":1},{"version":"c76b0c5727302341d0bdfa2cc2cee4b19ff185b554edb6e8543f0661d8487116","impliedFormat":1},{"version":"dccd26a5c85325a011aff40f401e0892bd0688d44132ba79e803c67e68fffea5","impliedFormat":1},{"version":"f5ef066942e4f0bd98200aa6a6694b831e73200c9b3ade77ad0aa2409e8fe1b1","impliedFormat":1},{"version":"b9e99cd94f4166a245f5158f7286c05406e2a4c694619bceb7a4f3519d1d768e","impliedFormat":1},{"version":"5568d7c32e5cf5f35e092649f4e5e168c3114c800b1d7545b7ae5e0415704802","impliedFormat":1},{"version":"31a863da9da2a3edec16665695bdbc3134e853195f82dafec58e98c8e1bb3119","impliedFormat":1},"e369b4c9be4d42bb64ddf3d0a673633bc79ca64befff7d2c0a60e0966769fa12","7f595e099e369ee441466ccba6b7d26fbbbc14e655e30870ce3921773224c10d",{"version":"339ea88dd13c1d086f1cd27fb83621b21e348dd760f39d1b38f1d67247fb5e46","impliedFormat":99},{"version":"0f8f1e26430eca9a599bb5ba1254037d61aeb5c73d9425f2ac1f0d4d710d8c02","impliedFormat":99},{"version":"ba2cad86b7e32e99b0a372a4db8637218e36a28e4295c41f2d4b9a00711c573f","impliedFormat":99},{"version":"520063a5b30c811cb74d7d9b94870051a8c879c7d18f3a0b18c6402440bff1e2","impliedFormat":99},{"version":"637a90a86cb3ed33203c935f252d5470a345cb942eaf13f3e2709db31512ebf7","impliedFormat":99},{"version":"c7dcf01b3923789139e3256bb80d4d0d427d39f289ec5646b7bb3cb2672847f5","impliedFormat":99},{"version":"754afd0edd6ffa5bc5ea7100bbcd8e2d24ab66c9a4469ded045258e7a83f33a0","impliedFormat":99},{"version":"5b9cd3fd889b887a753a3fb112ae173ce113df9469d2d0a22faed9c16de2203c","impliedFormat":99},{"version":"b2152b77b1b41dec50bdb467852c60d13fda134623231344d732d0477a580087","impliedFormat":99},{"version":"2b5b9812e9ed7ae03f2041135c0e73eeccb996bda966e47fcde69d500f5bef93","impliedFormat":99},{"version":"857c507909286ff87383287edd1a336afc68b0c8c693ad3fd6ba837708492076","impliedFormat":99},{"version":"df9dfb5c5f58d478e8c6654648e427e6bb26e15d547f1b611d6c6e393170033b","impliedFormat":99},{"version":"7063031149b7413ab3b80689cb526e3257c9c2e890d65a48faffe9a9a0ee59ce","impliedFormat":99},{"version":"14037cb899d1a890f1fb061ea1362039292b10774de3218835c921a4a411d01a","impliedFormat":99},{"version":"a211abc59f91d43eae9cdaa19ee4b472a7b4a4ff5e3f07ce8b065d4e92dcbced","impliedFormat":99},{"version":"f4122d8ef50376404bc80d01a6375b3d5d45040e2f6cf9900d352c1066ad9591","impliedFormat":99},{"version":"7eeadd198787f565f0cdc88dc562cda9866fc7e2679b38de7d92162018804499","impliedFormat":99},{"version":"32dd74850436fc34eddcea1b325a83807483ced06b9b37d5e4df38c0ef92a72f","impliedFormat":99},{"version":"86cb9c910c55217b3278419db2f50f58eaf945d6500ea7906c8f990d196ea4f5","impliedFormat":99},{"version":"b255c790bec1a2ef2a3c4d7d40af94781559d5c15d14dc6567ea5e25708d4288","impliedFormat":99},{"version":"03c0fc9e4ad368991c1733aabd605864b69851bfb30f00960e16dc0d48a0bba3","impliedFormat":99},"bda40c0c977f1dd3681ffbfae90c2b2b56fab4f1a2f1742268fb53e148d90be7","eca2e61346c281cf1f6fc94979659031983168b098e66bf1f2eb2c46b76aae94","58c5493ddc0b066b8ce7df4a20fa280397b2e908034f42db4f2dee58c595bf78",{"version":"6bbbaa2af983444add75cb61554b91dfb26c7474bb59b148270a63015ca83131","impliedFormat":1},{"version":"8572c8c7efd451ed811f657d6d70f03ee401c5cf175490fcc6b2215b57b44391","impliedFormat":1},{"version":"9db596446342a6c90d34ac1135421c264ca8e50c0c674c0fa10b313f7a51bf50","impliedFormat":1},{"version":"30fd693da320b8c72424ca881a565162679e06c8f88796c497d24e29daac1b3c","impliedFormat":1},{"version":"eca2247488ac2497d59286dd3addcdfbb24072e20c6ebfc7fa3915c9c266566c","impliedFormat":1},{"version":"f50a16ca6024aca2ce243524b079c3e2f0ad433ee3be729ac0af43bafa4e1791","impliedFormat":1},{"version":"ab2673ff1acedac16b862af7ec8e2d5cee62937080f1359dbf2d29126d508eb9","impliedFormat":1},{"version":"4287143b90d621be53fab9dca36a42b2ec735bfb44da5a07e8748a261821f95c","impliedFormat":1},{"version":"949fa4a7cfefb2eb529ec6c2172a34928b069f93e6a3b65891aedc6fc306200e","impliedFormat":1},{"version":"79e12334f2a478c117a5953cbfd52f4d4f59f77c21c7740edb338141f874f279","impliedFormat":1},{"version":"0582a8d130897dfc3f6310da68f16471cb6293799ccc0aa09975dffd4265b61e","impliedFormat":1},{"version":"5a341ba80d659186e5b4953c5d00993104f529b48d11fd0b0144ca25bd350a69","impliedFormat":1},{"version":"968ed07a79919ca7154ca83c5e969002b978b97adc2ba22a3af45d5993a9099b","impliedFormat":1},{"version":"be1561053576a52f4d65494e2f1282289320a532293094134321a44a93cf4915","impliedFormat":1},{"version":"b1ce8a3b8ed1691b9770b9871fab57823ab55d40d5dfa9f30af2ac377850a970","impliedFormat":1},{"version":"4ceb88f4a0e929e0dc864502f2e23034c5f54d9c5f3fa19f903d32787d090d7a","impliedFormat":1},{"version":"b4e62d74cf0df7db2a6a9ea6606da9af352ad42085e7362cad29d8f58278c477","impliedFormat":1},{"version":"7824fd7f5908957a468f4ec46c6679127c8b562aeb770a00fe0483c918f0d2d1","impliedFormat":1},{"version":"24d35aee6a857a9a11a58cc35edc66acf377a1414b810299600c0acd837fb61b","impliedFormat":1},{"version":"36a5fda22d3a6ee321a986d340f120f57c8d119a90c422171bf86fff737fdf67","impliedFormat":1},{"version":"8d866e3b3a4f624e1555fa4b5227c3c245a519702968543776f400545e8ce7da","impliedFormat":1},{"version":"f633eab87e6f73ab4befe3cddeef038fa0bd048f685a752bdcb687b5f4769936","impliedFormat":1},{"version":"ce5ea03a021d86789aa0ad1d1a3c0113eec14c9243ae94cc19b95e7e7f7ae8cf","impliedFormat":1},{"version":"c76fe658431915d43b69f303809bb1d307796d5b13ec4ed529c620904599c817","impliedFormat":1},{"version":"2427845308c2bda9205c2b2b1fb04f175a8fa99b2afb60441bd26498df2fcdbb","impliedFormat":1},{"version":"76ccad6fe97682b8a4f5e3c59c326c30cae71437bc8811d4cc87e10e84bd455d","impliedFormat":1},{"version":"efa7052d3bd69a64cbbb2d618826c02fc65691e74a1a04024c3ecd0260584d7c","impliedFormat":1},{"version":"057c83625b39de449d0651b919607da322f4a1113c6acc74e73cad6dd7d8e87e","impliedFormat":1},{"version":"daec69815ab9c528936534197d95cca93f94cacebac421fbc6330288b621ffe4","impliedFormat":1},{"version":"413980d73369922da43255577efdd6685759588a36823dfbe7f272ab223c7d8a","impliedFormat":1},{"version":"06fd44c96838099b8b1bb0fb29f73f4b0dc7bd9feb16bc29dbcf442ba098016f","impliedFormat":1},{"version":"a06f8413d12b89f7afc3516429118dc9b73638165943b6f1e54a258f1658c3ff","impliedFormat":1},{"version":"c2c42764312d2ab315d4713def800fc46826264f877ad0a1b20012d171ee51df","impliedFormat":1},{"version":"3cdf773f41931fdf99551b5b1c39ebe0298cc0d5f84396543c3085a1cb435957","impliedFormat":1},{"version":"1633b77af9b77abc0915b0a3b0f17379169c5dfc20d23222685300bcfca1a22e","impliedFormat":1},{"version":"69a84263e6b52d36feacfc6c1d2fdcf09d04dc24089d88c25de365e10a23eb5e","impliedFormat":1},"6ecb9e8b030a5451bbfa4ac9cb3ab90a074b7263b3ff3db400c1527d5ebdd51b","beef93f89875be2d60783d894be4ff1213921a663a4b1dccc245e26c150c59b0","544a3b7fbae9ca30bf05d9d0f1bae8d09bdebf6c056a652c5dc37f38b4b5c146",{"version":"9859047560c0c113d5a68030c2f5aac009c7a3b7e28e0a2f6c4fa1bd3a607fa2","impliedFormat":99},{"version":"1e7881b7155cbe71a30ede9d4e3339d9de60c72d97147847bd9bef85077e72f2","impliedFormat":99},{"version":"7d2ff56ae2357110addd96ac7aa7510224f31e2eb829486bdf5a4af7e2314c9f","impliedFormat":99},{"version":"729df80470b858cc2e4c770f00f4b945e8d073d2595cccdf190d5b8c2173ada4","impliedFormat":99},{"version":"9da28b505b75310e36af6ba2eb5bdbc28480fcda1fa3901586668e00c322f10d","impliedFormat":99},{"version":"13565d74ceb7b9aa57cf122e7daa3267742ab21f2318bf82e64e346ec3fdbce1","impliedFormat":99},{"version":"4ac2b0331721cdd9ae3915d6cc80f3790de5c6caf7024d87ad7665b7b7db0dea","impliedFormat":99},{"version":"45455d6b12f14c6a213cf09930dd83bfdd56104b354a938d7fe495e8965dd58e","impliedFormat":99},{"version":"dc68c2de54f9a748a354fec3d3f4a1b9b946561b59763bb22069e0756b60a18a","impliedFormat":99},{"version":"151df51648654bbf8922ad3243494410da97c8a9c00b50d8bce4c7ae3701f20c","impliedFormat":99},{"version":"7c48c73f8beab7282443f9303550863dbbf10654e75d338de50a15774522dda6","impliedFormat":99},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":1},{"version":"0dd7bc3250da0677a9f39147800d5209b360d3d6561a371d13f8095983791bec","impliedFormat":1},{"version":"8a013becef463a8474c9e71b21479ab72ca401eabceb31ddf584c2b9a3999b7b","impliedFormat":1},{"version":"4e29e81b632595bc87db0473b6f5b2aa7a24b95fb97392ee8c9bdbee72904b27","impliedFormat":1},{"version":"3c46b5e7a836ba669bd9b128b649c8925e7ab25f69badc9f2f4eb27d6ea190eb","impliedFormat":1},{"version":"0738e3705ecfc1e2e5b49c174cb95f5c40fdd0ce7720d6bbb036f019a9dd4432","impliedFormat":1},{"version":"95fe50f64fc00ac887c9fe5a71b2b64bed3ccf659dd56494ecbc0f184fbd989f","impliedFormat":1},{"version":"d95eb2650bcea5ec92cc8375987ea0a131e018d3edf7c57a65b24f6a43796a0f","impliedFormat":1},{"version":"9cf61ca8cc79a0e14774b26473288027694eb646ed08fa3ac33b4b72ea12790b","impliedFormat":1},{"version":"fab131a83a8176a3dd7f7ce46e9e53c8535b8b93f0e906490393376302f16400","impliedFormat":1},{"version":"4e4c91b6ca78a308e77a539c8311153cbfbca654e964aa1bed327c080e91de3f","impliedFormat":1},{"version":"0d5a1823ef4ac4b2f19f9b9d2d49c105d6e2427430364e323232cfdbfaa19e3a","impliedFormat":1},{"version":"826aefe9e99d52df51323823cf0782279ee2bfbc2ee7a8338aa63470137ca65f","impliedFormat":1},{"version":"46596f7e2fecdda17a2e0b186f144046dd05d648c38fb731c63eb6ecd3a8e036","impliedFormat":1},{"version":"14b0f43e4955e09788ef5977945bbac7dd22c2e3638fe4403be8ce73f2a3d33f","impliedFormat":1},{"version":"39e2b60bbad000b6f6cffb337823ae2992704745e01721e75dcf571ad0ae6b2b","impliedFormat":1},{"version":"3748045746b4fc790c56f4d855cce21823331059faeecdb1d1b1418a9733ddad","impliedFormat":1},{"version":"a419ef898e624f14b3619f4a2bf889ab2cd0d0e6165fe4e8eec8e4994173df92","impliedFormat":1},{"version":"b42b3ec88494f4a7f208335e75a610c44d7b26e86f37644506d33cc9190afd1e","impliedFormat":1},{"version":"0227a93220d42a79c9b11c6b71296453a447a665e87522ec1b29eafb89c732ef","impliedFormat":1},{"version":"97db6da3979f2667248e02cae1d9c2e7f8023c45164d11062e69ad0f892412f0","impliedFormat":1},{"version":"f3e0089110f0366c9e9c21aa9cdf0e8dec349e0982cf845569c4c76d7541d640","impliedFormat":1},{"version":"f1376e1decd60b0f083427fa8102186d50b502dcf782da722fb4f9ab349799bc","impliedFormat":1},{"version":"a84f5860970d187f09c672571d3f467281bfa33dbf793893eca062828e8c5316","impliedFormat":1},{"version":"27abe81502b7efc89a9174c895b46784d8603384821c3c0da124debaefc016fb","impliedFormat":1},{"version":"976158d738f4dfa70928e4a6285f791d2f344a007755f1c4bd4042141d4fc3bd","impliedFormat":1},{"version":"45ef3d9e6e0302ddee149d80a800a893a64b9ce83037bde54c47fb9a614535f4","impliedFormat":1},{"version":"6da03196c6f54339a6676c4e9987acb8597d6da8e02e2891f3a5e4ba5ec3f3f4","impliedFormat":1},{"version":"7809e7d40576aab1d2544df9b5b9c0ba0a986b6fbead1a7eb8c73832c87a38f5","impliedFormat":1},{"version":"3a4f280e1ccbcf6be55a182dc22419f4b57b5bf0da3cfd90be09180893b1fd17","affectsGlobalScope":true,"impliedFormat":1},{"version":"15bb87e4300ff4f2e3d12d2509916a465c5f1f3779037d104352a21bae60838c","impliedFormat":1},{"version":"918c2c1353e624edd0c5c886c59834b25acfef2d56cebd13bc0802055087a858","impliedFormat":1},{"version":"6e8df5e7d5c7301c2efd1ad043e866161c3f93913e6ec42ca7d845926d9e16bd","impliedFormat":1},{"version":"8c873d78b8de332bd5e0e39cfa5c143aff3c9d607d022c4a43ef07b3ec2d1cf9","impliedFormat":1},{"version":"1323085c5e51f01e7e262e7e92d2458905a7232c66dfa891321d7b87d1f517e5","impliedFormat":1},{"version":"f594d55387f139337d2a1466a8ef6ab13a6bbf00ccc245ef1bea481f2c4e1c7c","impliedFormat":1},{"version":"c038d8a953b5728afe6efe989414d6ef03f411af3f239072c970e419c2ab7389","impliedFormat":1},{"version":"e52bc77889fb5ded518a28c745547a36d1820085d1f14a5b737982986bbce93e","impliedFormat":1},{"version":"69a84263e6b52d36feacfc6c1d2fdcf09d04dc24089d88c25de365e10a23eb5e","impliedFormat":1},{"version":"f50a16ca6024aca2ce243524b079c3e2f0ad433ee3be729ac0af43bafa4e1791","impliedFormat":1},{"version":"eca2247488ac2497d59286dd3addcdfbb24072e20c6ebfc7fa3915c9c266566c","impliedFormat":1},{"version":"ab2673ff1acedac16b862af7ec8e2d5cee62937080f1359dbf2d29126d508eb9","impliedFormat":1},{"version":"4287143b90d621be53fab9dca36a42b2ec735bfb44da5a07e8748a261821f95c","impliedFormat":1},{"version":"949fa4a7cfefb2eb529ec6c2172a34928b069f93e6a3b65891aedc6fc306200e","impliedFormat":1},{"version":"79e12334f2a478c117a5953cbfd52f4d4f59f77c21c7740edb338141f874f279","impliedFormat":1},{"version":"0582a8d130897dfc3f6310da68f16471cb6293799ccc0aa09975dffd4265b61e","impliedFormat":1},{"version":"5a341ba80d659186e5b4953c5d00993104f529b48d11fd0b0144ca25bd350a69","impliedFormat":1},{"version":"8572c8c7efd451ed811f657d6d70f03ee401c5cf175490fcc6b2215b57b44391","impliedFormat":1},{"version":"968ed07a79919ca7154ca83c5e969002b978b97adc2ba22a3af45d5993a9099b","impliedFormat":1},{"version":"be1561053576a52f4d65494e2f1282289320a532293094134321a44a93cf4915","impliedFormat":1},{"version":"b1ce8a3b8ed1691b9770b9871fab57823ab55d40d5dfa9f30af2ac377850a970","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"378281aa35786c27d5811af7e6bcaa492eebd0c7013d48137c35bbc69a2b9751","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"830171b27c5fdf9bcbe4cf7d428fcf3ae2c67780fb7fbdccdf70d1623d938bc4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ea15fd99b2e34cb25fe8346c955000bb70c8b423ae4377a972ef46bfb37f595","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"f9b4137a0d285bd77dba2e6e895530112264310ae47e07bf311feae428fb8b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b21e13ed07d0df176ae31d6b7f01f7b17d66dbeb489c0d31d00de2ca14883da","impliedFormat":1},{"version":"51aecd2df90a3cffea1eb4696b33b2d78594ea2aa2138e6b9471ec4841c6c2ee","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f929f0b6b3421a2d34344b0f421f45aeb2c84ad365ebf29d04312023b3accc58","impliedFormat":1},{"version":"db9ada976f9e52e13f7ae8b9a320f4b67b87685938c5879187d8864b2fbe97f3","impliedFormat":1},{"version":"9f39e70a354d0fba29ac3cdf6eca00b7f9e96f64b2b2780c432e8ea27f133743","impliedFormat":1},{"version":"0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8cf132379078d0974a59df26069689a2d33c7dc826b5be56231841cb2f32e58","impliedFormat":1},{"version":"fbf413fc617837453c878a9174a1f1b383616857a3f8366bc41cf30df4aea7d5","impliedFormat":1},{"version":"148c73ec11318850f571172ceae3e55ce479d850fe18ec8eae0abd99d9f6c319","impliedFormat":1},{"version":"230bdc111d7578276e4a3bb9d075d85c78c6b68f428c3a9935e2eaa10f4ae1f5","impliedFormat":1},{"version":"e8aabbee5e7b9101b03bb4222607d57f38859b8115a8050a4eb91b4ee43a3a73","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"c0bb1b65757c72bbf8ddf7eaa532223bacf58041ff16c883e76f45506596e925","impliedFormat":1},{"version":"c8b85f7aed29f8f52b813f800611406b0bfe5cf3224d20a4bdda7c7f73ce368e","affectsGlobalScope":true,"impliedFormat":1},{"version":"145dcf25fd4967c610c53d93d7bc4dce8fbb1b6dd7935362472d4ae49363c7ba","impliedFormat":1},{"version":"ff65b8a8bd380c6d129becc35de02f7c29ad7ce03300331ca91311fb4044d1a9","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"9043daec15206650fa119bad6b8d70136021ea7d52673a71f79a87a42ee38d44","affectsGlobalScope":true,"impliedFormat":1},{"version":"150d28d98d2f6aa7053ee0eb7de5a1c2ab23a6dbcc92eed0a630b2f572a1a5ec","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"5fb39858b2459864b139950a09adae4f38dad87c25bf572ce414f10e4bd7baab","impliedFormat":1},{"version":"28e3631087ecef78fef8efdb21d4d2509f776ef6f0d660ff605b5ee6a22ebb8c","impliedFormat":1},{"version":"b33b74b97952d9bf4fbd2951dcfbb5136656ddb310ce1c84518aaa77dbca9992","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"6b306cd4282bbb54d4a6bb23cfb7a271160983dfc38c67b5a132504cfcc34896","affectsGlobalScope":true,"impliedFormat":1},{"version":"c119835edf36415081dfd9ed15fc0cd37aaa28d232be029ad073f15f3d88c323","impliedFormat":1},{"version":"450172a56b944c2d83f45cc11c9a388ea967cd301a21202aa0a23c34c7506a18","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"72f8936aebf0c4a1adab767b97d34ba7d3a308afcf76de4417b9c16fb92ed548","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"04aa8fb012abeecf5666b013c59ba01dca5aa0c28173cb5385bc88d4adeb8d64","affectsGlobalScope":true,"impliedFormat":1},{"version":"3585d6891e9ea18e07d0755a6d90d71331558ba5dc5561933553209f886db106","affectsGlobalScope":true,"impliedFormat":1},{"version":"86be71cbb0593468644932a6eb96d527cfa600cecfc0b698af5f52e51804451d","impliedFormat":1},{"version":"84dd6b0fd2505135692935599d6606f50a421389e8d4535194bcded307ee5cf2","impliedFormat":1},{"version":"0d5b085f36e6dc55bc6332ecb9c733be3a534958c238fb8d8d18d4a2b6f2a15a","impliedFormat":1},{"version":"db19ea066fdc5f97df3f769e582ae3000380ab7942e266654bdb1a4650d19eaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"2a034894bf28c220a331c7a0229d33564803abe2ac1b9a5feee91b6b9b6e88ea","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1},{"version":"dd56412eda5f8975ab300c44027c91b6a6cf7e69dbae72cf3eec1fd1e093eb3d","impliedFormat":1},{"version":"4d2e3ef2f8f9595d129bbedde6c07f554ba8e42fdfa50b77afe6eb5e4d09a6f4","impliedFormat":1},{"version":"b4dffcbfd60d11ac854fa7f6b36a11b8cc90d11d56a5e90d17ac63b3fda6660d","impliedFormat":1},{"version":"8206d386299ae1a6c10dc6e58064e12bbd847a0e7c908e542bf1041475d54ad6","impliedFormat":1},{"version":"ff9ad57b380e2749190840bc15071b71d9562e07f62eb2477b318e98c13a2e29","impliedFormat":1},{"version":"70bd600d126103ba9b69a50f5c54aee5f6e5a0aa9b12f0e00776faf72a35aa23","impliedFormat":1},{"version":"8d866e3b3a4f624e1555fa4b5227c3c245a519702968543776f400545e8ce7da","impliedFormat":1},{"version":"1633b77af9b77abc0915b0a3b0f17379169c5dfc20d23222685300bcfca1a22e","impliedFormat":1},{"version":"09db6d7779361f3345b01f54c8c422fbd408b11691703b5041891248ed571174","impliedFormat":1},{"version":"36a5fda22d3a6ee321a986d340f120f57c8d119a90c422171bf86fff737fdf67","impliedFormat":1},{"version":"efa7052d3bd69a64cbbb2d618826c02fc65691e74a1a04024c3ecd0260584d7c","impliedFormat":1},{"version":"ce5ea03a021d86789aa0ad1d1a3c0113eec14c9243ae94cc19b95e7e7f7ae8cf","impliedFormat":1},{"version":"7824fd7f5908957a468f4ec46c6679127c8b562aeb770a00fe0483c918f0d2d1","impliedFormat":1},{"version":"2427845308c2bda9205c2b2b1fb04f175a8fa99b2afb60441bd26498df2fcdbb","impliedFormat":1},{"version":"daec69815ab9c528936534197d95cca93f94cacebac421fbc6330288b621ffe4","impliedFormat":1},{"version":"f633eab87e6f73ab4befe3cddeef038fa0bd048f685a752bdcb687b5f4769936","impliedFormat":1},{"version":"413980d73369922da43255577efdd6685759588a36823dfbe7f272ab223c7d8a","impliedFormat":1},{"version":"9db596446342a6c90d34ac1135421c264ca8e50c0c674c0fa10b313f7a51bf50","impliedFormat":1},{"version":"61a7e2580925bb54288705aafb5ea1849390f64713e83f9f3debc0a767790869","impliedFormat":1},{"version":"dd1e0cdfccb0ce62e1740451fcb3b012cd64cd121acde20a16362d031e764b74","impliedFormat":1},{"version":"503961ee6d79efe388565c73f1db74c74389d6dd4a96698334ffa934d1db5b41","impliedFormat":1},{"version":"e64fcec3a58a123943cd169a710689ee2e25b21d6673c8b7e2ce1b5442ad17b9","impliedFormat":1},{"version":"9661e24ca9c1e96fa593743bd8b7a2c0505a87016a98c017045514ba8cc26ab8","impliedFormat":1},{"version":"5962418c92cc8927b468b33457687cc9d0cb1463ea9c2d7ff647f2c18fc7add5","impliedFormat":1},{"version":"8af90d5722812d5af626f1f616cdb101c115fd43cf7df8d806febbd231b59c3c","impliedFormat":1},{"version":"bbac17f576d90dd4e1d0fcd3d40728b54761e3c8e17066a5e1436fa1c48df647","impliedFormat":1},{"version":"71a19e2f0efe18516c062ea40e2b1d396917998aa58dd6ecbf591f8a62761407","impliedFormat":1},{"version":"438337dd5100c414bc7a37d6116c6ee75c146875816f51d152d7a22fe91e21be","impliedFormat":1},{"version":"c0d85ebf8de676ee661fe9a35496e192d4b1a256272f74d64c58a34d36faae72","impliedFormat":1},{"version":"7316ee184165ad1051dd04ba009e39826d37bdf765ded7413d7897e9349c6b6a","impliedFormat":1},{"version":"31aca998524e36a8d74ac2c603d975fb0bbac8cca9686b6050b0cf25b271acd5","impliedFormat":1},{"version":"53886b874894ccb96cb83b2efee1a6de5635c90cbbe66c50dfeb3aa9404395d6","impliedFormat":1},{"version":"be2e9f60037f35dbe66dfcf181a28e46c99fe9db8b174860328bf48f11e03f53","impliedFormat":1},{"version":"5334ac24dcb36db397aee57cccaf2899351a5c7305ba89122c7e413242aa200a","impliedFormat":1},{"version":"a6adbdde64cb43c4b37c469c04e2faa5080e41cb465cc4a29bff3407accf9acb","impliedFormat":1},{"version":"04d60add28217f89c86e1ee9162edef183f115873399b67b4eddaf305ae6bd32","impliedFormat":1},{"version":"b08d8c0ca2052d269f32cea31813477c5779f5402d96f036dfbc8f60f251940c","impliedFormat":1},{"version":"4286c6a204583407e9c576edd91a82ed9f00b3b2cae2230dff508e82b3c626fc","impliedFormat":1},{"version":"0e221966e7b747cb6c6f732c1f05c2b065db7feaed5c4f5107c07978f4ca38e3","impliedFormat":1},{"version":"498ed03e3d3dcfdcec4077d368bd246256c548070c2825e727169aa9f1421b66","impliedFormat":1},{"version":"4540e720f85b66506d48dffae9b5edc8391e43c9f4e7a4c36e52d349e971c0a3","impliedFormat":1},{"version":"f0e9ed83becf7779a5930ccfd4ab1f32461bcdc16c9bbd2d88cfa6d09db0ec4a","impliedFormat":1},{"version":"57ea431405c212f993ed185a785dc1a8d9c3537fa25cc2a9c961fabcb314284f","impliedFormat":1},{"version":"dac8d2ad4560646050e0c463e944723cb02b5897ff377e2f489e7c8483aa416e","impliedFormat":1},{"version":"a3462bc89af49fd1d44d78c29bc52693e281113c53a34c6767882020a6b9c7a6","impliedFormat":1},{"version":"af77d1db49469744979540c0ffd2b72174246fdcca0b7e33a63ac8f109ef46d7","impliedFormat":1},{"version":"d5656bbb794ac2f0b9dae586eb93120c2fbf31216f56abaad772d632e5d9ae2a","impliedFormat":1},{"version":"d4ea61fe1b3efa637f57d80e9fb41b66d1e88b63464b8d9192620e44c485abe7","impliedFormat":1},{"version":"113268e92e3b7f2b6141e512d91c73db65d169e0a49c60243d5ab0dd4bd20d05","impliedFormat":1},{"version":"d20d052f3f30322c5ea65214e2e446945f721c7b264253518e11f643a3135415","impliedFormat":1},{"version":"26f0686144360debfce7f941866e74a076ee15a3142bb359f25d571be8ed3c55","impliedFormat":1},{"version":"868d7afb92541c8d4f77a60548906a7e456128b862224a8f1dd7ba7f487337d4","impliedFormat":1},{"version":"ad8ba715d8efd3b74326efd7edac4742e9894432b79c5550e598be1163987511","impliedFormat":1},{"version":"09f6e47c86256b4fa34164911c1798016e09d53256dd39c15c0b03332a4462c3","impliedFormat":1},{"version":"f01a58a5cfb4e141693b9ef956f8a49f2648a04b00ce64eac56bcbca85792cd6","impliedFormat":1},{"version":"f37268beee314daebb3d06b2c9b28030f969cae9768f5933ddf9a34087906f42","impliedFormat":1},{"version":"45526614782a35f365aa7bd0b5dca2ced3ff513052d1f480e5fef1a657191e61","impliedFormat":1},{"version":"b5806ae7e5a94990ef1deff41a9ee5f1b8752187a587181ae2a3b693604b1627","impliedFormat":1},{"version":"e4d0175257370f0152ac76530c5ba047a87b797d653b51779145ca1b1c40298a","impliedFormat":1},{"version":"766ffc847ab2c174fdc6f9d7d54d1f6d0201d2280c8bf02579ae140b1d2200dc","impliedFormat":1},{"version":"4c26b338077dcb3db1366f704c2cf37d7e555cbe5d09ed9bf78124c964ea8a89","impliedFormat":1},{"version":"a6767133b112087a297e70f6490ef2d1eaa60fdd7944b0f1625a5f71f7870ede","impliedFormat":1},{"version":"7a55df7b0cee54f953c692b85db9f601b07db72cf2b80245349293107e156365","signature":"56a3e268d4d7967ae0629be279707dfb5a26bd01b275127038f2963c716de75c"},{"version":"b7fc81f1afcebf22df66130daef4532973d3cc90ff616104137a56a73d9377d5","signature":"b3205bbcebe762aaa8bff57747c961bad4e3dad8f52daf3a259faa76c66c15a3"},{"version":"62cbc905ca1b40cafde9dd7c35ed2fc38e7ce63ef5b9f5353ea49f506e88e4f2","signature":"0851e9b344cb03be3f86889173a216a37a198c24a620cb9f32b9ece889955865"},{"version":"2996a85e91954e145af727cc57d70226d148d170f0d9ef446c5143d46560f5c7","signature":"0bac68247e8baa02940fcd153a0c03d757916e64a9f56581a2b3e616a3d25036"},{"version":"022ae7530d0bae5d73ccec1fd53f5e77ba98b48a4e758555063e7a71ae5b9557","signature":"a79a15631173c489794564913d7d925aaf7786b293e4707c52afba95f533b99e"},{"version":"8b414a3cb85980518ca2738a35a7f22acb29cb8ce4bac62e961549c21193a73b","signature":"c64d8cb1bd60c6cd43e8de8415ea3468aa84e1f6e0db0e922653c94d985aa937"},{"version":"b4a3a9ba0e58a386191fa2b4036e56db1deee86b876d53c0bbf08f99f1e47254","signature":"10e6b6ef081a068aa42081efb847b406a25d6d85c0d356eebda18b28d4a388bd"},{"version":"3a598a88e121fa783ff0d71076494c09e060988c940f7c5af021e3cff6d9bc6e","signature":"06b13ed6f4d8f94eb2963816d24bf8602e94fcb017ffd0811e662800627f80e5"},{"version":"c02591a66c97351c0d9f30e8ef9a6896785f76356494e4b7b70ef5ba1fc3e262","signature":"e6ce39406cb9c70b675ff4eff1292918882f62b96e0057dbb71d88de3307f0d8"},{"version":"fc3b617278260c90df2cbb6c3d3926c30c499efdf92613ff054d3787d76e1a8d","signature":"2a1cebdf777c9cce6e9bccd3a92f952910881e89957ae945510fc4892f662af0"},{"version":"6d3867dfb8a8773f7e468c856042710746f5ce73b7473015e3c74417befaad5a","signature":"b28604e10949741c8652b299e3e8e9434ef4cd850168ce4da77d4cd91b20274d"},{"version":"c12da013e692a6728f41dd9090b57ff60d8783aafa09bc3df461a4ea1779f027","signature":"d3733e0c6d83d374b73a5069a41b3a8f8da2412e4e1b34d5356bc7a6a1c9a2dd"},{"version":"531123eeb5205feb371b18988e6b28479973dcece06ea526f8cb2070768133b3","signature":"128a7429986e8484e25699e9a39968a0696abca730dd7c595d89bb772aab6150"},{"version":"a2a3e41d33085071bd296485b762957fffd66050654f25a6128c9b8e5a3feb25","signature":"17e211546cf95471596585e44f9fb529669c92b9c770616676462e3f0db497a2"},{"version":"32d6e8e85f609c7fe952b708f146aae4df690408e06ab8077d3af274bfc8b48d","signature":"59dcdfdc5426e3eafdd7f8b034e9d5c2ebaf18384928e202b9431d78a92df45e"},{"version":"2251f184245cfa62fa1e627617b15ddb8ac55b2e2f827ec0644b08f02f41ea01","signature":"992f3e1c68aaf2747976b7a8d8e6b818842c2f071142e6eff4a97c510acde313"},{"version":"dd17f6195ef292ae40fe4090d62b45e1ccb3608d75bc9627e41e3b5f14c66eaf","impliedFormat":1},{"version":"7655b78e107c6f4dbaa2c510a79ba98c8359a17a9ae97a058750827f530a61a6","impliedFormat":1},{"version":"bf26afde38b9b499bb166789571807485d51bba0bbf8f1775915d917405e9c6a","impliedFormat":1},{"version":"0bfbd5321e406eb36a17a163b16edcfba022a76cb7d62bd99b651dcaf3636971","impliedFormat":1},{"version":"4d4157040eae5afa9003e4097e31a1b71225fe3c9dbe59ab6ee774dbdb11e4c6","impliedFormat":1},{"version":"dbddece77c04b00e3c3d425477d814d89e21e46dbac2d37e2fe0503201cf01d4","impliedFormat":1},{"version":"56f361625a6febffbdc1c6326d42ad10678e4ea39d030e4fab0a2d58746bc594","impliedFormat":1},{"version":"9b02030b9213c03eeccf89436bf85cdd6a797b1a0a21f3e8ae7f7eef04f41e35","impliedFormat":1},{"version":"7848acc1051fb3b2d72b59dcf7317bee377bf2786b69f8d9a085bd46e14644a1","impliedFormat":1},{"version":"860d67ac4fa0e1d50f834642ed6d6b72bb5d6f4cd419d7c098999a57b9e17017","signature":"7e60d52067dee58e1475f53844dcce9eddc3f1e6f428383c3ecd4f1ebca7bd12"},{"version":"711fe6bf6b96f3ab17d7b06ff513e513061bb1893fc3d8d2ac256988eb8c0e66","impliedFormat":1},{"version":"b51be95e446313257e63ecba0296bb9667813a2b5677af44066e0d48f5cb36d3","impliedFormat":1},{"version":"a41296a84c1d6b98f771da0fc1cfcb6f8a580665647a43027a8c8e906e1621a9","signature":"3e16f4f1e896eba2d5683d21e52010eccb2bb9506aa9b59bc90e11b6429484ad"},{"version":"3382fb0ad1b76e5b48dc50bafc23a352f9db0026819a68b2e6e05be9d998bf84","signature":"3a8a0249960d8cdc9c80b98e5dbf044f97a0d314c97b914ab9e643600516733b"},{"version":"bc31deb6cddfb26961e0e6fb703fcd14785e9e691599bc50bb54a98c1300f9e4","signature":"d391eba45904600589b5e998e474caa2242ad567df027bbe6365032ffac588a1"},{"version":"b93fcc72f0dd9d16da22d119ee8d0b5654074113d29888e29ee40cf4696825ff","signature":"9daf99f6635f68ad44b633a4cc2b7f9baf9ba85638a967208134273479fc8bed"},{"version":"4f959bf9e4180ad4ba6e6a04011f628cdcfa250b7cf1914d49eef00c32e2e000","signature":"ab10d69b8fd5f910c32e1fcf958df23829dadb6ea7160a660b3717cf2cf87525"},{"version":"302502d2d0a27962d7c4bf9e030928cb287dc30ad4124d48f7e95e42eacd9827","signature":"b3fe3b1beee310c175c82c93de598237f9d9d51fafdf50688124e0e2f3a4e110"},{"version":"446396e6304f750d2dc0f7ba6722194fd9f1bbf94b28bf9ca98768c1ee8c63a4","signature":"891409ca9a6b3bc65cf8564d9d3cd4bf3905f8945987a6b24f29932fc868a836"},{"version":"d8e93daa2a4d20fc3be43176d067a084b431430074b6a18dbfbd361a3d2a788f","signature":"1a4f480cf29deac7a09e10d82a36ced3ccc37c67c46aefc6542b30edc241df06"},{"version":"100f63bd62798de9da6a804b6d782af5bac2e69b245c374fa35ece50b72be6cd","signature":"65c58ddd71c032bb9ce928a015c0b02e9bb1e68b79fc4d5f19f72d968b71fad9"},{"version":"72d2b2abae41894909ed0e7d5c71ebf35e525293e51bc99120f3e4937c069a29","impliedFormat":1},{"version":"672d043a00f23d95d86aad56ca9ca577d0ff3ac7c10a7f25f8930585ab9a1cd6","signature":"d8034dca4563e66423ce696060572aae1fafbb28779ad8376f20de751f1a3a19"},{"version":"87070bf7c5d969fc0e7348173fbc33c6b73124fab5ba71e5d61495d9db6d321f","signature":"31d1ff204b181dda0ed799efa5f77e2258c61dd15e3ac3c7f69747c7b9ea6f64"},{"version":"00ad7665270fca3586c31ce0d3753678c3a66e7a7b360884996d9a3e1cb41c46","signature":"5dfdb3295eb101b4d3cd8ca7ddb5b56ba34e6d770576ef2a987940c0ff291d43"},{"version":"e4d541c6106538d7425c615206324612e846d82f04649ee43798337994eea8bb","impliedFormat":1},{"version":"59cc3398c8a9de488ea94a1393773623d78b62ca2ea560aff42bb4d2f03d1273","signature":"db7f6eaf6d462aaf4bf35fd763f7139a9b7add8d9c58d4a8b895339fe88aa134"},{"version":"7a0b641b4d1da65128f8a4c5184c3376e0043986f614bcb78b7cfcd46b81eb73","signature":"208c3e45046f18ff779a7076db75664073de9f9522321748d1b1c50ec368f663"},{"version":"f9c078467a212d33d6da535bd38c27930f0e1ba4823f2ebee461ffaca03c7254","signature":"12c2ec4f9bbb49800a7b60c4fbf585812bce466100be209c8ec10e98dc6655e4"},{"version":"6f11ccbf05ec030b4e2f67eb50c489cd05db396268e27b82398f8cd0e475a820","signature":"5228168602a925cad331676598ee9c933dc2c136064e18f55a9c2f4c07c00272"},{"version":"a7b2e32bb05b8a079264c229c782a10d170e495f2d3ba3ef00f28f0ee579aeb6","signature":"a4df6083ce8ed934299f8e15f407a964322e4e6d884123672beb19fa008d4168"},{"version":"cce19627df0fe2ef8abafd33f2412f325b9995b1705a83042743c8de0e0dcafb","signature":"412eab27fbda92e8a2dd5f53e1312bb20d47bfddf2367d2a91a872f3e80b224e"},{"version":"b7d4b91b41f0ff487d4f61747a09955ce7523f06eb908fe9d135f16ca47656d2","signature":"a9dc63ca8d9ce9c3cad70d55308b3c30891879ab49461b0cf0efaed9ae999800"},{"version":"025c12c14eb0faad61d65ac0fe048ba9d15b94c47cd074140dcd9bb2387aab85","impliedFormat":1},{"version":"697ab210bed2125c97fe78d434a457ca49f34e405053afaf3bda85220790d67a","impliedFormat":1},{"version":"6aa626a2ad6603562ae07b1b218287a02faf440b0d995887f80487eda15823f7","impliedFormat":1},{"version":"011da390dcabaabdaf2abde3788e5619a14a27867189697eb05d3e007d883b93","impliedFormat":1},{"version":"7183ae251433f222bf04bee8b9bf6449c171d2aefb403320fb1a87fecbd620ff","signature":"6369b655d07d27eff94d6c241f48628ac92cdac27547938a9e4b5a115eb5222a"},{"version":"993bc82190a111f2b72c4ef25bb07211fbee6d4e2111c92de084c4d1a3f46fbf","signature":"3b69c49463416199ef0f5d8dfe7072a34ccbea240dbed961c430d65c6e6c5950"},{"version":"b98037749db2c43d5bf3a47bba3de6a9a2c2d8959946f3c58d73a33db118f7f6","signature":"bea37f203d65db3f7c68c3f4c846a5d4251516ac4329c5373ce040e950588598"},{"version":"0797fe15a0f47fb17296f5e1a76048d93e004cb4b218998bdb810a99e3b790be","signature":"16f283c610f7e37850d72bbd72e55a0a08a5ee6bae2066e0498c5c70f524c6c9"},{"version":"2fbfd43f7cc25ec2a5e0876a501420e85bcd0685a48bd1632a94c7cd55b0b10d","signature":"bfa13717c0d3a04e591fa5d5a9974ed07164629fb5f5633e1e9b7fc8e22ab980"},{"version":"5e6fe3e2ae85425c479a7fb855d439608634e439b13028d4741e459adc3b7208","signature":"8371bc260e394ac353c7540f8676d06d8343aa5fa34dc9c4914100ef784c24f9"},{"version":"bbfbaa3a2e9bb4d493e4c38f3377e61a25fcdc0ff4a185c1563e858234521605","signature":"717e4a16d41e444ca1e2d9aa26ed4c193a5a964276fe7c0343f5f64b74ff73d0"},{"version":"a3c1436f0c25f23ff298743000b7e6b32cae88dd8faae20d6cf938d5b659b554","signature":"2b984aedbc745eea3f68cc34a7d84e121164c84331dd2aaa67b137dbe73ae5a9"},{"version":"2c61ce8b60bda941862c60e400b5cd4ea90c89066d890d1ca210917c06eb46e2","impliedFormat":1},{"version":"360bb706114f642c56ceb528b05e267a01f526ccd59514875e6051b6fe828a12","signature":"674094b33b18b1abcf4889610c53ba80782f1b546eaa8f22407c573343c5173e"},{"version":"cb1f4984062cb75c77490766f08391dbe584a247ab30ffacb0b2415a933d4940","signature":"dadecf6be2c6147bad3338d252332fe5b2d96656bd13671630d4dc2f47999dc2"},{"version":"6d3dd81fb47d0a5369fd1beefa117721f29d8a3cbdf94a1e9732a9329deb3e3d","signature":"cc643a80ab5a3313ed447a934d140c5625cb94896a9ce08e8036ef339c51cad3"},{"version":"66ad5109a41b951cffe03ef18d0ec4ef77aa359dbb18abda9f5f4837fd2959a3","signature":"681b13d39ebacfbf7d9389d7056ac2a93033fb4deaec19381de069a0f438cab0"},{"version":"ebab79e3791c270b127951d7eadccbecb60326c3af627c48b183947a7a9906bf","signature":"e1a295f6c219c631cb5678483f5326063c68b55feab6a15a7d89dbda8e43692e"},{"version":"8c4386124b34a0bf7d6ca54797d7b5100d216d6b22dec0a818fb5b52db409a89","signature":"3b3e69a47b324713cef94dacaebf1deb03fcdcab5fd5fdeb1da856315495c19f"},{"version":"162e5cd6a0476449a0a2eb694d5c5e246134174fb888441f97a5c7ad48404da0","signature":"1f3c31e0c3a64b89ec92059dc5a4bfd0a758add3f26906352b804347e0ed0de1"},{"version":"24c1a4adf31d9a8f57fb774791889c5cc636e87282b0ac8d9aacb39931f99f40","signature":"a842b36d009b93fa6c103141205da9276c63009af14d0114355cf9fc13d42114"},{"version":"00a98c1e487a91e649fb3a4299bb5363704241d4ce1613f14022faf6dd143683","signature":"1c1b3054bb920143113783d7c0e3dbbac1d8c2d21fbd7c8844284d7f5a799bfb"},{"version":"039542bb2ca3109c625e2f79c8491a031ae7d93ec656bb95a9495cb34769b733","signature":"091ff4cfc3385b083c8b4730c0fd38d7815e804f23b5e11bb0c139a0b9667ec4"},{"version":"a799555ad782c3ee89c94d61630cba824fc23c2b64431c87f6e6649a7efdda8c","signature":"f8912c431f65a31dafa8469f1922502b112ca4221684332c1c971bfab1ef4858"},{"version":"0822fa673ed5e7336e57eda3e672ac102d9b5c60c0ac9d6693821d7953d838a9","signature":"0c8009505e195b9738ddac9b8d1f457ba16aff882784fde554dc22e9a926adb9"},{"version":"bb909545cd022698ae4a601e4263a94d61e075251475e5087be857633027d281","signature":"382d8471c888d6251ae5d75084c7e315810c31b9e2f564de7dbdd8732177cb40"},{"version":"32fc85c60d93c38d1cd9cd0bfc7db3393955c33abea4dafbae98f73914bc4f91","signature":"a23605384ff7ab768b15b9031ac702e485e8de8d348ee4b759831b8b3afdd4c0"},{"version":"8749c0e0ac9344c03dc59024a2e3ee6445f757bd6bf103e443f3da394080069c","signature":"8aa1bb38c908035210e0f1e86471068bea8f6ecf50e35ba0014dcf47517cc160"},{"version":"ab33a6998bb397510d12279cf9e4031d6382a44f916a44b26712033daa1a6926","signature":"cdf5d5214b78f9b1720c951001ad9c4e7b25edde56e8e6eb7c47d98d3915b042"},{"version":"21354556166b578380388b5ac045e69597e333062a358cbbc297b4f3e609686d","signature":"042949b085e0b9c3ae4861418140692adf5bd6f03e924d34ca1982a2c671769a"},{"version":"ee989d5a753aa5b9443cf80274e7e2c3f844a5f3f2f78f374ef7edc04b870f3d","signature":"53625cadcc3099a8b49be252c01ce9149d870c0e44275fc6759fd07c524fb5b2"},{"version":"65ec00fa9da5ad976e8a1f45ffaec62a06ccb5020775b96a1a17f600947da3ae","signature":"e6a40b530eed8a67b2f4b82300fd27bdc7a6bcbd5ed7976b40fb3e6598bf7a47"},{"version":"50df7d0f22fd8cbbe5168c6e9e153b6dedf6bfd381390c463c65cd9623145a53","signature":"e15adf1a51c50c0a19ae54d7a890e653adff7c4889d10eaf6a238b30c52e31ab"},{"version":"3ffd4918ebc5b9ebeedbb71d02a505e1264cc7d64fd0d863247ba739598d7594","impliedFormat":1},{"version":"b19f511349121c0bd0bbaf4a852798c53ca95392f7f2d386de899277894c3d37","signature":"4acaf3bf48679c009b0e7eaeba8c09f89d91ee3e00eb12b7a78b1f372b791cfa"},{"version":"6f3a7d95cffe5191bc4921f89663b5a298b333ba042c55e945163d4a88d9615e","signature":"b1a02e8fb39e45b992ef94673a220f47f5fa8913349d64ceaf91d6ccbf5c4284"},{"version":"36789960b8fefcf321c0ae6a2454c5675df60afc16ae9db6da939c76ac90b4ba","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"fad944b1d4a8184d4269b2eb7bd909af7183a7bea9dd17d44edf5237ba6301ba","signature":"7e278e7e1306bd6007c9d157a4821c0e15f69ee65eff5b1dc3b59c9a0c61c2e1"},{"version":"96e4d2870de7e03421ce402f51b7ac7357e0503b330193db53852d04b25722aa","impliedFormat":1},{"version":"0c85c0969c6b6d75005a997c780ac7b3c86b583461f41529ea01a278a4891f29","impliedFormat":1},{"version":"dadea8053d6eef1b7d421546b29b20a10f39d1df8197740eb935c25714f6fa33","impliedFormat":1},{"version":"edcbd55a414d4f95fd672ceb3c055b224fcfe80db88455401dd8ad984b3611a9","impliedFormat":1},{"version":"4a56e11a5556293d4ae75258ae459038b05701753706b5229b3ebdf5910efda2","impliedFormat":1},{"version":"e67270bab56c5da69f182984bf45f30b1194a9cdf14de12f38741a635ab335d1","impliedFormat":1},{"version":"c7b4348d7b470cf0c2267c57ccd05930d72013478279e75a58aad3be1af68e95","impliedFormat":1},{"version":"caa6cf67e3199dfe2ef60c97af89372377831a3396a3013ab354c0f9ce43be6d","impliedFormat":1},{"version":"8434cd3846a67f66d3db854517fe869445a89937c0e8f18dec019d1b7f8333bf","impliedFormat":1},{"version":"4bec2bfa020140f1d160f690fcad6fb3bfda62dd7a3e942290c05cdfe4398b67","impliedFormat":1},{"version":"8300fcd59840b5c527c9d4cd36bb63dafe1ac1b982fa36dab024300c75887ada","impliedFormat":1},{"version":"50a3d5cec60738fc7b8ae2f62f38c04fc3883eafafea6c89494fe553f37b827c","impliedFormat":1},{"version":"09ae33cfdfe9cb6a6ff8fa4089901472540b520d67cbc5167d2d012e04858c59","impliedFormat":1},{"version":"73118fad655e8215ea089d2e3f1d9899ac57e265c28428d6e1bf62149991315a","impliedFormat":1},{"version":"639355b5c322951f60f3de38559c8803ba80175bd08b0e327dcbd56500bf817f","impliedFormat":1},{"version":"7dc3d0b731cf61cd148ff3ba84c2f8dc1e67a5fa6d37d8b87fe20bf58c596c2d","impliedFormat":1},{"version":"fe876b60a79739a3c2a93e90c757efbddf8ea4c5a1f61e9627e365c2b4c3da7e","impliedFormat":1},{"version":"993fff6b142d505a11ff2be7479d303eb96c22c744f126396f623b64b97d3f88","impliedFormat":1},{"version":"1bd01b529241d527f4fdd6045c72bd2dcf5db796f6afc5a5bf55a846d97e47f0","impliedFormat":1},{"version":"3c382339a5a904bfd8800f62796540ffdf999737121d78d1634d6d94ac991103","impliedFormat":1},{"version":"76b499db1647070367e2a89f585f815bf37cde8f36cda22a29a1997b13d0c3c8","impliedFormat":1},{"version":"23856f237ab7845c830bbd223ecac74afebdd54ae0f834f54b0e0ef5a8cf2e6b","impliedFormat":1},{"version":"ec8488c1321a3a88efad5a175f770264014a1efa2eefb3df97646aa8148c4c1e","impliedFormat":1},{"version":"d6b91e0cb71bb416aaa664a8b7613ab835ab9ff7c47ab0d50e214e69822f688a","impliedFormat":1},{"version":"10e81ac7de8c159f1b846287839eb90cc25a741071235b0e0fe64d5193d1826f","impliedFormat":1},{"version":"29022abb199d94f9f0a6afdb17596566d22d4ba73982c9b1aaed9196b44a8451","impliedFormat":1},{"version":"fd2be296de545cabdd2737657862408f516be0a280b6d20ec0d2aa93ab012afb","impliedFormat":1},{"version":"9977e68bccb6b4d133015897169bbdf0122665bc80fbbe25e7e90ca3aa1de523","impliedFormat":1},{"version":"2b0c82a6c08526c1b57cb7a895bf61032af585985e30e3844bd4159edcc1591c","impliedFormat":1},{"version":"7ef0a41a7b114586705a9d760d51922ec4a63fdb088a9952916b5bfa6fc852fc","impliedFormat":1},{"version":"7090cd81a7093c8b61d9c55629fd5b7126c9f4ec070ca1bcfdfcbad92ae9b621","impliedFormat":1},{"version":"1a29a94ce891c86a1f81171851af68ad2dbae4f44748669a4da68a6cb1c4e2ba","impliedFormat":1},{"version":"4f8a84c4449934f2e32d1a2c556cb61b138ed1fc4a7293113ebb9c2caf920405","impliedFormat":1},{"version":"efc27e15ff4eb5f182131830afc2b38a1d4634f6ea9a9308dc8b056362223247","impliedFormat":1},{"version":"3b122036043ac78ca75b4458201cc533252e19b26d0b4fda67362a1afb3ec3cf","impliedFormat":1},{"version":"6e5d84e3d4d4f7210613420bdb933ffd1b1b832be83c56a89fdf35baa865ea7c","impliedFormat":1},{"version":"6e0adb8fbec8466a44b9bd9d54673efbd7c405fb421145a17d2738125c4d5e34","impliedFormat":1},{"version":"7d3d8113e69549c00389422e6237b802b87db6dd1cd302b620d9d3e85ff9e3c6","impliedFormat":1},{"version":"7b4e46c57515ffeb1d1f02de27d91cb0c7566b71a51e873b9b0b457e21f412b0","impliedFormat":1},{"version":"6b7de28caab56e3c7d8a8468ba370d7b4413543172ad3ba4a4fb55f3c82fff3d","impliedFormat":1},{"version":"ff20cbd6e6c5e08df3d0c44ca47c4fa93c5543ecc1d6c40c180897723ba1c425","impliedFormat":1},{"version":"13ba3564772785ad0056857c887373ad819aa064dc36d4623c58a92003d8ad42","impliedFormat":1},{"version":"ba3ea2e523365325857f922fce7ecbb3adc8211456969af89ed48e1f447eef5e","impliedFormat":1},{"version":"bfb103111161bdffd28a0df049e83c22b1ac27a986c4ea51d96bbfd0776d24e7","impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1},{"version":"dd5115b329c19c4385af13eda13e3ab03355e711c3f313173fd54ed7d08cfd39","impliedFormat":99},{"version":"d302b9ba00baa91d441ebcaf4b4792b94f30ce6a9bffda9604ebf6a55516ffbd","impliedFormat":1},{"version":"dd3eada03fd861e813649cc85c384c4ef7d675f7eab30d4723e98f4afead8c7f","impliedFormat":1},{"version":"d1da92dfcd13d0def33468a7ccd67a1e69ba251dc30eac61ee2e9f7b9c70ae29","impliedFormat":1},{"version":"49b06fc8e2a082ef8c7bba93e1d50b00f71d9dfd9c64b7f6fe4892d3e4ccf107","impliedFormat":1},{"version":"5049e5380365a894f20d416f15e7edf283d6512ad9dcf2d02d96d532475d91b0","impliedFormat":1},{"version":"8048f230bec6b3ffe2439b28b4833df448fe08f4efe0e22af356aaf65bd26dbc","impliedFormat":1},{"version":"36098972200c141a9c77a71b94e19d72e254c0c93ac090eefb0fe04e03d1caea","impliedFormat":1},{"version":"a17d70b45f3285fffea446653a82ff25b8209cf6d2205a341a602249c140d5c3","impliedFormat":1},{"version":"bd9d9260606ef8f135e45c8514f677c15eef2d25739b79b9887ab6cac41de2f2","impliedFormat":1},{"version":"ad3a94e01ebb35bef85c2384c5fa944cc473884bff9bf0413efb4539139a2e41","impliedFormat":1},{"version":"3dfd10fee6b7c14d1aec2e78538f29724b47b599768151cb2ec3ae37daaa8421","impliedFormat":1},{"version":"9702a11a41fe95e9ce1f27f547485d11f40d1f6e0245aad020276f6e85aa423b","impliedFormat":1},{"version":"a22996639b1d80ba9b74bdb1c0666badd439cd1c7b760b078121389a5d0e912f","impliedFormat":1},{"version":"cc3412c22b1ec22b65633406ed111b285f70e128655788f6b8f5133454ffc87d","impliedFormat":1},{"version":"7962e63b9b6239d4647c160915fb2e1674b7f9b97b26473e5819b765c73c88ec","impliedFormat":1},{"version":"0311290b51682ed4d72f2752837a76986ace2b0bd47eb1b0e3f655f1fe1ac3c8","impliedFormat":1},{"version":"c85f4a82217b7a0f98a198d7c1991e5ef8a711d19e7c686ef9b3ecdad4fb370d","impliedFormat":1},{"version":"54555fc15b61c7c2e1aa4954256f2de943c4e1309eac247d4f6e01a451849a51","impliedFormat":1},{"version":"d01af907a8983390ddc0ab14262cb06ae2e13bed625f7efa2b5cbbb6b6e6aac8","impliedFormat":1},{"version":"3a37862642a0d9e94af940c703e266f98a879b291870427f748409587dbe855b","impliedFormat":1},{"version":"e8e3ef97f1f5152302befe31d35b280c4c89d701bbc12efc6ff5235cd046f9f1","impliedFormat":1},{"version":"77960c01a450e9df332997baa6a421add9531573b13002c20a6f39a5f6f4ee17","impliedFormat":1},{"version":"5bec708aa7ce80df0d9c87943a90898356cdf1f4a1abf604a8475792e1ad9fa8","impliedFormat":1},{"version":"9f6a8eacffcc178326f83d31e20a03f3d85f3c700f2ea1775d43a5f42588ceba","impliedFormat":1},{"version":"727c26d8ea342eeadc7f80c10acf6510fe9c11c5795c3db244ff1ca568c05a3e","impliedFormat":1},{"version":"933d64ba2e843d241def22cd6ca8f3321df1da9bc15cbbbefe2b4e7c785bbb57","signature":"549793e488dd05f43ec58985d4bb91dc878f8d57df509f8908e6f786bb8a1a31"},{"version":"ee1b0b350100a7310034dd7892c8d09f192f8899d85968a4ff0042c7fb3e2404","impliedFormat":1},{"version":"0df338eacac2cc6b0dea714f0e4efc9fea0d4beb3343f5d50c1c5a68f47cdd9c","impliedFormat":1},{"version":"8af95138292b6162fa7ca65777a6c3e1e48e7771bc6d3967bb969f3b5cad2480","impliedFormat":1},{"version":"e53927c03895132443f20ee5cf3ab957266df4d2996aa0499d408dbd06f8d283","impliedFormat":1},{"version":"330d00f1e8629bacb6aa6c6444aefdc0baa965a99437ab0e7303851545fbfc0d","impliedFormat":1},{"version":"5d8879415f83722f44327bc1ec0438f2706eae9eb0d1e13532a80f75c187526b","impliedFormat":1},{"version":"2fd5d4075f3316ef63e4edba10037c9beeae672580615ddde34386ccc09d7fcd","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"17b1a2ba234b2efc309206c895b43e72b50ba0612f16325b28a121cef294d6d3","impliedFormat":1},{"version":"6008a33dfac6d27f346784de17798770c7c6c8f9a4931d6afe1eac9a7b13f6df","impliedFormat":1},{"version":"f01b4f96f172ec723b2f4299fe85a3c725bf667f3b6f253b6905405cd431ba62","impliedFormat":1},{"version":"b57f1eeae6e1a4f0f9bac0fb1b37609654c4c370afc8d234d549fe9e9e0074c9","impliedFormat":1},{"version":"7d98dbf744b0cc49eafd0499a5f7893f296a82dbf9fca4b2c2e42447c80c775b","impliedFormat":1},{"version":"76dab8be4f4945cb227533d7273bd7c6c1b6f5db5ba5706b8a1ec3f5456d4230","impliedFormat":1},{"version":"366a07d3d3c767f91c996cbd252b171c4123d93e5611504de98b042d1a52246f","impliedFormat":1},{"version":"88c5efe7a07fde0acad6ce7a96aaf1ed2c62822a8f40004a90f74e136c7c8ad4","impliedFormat":1},{"version":"13e96d401e5093662a8df65fba5ffdb36ac2fbfe7610a7b3b4d6d8dcc106e936","impliedFormat":1},{"version":"30ca89aa0bd1bc0e964c15a9aa095505cffac087f7bc3969157517e3d856685a","impliedFormat":1},{"version":"18eae8d4354a7115e1964526f4c5cb02127bf538d823ed7d40658c01f2264a73","impliedFormat":1},{"version":"0ab81851ca4f1a2e43b5dccde175fc791245ed099cfe8eedf07db0abe37e9817","impliedFormat":1},{"version":"afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","impliedFormat":1},{"version":"a761c3d49526e1f480741564ebe26c496fa9aa54a1e11746ccadf83cc19d296f","impliedFormat":1},{"version":"409f30f2b49ce5ce08530d973f5b5fa646a10acadf78974052013546b9a01e8b","impliedFormat":1},{"version":"7a10f1a82a6041a75d8ed035b48c6269f30a44389c34779ed706c1993ad86e9a","impliedFormat":1},{"version":"27f592fa089aa2dc0ac323278450adb4911f2da4befc403353b027b20252b661","impliedFormat":1},{"version":"3dfbd9aa56c622320714af2f7c5d3056fcf029078f6dd18b15ebf243d927ef98","impliedFormat":1},{"version":"ebac894ff6139af581cd00a1a8522f0fdc090426fda664d1d2c4bf60247f4327","impliedFormat":1},{"version":"dcb70ecc42773666fca05065f493558f975947b35bb3c5ab49862fd80c32250d","impliedFormat":1},{"version":"c0f4c3575ef5eda6bef2dc8da0904cc3d1152d012d24fb2877fb6b561df6e1b3","impliedFormat":1},{"version":"b7f517926b00c1f4382a0af5cb5348e93690178a83fa7ad0537ed53dcbd6dbeb","impliedFormat":1},{"version":"094034f16f980f02f776e4f40333c0c20f7ec2f6cf63ec6d5588693739d79936","impliedFormat":1},{"version":"77299cd4cded6829cc2af67dac2dee56b4071f943e3676fc6f35c817cceb35a0","impliedFormat":1},{"version":"980515a82ee1dc292972332ae335ad1226350838ad45fb5dfbc2b814dd25f52b","impliedFormat":1},{"version":"66da736019ca18527a83a5ee2a38b1a6852c1543868b9590cbb09aa7f1c5c4c4","impliedFormat":1},{"version":"c2ca410487d02e5ec5dd71ecba1cd3cf4fa518233b64f58832a834dc10e37f1e","impliedFormat":1},{"version":"8b1dee91ab4dd3e0ebb8f15e3677dadee5195f9efa8c522f35a19fecf4dddf5d","impliedFormat":1},{"version":"eb32beec19dccfb302e4108407bd7aa69b08d9fc76e8c45076fac682e8ea741d","impliedFormat":1},{"version":"11d41421726572f3c04f4e52c8e05076f328804c42adaac497078152cd6a4816","impliedFormat":1},{"version":"03e2704354d63545219733c3c0b94aa1f503244f9efeed0078f5ba64348491de","impliedFormat":1},{"version":"e709c5f09446718788a77e2aebccb43b4facfd77349ecf0f6edacf152d39f1d7","impliedFormat":1},{"version":"f0b861adfa8d250e16e1c0314828ff38ff233530c16e2e9778764c6d5f8b033e","impliedFormat":1},{"version":"a9505b99ba9dce095cb8147b08fbf37b052aadf2aea5fc9a76606f11d0361cb2","impliedFormat":1},{"version":"c9b9f5adea9dc961d8d8a10ec863d18ae22851f324a0b9546f594bdc52a3c9fe","impliedFormat":1},{"version":"44dd2fba67d6d836e98c691beb2ad6eed6bec9d1796ce512bd0589c44d8c0c8e","impliedFormat":1},{"version":"a0e6f91113b7ed9cf5cd2bf60f5f0aca0650ac7674506416fa728315780f1954","impliedFormat":1},{"version":"cec2f89d78b49629097dc093f179abfbe4d6cf12c29d5a02501870b78e4de97f","impliedFormat":1},{"version":"aadfddf3191ba14fdf77c8ab2a7d8d8648677824c66235d40a120b666c8568cf","impliedFormat":1},{"version":"63ece6ea96700175f6d5db92db9bb5a35033d4759980a8473384f70581a4ee19","impliedFormat":1},{"version":"2a3f869a9e0fdc1dc47604a33a652a5dfabec7ccbc762e452ff0e5a563848598","impliedFormat":1},{"version":"a50880e8df4eab4bbb87ad33ea10c59fe237f6d5d9a614be1efd4c8c9f3a8ace","impliedFormat":1},{"version":"4489edff69884801ddfd072bfcda1fc931fa16b21037ce2d6df940c119570466","impliedFormat":1},{"version":"2210103b7a2695836a810ab5d9007ade27e207c85bb994529eaded8d82b07e8f","impliedFormat":1},{"version":"d4f9623c38079e684ede7b3b2a8400b0597d50a88c0f45275dfabc9c05359d2d","impliedFormat":1},{"version":"45a79fad6494ba23c29e854d567252eaf4cb49bf2fa9ea5502fc77bc5f20368a","impliedFormat":1},{"version":"2dec17f75a019b1d8a1073b9b293d86a8ee35380540d40dbd96a721fca4645ae","impliedFormat":1},{"version":"11ac0080e77b5c2c8ad5fe292f962f04eaeb8689ecf2fd910abf1f68367aa0d5","impliedFormat":1},{"version":"17a17502c96d007f6cc28799af4e1104304f362955fc0f12e816e721c24f9d54","impliedFormat":1},{"version":"a36037f062256edf5927fea550c2beb66bda11dc67c2446f3b69266b050da144","impliedFormat":1},{"version":"6531831d361838cdb0e4cdd851b2ae6890790379b85ef6b589abe93ae527e942","impliedFormat":1},{"version":"8a1838dc0e6340f7ca20df0d8625c09183f1b97eac96eb479107c687df88e618","impliedFormat":1},{"version":"d033f2ccabba1d51fcf18dd05a75e861fbf468a1d99a915a6fc87533d6e7ccd2","impliedFormat":1},{"version":"4f801c84bb19525594b4ca24ede0988b0735334fd4be2d7b160b0f943fe0c7ef","impliedFormat":1},{"version":"c77e27957767b50cd8230e05ebd90a0278c1046aa3ffa3401ed23cc034b3d674","impliedFormat":1},{"version":"7d67525fc74b0482d48722954d7a9f578ae98673dd0a9fb6101eac8ac2a1afdf","impliedFormat":1},{"version":"9eb1a7f6a898ea29ee476fc66c5d5df1236a0fec67227d7970811cb65de88efd","impliedFormat":1},{"version":"4bd03bd05f9a37a21f30cf9fab4b43c54a70beb27e8d6c3e594e798617f5965a","impliedFormat":1},{"version":"3b508f1a4904ef70fb7f9324751d21a7887c97f1e96cd48250d02eb02e41f23c","impliedFormat":1},{"version":"aedf8b225bd03f8d9e38d6fdb80030a5b73313fb89e2089f294c541a9785e242","impliedFormat":1},{"version":"f1fb13e5cbf4e5c4992c6985dda4c4f5b78e3b48aff6df16b79828a13dbe8a03","impliedFormat":1},{"version":"4ffd973ced538ee9ba9040397278eef8a6426f8edc9d6b9b9a8e7f88309b76fc","impliedFormat":1},{"version":"3bca20ac8ba7ea67098a595e7c7f698a0c9433dbf1d42e73708d3619044556fd","impliedFormat":1},{"version":"6da148ac47f9e90d1ed8fd663dc6865eb8b3e87e9b6142d2f25dbb1fb02417b1","impliedFormat":1},{"version":"451eaddf399a319eb2723ae022096b91a32dbf4b085fff300c9db9d8c283c934","impliedFormat":1},{"version":"96029a5df0f1782c1f58f7a1f5f71243eadd4077b6c5014c5502a0c3cd7b1f04","impliedFormat":1},{"version":"1c7150116333ef6b186116a850a86d02087c1b572482d2d2a2da7f0851c8401e","impliedFormat":1},{"version":"66d62456388a8d78735583dd2ffa5d9ebe828b651f1901e98e858fa9bce605ef","impliedFormat":1},{"version":"cf328d6c7e4184fbbee9cbe9bd374fbaa95b8319b7ba3d288629799b6f1a9134","impliedFormat":1},{"version":"b7e20e450cdfb7bc4852aa19f3373475949ed8442d5b8a4df68ed641d39bb024","impliedFormat":1},{"version":"e46d4e64be425abfda7b03990038fc0928e8b581713bbeb5442308e80102e791","impliedFormat":1},{"version":"d85c1579f3ab2768561fcbfd2aec89f9b147e51be6c06603a5e784e6b81cd23e","impliedFormat":1},{"version":"c77de14a7d48cc3ad467b7a695d14c1d527ea4fd6c5784e82a6a98c6d8d4252b","impliedFormat":1},{"version":"9b80579bf514b9677c7c48c5d2c55233b6ee245967d934fb73c8ab38c3a0646f","impliedFormat":1},{"version":"e9893f413f57bf5c5a11e252d15e3c382f32d94b2a9a8e0bfe5dd627b999ba2c","impliedFormat":1},{"version":"3436ee93035a6a0095332b40e6e9ed07416ad23dada7a8690193fe7075a17f46","impliedFormat":1},{"version":"3ca0f31bed111c0dd17de1d51b96cf786f06d838e4112b4f19bff301f52efa7f","impliedFormat":1},{"version":"cc6a79fe6a273dfe1c83039c240a7943f6ac92c84851343921b7e58a0269bb2e","impliedFormat":1},{"version":"d8531e011a42349baea211d63222d2dcfbe8b87a5a2750cf625ef22118e0da7a","impliedFormat":1},{"version":"26c31e0d4cda29dfb39a2e198674570f57770810d0f1c793f536f7baa661936c","impliedFormat":1},{"version":"5f19c9f50a94769a3e9b2ef5274aa54cece016989ccc935a3d84a07f03eb0d35","impliedFormat":1},{"version":"774b5ae0c4d4f2cea6fd5b1b9bc42fa33a9952738d12eae9b96f4fb06511bfaa","impliedFormat":1},{"version":"50af430d44fc58acb3b81eb0a5e2f443536a55c52ea3a683cf2550e01ab495f1","impliedFormat":1},{"version":"fa0dfaf8c66f082627c6899fa7802366ad17b0a6c28e89b19df596524f36e339","impliedFormat":1},{"version":"4c9b580bfa72405ab88c6c906fe65a99b863f1916a36bb1153e38d47320e8893","impliedFormat":1},{"version":"db53af36d7f8c25f3c94ec4598d96a464306af0e4190b5cc563bd19479f38813","impliedFormat":1},{"version":"7f980d242b3058231c6ed40bbaa7e09749d3885b9209dc8910915c0a658fee39","impliedFormat":1},{"version":"e6e63ff088384f83285f4e168da6355af2d7b3762cdc723c3ca3dfcf36151801","impliedFormat":1},{"version":"0e5ebcb890c525cc764f3dc64cfeb1fb4506b622b855c2c721fbd657fe481dc1","impliedFormat":1},{"version":"654bf6dbc88c5a859f150ef4b6eaf2554c41bd08b4c9d614ea17eb3016e70a62","impliedFormat":1},{"version":"3aff0f6f359f4c69542c6f30480a510ab4abbc6b378c25e6c74ea25015bdeeda","impliedFormat":1},{"version":"abd5726d1e786fd53b5b3bf2719bed5f1b819e9bbc62b39e4b85365efd67c043","impliedFormat":1},{"version":"238bea1f46109d5c204c7e64af8c74bf7538d19586b8e01af8baaa816e769e82","impliedFormat":1},{"version":"3025016f8fe6d4f96aac0e8c845399fbe1b5b3d01fc36a502b622e9c5cfe02ac","impliedFormat":1},{"version":"df0266745a9567c8dfb102f8fd756b1327ad5f33a5e92fea4edbf17fd59ded08","impliedFormat":1},{"version":"a0ae6a049a349b1a15dfc6c64c6eb44ac2a0530a023a0babb5eba4f6efc775ee","impliedFormat":1},{"version":"a4825a7b5314489e1c2ae587005639706a7df67426c4bbcde600cb06f2d5fb2b","impliedFormat":1},{"version":"df05f337465f0ab7422da1b9b66f780da80c9d333a3729a2c456bd763afca222","impliedFormat":1},{"version":"78b2f0c958d88b95b0d582f30ba044b8c968c85a11dce5a445d5d0384ba30b7a","impliedFormat":1},{"version":"9dd3a2f7bfc90914dfe5a8960352bc69b20e9f3854bfc305560422bb93349be0","impliedFormat":1},{"version":"d79d507f00eaa2f15bc9a4dc8e3ef981726474404a2d2f154568d590c68716c0","impliedFormat":1},{"version":"8c344dc8b7f4390a7df5705d56ce8b34e0c74a2fa455447f3c507400d1b9cf2a","impliedFormat":1},{"version":"0ff21e6cf7ab7006425ace399ac8ff4fb40848e88c9bc11147412da2c58b274c","impliedFormat":1},{"version":"aa6729adf63dc9cd812e4a5ecf39a0650202ef345443ab4efcde4f604f0e847d","impliedFormat":1},{"version":"3cf2546f49a46f5931ec05b3c5b83039b5d2387e05536acf5c6fe6c6624e3d0e","impliedFormat":1},{"version":"70c88c3d948af93234d3f86a88fc58854bb07293f7066fccb97e2c3436ab6660","impliedFormat":1},{"version":"64ab590da8894bd4b90dd10c7c9d84b0490e9f3b1f6125bceef24b62c505b3cd","impliedFormat":1},{"version":"8842166a78c7fc64ceaea1d1caa4caf877ea76930b2d3c83e85a991706ed7623","impliedFormat":1},{"version":"abdee59c5ce3e063f01fa8c8d82fbb6c1266823a389ebf6ff4403f53279b897b","impliedFormat":1},{"version":"5fb1ba72feca35d1179c864bc1b7c72084e5537b2a1ea40eed5ee6e477055117","impliedFormat":1},{"version":"3536f72e63ffb38ced59dc66d257e91536c07ddd5bf07abfb14779d7013f28cf","impliedFormat":1},{"version":"618cfea5a012492d087d73fe493d18b3749bc6e2b2a6f7ba44103ab93a5720ac","impliedFormat":1},{"version":"2641048de2c7f40890c8ffaa1f1eb3ec979e687d66f8341cb03dbc2f7183e84d","impliedFormat":1},{"version":"9260b7ca5ea6366213670841076178c513c3a787ccd14eab5ab57f14cf6e2161","impliedFormat":1},{"version":"50b0cd6152831fcc1a50b0b83189bb10b5e719ffbe392a2963b607137c79408d","impliedFormat":1},{"version":"cf3ea2e4aa9a25683abce558d5b62d1587c5285c4d375d1e0e0ca3fc226e61dd","impliedFormat":1},{"version":"96dabcd05f22c7379923896ddf9875e77ed41b02456602a27734942c2b790f99","impliedFormat":1},{"version":"40a1bf5997bf56d25f44a5e982fb500ab4401797c5bf5ba810ebcb3dd72a7922","impliedFormat":1},{"version":"9cb515c161fd001f61daee310c00b351366f62cd2418d47cbd179a44b2c35e98","impliedFormat":1},{"version":"5705183d6b8eb7e43ffaf63ea8f225ec341f04f2b8a8c4aeec8aea9528dc9f5e","impliedFormat":1},{"version":"8d9538bc55c9a986cde4808a343db018556702748eb9210f5d122aa64d73a001","impliedFormat":1},{"version":"47ca47bef86687970776beffaa24ba3d0fe43dea035c908d9b0a7e87613d242f","impliedFormat":1},{"version":"75dc0e5738726a1c36865c1287ab8b8bff39c567536e739bfdb50aa130124ee7","impliedFormat":1},{"version":"ccc9d130607bfe4bceb053a63c6d552142549f21b3d3c2498ddb0e0c14295f30","impliedFormat":1},{"version":"9f4e6a7f8cc60c17906062952c0284eba761bf8f4468fe3604b09e1b9b5f75b0","impliedFormat":1},{"version":"9a2e3e35cbade016616a330ed283429fd7eb702f6b2ac2c185f464952c5f6093","impliedFormat":1},{"version":"7efb6ce4d7c880ab5d35ac6db3034ed17e66e4dfb9c7468d247eda9168576a2a","impliedFormat":1},{"version":"436441f790e31bbf24dc75316a62249c63a518dd73f3d9caea72c8d824b6003d","impliedFormat":1},{"version":"e0095d914d5dc1deeec0f933abf1c914913540843e242d863c82cb7d953e997e","impliedFormat":1},{"version":"275efd5c25bda1326cdea7e0e25e6eaa91a5c67fcdf97d5059b3bcd28f99462d","impliedFormat":1},{"version":"7db1e03235572745b67def464351a0d1a7c2dfa3f7009c6f094acd527415837c","impliedFormat":1},{"version":"2819cf1ab51815430f7c35c18dd781dd1b50d344c2ae2a0ac869fe24646c98c7","impliedFormat":1},{"version":"a4bc95199ec10e154d5e983d6bacd8ef9dc27b6e76bacd0b8f6bdb648e7e7479","impliedFormat":1},{"version":"2cf44c92f16927b0ed766c1c4b51bce88ab3c07af2a521fb917b83feb07ceaf8","impliedFormat":1},{"version":"a812ab25ff98d86a6de5a17a2d47c1fe835eab456d9f9955b97e44f5ba4efdb8","impliedFormat":1},{"version":"199952961e678888786d40dab246ad3a3d8c6f22b9f99622c5a1feabe5d27134","impliedFormat":1},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":1},{"version":"d992f1e0cbf40eebc24064cad37d0faa4d69f4eeb985d85b95c253ae0a583e3b","impliedFormat":1},{"version":"5ae7dd34a7ab4ba608dd0432e5d16299c7e889fd8059f5bb4cceff33888c8d23","impliedFormat":1},{"version":"c621aea764dc92050d14a2f878910ccdb8f587e6d620fdd9d9db1675fa6b048e","impliedFormat":1},{"version":"2c1a825204de121dbf2fc00c0ae1ab2e38a3cb3ea8ea793e44cde51f257178a8","impliedFormat":1},{"version":"3ccf716bc813a004bb27d09e928328e4fec4d58947bc7c48d563072932c7a843","impliedFormat":1},{"version":"ec50b71f2314de99f1ffe68b77b08422d72f567f36387315438540a0553d6ee6","impliedFormat":1},{"version":"d5ee16e750ed33a10020e8a646e4f463b859248ca50bc1af0a539c787d7b2d9b","impliedFormat":1},{"version":"736e5d2fec4eac920e38a6999a006f3e852055af41a745f069a9ba2ecbf8410a","impliedFormat":1},{"version":"4385cc4b31fa0eba3a05325bf22fce288f7be0446cb19a571ef71cf4d62313aa","impliedFormat":1},{"version":"2d5dae47f185fd51451a19b055796203373a37374ca469f61a3b6c305edb28fa","impliedFormat":1},{"version":"f85336a5e6d634e96b62780c842c91e40a20d0fbd6f5887798563eddc1626926","impliedFormat":1},{"version":"9d7538fef96d8a5ae7dfee81a6c05460fbf3839fbdd02cd40803e7abc4f8f0a3","impliedFormat":1},{"version":"69a7883977a1355e7fd8a7fd12f7631de7abbb45d61ba25c5a6e113699ec0666","impliedFormat":1},{"version":"a438750b70470fb1c0410706b7475e0f4dc50f6fb07f51406afd135b97e12c68","impliedFormat":1},{"version":"eb6a03b8aec6a6fe035e2f209a963b7c5388f338be1aeacc801805a4ad6762cb","impliedFormat":1},{"version":"5b40e5b414682f33b4629f706ffbb4d4142930130ca26cd4c453a228aad5fb50","impliedFormat":1},{"version":"a1bb9ca6105c5120cff83acd9592b7711fe232b59eb18185704d4d9a9993ce9e","impliedFormat":1},{"version":"c495dae64b1937deab2d95bb5cb2a560cf919de247830122490fe0644033dc06","impliedFormat":1},{"version":"867700d1e3f58b1c5b05c5d7655d3f51db883f6a560431845de6d6a12bdad9cb","impliedFormat":1},{"version":"5be43589440f3b836eb5c88373a4bba84672e28e54b22fcd7f5d64ac513a27f8","impliedFormat":1},{"version":"595d517114915d5d045622c4d211993480f083709c3101d32fe9cc6b3f67fceb","impliedFormat":1},{"version":"43d61eb5a3715bff5b6991ecf1b43e706d73cfc5a81e2c2c4f8a956625811663","impliedFormat":1},{"version":"6213bc8d8868ea93b02322a5a59b4a6e83e416ca1dca24a5fedef30efb831bf0","impliedFormat":1},{"version":"3697b05d74551220c68f9883c1f8b0956b617b5432fd18821d1289efbcda3959","impliedFormat":1},{"version":"7e6c7fb3a7e409aaf91ba5899647b9169d215f9055ed207ad629d990d76fc1d0","impliedFormat":1},{"version":"4b98fbb55ac52ac53ee13055e121321e0a00071a9d913940a769db6b4892bde0","impliedFormat":1},{"version":"6509adaf9262237775467b550417c2a8bc65c1913b4843569c2b8bcb63163927","impliedFormat":1},{"version":"5efee14d7e47f2cd142397c00f7440b47e21897fe7e941d7aaf186a990f9dd3f","impliedFormat":1},{"version":"5f9f3ee3cab60e99f4dfd55d2745718ef2f6c9d013025e539461735fc8bc8515","impliedFormat":1},{"version":"271a8fdb960ea20f4d555f85c53d5add4b806cddeb207cffefeb449fb201771d","impliedFormat":1},{"version":"4e9fa4cbdeab5e5728e6a338a3bc9c0392a478c163383d4fdec8f1c717d8fbd0","impliedFormat":1},{"version":"91fa4c96890f73b8aacfa1db6df94ac591cddb992c082b47780aaf774f3740d8","impliedFormat":1},{"version":"3d73c613adb5f561f31f182b57dc88544c0268cfe0f29d71fdadc01536160e2e","impliedFormat":1},{"version":"684522e83270b83e50639e609fb30f6bbb23bb600c1a34395c8829bff0e1e943","impliedFormat":1},{"version":"8e6882cae5f0b9a9e11220806e334c3e180d37420a3a4c1074a8e424aecd9254","impliedFormat":1},{"version":"f920b355d0af3b7eb6aa16d38a775525dbc12fc316efcf5619e6e7032cd0ff1f","impliedFormat":1},{"version":"b0e6085eadda3b69ff359f95ae0eaec0f30247c246f1d2383cae644c7497663a","impliedFormat":1},{"version":"215b4a7c34fd455b7d25386e114e2734022daa03d2c0248e1140260bc5b2d96b","impliedFormat":1},{"version":"19d2a251901f300c506dc34cd548fc422154fc9541f083bcd7cb9b3aefcd6200","impliedFormat":1},{"version":"644ef997145af46880c3a3479eef020cfbadaa269fcc1d7354c0f24782471397","impliedFormat":1},{"version":"46c5af8e05547ebf59fa1d1fa52c512cca25556b360215218075ecd152495051","impliedFormat":1},{"version":"ac238d2be13966e5e4ea351df61b302c4cd5e76c62b527762f522c30657556e4","impliedFormat":1},{"version":"7c6375f0c64032b35ac421d0ccbdc7abab36af0932ecd59013d6c3c9eeb08d70","impliedFormat":1},{"version":"521a5f79ed7b12a3f986a44083b5514d6b37fce448e514543db6cfcaba785bcd","impliedFormat":1},{"version":"7b7706d11a9fa9564ab086e40523f93e62b298b3c71ca03786a79a11a179f368","impliedFormat":1},{"version":"362e41132fdf5800ab1efcad8eea50359c0d506a0253aabcd1c8f273e1f26649","impliedFormat":1},{"version":"1bc7eca94f6c9a615005c2a01df6f4ee68d40f8d8fb09a52b2ae5958a00ea875","impliedFormat":1},{"version":"852576783461f5d70ae14e41a89c66cbda349f5d0dcfff93beca89eaecfe8072","impliedFormat":1},{"version":"b15077bd3ee9834abde54552305a33bfdf99cd6828ea6739068abfb87bdc9f14","impliedFormat":1},{"version":"5aaee6c00c9723f5a153d2e3b3d51af7a2e9116184dca7e2c0c1a767bd321517","impliedFormat":1},{"version":"06955ce7a8cdbc2d8acabbd2f4e2066eb1a988287424e285fc7ae20294ef0bda","impliedFormat":1},{"version":"8315fcb49ac1d57e9656e029b9ae5875a050f6284faebc7300972527c8a22a71","impliedFormat":1},{"version":"e8c155366e9a7d602c2ac61b871dab3a049522dc81021a6fe2c16608b432ba4b","impliedFormat":1},{"version":"d04eb969c9b28e72c7aa53ab2496c6b2148b452cdc7e89eba8e99c746f1a5bbf","impliedFormat":99},{"version":"55f829ccb06c90388adf26c851434a1f944f85224ee4af1d30e23265af7bd106","impliedFormat":99},{"version":"ccc4aedba98a5625fa63751d20441e9890a3e8bef2d1b373e394daf4f9b54461","impliedFormat":99},{"version":"30e5e3942c3b5e9af10e2410cbb301502cc5ff54cf4ec0708deaf4cc46c6b50c","impliedFormat":99},{"version":"125b932b6765dd872ad9be0d40378a0d06f228c4c7e6ae3cbc6546bfebfdf746","impliedFormat":99},{"version":"e17530832d76f494e9ea887655c2e0964c2b468ea810119ca0e8d768da177c9a","impliedFormat":99},{"version":"4f80b9b2152ed0115dfd70aff11ccea041455f5531ab98698eb8a602f44062d5","impliedFormat":99},{"version":"7c8e0069825289a00171df4b801646f6878316bead5ac2d84f85a5725e43e6fb","impliedFormat":99},{"version":"999e2e58dc297a64c49bb4e0d44695ff99b5b2ea18bdfb0ed93eaf0c909071ef","impliedFormat":99},{"version":"d760c172ae152b553d5ae87440ec31f6c1a3eedfc330ce6c16440ad1bc6ea256","impliedFormat":99},{"version":"d9419f3891d95623fcf67af25d7831b7311dad7ddd0247b7549588d23224b8ad","impliedFormat":99},{"version":"25bc8c762f964877ba09ad8fb8e9d70ffca138333e9a7cddd8f31ae0ed69b49a","impliedFormat":99},{"version":"ece43e90d6f64a340a1791362e9f2aa41bd68a5d678ecc86022697d50e05adde","affectsGlobalScope":true,"impliedFormat":99},{"version":"dc926b278183b0d89d1970326ee6b40ef0d9e4f35bb6e0451d514f28495f6d77","impliedFormat":99},{"version":"c138d6824cffd4dfece9856af78048a94cd25493180deea045971b8dafb84d81","impliedFormat":99},{"version":"2c8df297082485ef2b4354ab1d6748a8200f41e970e21ee18554387c2220f6c9","affectsGlobalScope":true,"impliedFormat":99},{"version":"bc5aabaea92a84984bfa7a9aad462418571791cff533ff39287779edb8a9976e","impliedFormat":99},{"version":"bdb3e076f1b8d0154918bad89247c056fbee322e06d3ebbeaccf32877f4f9b8b","impliedFormat":99},{"version":"dcd6fb784133d2c1dbb0164d06a74952e4ec4d4d192cc3132a816fcb8cceb523","impliedFormat":99},{"version":"d3111fb72b2b65b2cbaebda560a97cade8505f11f3155dd117213c438fc39fd7","impliedFormat":99},{"version":"32a4f62c565a1290dacac36e2e09ec5d2ac0bdf33704ad2bd47cb35e0e11b4a0","impliedFormat":99},{"version":"6453348bfc587bf67d5854ca3077db6dd6d21d59cb2e4d49e68ffba96b86e1ff","impliedFormat":99},{"version":"7d8403025bbd036f01bd38399f94c041034a4a5475ef505c7024e2bd4323b87e","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"be5de08f7e80755a34e3247ebd7fd29634afc6143ae1860bd0efe2b8da6e6980","impliedFormat":1},{"version":"84bcc7c6b06f4d643a55dc63b56be0c81d990f8d549b66ea615c553268774dc3","impliedFormat":1},{"version":"2d225e7bda2871c066a7079c88174340950fb604f624f2586d3ea27bb9e5f4ff","impliedFormat":1},{"version":"6a785f84e63234035e511817dd48ada756d984dd8f9344e56eb8b2bdcd8fd001","impliedFormat":1},{"version":"c1422d016f7df2ccd3594c06f2923199acd09898f2c42f50ea8159f1f856f618","impliedFormat":1},{"version":"2973b1b7857ca144251375b97f98474e9847a890331e27132d5a8b3aea9350a8","impliedFormat":1},{"version":"0eb6152d37c84d6119295493dfcc20c331c6fda1304a513d159cdaa599dcb78b","impliedFormat":1},{"version":"237df26f8c326ca00cd9d2deb40214a079749062156386b6d75bdcecc6988a6b","impliedFormat":1},{"version":"cd44995ee13d5d23df17a10213fed7b483fabfd5ea08f267ab52c07ce0b6b4da","impliedFormat":1},{"version":"58ce1486f851942bd2d3056b399079bc9cb978ec933fe9833ea417e33eab676e","impliedFormat":1},{"version":"7557d4d7f19f94341f4413575a3453ba7f6039c9591015bcf4282a8e75414043","impliedFormat":1},{"version":"a3b2cc16f3ce2d882eca44e1066f57a24751545f2a5e4a153d4de31b4cac9bb5","impliedFormat":1},{"version":"ac2b3b377d3068bfb6e1cb8889c99098f2c875955e2325315991882a74d92cc8","impliedFormat":1},{"version":"8deb39d89095469957f73bd194d11f01d9894b8c1f1e27fbf3f6e8122576b336","impliedFormat":1},{"version":"a38a9c41f433b608a0d37e645a31eecf7233ef3d3fffeb626988d3219f80e32f","impliedFormat":1},{"version":"8e1428dcba6a984489863935049893631170a37f9584c0479f06e1a5b1f04332","impliedFormat":1},{"version":"1fce9ecb87a2d3898941c60df617e52e50fb0c03c9b7b2ba8381972448327285","impliedFormat":1},{"version":"5ef0597b8238443908b2c4bf69149ed3894ac0ddd0515ac583d38c7595b151f1","impliedFormat":1},{"version":"ac52b775a80badff5f4ac329c5725a26bd5aaadd57afa7ad9e98b4844767312a","impliedFormat":1},{"version":"6ae5b4a63010c82bf2522b4ecfc29ffe6a8b0c5eea6b2b35120077e9ac54d7a1","impliedFormat":1},{"version":"dd7109c49f416f218915921d44f0f28975df78e04e437c62e1e1eb3be5e18a35","impliedFormat":1},{"version":"eee181112e420b345fc78422a6cc32385ede3d27e2eaf8b8c4ad8b2c29e3e52e","impliedFormat":1},{"version":"25fbe57c8ee3079e2201fe580578fab4f3a78881c98865b7c96233af00bf9624","impliedFormat":1},{"version":"62cc8477858487b4c4de7d7ae5e745a8ce0015c1592f398b63ee05d6e64ca295","impliedFormat":1},{"version":"cc2a9ec3cb10e4c0b8738b02c31798fad312d21ef20b6a2f5be1d077e9f5409d","impliedFormat":1},{"version":"4b4fadcda7d34034737598c07e2dca5d7e1e633cb3ba8dd4d2e6a7782b30b296","impliedFormat":1},{"version":"360fdc8829a51c5428636f1f83e7db36fef6c5a15ed4411b582d00a1c2bd6e97","impliedFormat":1},{"version":"1cf0d15e6ab1ecabbf329b906ae8543e6b8955133b7f6655f04d433e3a0597ab","impliedFormat":1},{"version":"7c9f98fe812643141502b30fb2b5ec56d16aaf94f98580276ae37b7924dd44a4","impliedFormat":1},{"version":"b3547893f24f59d0a644c52f55901b15a3fa1a115bc5ea9a582911469b9348b7","impliedFormat":1},{"version":"596e5b88b6ca8399076afcc22af6e6e0c4700c7cd1f420a78d637c3fb44a885e","impliedFormat":1},{"version":"adddf736e08132c7059ee572b128fdacb1c2650ace80d0f582e93d097ed4fbaf","impliedFormat":1},{"version":"d4cad9dc13e9c5348637170ddd5d95f7ed5fdfc856ddca40234fa55518bc99a6","impliedFormat":1},{"version":"d70675ba7ba7d02e52b7070a369957a70827e4b2bca2c1680c38a832e87b61fd","impliedFormat":1},{"version":"3be71f4ce8988a01e2f5368bdd58e1d60236baf511e4510ee9291c7b3729a27e","impliedFormat":1},{"version":"423d2ccc38e369a7527988d682fafc40267bcd6688a7473e59c5eea20a29b64f","impliedFormat":1},{"version":"2f9fde0868ed030277c678b435f63fcf03d27c04301299580a4017963cc04ce6","impliedFormat":1},{"version":"feeb73d48cc41c6dd23d17473521b0af877751504c30c18dc84267c8eeea429a","impliedFormat":1},{"version":"25f1159094dc0bf3a71313a74e0885426af21c5d6564a254004f2cadf9c5b052","impliedFormat":1},{"version":"cde493e09daad4bb29922fe633f760be9f0e8e2f39cdca999cce3b8690b5e13a","impliedFormat":1},{"version":"3d7f9eb12aface876f7b535cc89dcd416daf77f0b3573333f16ec0a70bcf902a","impliedFormat":1},{"version":"b83139ae818dd20f365118f9999335ca4cd84ae518348619adc5728e7e0372d5","impliedFormat":1},{"version":"e0205f04611bea8b5b82168065b8ef1476a8e96236201494eb8c785331c43118","impliedFormat":1},{"version":"62d26d8ba4fa15ab425c1b57a050ed76c5b0ecbffaa53f182110aa3a02405a07","impliedFormat":1},{"version":"9941cbf7ca695e95d588f5f1692ab040b078d44a95d231fa9a8f828186b7b77d","impliedFormat":1},{"version":"41b8775befd7ded7245a627e9f4de6110236688ce4c124d2d40c37bc1a3bfe05","impliedFormat":1},{"version":"9de8d92a60e62a15c05a8685b1de0ea00d55033834b0c5ab7898c582e2320578","impliedFormat":1},{"version":"a00b0ad2a2a3c3731e481652cf853c57d9f4593e91e8c219b0862bda334e5d81","impliedFormat":1},{"version":"765ff0a8c118f644e5e34620aef77491db6d63927597dff297a8a0a268a06fb3","impliedFormat":1},{"version":"c41b17ee4cd892f76c829a42a1a5d0f1f208446d0ec8fc087610f06e8599bdc2","impliedFormat":1},{"version":"5edc696f2b3cfcf2e5f5a9d64e7d901eb5e221b0547ee081119ce398a3f1bdb0","impliedFormat":1},{"version":"8742fec8c5b2666653609b6ae180f43659da76cb9373735a638f749bdf3e487d","impliedFormat":1},{"version":"5870b5e5b5f8e2c5f3fae83a26311956e30017dd60a436a3b085ae28e17dc545","impliedFormat":1},{"version":"6e8007d64d2dfe321e3e68180ff02448c53efdc18a8ddcbf38b63f93b5238ef0","impliedFormat":1},{"version":"e55e623e775d941aca8c1db38ac2d46c1dc211533e54c8c11cef499d37ec1ce3","impliedFormat":1},{"version":"4c60864bed92746522ffd2541a65ea539a74ae4975e264e48088e51136dcff02","impliedFormat":1},{"version":"44e5bb495e296873a33ff8520f2153612b88f81f0122bf54a59b78d1746d4a93","impliedFormat":1},{"version":"a6613ee552418429af38391e37389036654a882c342a1b81f2711e8ddac597f2","impliedFormat":1},{"version":"da47cb979ae4a849f9b983f43ef34365b7050c4f5ae2ebf818195858774e1d67","impliedFormat":1},{"version":"ac3bcb82d7280fc313a967f311764258d18caf33db6d2b1a0243cde607ff01a0","impliedFormat":1},{"version":"c9b5632d6665177030428d02603aeac3e920d31ec83ac500b55d44c7da74bd84","impliedFormat":1},{"version":"46456824df16d60f243a7e386562b27bac838aaba66050b9bc0f31e1ab34c1f2","impliedFormat":1},{"version":"b91034069e217212d8dda6c92669ee9f180b4c36273b5244c3be2c657f9286c7","impliedFormat":1},{"version":"0697277dd829ac2610d68fe1b457c9e758105bb52d40e149d9c15e5e2fe6dca4","impliedFormat":1},{"version":"b0d06dbb409369169143ede5df1fb58b2fca8d44588e199bd624b6f6d966bf08","impliedFormat":1},{"version":"88dfdb2a44912a28aea3ebb657dc7fcec6ba59f7233005e3405824995b713dac","impliedFormat":1},{"version":"23d7168f75797443d2c05542d1ede64851b2cf14d713dc078febb0c6538b4ba0","impliedFormat":1},{"version":"d9aed3df3f4a1e42a18d442c85950f57decf2474a062f01ab9bf224c066a1d1e","impliedFormat":1},{"version":"c3886d64fc80d215640d9fbffa90ebfd387d8eb012243dd044c9810d9f33b136","impliedFormat":1},{"version":"6e50b2017454705ff94359fc0a2daeba2fa19c133f2f204213d33deed52cf7b4","impliedFormat":1},{"version":"5ffe93378264ba2dba287bce8eabc389b0bfe2266016cc95bd66b64c5a6492a0","impliedFormat":1},{"version":"7ca788d6efb81cf64221b171bbeadc65491fe2e0fc2918efe3ecdaca395ea748","impliedFormat":1},{"version":"da35d6a8ee45e3349b4d577148bdd20c9b29862872e3c40f5d428c32557e5e0c","impliedFormat":1},{"version":"62941034216275e4541d6cfeeb80ae805fcc9639582a540bab4252554f3a613c","impliedFormat":1},{"version":"13aeadb616f9d2b44ea9da3cbfca62e70d30eb616c35425b78a2af3c3bc65b30","impliedFormat":1},{"version":"6ba418e319a0200ab67c2277d9354b6fa8755eed39ab9b584a3acaac6754ff7c","impliedFormat":1},{"version":"4fe80f12b1d5189384a219095c2eabadbb389c2d3703aae7c5376dbaa56061df","impliedFormat":1},{"version":"9eb1d2dceae65d1c82fc6be7e9b6b19cf3ca93c364678611107362b6ad4d2d41","impliedFormat":1},{"version":"8065e20ac0ad0536d4f1c8d4c2303272a4d25c450bea8d25deb25697d19300e5","impliedFormat":1},{"version":"4523dfd2dda07c1ab19f97034ba371f6553327b2a7189411a70a442546660fd6","impliedFormat":1},{"version":"2e5afb93fc3e6da3486a10effebc44f62bf9c11bec1eebe1d3b03cae91e4434c","impliedFormat":1},{"version":"a8a3779913ddff18d1f516d51bec89f5e3eb149928b859ad3684fae0e10fb2d3","impliedFormat":1},{"version":"a87090ce4dff0ec78b895d3a8803b864680e0b60c457f6bba961892a19954272","impliedFormat":1},{"version":"1991baf0ed3c21f4db584389462764d0519353ef477406f7e4e783c2b2408750","impliedFormat":1},{"version":"388ac09a64783588f92a7787237c2f8a417f402ef8605f154977c395a054b6bc","impliedFormat":1},{"version":"bbd0fce6da05dd72dc1f7c23e31cdcb5088e18f66a5e54450b28de31cfc27ce3","impliedFormat":1},{"version":"c059d7e5d3105a9067e0c0a9e392344a9a16b34d7ce7e41cea3ae9e50e0639f0","impliedFormat":1},{"version":"feeb4514da40bd3c50f6c884c607adb142002b3c8e6a3fe76db41ba8cce644ad","impliedFormat":1},{"version":"e3b0808e9afa9dce875873c2785b771a326e665276099380319637516d8d1aac","impliedFormat":1},{"version":"7247fd1853426de8fdc38a7027b488498bb00ea62c9a99037a760520e3944a26","impliedFormat":1},{"version":"0b6a84d1c3a325b7ed90153f5aad8bf6c8a6fba26f0b6385503218cae4080e25","impliedFormat":1},{"version":"63678043df1e7d615b7bbaf85a14b0c8bba4fd2d311555a09a47ae8eea2ba138","impliedFormat":1},{"version":"8e7a518023bdfb96e9311c1d89b6bf6e3fe1393f06f4a3b628f08f8c6e2ad411","impliedFormat":1},{"version":"033969a82c8d3b286e3ef2de6800931dea611be048f26260de40d6d5e69bfe80","impliedFormat":1},{"version":"4b0738c461835edad41febc4fca30e81d2aa44dfd5438c6287866b43204f654c","impliedFormat":1},{"version":"0af1431ca54b490a16b6d8803b0ac516f699cb4dc9131abdfdb59b98e77bf0ba","impliedFormat":1},{"version":"d7c9e60b99250a733acb73927233a265596cd43fda96c3a6615ff5a670534e5f","impliedFormat":1},{"version":"07f4a97091dd36141e717c35001f4f3ea5e96536b73928d3985e26c0f590ceb2","impliedFormat":1},{"version":"c390b593f01511df27574bd666c8a7a5c83c4173d44338d58231fae84ef54e9b","impliedFormat":1},{"version":"2c479b9b2b57774fdfb3f8ec75ce57c6de309268469371f506e4531fb4ebe2f7","impliedFormat":1},{"version":"26b7d0cd4b41ab557ef9e3bfeec42dcf24252843633e3d29f38d2c0b13aaa528","impliedFormat":1},{"version":"6472ce167721460e965986f64340e7cb303fe9a0041f2564bb7d7196eec944e5","impliedFormat":1},{"version":"c952b5848f840d4023a21b93308ae5fc49136965c270c5ec4ee1105f705ce8f7","impliedFormat":1},{"version":"95c93690e3e9c203de5e06df814c7b4aea38a28b24762c8cfe4dcad26a693c8c","impliedFormat":1},{"version":"90535f6326c43637a7bb35925a511cbe38d5b229c9086255ce622c41edfce8f8","impliedFormat":1},{"version":"901becb8779e1089442378fda5623e607ee4588762a32e7692436f1ea81cf848","impliedFormat":1},{"version":"8286d84d2567b713fd6a1fdfbb1a0abc8cfa668ee1e0e83d7dd4ade5761f2750","impliedFormat":1},{"version":"e4a52c589745f7bca3346962af0b62270302f9e60b116037483b3dea345d5f9d","impliedFormat":1},{"version":"38f50c96cd804ec61e75c742cd8165651f31076307a2492e6afd595f574975e6","impliedFormat":1},{"version":"c0513cfcf00f4fc7a7fe41b4c66b8cd56e280f37233c2ed8b89c9ae6f5fc3a7f","impliedFormat":1},{"version":"85e65d83a8e65bc6ff28b67b8b4a4565b6754be8e74a48080fc83f00be07a16f","impliedFormat":1},{"version":"9678e67085896b6fdfdaf3be547822a5f86ca030284b653a08235df00914d70d","impliedFormat":1},{"version":"2bfb5c352fa394f3d5656a16863183231b0a688a5898d0bf0701ee3e0f066ede","impliedFormat":1},{"version":"012ec6584af15eb152a2628dfcf742a1c1ea8ca7ab7b2859eb375bea2d85f1fe","impliedFormat":1},{"version":"41c851891f277afd9bf0b3af06fb3d35c11b32cb0120e85ae5b7e6dbbda037de","impliedFormat":1},{"version":"8286d84d2567b713fd6a1fdfbb1a0abc8cfa668ee1e0e83d7dd4ade5761f2750","impliedFormat":1},{"version":"a710a056936098886b0b5eb6734034589d15dbd7fa29329dc936f3f4e7bce93b","impliedFormat":1},{"version":"1b07d0edd2efd23f75c45c581e250eaa67b9d488b0920a72a6cf99e5bb70d0e8","impliedFormat":99},{"version":"31f0b0cbcd480d987e33d91c13ce94c157c761526ed0fde716269e650ee2b8a0","impliedFormat":99},{"version":"3c4648f43b8750dbb719340e2b8408a90c884f2c05dafea0dbb898d479e89cb4","impliedFormat":99},{"version":"edd2a7b5a5c040d3a3f4d2770e26da05186753cb250cb46390949133bbad1afe","impliedFormat":99},{"version":"9e695c00d585e643bd39ad753c6951a4637db57523085d63355f5277e6515aa1","impliedFormat":99},{"version":"58b6ba88e08c4b9dfd46baf1eb81dc91f12eb7a557f8e9a35a8df4b855c508a4","impliedFormat":99},{"version":"62e6d5cf8c6731bd1301791b825de2874dd09184207a4602c3270fc48a1e562c","impliedFormat":1},{"version":"e76d18ed8fca76a50b3dbbbbcf2e6dcd553a81fae29014d28918e2e00e85b91c","impliedFormat":1},{"version":"a81e0be4c2a1c5d0cc76004280c79d46c5e95ece6cb7cfafd3137180323a24d4","impliedFormat":1},{"version":"6d55fb2ebdc3c1d5824caec5fde930fd2ac1c7aa58049299981322322cab032b","impliedFormat":1},{"version":"3910122f6cb461e96a864983db5d43c38d72bcbf5304aa9980ad89d3967f4fe5","impliedFormat":1},{"version":"2327c9953c4e7853aa73be1d50285e135531a3b4dc4a936d6c825f8eca20e3a1","impliedFormat":1},{"version":"a2f1acd88411deb9f95d2fde93b4088989a969bb978a706ae1f353a8bdec0af9","impliedFormat":1},{"version":"3d8440a0b172b5e23a4397c26fb37e44dcc38a68ef7bfa3017d46da9f5af666e","impliedFormat":1},{"version":"b1510e4a4b87601639bb665bd7deb48a0a55b4fb71f95f9b739e2269e56ae6dd","impliedFormat":1},{"version":"b628aa03068c74e81d2dec445af8e086e1ce47325b02e96566ddb47bbfe97d2d","impliedFormat":1},{"version":"2a75a4ff59d780e2233539af9e76e665fcab7ef30f7a97a47ff19d2d1d843cf2","impliedFormat":1},{"version":"e66bff21c488fb519bdc64d603ac20af4eb23474388acc3f799283163f183768","impliedFormat":1},{"version":"1fa4dc002b73a170ce224c50c31f22c326ff8f947527c81a9971d7f1bad636a3","impliedFormat":1},{"version":"92a54e6af2d1662aec0b0957bd7220366e92e6c997333cd8e2185dc6167e7388","impliedFormat":1},{"version":"f476c1c81321b552f981f6554ca90d193c7b24141ea8fcf55838ddcbdb73331c","impliedFormat":1},{"version":"4a67e0f73fc78fd0a91fe328057b4d8407a1f7171c5162bd14a8b4e664e361a1","impliedFormat":1},{"version":"da950af07ccfa3184381875f39517ad22a2df38f327a49c08ad209be1b376d6b","impliedFormat":1},{"version":"cd45fb1351708c553be2d9fcb5549c3c00c6ff1634d5d6f35512ec8fb25762ce","signature":"3c2988317047293f583c7024fcabf978f2f410d152267e7cfefc0993cb1b53d4"},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"e00243d23c495ca2170c9b9e20b5c92331239100b51efdc2b4401cdad859bbef","impliedFormat":1},{"version":"41ea7fd137518560e0d2af581edadadd236b685b5e2f80f083127a28e01cf0ac","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"6fa5d56af71f07dc276aae3f6f30807a9cccf758517fb39742af72e963553d80","impliedFormat":1},{"version":"819dddfec57391f8458929ca8e4377f030d42107ff6ec431e620b70b0695d530","impliedFormat":1},{"version":"701bdef1f4a13932f64c4ce89537f2c66301eb46daf30a16a436c991df568686","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"ac5f598a09eed39b957ae3d909b88126f3faf605bd4589c19e9ae85d23ef71e3","impliedFormat":1},{"version":"92abba98a71c0244a6bcdd3ad4d2e04f1d0a8bcae57d2bb865bf53d1ac86e3d0","impliedFormat":1},{"version":"d2afa0d86bc6f2e72c1cf2ecb2372bf1b0f002493706a81f2b9a3ee4f944e219","impliedFormat":1},{"version":"87b7e6e6b1b8e7564992ef6369d1ba4df3d27fdfcfd6c60dbdf7e27896040d36","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"b4ac017038c6a30aa48fa54a33e35b80eb31ddfb3dfbb8bbb1eac110b60e3f8e","signature":"33d519541689b1cdb0958c3e1c170430fb08a393c9daaf09409abae6fd9daceb"},{"version":"a501a58c3f2d38278d91187d933b54446781822399517a1014a958000c01bdb4","signature":"f2ecba3c19a137573836f96f0bf1da45c1c1af90746cca9ec024fe973060c072"},{"version":"d1d44f9fb990d96ecce478b93f9b848735d609ead44648536300655aedabd73e","signature":"e4169555c43a74db5d39e117573e95b5a7e835a7a15cad09212bbc786806019a"},{"version":"1463c8c94deae9623ff6d6dec45433ce29b736a763144ecfb81c37fe2b3ed306","signature":"4b3ec3e7f364acf48cae417d66a1bf36bfbd80c462757df85d3e34edb3f0ac5f"},{"version":"2d2721ca36cb1fa5c6a1750cfcc6c26c58404cfdb44c11f7c0b4e497808d28fc","signature":"d35a428078a01742f50cc1bf25e3849c61664bfcfbcef3e502f781d0a631870c"},{"version":"4c0f2f714591ffaa5d79998b9f405c39387825829da84f08b61a2ffb438de966","signature":"0aeb379a3d0614e41cbe2ef3d4cd7d3e0a5e89882f535c873551d45e3b7a9887"},{"version":"abf54098a94676d8d379f8f49c5a1ee1760fdf2fa4f8f32c04a528d5c3d57d8e","signature":"725684d24dd3f58cb04500e39989f30366eb78f3c384aaecceecfd6dfaee8035"},{"version":"f19acd1f0e60fe0f04ad0dad2ef477b8e48c41f36b7ffd6b4301b6211a86bc4e","signature":"19dd8a93d6dfb6eff8ef4fa585a9659238da5115d2905ab3199fecfa31174b65"},{"version":"3f2ec01d47444d4d7fb65f38d92814097653d1b96da255429fc6a6624ce41a77","signature":"f40aaced8196b38364f276570c174cf7b06777672e6993fbabe70eae5f5e2790"},{"version":"4c9733da0846e451ba07f3beaf534b9f10ffbd17f50d593eb28ef2e2965292b0","signature":"45d41676a0de2e9f3f8567c2148faa41832ef62fb2ffbd0c351c4ce5a541adc7"},{"version":"84157698dff3fefbab31ca7d6c772e4920806f88f03f977f90dd63d4a9f1d98f","signature":"7e4e9a62ef30a4f65b9aa1f08e0e76ea89528ea2188f3b9ac40247b0698c3b4f"},{"version":"cb1e85745ff034b9c5a578a3280acbdff81fd78fdf4534dd74864dee45202286","signature":"fe77ea41b5dffbe07e29459f05a0df101d1fd416290a1302301c376d0452713d"},{"version":"515de840057700adad05196eccdbf97e58837304886f384b256951bf793048c3","signature":"c83803b80477365e805f2d56bed17b1d2f63d133ea2312d3f546876078463afc"},{"version":"6c75a928a63c920d627d1f66634b1d47a8a23a86a6185733d423e83b3df33c7d","signature":"b4094fb400bffcb46f44320510ddadf6bc982b6f4cd4cc6084f67d4ad6d8433b"},{"version":"db84a364a38adf1ebcf46217d17caa22e1049e50bd9034d26612d8326b3944c7","impliedFormat":1},{"version":"16af96d0556586b886495f8a6e117c5604ec692d476819f53f02e2413999dfa8","impliedFormat":1},{"version":"9547380dc9386415197150a33fa344eddb683d529b5fcd7a99342fdaab8cbb0c","impliedFormat":1},{"version":"4c992e675d8ec0fe12dfe5a1396fb260249fc0cfd2dc9b57804c508a85e90fb4","impliedFormat":1},{"version":"f8169acbee2afa4f410d5361c42d0ea639d7ed76a1e60c189cd6bc1b8c4a5ec0","impliedFormat":1},{"version":"aecc1b9e7872d52c0e0e07827ea5e0550c639a3d09aa5758912eabaa0fc26b80","impliedFormat":1},{"version":"9244a908d0365040da50d391cd9e72453b753dc36b1c634459e631bfd841d9fd","impliedFormat":1},{"version":"c5a6e13138168249b2c55d345976a7924640f3293d7c99f9b445eed443bedf4f","impliedFormat":1},{"version":"ab3325caca7aebdf87a2ac33a20f1915ca9e74ec774f0a0c52030d0340a96dd4","impliedFormat":1},{"version":"22f44030787ee583eabfc0bf76f6306576292065dce17d204e03496a82945b0c","impliedFormat":1},{"version":"cd2010a14f58c56a65b7efd3d44901e4af7baa881f77aabf2b27f7fc83607e4b","impliedFormat":1},{"version":"4220aadd887336e2fa5e3d65e66a99236b1396f64f67fa3eeacd96cef648ed55","impliedFormat":1},{"version":"720134ce9dadc4a81ad5a8223777281e7e68ea1fc9c5683d3384a1cc9ab2b433","impliedFormat":1},{"version":"c70e9ede62af1b7cea62fe0b63ecd6dbfa574a100e8b7ea358715e726a5162e5","impliedFormat":1},{"version":"86c9db036b851e841d6e7ef527119373a2fec9688609d2cac77faaedbd11807e","impliedFormat":1},{"version":"0680eaf14456aca6f6f63b12a0f9406a705739a7a3acb5ed260065b5acb36f7c","impliedFormat":1},{"version":"cec88027721170d910f5c750ed2440b969958d35ae89f442ed312294a36dc047","impliedFormat":1},{"version":"df2ede928ac4fe2ca298334cc8d1d2d9ce4cdf5e01bcba03d91c654350ae3b2a","impliedFormat":1},{"version":"5fdc25bfcb9b596aec0dfad2ffce96f261aa6805681d5dd0461e2935f6252a0f","impliedFormat":1},{"version":"96c9056f455b6281e798e7a0af11252936a3595abc64f4ef4d0269feaa11f1ef","impliedFormat":1},{"version":"2e715b993bf002f8b9c5f73749ef76fcca17ab73596dd31555b7c62a437e700f","impliedFormat":1},{"version":"196698186103481ceb16172ca8cc839545ba1c7d4e2ef3f7dc906de894aee8ac","impliedFormat":1},{"version":"69dea24400c4444c422cbb12d98a2087abb5f8be1ea8e66c1608354cf6a4147e","signature":"f308d276e1ce979e07d401c5878ae620920d56dd7de228285a55db0bf7efb84f"},{"version":"9cc7ba34c8a0efe9765313e48e94a172717e40a807fc54dfd51fb5b7942dc494","signature":"4e9071b8e91f2ea7579d17ffa88023817cc12f107922fa5b353bb45aa050610f"},{"version":"a3955cd9068376e2f7af2d76f4486766cd6338d06bd5d5e0f38d899249c2349a","signature":"ae88de78f330cae43d58992902f4821afe39815758ee8ff73019616282e75982"},{"version":"a213bb1b43815e556ee40a2fd824caf5ee5c88b68b8bd0735da13ca780efce7e","signature":"37cfd180ce92e013c521dfe6fd67784af005ea92933e8da80060916b5793de7e"},{"version":"3a1fc79c95a77ad30de096f3374b27f12a23c30b4da46cf9e4d39660427b2c45","signature":"55b4c73d316ce0a41d1487adc7baae5d55e9da0725dfe37b903bb9f0021381e0"},{"version":"4627b529398c9fc0140d29bd944a440c4bd3fb84832fc823cf0d293374e44f44","signature":"8cb5e009c82b661029aa101beeb082ba0e0be5aca6481f503bc59dfd5bb88d1b"},{"version":"22abf70b5343c829546fd877ebd9dcc5a797375daeceb905bf3dd101db88ea5a","signature":"f046785c7e94249a042bff100eeca466166adfd150077b103c527a1858fbc0d9"},{"version":"c58fd00ee4976959eb24bfb350c1f17ce938b1864abbd24c86ba50bf4fe84cd8","signature":"44595c26a2ffab6a2ebde2fda3d535fb3a520860bedbb9ea7f0f287126c78700"},{"version":"2a6547c74691dfb93682cef04ec7e3427055c5cd9b16a23faca44df83283836f","signature":"98bba0200082e58e6d330bf8697511c72095e824d307224a3e7ae4bda28362dd"},{"version":"01e4aa0ff4292f79cd4222726a12aef93d17a1b49494f28557536578fae9ff12","signature":"6b305911dce2ef51a1c49fb7cdf752b15ff3d076a99ae5a598ce7d01c9fd850e"},{"version":"b9944065dcd9e7e1b38ea4c28a2fb047b9ef64562bbc6342f19a771c2ccc8836","signature":"8de94b15761ca5541b263cc5cac467ce69f65dbbd93bd8e41d2cc61ee338e8f6"},{"version":"e61768affa396c2cd4ff40d27d4739e46a6a2871a7e88c62fdfc78fd8e353af3","signature":"9fa157f52aaafc538435222ab16c084b2b096be7a959b27fca6479890b1f17e4"},{"version":"ae844ae4c1fd0859cec4d4d87a9ecb8f8a845624b1609ebf3ccc363d286c822a","signature":"7b3e655a111ebab656b279d3b86ee5b53e06e786fa7f9189bb995ea7604d85a3"},{"version":"bd618b93d83ad65f86943436003ea9ced237b54fea337856c63e2b40bda0bbf8","signature":"953469b9b642c4709f4213009836dab80a5e323f6fa49b1eb1ccca94a30056e1"},{"version":"8da06a202225af1d3c3cb2958382af9a531ecf6d598a166115e2b4eba856f8bc","signature":"57c20478239bc682a4886fa6ac2a4a1c3ad3c8951365c9459bdc7843ea4036ee"},{"version":"c92724a9d43f8cc4f28d90760ef238ab3f052aaa9afbd2ec1db5cb2a782ebac6","signature":"9f17ad387793b5663e0942c6e121e9d3921eb77d9f9fe579cf8ae5d11ecb2717"},{"version":"8da9811f1aef9d6dc1d8c8aa8da08c5506dbdf7c513adcbe134b3f3da0091a53","signature":"e1952d61cdf8df5d1546ae3c268f5ebd32d8429545245caf738ad584db9e0c26"},{"version":"c559ee0df5c99ae72559ab701f876226c33ed1049e6d39d8add0fab41bf66826","signature":"a5476bb0acba19622a6d25d2fd4d859d08fbe820766a6495b2de341d27a8d845"},{"version":"03858fa979f7b11d6954a37299c1e5fdae5b188208a029d6d83b2920864b4e13","impliedFormat":1},{"version":"8f060fe8760b19488120d0c5191075eb00b81f858f76824192369fcae7e2ca61","impliedFormat":1},{"version":"68b8a8af1e87e9a4e0fb106d616e44eb5a4afca9063826594fbc0d850b1d7c45","impliedFormat":1},{"version":"e13451b8065f38f4260a41a626ff75bde232170123b351e562e13dc7f32d3118","impliedFormat":1},{"version":"9dedd036305407f7b74296c57fb84b3c0fcbb49031d27cc0931a74382789dbdd","impliedFormat":99},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"600c2cfb5326759456a8fbf7740a13dd0494e8ebdeb017dc78b3ac502c5c71ce","impliedFormat":99},{"version":"bce2bb59e93d85f430bd1c63278a8d0aaa14f1a72d2e9716618faace674d6eef","impliedFormat":99},{"version":"613379c981c3082e6467d45dbacc2588d17abaec8f431a38d2ea9d122a50e7e8","impliedFormat":99},{"version":"db3c81a23f984f33afac53f4965b100bdaca6f12891f362aa49324808f383e08","impliedFormat":99},{"version":"5286c9f6ff53be81918fab35836adbc12845c7b1ad3780d38e8dd5b59125bdcf","impliedFormat":99},{"version":"028b794bae27001f841f511d41d4c1a703ae3179448154f3535f3215c79a2be5","impliedFormat":99},{"version":"41de4ac2e8e90b4a50a9ab241c71d6bdc19cb3fcdb371b3e019f99e88557831d","signature":"ae5a128a59df52647912c0d15cb7f9e3598d0c88997e09457315e0294a86796d"},{"version":"8302893f0bfe072a297e556746a67edaacefe441c455e129c2bba91c1ff06ce6","signature":"10d7395d12d175599a86bc4f3f82e938d7d1dd22ce983d7dd3d37be21e0a9f54"},{"version":"7b76e3871f0bb88047cd6197df5b5d1ffc21dda2d6c829f680623dcfb4e54f26","signature":"7a010fc0f87fbe4c85c5904f86bcfa0666b2cfd7ba44f0d15c24df41f399f035"},{"version":"1b0897ecf0102228f4a2ce2ee81a332bb2223847df007625253aa3447fd5624b","signature":"139dff17ba2237b4bed6b67d0d1ac9b460eacb4f9be31ccee7c39273505b3148"},{"version":"c95671e6338301b5135902c2930ccbc2a4549f1a6768520712922e2bbd182be4","signature":"ccb4a535725bb8d3c2cdd544ce411560dc241f384c75582c6a5fae7c027c6a41"},{"version":"901510ed56e9534a40ffed1a7821e55e5ef7950405b55d5a132f8dc5f215ef88","signature":"d7fe7a687348135efb65ef828a58322119b2162563ccc6dd04fd654a3ac2e372"},{"version":"5778efbb5fefb8e0e54f0e1c7d9d60bfe498984d28e2f3a73875a81762951a93","signature":"cb3099f04f829addcf857603bc68de934abdf55e5b55f561d617128ac7f131e1"},{"version":"294378332fc2f03c95d1dc106f2e7dddb9132ccac168eed62fe00b5ac58ab66f","signature":"8885f697b16631bcc8acafe030106e78ad409dfd8c6b482be22f8f42fc9d7d65"},{"version":"4025f329aff95b5841a72b43ece6137a329ae9073319ab8a1f51d68132832871","impliedFormat":1},{"version":"128f9b54b3a506ff4236df690b8bf1aa64db56a12eaa00cfef222b91aeddf41c","signature":"e9eae1f26d3e93c75bc7b1411f66d4a9f6e584e170530a499e70038783c01340"},{"version":"e6a0543656a21c5929d9dfec3f11ecf4ab595bea7ea30bf161ee11f107a2d2c5","signature":"e7d926b21eab56d0833107d7026c57a1bd174f744432c45fa90a04ca518ba7bf"},{"version":"3008947c7c1c16a0f3b5dc4e7e4936f1c929bfb20a6517e392cd1ed57cdf2b78","signature":"5d879f2e8b07220c3b0954da9bdde7ee2f47d78ea629bf5cd3982970c86dc536"},{"version":"0c08a037f0787a88fd7e7ffda117e9cc4147f181d7c04031fb61563ada9ae19f","signature":"5835134e06ff544f769ea7ac634fbe9fbed038f37c271b91b9fafb9eca025514"},{"version":"d0ec2d0e57a220a5cfe753b80983b1460ca6ebbdd83e69709042b4390bbbb3b0","signature":"95ab62241b369cd9d625b6ce0a054ea1fccaa80c1115fa7b2ba7ce23d98c1a7e"},{"version":"3410b7e7e1c3187f898416c5c3dca220884e190e27d2dbe5ba170ea549717de0","signature":"fc42ae343bbe09fd06a75a46e9f488bebd5290cdb34efd2f59c956bc1ae48d55"},{"version":"9c844253cbe25f62ed4197d4086144f6b33ff6b1773974a6a36de52413ac1f0b","signature":"646cc2352842cceefcbb4030a363c7a5a28745e8620b3612b11c5971e6f38620"},{"version":"3beb88e1a0f3a97cb1a8a65c177f70162e2bec847652b5709920c2b27712d9ba","signature":"063e3ffcedf053fa2b2462ca04d36b685e33630de4c19ed360784af4326482b2"},{"version":"63ec6a79042b02723443f2826322ee7c0ce5fcf095584a192e8da613a027c542","signature":"d7ebc704adf299253770a2023a01279bc011cadbfd7cbab1ffb6522fc4ccbf03"},{"version":"f782e36daa9be238597422a06c516a7a10aedd074c45a80aae7a1d3064676db0","signature":"3be152cdc9721b35b40f605a89085abd41e5c4ebea935ba65502f70ffe1b3093"},{"version":"45736308214f6f79480de6be5ce0deae94570d834df76e520865b1e9fc26eb56","signature":"b414db42daa852d9933f718973b0329c5e0c2c6fde2d7937132a53ffe5abe92a"},{"version":"abcf14c8fd81aaada6280cfeafa943150b45dc1a70954f7d4fde510c65f4c98b","signature":"2d7464425cd203e7535615444bc29f732f2245dcc8c17bbf3ea123c36cd3e160"},{"version":"1d5b39e7a35dde06ab65c83b3021a112a34010a007c30bd5ad9737c69df9cc8c","signature":"ad6b33ced677c28f9b82780be49c744312e62fb8d47c94ad2fe396502601976b"},{"version":"ec44247e2ab99ba48738c18d230a84909ce79b5bbf0969d19df63d62d94fbe02","signature":"6b698a20edb798650aff70b93d70a41d28f480281d689891974ce5e2c40382ea"},{"version":"0bf33600f70b1b4ca9a2e2aa91e95e37be21aa65bd053bb6ab86d987117fbd99","signature":"b9c4a6070251cce890f965b63f1cbeea2f41d7db1ec5270c802e0bec2ca1874c"},{"version":"6f1479dd27806697d87c5c5e5663560dd3cc3d2a60f65d7a862e185d708d2567","signature":"0fb189398d7e51df726079adb4f2ef2e6d41acab5fa80262d7d84b2fdf5de515"},{"version":"9784ea684e6a75d3b4b0106844dcfef9a467a194fb893ef720b358ea5ccab7e3","signature":"84f0cbf5e55964713c59fcb4315db244c6dab16aa1c940da5a2f7406f984272a"},{"version":"44f3fafa86edcf1710a14a00de4527236786fa0977edd17da7c9ff54c02ccbe9","signature":"763c4b11e339da1dbc01f8134abb726f9d824c8499509b43d058f4c38479297d"},{"version":"3c8795ddbd79fde6717baf8d6421b16a227840e808a165ff7886315416639996","signature":"749d80ea8453a6bbf7133c3c3c33ea9cf3c26e4aa58574f326795e367c80079c"},{"version":"0007100222cfd1cf955d94f169b9653a98903859600a265dc72b500e5a594d5b","signature":"3230df1a5d15c666822d66b980083862445509b7abd1bae3670aab2947d4e915"},{"version":"b706507918a7d9b8441eb9a0177ce8d8e719534c5cc4b1055bf0f58d24c8211e","signature":"2b8c910883c8e74f107cbd0495cff0e9d364d31eda2b5fb38c19ad1b114eadb5"},{"version":"955f10ceb9ff8f39e3a57d0187db448ee024832f16abdf429bf5c60a2f492c0a","signature":"013baf386d102b592e781f7afc9c7c28f905711352413fc557fd18b3775954c8"},{"version":"25e6b9e3be67c7403efe0c7b196febe595d5b806b43e8ddf5566906ca3b9daeb","signature":"a3597a1ee0e9215d6d1ab2f9d92cdbd7db6d2db3ebbeeabdce9579b0296a8cb4"},{"version":"2f76c3dcb07070f08a525ea2039260bb6818aedb07eb3e53d98cd27e952a16e3","signature":"a374753bfc78c30b2bcbb2db1585658ce3739cc2bb844da30230a955a3628007"},{"version":"ce4db45ce51f40c13cbbb4cdbcbf9fffb57941d3260a84d2effe33e7789f14e3","signature":"af01076743c638d94a2a49a5546f4dd0af866e55c4247ba7f9fc8e69ca96a540"},{"version":"aa6f90238a5a06af030d887299023aadb41976337be9eaae8ad4bc0ec91a007d","signature":"084325263441ca267e1f06d99cdfd6d035ea73d2eface11255dc314ec1ae6944"},{"version":"1248c83b03808fa9b1db0c4fe7c7e0898bb67d6d5b2d252e0194127d1c18df72","signature":"2e09827bb6f3cc817d4d4fced1e99bd87af9c4517844d31d39837e2d49684234"},{"version":"479a31be2b9842378111e449d91f7cb369450a0bdaf36c3170c3d4f5ea0c3353","signature":"b46f9b583fc6ba6b71f8a78f9f44f671d88af23d6298c1c2794788765ede72db"},{"version":"b3feee22187b9e91f18034e9d9f5edbb73d50cf6e6f986de6cd40d60ec39f407","signature":"115331c3743a5e3f99867c6ef85a6aeeab01fcccaec8f7359f57b7513ad69c28"},{"version":"8cef34c5dfc5d2022bebd0cff7498f274a7cbb93b8c2516e2ae539daaec8699c","signature":"2f68ece989cdde572c5a43f5de2c7f0e87e54df7e9e23a67e071c4cda6445177"},{"version":"5c4f2bb647b3795b170dffb85ca59565a050870686d71e4af654edc081292b99","signature":"d22d2d0d49ca51bbfbf94e50bf8a53c5f05a32d4e7e92cba3839120d9eae3b51"},{"version":"f88b5e7d1be39a785da29ee9c8887d494a184106ef61fadfd7e3503d332802d7","signature":"c382ff2151dbcf670d028aa666d2b9e6b7b1f4595074d8271e399a94feca0cf7"},{"version":"383d243d0aa1c38970e9f590fb6e6ac5ff6184d63eb392796070733b7f63ebca","signature":"44dcab26bfce98254774674a69aa98ffc644f5188208d02578804185ac238a87"},{"version":"823d99227b27ef3838db9d37e353d71a792faba18e3d40e12843e812bb7d605e","signature":"f0d64c5ef67439f0d2d1938afc86f444554d0528992805ece49d71cad6606728"},{"version":"0fc78e8b85cbbc4b241dbba8c7c02b03b49261427583806fd1aea5c25740b6f0","signature":"969dfa4bf46dd89b97b834d2466528dcbe38dc01d459b536652e742458743b50"},{"version":"16fe0cd59d5ad47860fc3511c1427a30dcb9906f227d12503ac3faa353e64d1e","signature":"31ff69ad762177bf5804146c275fe0c5c4dac4422c873ce99fc3d74d8e2da315"},{"version":"c0ea60626c723f93316189820d8207b4dde2ad1caf6b6cc96f749c478b61cab0","signature":"b72060834943ec168774812dc5d61811716b5a818750f9502440c02a4cb26341"},{"version":"b2475fe5397611d44ba687a13a454ce86de3c0720fdccc4abe7f956a126670e3","signature":"d3ff46699d2f4e0e2bd7465b4208d70f4faba9bed58d82fcac9e76d0785d0e50"},{"version":"1ac584e9b8fdaf68b45d3101c4e464c8c31ddb82c2b58b9a71a62b49f7205c49","signature":"1f7104058fd3a80a05a0f062866b2b9448280905bb8e49b4997501125f490936"},{"version":"643510b1921b76d9e8b94969ad4103a8f2c02c788694655ac4345907fb672f75","signature":"7adb70d31e169a47600a2af0f61645f8b0d64c24082a4b3fd549e963dd4ef649"},{"version":"d163ae15bc34cb28534b59d78ade51de5fe47ef33be014edbbbefc0657ffd287","signature":"6372b611386404570e43f4346f6b228947e8cf41230c7ab9dd218624ce022250"},{"version":"f78ab230946ede71a0e7b75e3f823a322b3bc691f8e02df15c8638fdad85999d","signature":"c677c51618903508989c1413172a3ae3f179f854b1f35b11652f52b813992dfd"},{"version":"cc990ee60a173ed1e3972b957d68b390f7d0ea241bab7310567bac8746890dae","signature":"191ba83cee76544d7fc9b7ad0c256ec35578156a2ed44f04a6e547e8ee50eb5c"},{"version":"166e665130c780e7d3b1da2563ff8732cf51cf4c0fea4bce2f4162fe6ee085bd","signature":"df37101c85b46e4a25b32071f0bb3c1443ff105d39c8a69e7ccc5e3f06ac46d8"},{"version":"214ffc91f61cf117168ce9da19d11c8b6f64816f5252cfe449cf155e2d37bc67","impliedFormat":1},{"version":"6d31b2cca332dc8eb9be0b717d60c6940cd632709ae327408f461eb886802296","signature":"1d144deeaac3eec62d14c09294b6dbf6a83db7cb6af09726f532d75d2c485caf"},{"version":"9a27c316de3bb12be20ca4b8707ff3c4ffc43af7b6f819f8c32332a86937e777","signature":"48a82da9bf5a8c555f99b9bccaecffcba886b19f60760916b111e8e9e66dc0b6"},{"version":"c52e16c4bcf432f4d1ef339328743dace5f6d715617685432d9d6ce493b8a6ea","signature":"44210daaea1614f215a712259ea7109b548feb0f1954eca773a89ed68482740b"},{"version":"4a85651e88ea09fbb4b52d74916ee19355fcbc9b2965fc8bc051c2449f67be6b","signature":"74968a149cd58b89bf2f1e20f2024af6f60a3efa80a2381500a80bb4804ea6b7"},{"version":"c3aa44c86a5950012ed86c4c001583667828c536e87673ae1ed431590dd4a8bf","signature":"c1fd10c00318c93fd04d25cce8292066d4ec948dd342f84950dede3eccada65e"},{"version":"60393427d15d6ed21c565fd024c582d5dd458025c5982d8e378203f46675406d","signature":"138158a91a631b3a58417dcdc9b7d227872c6fe3ced6d8acb1cfa03bf7d717d5"},{"version":"29b768344360fae679d42c157ae82f187fc5d2787c1b1bd7b37418e9ed0b3673","signature":"29024ae13e3c730ad266c9cde46088cfe8da6f19476199488191376a008e30b8"},{"version":"f3d5bc7944a4c839f75f2aa0bbed3f8c3162cb51465226d9cf8fa23daad555b0","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","impliedFormat":1},{"version":"d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","impliedFormat":1},{"version":"d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","impliedFormat":1},{"version":"98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","impliedFormat":1},{"version":"ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","impliedFormat":1},{"version":"fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","impliedFormat":1},{"version":"d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","impliedFormat":1},{"version":"9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","impliedFormat":1},{"version":"2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","impliedFormat":1},{"version":"2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","impliedFormat":1},{"version":"b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","impliedFormat":1},{"version":"6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","impliedFormat":1},{"version":"4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","impliedFormat":1},{"version":"04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","impliedFormat":1},{"version":"f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","impliedFormat":1},{"version":"011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","impliedFormat":1},{"version":"d406b797d7b2aff9f8bd6c023acfaa5a5fc415bfbf01975e23d415d3f54857af","impliedFormat":1},{"version":"7d71b2d1a537fe41760a16441cd95d98fcb59ddf9c714aba2fecba961ab253b6","impliedFormat":1},{"version":"a9bd8a2bbd03a72054cbdf0cd2a77fabea4e3ae591dd02b8f58bda0c34e50c1c","impliedFormat":1},{"version":"386cc88a3bdee8bc651ead59f8afc9dc5729fc933549bbd217409eabad05ba3e","impliedFormat":1},{"version":"3a0d52a6d18c1f32657b50b67eb023609df959c5f56a38be73c9fd30694c09ae","impliedFormat":1},{"version":"4526a277b9f0af90b8e776ab470e67ec66c9117c3bf9df11ac6d8782724baa9f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b1b37d6721aa592c0dff72c55bdd0f351664906149173dfd5b46903ee07c192","impliedFormat":1},{"version":"7ddc4a8c9dea84daf50fd64b3b6fa8f750f194e5aeb211c389346a1a5afeb1f3","impliedFormat":1},{"version":"459885f5a56b31657b5ede080661b0a7003ff615f46a6ae5026bb6847eaf456a","impliedFormat":1},{"version":"83766bef36618444f68a4e24cf29efcea96192fa198cd1765a49e8eabe6811b8","impliedFormat":1},{"version":"ce1f4cc2dafdfcda54008d2f29aaf986c119f43ed469d311ffb538b0e942dbb0","impliedFormat":1},{"version":"70f02ca77cf1a06b91f94c75dbc75d43cdef97835402cb32b341773ea9775d94","impliedFormat":1},{"version":"6d7d19b2b1e6d77a266916f49312a44f249e6ac915691fb10223d8e895a18f3b","impliedFormat":1},{"version":"f9ca738d0516fdd641abdc2193d0bf9d2546e14d9b076b270fc94b528d6c0728","impliedFormat":1},{"version":"52e21e408a552236d79ab273cb72370f8b7749298d796d8ede5e2aaa33caf2ce","impliedFormat":1},{"version":"7665d8147d6b87e3dd6f89c718250fb0c68b59ea36438ac702b35c93acf37cb5","impliedFormat":1},{"version":"d7998764c13ea3d1cf51b4d594b972c36dca8f01f19a2a608c5e9546587a47c3","impliedFormat":1},{"version":"7a2de218c38ced746eaead7da15a665f2663da8e7f237c4868391c40c19aea9d","impliedFormat":1},{"version":"4c301e74e510d1e61ee764c09ec14a0398eb3ef2913e72622e0a7243bfa25666","impliedFormat":1},{"version":"7690943eace193298fafe7c09d7e8e97ae72cd413c4ac98f02781ba589db6c96","affectsGlobalScope":true,"impliedFormat":1},{"version":"47a4898194fac06030dc03d8ccb78d1f73ae691b4722b0b07bb1a31647d77bc7","affectsGlobalScope":true,"impliedFormat":1},{"version":"951bd4e1694a7b16ec339c723fa0018693fa86ee6da59c4fcc87c2244139c0e8","impliedFormat":1}],"root":[56,60,61,68,176,669,670,939,940,969,973,1285,1286,1290,[1367,1380],[1398,1401],1404,[1407,1417],[1423,1443],1445,1446,[1448,1451],[1454,1466],1468,[1495,1500],[1502,1515],1517,[1612,1620],1622,1623,[1626,1638],[1643,1646],1653,1657,[1659,1661],[1668,1672],[1674,1687],[1691,1697],[1700,1707],[2019,2034],2044,[2047,2055],[2057,2059],[2061,2067],[2072,2079],[2081,2100],[2102,2105],2178,2185,2540,[2562,2576],[2599,2616],[2629,2636],[2638,2681],[2683,2690],2712],"options":{"allowImportingTsExtensions":true,"allowJs":true,"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"jsx":3,"module":99,"noFallthroughCasesInSwitch":true,"removeComments":false,"skipLibCheck":true,"strict":true,"target":99},"referencedMap":[[2562,1],[1469,2],[2103,3],[1684,2],[1423,4],[1450,5],[1449,6],[969,7],[1448,8],[1424,9],[1454,10],[1644,11],[1443,12],[1446,13],[1442,14],[1445,15],[1441,16],[61,2],[2025,17],[1500,18],[1506,19],[1507,20],[1512,21],[1513,22],[1508,23],[1509,24],[1510,25],[1511,26],[2102,27],[2049,28],[2050,29],[2051,30],[2563,31],[1514,32],[2564,33],[2565,34],[2572,35],[2568,36],[1635,37],[2570,38],[2571,39],[1633,40],[1634,41],[2019,42],[2573,43],[2021,44],[2023,45],[2022,46],[1672,47],[1499,48],[1629,49],[1661,50],[1630,51],[1413,52],[1631,53],[1636,54],[2047,55],[2081,56],[1637,57],[1638,58],[1646,59],[1671,60],[1653,61],[1676,62],[1376,63],[1677,64],[1694,65],[1692,66],[1693,67],[2575,68],[1657,69],[2576,70],[2600,71],[2027,72],[2067,73],[2032,74],[2086,75],[2088,76],[2089,77],[2090,78],[2091,79],[2093,80],[2601,81],[2087,82],[2602,83],[2092,84],[2026,85],[2029,86],[2095,87],[2094,88],[2599,89],[2569,90],[1668,91],[2053,92],[2052,93],[2604,94],[2082,95],[2034,96],[2084,97],[2066,98],[2078,99],[2605,100],[2083,101],[2075,102],[1505,103],[2055,104],[2603,105],[2606,106],[2059,107],[1643,108],[1675,109],[2607,110],[2608,111],[1679,112],[1681,113],[2076,114],[1683,115],[2609,116],[2567,117],[2061,118],[1669,119],[1670,120],[2062,121],[2063,122],[2610,123],[2031,124],[2611,125],[1615,126],[2613,127],[2616,128],[1375,129],[2635,130],[2615,131],[2072,132],[2629,133],[2630,134],[2631,135],[2632,136],[2633,137],[2634,138],[1430,139],[2028,140],[1503,141],[1627,142],[1412,143],[1623,144],[1626,145],[1628,146],[1409,147],[1695,148],[1517,71],[1504,149],[1614,150],[1613,151],[1612,152],[2574,153],[2085,154],[1498,155],[1410,156],[1411,156],[1687,157],[1686,158],[1680,159],[2065,160],[1703,161],[2100,71],[1645,162],[1451,163],[2020,38],[1702,164],[1286,165],[2024,166],[2636,38],[2030,167],[1497,71],[1502,71],[1696,168],[1461,169],[1682,170],[1685,38],[2033,171],[2638,172],[1674,173],[2064,173],[2566,174],[1632,38],[1706,175],[2639,176],[2644,177],[1707,178],[1697,179],[2645,180],[2642,181],[2640,182],[2646,183],[1660,184],[1659,185],[1433,186],[2048,187],[1434,2],[1436,188],[2641,189],[1435,190],[1438,191],[1437,192],[2643,193],[2647,194],[2648,195],[2649,196],[2650,197],[2074,198],[2073,199],[2651,200],[1704,201],[2077,202],[2614,203],[1432,204],[2096,205],[2097,206],[2079,203],[2652,207],[2654,208],[2653,209],[2655,210],[2044,211],[2656,212],[2674,213],[2657,214],[2660,215],[2662,216],[2661,217],[1701,218],[2658,219],[2659,220],[1700,221],[1515,222],[2675,223],[2679,224],[2680,225],[2663,2],[2664,226],[2612,227],[2673,228],[2665,229],[2666,230],[2669,231],[2676,232],[2668,233],[2670,234],[2678,235],[2671,236],[2099,237],[2672,238],[2667,239],[2677,240],[2681,241],[2683,242],[2057,243],[1468,244],[1678,245],[1425,246],[1290,247],[940,248],[2058,249],[2684,250],[1617,251],[1379,252],[1380,253],[1417,254],[1495,255],[2686,256],[1404,257],[1620,258],[1705,259],[1622,260],[1457,261],[1458,261],[1459,262],[1460,263],[1465,264],[1463,265],[1464,266],[1456,267],[1367,268],[1429,269],[1619,270],[1428,271],[1378,272],[1439,273],[2687,129],[1368,272],[1427,274],[1496,275],[1618,272],[1369,276],[1370,272],[1371,272],[1414,129],[1372,272],[2685,129],[1691,271],[1285,277],[1373,272],[1407,278],[1374,272],[1401,279],[1408,280],[1440,281],[1462,2],[2688,2],[939,2],[1431,282],[1616,283],[1377,284],[2098,285],[1455,286],[1415,287],[2054,288],[973,185],[1398,289],[669,290],[670,185],[1399,2],[1416,2],[1400,291],[2689,2],[1426,292],[56,293],[1501,2],[176,294],[1466,295],[2104,296],[2105,2],[2178,297],[1389,298],[1388,2],[1387,299],[1384,300],[1382,301],[1381,301],[1383,2],[1386,2],[1385,2],[1467,2],[1418,2],[267,2],[1421,302],[1420,2],[1444,185],[52,303],[50,2],[1453,304],[1452,2],[2521,305],[2522,306],[2517,307],[2518,2],[2520,308],[2519,309],[2539,310],[2537,311],[2538,2],[175,312],[2184,313],[2181,314],[2183,315],[2182,314],[2180,316],[2536,317],[2533,318],[2363,319],[2365,320],[2364,319],[2362,2],[173,2],[172,2],[174,321],[168,185],[170,322],[171,323],[169,2],[2368,311],[2449,324],[2448,325],[2450,326],[2361,311],[2452,327],[2451,328],[2453,329],[2454,330],[2366,331],[2367,311],[2375,332],[2374,311],[2398,333],[2371,334],[2370,335],[2369,316],[2455,336],[2373,337],[2372,311],[2179,2],[2456,2],[2523,338],[2524,2],[2534,339],[2532,2],[2525,2],[2531,2],[2529,2],[2528,2],[2526,2],[2527,2],[2530,2],[2535,340],[2466,341],[2467,2],[2469,342],[271,343],[269,344],[268,2],[270,345],[57,2],[59,2],[58,2],[2552,346],[2553,2],[2560,347],[2551,348],[2561,349],[2546,350],[2547,351],[1708,352],[66,353],[65,2],[1471,354],[1470,355],[2397,356],[2376,2],[2395,357],[2392,358],[2391,2],[2389,358],[2396,359],[2390,2],[2393,358],[2394,2],[2377,2],[2386,2],[2387,360],[2379,361],[2381,2],[2382,2],[2385,362],[2383,363],[2384,2],[2380,364],[2378,365],[2388,358],[2697,366],[2700,367],[2699,368],[2698,369],[2696,370],[2692,371],[2695,372],[2694,373],[2693,374],[2691,370],[2706,375],[2705,376],[2704,377],[2703,378],[2702,379],[2701,380],[673,185],[675,381],[674,2],[1689,71],[672,382],[671,2],[1793,2],[1792,2],[1798,383],[1788,2],[1791,384],[1795,385],[1794,386],[1797,2],[1796,386],[1790,387],[1789,185],[2497,388],[2499,389],[2492,390],[2491,2],[2493,2],[2494,391],[2495,2],[2496,2],[2498,392],[2176,393],[1299,394],[1300,395],[1301,394],[1302,38],[1303,396],[1304,397],[1305,396],[1306,397],[1307,397],[1324,398],[1308,394],[1309,394],[1310,394],[1311,399],[1312,38],[1313,38],[1298,399],[1314,2],[1315,2],[1316,397],[1317,394],[1318,395],[1319,396],[1320,396],[1321,400],[1322,397],[1323,2],[1366,401],[1364,402],[1363,403],[1365,402],[1339,404],[1326,405],[1328,406],[1329,406],[1331,407],[1330,38],[1332,408],[1333,408],[1334,409],[1335,410],[1327,411],[1336,2],[1337,405],[1325,2],[1338,71],[1293,412],[1292,412],[1295,413],[1297,414],[1296,415],[1294,415],[1291,416],[2187,417],[2186,2],[2353,2],[2199,418],[2189,2],[2215,419],[2276,2],[2351,2],[2355,420],[2352,2],[2354,421],[2190,422],[2191,422],[2192,422],[2193,422],[2194,422],[2196,422],[2195,422],[2197,422],[2235,423],[2236,422],[2237,422],[2238,422],[2242,424],[2241,311],[2239,422],[2240,422],[2243,422],[2244,422],[2245,425],[2246,425],[2247,422],[2248,422],[2249,426],[2250,422],[2251,427],[2252,428],[2253,422],[2254,422],[2255,429],[2256,430],[2257,422],[2258,422],[2259,428],[2260,422],[2261,422],[2262,422],[2263,425],[2264,431],[2267,432],[2269,433],[2266,434],[2268,435],[2265,422],[2205,431],[2270,422],[2315,436],[2271,422],[2272,437],[2273,438],[2274,422],[2280,439],[2275,422],[2278,440],[2279,422],[2281,425],[2282,422],[2283,422],[2284,425],[2285,422],[2286,422],[2287,422],[2288,425],[2289,425],[2290,422],[2291,422],[2292,422],[2293,422],[2294,422],[2295,422],[2296,422],[2297,422],[2298,422],[2300,441],[2301,422],[2302,422],[2303,422],[2304,442],[2305,422],[2306,422],[2307,422],[2308,426],[2309,438],[2310,443],[2311,422],[2312,422],[2313,431],[2314,426],[2200,444],[2207,445],[2321,444],[2322,2],[2324,446],[2234,447],[2329,444],[2218,448],[2213,449],[2219,450],[2210,451],[2220,452],[2212,453],[2211,454],[2345,426],[2346,426],[2348,455],[2347,456],[2330,444],[2217,457],[2316,444],[2358,458],[2208,445],[2331,444],[2221,2],[2360,459],[2222,460],[2223,461],[2224,462],[2336,430],[2337,438],[2338,463],[2339,430],[2340,464],[2341,465],[2333,2],[2204,444],[2201,438],[2202,2],[2216,466],[2209,467],[2327,468],[2325,469],[2326,470],[2342,471],[2343,430],[2317,472],[2226,473],[2214,474],[2225,475],[2359,476],[2318,444],[2328,311],[2227,2],[2332,444],[2319,477],[2335,2],[2349,431],[2350,431],[2344,430],[2231,478],[2229,479],[2230,480],[2320,481],[2356,482],[2323,483],[2299,484],[2334,2],[2277,2],[2232,485],[2203,2],[2206,2],[2228,2],[2357,430],[2233,486],[2188,2],[1658,38],[2545,2],[666,487],[1816,488],[1818,489],[1819,490],[1814,491],[1803,2],[1810,492],[1809,493],[1808,494],[1815,2],[1817,488],[1813,495],[1804,496],[1806,497],[1807,498],[1802,499],[1800,2],[1812,500],[1801,2],[1811,501],[1805,502],[1830,503],[1836,504],[1827,505],[1835,38],[1828,503],[1829,38],[1826,505],[1799,2],[1820,506],[1834,505],[1831,505],[1832,505],[1833,505],[1821,505],[1822,505],[1824,505],[1825,505],[1823,505],[1990,507],[1991,508],[1961,509],[1992,510],[1993,511],[1986,2],[1960,512],[1957,513],[1981,514],[1980,515],[1982,516],[1988,517],[1983,518],[1989,519],[1979,520],[1978,2],[1984,521],[1985,522],[1959,523],[1987,524],[1958,525],[2006,526],[2018,527],[1995,528],[1994,529],[2014,2],[2016,530],[1998,2],[1996,531],[2017,532],[2000,533],[2002,534],[2001,535],[1999,536],[2015,537],[2013,538],[2009,539],[2010,539],[2011,540],[2012,541],[2003,542],[2005,543],[2004,544],[2007,545],[1997,546],[2008,547],[1973,548],[1971,549],[1970,550],[1969,2],[1968,551],[1967,552],[1972,553],[1974,554],[1837,555],[1964,556],[1845,557],[1844,558],[1838,558],[1843,559],[1841,558],[1840,558],[1842,558],[1839,2],[1846,2],[1847,560],[1849,561],[1848,562],[1962,2],[1976,2],[1975,563],[1977,564],[1966,565],[1963,566],[1965,567],[55,568],[51,303],[53,569],[54,303],[2198,370],[2500,570],[2541,2],[2543,571],[2544,572],[2714,573],[2713,574],[2399,2],[1903,575],[1904,575],[1905,576],[1852,577],[1906,578],[1907,579],[1908,580],[1850,2],[1909,581],[1910,582],[1911,583],[1912,584],[1913,585],[1914,586],[1915,586],[1916,587],[1917,588],[1918,589],[1919,590],[1853,2],[1851,2],[1920,591],[1921,592],[1922,593],[1956,594],[1923,595],[1924,2],[1925,596],[1926,597],[1927,598],[1928,599],[1929,600],[1930,601],[1931,602],[1932,603],[1933,604],[1934,604],[1935,605],[1936,2],[1937,606],[1938,607],[1940,608],[1939,609],[1941,610],[1942,611],[1943,612],[1944,613],[1945,614],[1946,615],[1947,616],[1948,617],[1949,618],[1950,619],[1951,620],[1952,621],[1953,622],[1854,2],[1855,623],[1856,2],[1857,2],[1899,624],[1900,625],[1901,2],[1902,610],[1954,626],[1955,627],[663,628],[664,629],[658,630],[659,631],[660,2],[656,2],[662,632],[661,2],[657,633],[854,38],[76,2],[78,634],[2622,38],[2549,2],[1621,2],[665,2],[2150,2],[2152,635],[2151,636],[2726,637],[2725,638],[2724,639],[2727,640],[2723,641],[2720,2],[2721,2],[2719,642],[2716,2],[2722,643],[2718,2],[2717,2],[2445,644],[2402,2],[2404,645],[2403,646],[2408,647],[2443,648],[2440,649],[2442,650],[2405,649],[2406,651],[2410,651],[2409,652],[2407,653],[2441,654],[2465,655],[2439,649],[2444,656],[2437,2],[2438,2],[2411,657],[2416,649],[2418,649],[2413,649],[2414,657],[2420,649],[2421,658],[2412,649],[2417,649],[2419,649],[2415,649],[2435,659],[2434,649],[2436,660],[2430,649],[2462,661],[2460,662],[2459,649],[2457,647],[2464,663],[2461,664],[2458,662],[2463,662],[2432,649],[2431,649],[2427,649],[2433,665],[2428,649],[2429,666],[2422,649],[2423,649],[2424,649],[2425,649],[2426,649],[1282,667],[69,2],[2715,668],[2542,2],[77,2],[1392,669],[1391,670],[1390,2],[2728,671],[2729,672],[2730,673],[1662,2],[1667,674],[1663,2],[1664,675],[1665,2],[1666,2],[1396,676],[1393,2],[1394,2],[1395,2],[1397,677],[668,2],[2557,678],[2710,679],[2709,680],[2708,681],[2707,682],[2468,683],[2401,2],[2490,684],[2487,685],[2485,686],[2488,687],[2483,688],[2482,689],[2479,690],[2480,691],[2481,692],[2475,693],[2486,694],[2484,695],[2473,696],[2489,697],[2474,698],[2472,699],[2470,700],[2711,2],[2502,701],[2504,702],[2506,703],[2505,704],[2503,702],[2516,705],[2513,706],[2515,707],[2514,708],[2512,701],[2507,709],[2508,709],[2511,710],[2509,709],[2510,709],[2501,711],[2555,712],[2554,574],[2556,713],[2550,714],[2548,2],[2559,715],[2558,574],[2471,716],[2126,2],[2107,717],[2115,718],[2108,2],[2110,719],[2109,2],[2111,2],[2114,720],[2113,721],[2112,2],[2106,2],[2173,722],[2175,723],[2174,722],[2172,724],[2153,725],[2154,726],[2157,727],[2155,728],[2156,729],[2117,730],[2116,393],[2120,731],[2118,730],[2119,2],[2163,2],[2164,732],[2165,2],[2166,732],[2167,732],[2169,733],[2168,732],[2162,734],[2136,2],[2130,735],[2131,735],[2128,736],[2132,737],[2133,738],[2134,2],[2129,739],[2135,740],[2137,741],[2138,742],[2160,743],[2125,2],[2146,744],[2143,745],[2124,734],[2170,746],[2140,728],[2161,747],[2144,748],[2147,749],[2159,750],[2122,751],[2123,2],[2141,2],[2149,725],[2158,752],[2121,2],[2145,753],[2148,754],[2142,702],[2171,755],[2139,756],[2127,2],[2045,599],[1624,2],[1625,757],[2476,758],[2478,759],[2060,2],[938,760],[878,761],[676,2],[873,762],[879,763],[875,764],[877,764],[876,764],[874,765],[937,766],[880,185],[2637,185],[655,2],[1673,185],[1516,185],[67,2],[1688,71],[1289,767],[1288,768],[1287,2],[2592,769],[2593,770],[2594,769],[2595,770],[2596,769],[2597,769],[2598,771],[2591,772],[1641,2],[934,773],[917,774],[915,775],[926,775],[916,776],[884,71],[885,71],[933,777],[932,778],[931,779],[929,780],[927,71],[918,2],[922,781],[919,782],[925,783],[920,784],[924,185],[921,784],[923,785],[930,786],[881,2],[935,2],[904,787],[902,788],[894,788],[888,789],[891,790],[928,791],[907,792],[895,793],[892,794],[905,786],[906,795],[914,796],[889,2],[913,797],[908,798],[912,799],[911,800],[898,801],[900,797],[909,797],[910,802],[896,788],[903,788],[897,788],[899,788],[901,788],[893,788],[936,803],[883,2],[882,2],[886,2],[887,2],[890,804],[667,2],[1489,805],[1490,806],[1491,807],[1488,808],[1494,809],[1484,2],[1485,810],[1487,811],[1486,812],[1483,813],[1474,814],[1473,2],[1477,815],[1476,816],[1480,817],[1478,2],[1482,2],[1472,810],[1475,2],[1479,818],[1481,819],[1492,2],[1493,810],[2046,2],[1655,820],[1654,71],[1656,821],[2056,2],[2101,71],[1419,2],[2071,822],[2068,71],[2069,38],[2070,71],[962,823],[944,2],[945,2],[955,824],[956,825],[957,825],[950,2],[948,2],[951,826],[949,2],[947,2],[946,2],[958,2],[960,2],[954,827],[959,824],[953,828],[952,2],[961,828],[1690,829],[1406,2],[1283,2],[1639,38],[2620,830],[2618,831],[2617,71],[2619,832],[1640,71],[1518,71],[1611,833],[1447,2],[826,834],[827,2],[828,835],[830,836],[831,837],[829,835],[832,835],[842,838],[833,835],[834,835],[838,839],[836,840],[835,835],[837,840],[839,841],[840,842],[841,843],[843,2],[694,2],[696,844],[695,2],[697,2],[721,845],[698,2],[704,846],[705,846],[715,847],[706,848],[707,849],[708,850],[714,851],[709,849],[710,850],[711,849],[712,850],[713,850],[703,850],[700,852],[699,38],[702,853],[701,185],[716,850],[717,850],[720,854],[718,185],[719,2],[819,855],[820,856],[821,857],[722,38],[844,38],[845,835],[822,858],[823,857],[824,857],[825,859],[848,860],[790,861],[750,862],[791,863],[792,864],[788,865],[789,866],[787,867],[814,868],[815,869],[752,870],[755,871],[753,870],[754,870],[751,872],[818,873],[764,874],[765,875],[785,876],[770,877],[769,878],[771,879],[772,880],[773,881],[777,882],[774,883],[775,872],[776,884],[779,885],[778,886],[782,887],[780,884],[781,888],[783,889],[784,859],[766,890],[768,891],[767,892],[786,893],[817,894],[816,874],[758,895],[756,2],[757,2],[762,896],[761,897],[760,898],[759,895],[725,835],[849,2],[807,2],[850,899],[763,900],[796,901],[813,902],[797,835],[798,903],[799,904],[800,905],[802,906],[803,835],[804,904],[805,907],[806,903],[801,904],[808,899],[809,904],[810,2],[811,908],[812,835],[872,909],[852,910],[851,2],[853,835],[855,911],[724,835],[726,912],[728,913],[727,835],[723,835],[729,914],[730,914],[731,914],[739,915],[732,914],[733,914],[734,914],[735,914],[736,914],[737,914],[738,914],[740,916],[741,914],[742,914],[746,917],[743,914],[744,914],[745,914],[748,918],[747,914],[846,835],[847,835],[856,2],[858,919],[859,903],[864,920],[860,903],[861,903],[862,2],[863,903],[857,903],[865,2],[866,835],[677,2],[795,921],[794,922],[793,923],[868,924],[867,835],[870,925],[869,924],[749,903],[871,926],[2177,2],[182,927],[181,928],[178,929],[179,930],[180,931],[177,185],[1284,2],[1402,2],[1403,932],[1360,933],[1343,185],[1361,934],[1344,935],[1354,38],[1347,936],[1351,937],[1356,71],[1355,71],[1352,937],[1349,938],[1353,936],[1350,937],[1342,2],[1346,2],[1340,185],[1348,185],[1358,2],[1362,939],[1341,940],[1345,941],[1359,185],[1357,2],[1422,2],[1649,71],[1647,38],[1650,71],[1648,38],[1652,942],[1651,2],[1608,2],[1572,943],[1524,944],[1525,945],[1526,38],[1527,944],[1548,946],[1549,947],[1550,946],[1551,947],[1552,947],[1554,948],[1555,949],[1556,948],[1557,950],[1558,951],[1559,951],[1560,947],[1561,952],[1562,946],[1563,953],[1564,949],[1565,947],[1566,950],[1567,949],[1568,950],[1569,952],[1570,949],[1571,944],[1547,954],[1553,2],[1528,955],[1521,944],[1529,956],[1530,944],[1531,944],[1532,944],[1533,944],[1534,944],[1535,944],[1536,944],[1537,944],[1538,944],[1539,944],[1520,954],[1540,954],[1523,957],[1541,944],[1544,958],[1545,959],[1543,959],[1546,944],[1592,960],[1577,960],[1578,960],[1576,2],[1579,961],[1580,960],[1600,962],[1601,962],[1602,962],[1603,960],[1604,962],[1605,962],[1606,962],[1599,962],[1581,960],[1582,960],[1583,960],[1607,963],[1593,960],[1584,962],[1585,960],[1586,960],[1587,960],[1588,960],[1589,960],[1590,962],[1591,960],[1594,960],[1595,960],[1596,960],[1597,960],[1598,960],[1522,185],[1610,964],[1542,950],[1519,71],[1609,965],[1575,2],[1574,966],[1573,967],[2043,968],[2042,969],[2039,970],[2038,185],[2041,971],[2040,972],[2035,2],[2037,973],[2036,185],[2628,974],[2623,975],[2626,976],[2624,977],[2625,978],[2627,977],[2621,979],[1405,2],[2682,71],[972,980],[970,185],[971,981],[2080,38],[680,982],[682,983],[681,2],[693,984],[683,985],[679,985],[684,985],[685,985],[678,2],[686,2],[688,986],[689,2],[687,987],[690,986],[692,988],[691,989],[1642,185],[103,990],[104,2],[99,991],[105,2],[106,992],[109,993],[110,2],[111,994],[112,995],[132,996],[113,2],[114,997],[116,998],[118,999],[119,38],[120,1000],[121,1001],[87,1001],[122,1002],[89,1003],[123,1004],[124,995],[125,1005],[126,1006],[127,2],[84,1007],[129,1008],[131,1009],[130,1010],[128,1011],[88,1002],[85,1012],[86,1013],[133,2],[115,1014],[107,1014],[108,1015],[92,1016],[90,2],[91,2],[134,1014],[135,1017],[136,2],[137,998],[95,1018],[97,1019],[138,2],[139,1020],[140,2],[141,2],[142,2],[144,1021],[145,2],[96,38],[148,1022],[146,38],[147,1023],[149,2],[150,1024],[152,1024],[151,1024],[102,1024],[101,1025],[100,1026],[98,1027],[153,2],[154,1028],[155,1029],[82,1023],[156,993],[157,993],[165,2],[166,185],[159,1030],[160,1014],[143,2],[161,2],[162,2],[74,2],[71,2],[163,2],[94,1031],[93,71],[158,2],[75,1032],[167,1033],[70,1034],[72,1035],[73,2],[117,2],[79,2],[164,185],[80,2],[83,1012],[81,38],[2447,1036],[2446,1037],[2400,1038],[2477,1039],[2578,1040],[2579,1040],[2581,1040],[2580,1040],[2582,1040],[2586,1040],[2587,1040],[2588,1040],[2589,1041],[2583,1040],[2590,1042],[2585,1040],[2584,2],[2577,2],[48,2],[49,2],[8,2],[9,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[20,2],[21,2],[4,2],[22,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[37,2],[34,2],[35,2],[36,2],[38,2],[7,2],[39,2],[44,2],[45,2],[40,2],[41,2],[42,2],[43,2],[1,2],[46,2],[47,2],[1875,1043],[1887,1044],[1873,1045],[1888,1046],[1897,1047],[1864,1048],[1865,1049],[1863,1050],[1896,513],[1891,1051],[1895,1052],[1867,1053],[1884,1054],[1866,1055],[1894,1056],[1861,1057],[1862,1051],[1868,1058],[1869,2],[1874,1059],[1872,1058],[1859,1060],[1898,1061],[1889,1062],[1878,1063],[1877,1058],[1879,1064],[1882,1065],[1876,1066],[1880,1067],[1892,513],[1870,1068],[1871,1069],[1883,1070],[1860,1046],[1886,1071],[1885,1058],[1881,1072],[1890,2],[1858,2],[1893,1073],[943,1074],[968,1075],[966,1076],[964,1076],[967,1076],[963,1076],[965,1076],[942,1076],[941,2],[60,2],[2185,1077],[2540,1078],[2690,1079],[2712,1080],[68,2],[653,1081],[652,1082],[625,1083],[650,1084],[649,1085],[647,1086],[648,1083],[645,1087],[654,1088],[635,1083],[628,1083],[629,2],[634,1083],[626,2],[639,1089],[638,1083],[637,2],[633,1083],[627,2],[630,2],[632,1083],[631,2],[636,2],[646,1090],[651,1086],[642,1091],[644,1092],[640,2],[643,1091],[641,1091],[619,1093],[605,2],[618,1094],[621,1095],[594,1096],[608,1097],[599,1093],[601,1098],[603,2],[609,1099],[614,1100],[580,1101],[560,1102],[589,1103],[590,1104],[579,1105],[559,1106],[519,1107],[600,1108],[593,1108],[620,1093],[604,1109],[552,2],[592,1110],[595,1110],[598,1111],[602,1110],[607,1112],[557,1113],[555,1114],[613,1110],[612,1115],[606,1110],[615,1116],[611,1116],[591,1110],[558,1117],[617,1110],[551,1118],[550,1119],[549,1120],[597,1121],[616,1122],[521,1123],[556,1124],[517,1125],[520,1126],[596,1127],[553,1128],[610,1129],[554,1130],[624,1131],[522,1132],[622,1133],[277,1106],[523,2],[524,2],[525,2],[527,1120],[546,1134],[623,2],[528,1099],[529,2],[530,2],[547,2],[531,1099],[532,2],[533,2],[534,2],[535,2],[536,2],[537,2],[538,2],[548,1135],[526,2],[539,2],[540,2],[541,2],[542,2],[543,2],[544,1099],[545,1099],[561,2],[567,1136],[563,1137],[566,1138],[571,1139],[573,1140],[568,1141],[565,1142],[564,2],[578,1143],[572,2],[569,2],[562,2],[575,1144],[574,1145],[570,2],[576,1139],[577,1146],[370,2],[481,1147],[371,1148],[372,1149],[500,1150],[501,2],[502,1151],[503,1152],[504,1153],[505,1154],[493,1155],[488,1156],[489,1157],[490,1158],[492,1153],[491,1159],[487,1155],[494,1156],[496,1160],[495,1161],[486,1153],[485,1162],[499,1155],[482,1156],[483,1163],[484,1164],[498,1153],[497,1165],[373,1156],[368,1166],[478,1167],[369,1168],[480,1169],[479,1170],[396,1171],[463,1172],[427,1173],[408,1174],[315,1175],[516,487],[465,1176],[507,1177],[506,1148],[294,1178],[303,1179],[307,1180],[414,1181],[313,1182],[298,1183],[308,1184],[405,1182],[389,1182],[419,1185],[475,1182],[286,1186],[293,1187],[287,1186],[318,1182],[328,1188],[329,1189],[302,1190],[310,1191],[311,1186],[312,1192],[358,1193],[359,1194],[360,1195],[380,1182],[471,1182],[288,1182],[351,1196],[295,1197],[304,1186],[306,1198],[361,1186],[362,1199],[363,1200],[364,1200],[365,1200],[317,1201],[345,1202],[299,1203],[332,1182],[357,1182],[289,1182],[333,1182],[334,1204],[335,1182],[285,1182],[331,1205],[337,1206],[423,1207],[421,1182],[422,1208],[424,1209],[338,1182],[470,1182],[474,1182],[353,1210],[305,1178],[339,1182],[319,1211],[320,1212],[336,1182],[314,1182],[512,1213],[476,1213],[284,2],[390,1182],[406,1182],[340,1182],[341,1214],[321,1182],[413,1215],[407,1182],[411,1216],[412,1217],[300,1218],[347,1182],[354,1219],[297,1182],[323,1220],[292,1221],[296,1197],[326,1222],[290,1186],[322,1182],[342,1182],[346,1223],[325,1224],[343,1182],[324,1225],[291,1200],[327,1182],[355,1182],[356,1186],[473,1182],[472,1182],[301,1218],[349,1226],[350,1182],[348,1182],[344,1182],[445,1227],[352,1182],[309,1182],[330,1228],[393,1229],[410,1230],[381,1231],[378,1232],[428,1233],[399,1234],[446,1235],[395,1236],[398,1237],[415,1238],[429,1239],[448,1240],[397,1241],[403,1242],[388,1243],[426,1244],[515,1245],[447,1246],[391,1247],[456,1248],[508,1249],[509,1249],[375,1250],[511,1249],[510,1249],[417,1251],[420,1252],[455,1253],[453,1254],[279,2],[418,1255],[402,1256],[452,1257],[278,2],[394,1258],[425,1259],[457,1260],[282,2],[401,1261],[450,1262],[451,1263],[416,1264],[449,1265],[387,1266],[409,1267],[454,1268],[280,2],[400,1269],[367,1270],[477,1271],[366,1272],[458,1273],[468,1274],[469,1275],[467,1276],[439,1277],[376,1278],[440,1279],[466,1280],[382,1281],[385,1282],[430,1283],[432,1284],[386,1285],[383,1285],[379,1286],[433,1287],[434,1288],[435,1289],[460,1290],[443,1291],[441,1292],[436,1293],[437,1294],[438,1295],[461,1296],[444,1297],[442,1298],[384,1299],[462,1300],[431,1301],[459,1302],[392,1303],[377,1166],[316,1304],[513,1305],[514,2],[464,1306],[374,2],[404,2],[281,2],[283,1307],[587,2],[588,667],[582,1308],[581,2],[584,1309],[583,2],[586,1310],[585,1310],[276,1311],[1280,2],[1281,2],[1698,2],[1699,1312],[1278,1313],[1145,1314],[1146,1315],[1144,2],[1238,1316],[1239,1317],[1276,1318],[1277,1319],[1274,1320],[1275,1321],[1264,1322],[1265,1323],[1263,1324],[1147,1320],[1148,1325],[1261,1326],[1262,1327],[1234,1320],[1235,1328],[1153,1329],[1154,1330],[1143,1331],[1142,1320],[1267,1332],[1266,1333],[1241,1334],[1240,1335],[1271,1336],[1270,1320],[1269,1337],[1268,1320],[1260,1338],[1259,1339],[1247,1340],[1246,1320],[1249,1341],[1248,1320],[1273,1342],[1272,1343],[1257,1344],[1256,1345],[1253,1346],[1252,1347],[1152,1348],[1151,1349],[1156,1350],[1155,1351],[1157,1320],[1279,1352],[1163,2],[1184,1353],[1258,1354],[1162,1355],[1183,1356],[1182,1357],[1169,1358],[1176,1358],[1167,1358],[1173,1358],[1177,1358],[1168,1358],[1170,1358],[1175,1358],[1180,1359],[1166,1358],[1178,1358],[1171,1358],[1174,1360],[1172,1358],[1179,1358],[1181,1361],[1159,1320],[1160,2],[1188,2],[1185,1362],[1189,2],[1187,1363],[1158,1364],[1055,1365],[992,1366],[993,1367],[994,1368],[995,1369],[996,1370],[997,1371],[998,1372],[999,1373],[1000,1374],[1001,1375],[1002,1376],[1003,1377],[1004,1378],[1005,1379],[1006,1380],[1007,1381],[1047,1382],[1008,1383],[1009,1384],[1010,1385],[1011,1386],[1012,1387],[1013,1388],[1014,1389],[1015,1390],[1016,1391],[1017,1392],[1018,1393],[1019,1394],[1020,1395],[1021,1396],[1022,1397],[1023,1398],[1024,1399],[1025,1400],[1026,1401],[1027,1402],[1028,1403],[1029,1404],[1030,1405],[1031,1406],[1032,1407],[1033,1408],[1034,1409],[1035,1410],[1036,1411],[1037,1412],[1038,1413],[1039,1414],[1040,1415],[1041,1416],[1042,1417],[1043,1418],[1044,1419],[1045,1420],[1046,1421],[1054,1422],[982,2],[987,1423],[989,1424],[991,1425],[1048,1426],[1049,1425],[1050,1425],[1053,1427],[1051,1425],[1052,1425],[1057,1428],[1058,1429],[1059,1430],[1060,1430],[1061,1431],[1062,1430],[1063,1430],[1064,1432],[1065,1430],[1066,1433],[1067,1433],[1068,1433],[1069,1324],[1070,1433],[1071,1434],[1072,1430],[1073,1433],[1074,1431],[1075,1324],[1076,1430],[1077,1430],[1078,1431],[1079,1324],[1080,1324],[1081,1431],[1082,1430],[1083,1435],[1084,1436],[1085,1431],[1086,1431],[1087,1433],[1088,1430],[1089,1430],[1090,1431],[1091,1430],[1107,1437],[1092,1430],[1093,1429],[1094,1429],[1095,1429],[1096,1433],[1097,1433],[1098,1324],[1099,1324],[1100,1431],[1101,1429],[1102,1429],[1103,1438],[1104,1439],[1105,1429],[1106,1440],[1141,1441],[983,1365],[1113,1442],[1108,1443],[1109,1443],[1110,1443],[1111,1444],[1112,1445],[986,1446],[985,1446],[990,1435],[1114,1447],[984,1365],[1118,1448],[1115,1449],[1116,1449],[1117,1450],[1119,1429],[988,1451],[1120,1433],[1121,2],[1122,2],[1123,2],[1124,2],[1125,2],[1126,2],[1140,1452],[1127,2],[1128,2],[1129,2],[1130,2],[1131,2],[1132,2],[1133,2],[1134,2],[1135,2],[1136,2],[1137,2],[1138,2],[1139,2],[1198,1320],[1199,1453],[1202,1320],[1203,1454],[1192,1318],[1193,1455],[1204,1320],[1205,1456],[1242,1349],[1243,1457],[1236,1349],[1237,1458],[1212,1320],[1213,1459],[1190,1320],[1191,1460],[1214,1320],[1215,1461],[1219,1462],[1218,1320],[1221,1463],[1220,1320],[1195,1464],[1194,1318],[1231,1465],[1230,1320],[1233,1466],[1232,1320],[1245,1467],[1244,1320],[1255,1468],[1254,1318],[1251,1469],[1250,1320],[1229,1470],[1228,1320],[1150,1471],[1149,1320],[1197,1472],[1196,1320],[980,1473],[979,1474],[1056,1475],[981,1476],[1227,1477],[1226,1478],[1200,1320],[1201,1479],[1206,1320],[1207,1480],[1208,1320],[1209,1481],[1210,1320],[1211,1482],[1217,1483],[1216,1320],[1223,1484],[1222,1320],[1225,1485],[1224,1320],[1164,1486],[1165,1086],[1186,2],[974,2],[975,1487],[978,1488],[976,1473],[977,1489],[1161,1490],[64,1491],[63,1492],[62,2],[518,2],[275,1493],[274,1494],[273,1495],[272,2],[265,1496],[264,1497],[266,1498],[224,1499],[184,1500],[219,1501],[220,1501],[210,2],[211,1502],[218,1503],[212,1501],[217,1504],[209,1505],[192,1506],[191,2],[194,1507],[193,1508],[204,1509],[201,1086],[203,1510],[200,1511],[202,1512],[205,1513],[195,1514],[196,1515],[186,2],[187,1516],[189,1517],[188,1518],[190,1519],[253,1520],[257,1521],[256,1520],[249,1521],[250,1520],[226,1522],[229,1523],[235,1520],[241,1523],[252,1524],[258,1520],[254,1520],[247,1523],[255,1523],[245,1525],[227,1520],[228,1526],[233,1523],[251,1523],[234,1523],[262,1527],[237,1523],[236,1523],[230,1523],[261,1524],[260,1520],[259,1528],[231,1523],[246,1523],[240,1523],[238,1523],[243,1523],[248,1523],[242,1523],[232,1520],[239,1523],[225,2],[244,1505],[263,1364],[215,1529],[214,1530],[213,1531],[216,1532],[207,1533],[185,2],[206,1534],[208,1535],[198,2],[197,2],[199,1536],[183,2],[223,1490],[222,1537],[221,2],[1742,1538],[1735,1539],[1736,1540],[1739,1541],[1743,2],[1741,1540],[1740,1542],[1725,2],[1745,1543],[1744,1544],[1727,1540],[1728,1540],[1729,1540],[1730,1540],[1731,1540],[1732,1540],[1733,1540],[1737,2],[1738,1540],[1726,1545],[1734,1540],[1778,548],[1777,549],[1780,1546],[1767,1547],[1776,1548],[1774,1549],[1772,1550],[1773,550],[1766,2],[1771,551],[1775,552],[1770,553],[1764,1551],[1765,1552],[1781,1553],[1782,1554],[1779,1555],[1751,554],[1784,555],[1783,556],[1760,1556],[1759,558],[1754,558],[1758,559],[1756,558],[1755,558],[1757,558],[1753,2],[1750,2],[1761,560],[1763,561],[1762,562],[1768,565],[1769,566],[1749,2],[1752,2],[1722,667],[1721,1557],[1713,1558],[1719,1559],[1715,2],[1716,2],[1714,1560],[1717,1557],[1709,2],[1710,2],[1720,1561],[1712,1562],[1718,1563],[1711,1564],[1786,1565],[1724,1566],[1723,1567],[1787,1568],[1748,1569],[1747,1570],[1746,1571],[1785,1572]],"affectedFilesPendingEmit":[[2562,17],[2103,17],[1684,17],[1423,17],[1450,17],[1449,17],[969,17],[1448,17],[1424,17],[1454,17],[1644,17],[1443,17],[1446,17],[1442,17],[1445,17],[1441,17],[61,17],[2025,17],[1500,17],[1506,17],[1507,17],[1512,17],[1513,17],[1508,17],[1509,17],[1510,17],[1511,17],[2102,17],[2049,17],[2050,17],[2051,17],[2563,17],[1514,17],[2564,17],[2565,17],[2572,17],[2568,17],[1635,17],[2570,17],[2571,17],[1633,17],[1634,17],[2019,17],[2573,17],[2021,17],[2023,17],[2022,17],[1672,17],[1499,17],[1629,17],[1661,17],[1630,17],[1413,17],[1631,17],[1636,17],[2047,17],[2081,17],[1637,17],[1638,17],[1646,17],[1671,17],[1653,17],[1676,17],[1376,17],[1677,17],[1694,17],[1692,17],[1693,17],[2575,17],[1657,17],[2576,17],[2600,17],[2027,17],[2067,17],[2032,17],[2086,17],[2088,17],[2089,17],[2090,17],[2091,17],[2093,17],[2601,17],[2087,17],[2602,17],[2092,17],[2026,17],[2029,17],[2095,17],[2094,17],[2599,17],[2569,17],[1668,17],[2053,17],[2052,17],[2604,17],[2082,17],[2034,17],[2084,17],[2066,17],[2078,17],[2605,17],[2083,17],[2075,17],[1505,17],[2055,17],[2603,17],[2606,17],[2059,17],[1643,17],[1675,17],[2607,17],[2608,17],[1679,17],[1681,17],[2076,17],[1683,17],[2609,17],[2567,17],[2061,17],[1669,17],[1670,17],[2062,17],[2063,17],[2610,17],[2031,17],[2611,17],[1615,17],[2613,17],[2616,17],[1375,17],[2635,17],[2615,17],[2072,17],[2629,17],[2630,17],[2631,17],[2632,17],[2633,17],[2634,17],[1430,17],[2028,17],[1503,17],[1627,17],[1412,17],[1623,17],[1626,17],[1628,17],[1409,17],[1695,17],[1517,17],[1504,17],[1614,17],[1613,17],[1612,17],[2574,17],[2085,17],[1498,17],[1410,17],[1411,17],[1687,17],[1686,17],[1680,17],[2065,17],[1703,17],[2100,17],[1645,17],[1451,17],[2020,17],[1702,17],[1286,17],[2024,17],[2636,17],[2030,17],[1497,17],[1502,17],[1696,17],[1461,17],[1682,17],[1685,17],[2033,17],[2638,17],[1674,17],[2064,17],[2566,17],[1632,17],[1706,17],[2639,17],[2644,17],[1707,17],[1697,17],[2645,17],[2642,17],[2640,17],[2646,17],[1660,17],[1659,17],[1433,17],[2048,17],[1434,17],[1436,17],[2641,17],[1435,17],[1438,17],[1437,17],[2643,17],[2647,17],[2648,17],[2649,17],[2650,17],[2074,17],[2073,17],[2651,17],[1704,17],[2077,17],[2614,17],[1432,17],[2096,17],[2097,17],[2079,17],[2652,17],[2654,17],[2653,17],[2655,17],[2044,17],[2656,17],[2674,17],[2657,17],[2660,17],[2662,17],[2661,17],[1701,17],[2658,17],[2659,17],[1700,17],[1515,17],[2675,17],[2679,17],[2680,17],[2663,17],[2664,17],[2612,17],[2673,17],[2665,17],[2666,17],[2669,17],[2676,17],[2668,17],[2670,17],[2678,17],[2671,17],[2099,17],[2672,17],[2667,17],[2677,17],[2681,17],[2683,17],[2057,17],[1468,17],[1678,17],[1425,17],[1290,17],[940,17],[2058,17],[2684,17],[1617,17],[1379,17],[1380,17],[1417,17],[1495,17],[2686,17],[1404,17],[1620,17],[1705,17],[1622,17],[1457,17],[1458,17],[1459,17],[1460,17],[1465,17],[1463,17],[1464,17],[1456,17],[1367,17],[1429,17],[1619,17],[1428,17],[1378,17],[1439,17],[2687,17],[1368,17],[1427,17],[1496,17],[1618,17],[1369,17],[1370,17],[1371,17],[1414,17],[1372,17],[2685,17],[1691,17],[1285,17],[1373,17],[1407,17],[1374,17],[1401,17],[1408,17],[1440,17],[1462,17],[2688,17],[939,17],[1431,17],[1616,17],[1377,17],[2098,17],[1455,17],[1415,17],[2054,17],[973,17],[1398,17],[669,17],[670,17],[1399,17],[1416,17],[1400,17],[2689,17],[1426,17],[56,17],[1501,17],[176,17],[1466,17],[2104,17],[2105,17],[2178,17],[60,17],[2185,17],[2540,17],[2690,17],[2712,17],[68,17],[1698,17],[1699,17]],"version":"5.9.3"} \ No newline at end of file diff --git a/packages/editor-mobile/src/components/editor.tsx b/packages/editor-mobile/src/components/editor.tsx index 98382d605..1554ecaf2 100644 --- a/packages/editor-mobile/src/components/editor.tsx +++ b/packages/editor-mobile/src/components/editor.tsx @@ -242,6 +242,7 @@ const Tiptap = ({ }, dateFormat: settings.dateFormat, timeFormat: settings.timeFormat as "12-hour" | "24-hour" | undefined, + dayFormat: settings.dayFormat, enableInputRules: settings.markdownShortcuts }; // eslint-disable-next-line react-hooks/exhaustive-deps diff --git a/packages/editor-mobile/src/utils/index.ts b/packages/editor-mobile/src/utils/index.ts index 5978aceba..4ea757de0 100644 --- a/packages/editor-mobile/src/utils/index.ts +++ b/packages/editor-mobile/src/utils/index.ts @@ -55,6 +55,7 @@ export type Settings = { features: Record; loggedIn: boolean; defaultLineHeight: number; + dayFormat: "short" | "long"; }; /* eslint-disable no-var */ diff --git a/packages/intl/locale/en.po b/packages/intl/locale/en.po index 7ae54abaa..87de5c852 100644 --- a/packages/intl/locale/en.po +++ b/packages/intl/locale/en.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/strings.ts:2409 +#: src/strings.ts:2410 msgid " \"Notebook > Notes\"" msgstr " \"Notebook > Notes\"" @@ -21,27 +21,27 @@ msgstr " \"Notebook > Notes\"" msgid " Unlock with password once to enable biometric access." msgstr " Unlock with password once to enable biometric access." -#: src/strings.ts:1940 +#: src/strings.ts:1941 msgid " Upgrade to Notesnook Pro to add more notebooks." msgstr " Upgrade to Notesnook Pro to add more notebooks." -#: src/strings.ts:1943 +#: src/strings.ts:1944 msgid " Upgrade to Notesnook Pro to customize the toolbar." msgstr " Upgrade to Notesnook Pro to customize the toolbar." -#: src/strings.ts:1942 +#: src/strings.ts:1943 msgid " Upgrade to Notesnook Pro to use custom toolbar presets." msgstr " Upgrade to Notesnook Pro to use custom toolbar presets." -#: src/strings.ts:1941 +#: src/strings.ts:1942 msgid " Upgrade to Notesnook Pro to use the notes vault." msgstr " Upgrade to Notesnook Pro to use the notes vault." -#: src/strings.ts:1944 +#: src/strings.ts:1945 msgid " Upgrade to Notesnook Pro to use this feature." msgstr " Upgrade to Notesnook Pro to use this feature." -#: src/strings.ts:827 +#: src/strings.ts:828 msgid "— not just the" msgstr "— not just the" @@ -59,24 +59,24 @@ msgid "{0}" msgstr "{0}" #. placeholder {0}: name || "File" -#: src/strings.ts:514 +#: src/strings.ts:515 msgid "{0} downloaded" msgstr "{0} downloaded" #. placeholder {0}: version ? `v${version} ` : "New version" -#: src/strings.ts:532 +#: src/strings.ts:533 msgid "{0} Highlights 🎉" msgstr "{0} Highlights 🎉" -#: src/strings.ts:1752 +#: src/strings.ts:1753 msgid "{count, plural, one {# error occured} other {# errors occured}}" msgstr "{count, plural, one {# error occured} other {# errors occured}}" -#: src/strings.ts:1758 +#: src/strings.ts:1759 msgid "{count, plural, one {# file ready for import} other {# files ready for import}}" msgstr "{count, plural, one {# file ready for import} other {# files ready for import}}" -#: src/strings.ts:1713 +#: src/strings.ts:1714 msgid "{count, plural, one {# file} other {# files}}" msgstr "{count, plural, one {# file} other {# files}}" @@ -84,11 +84,11 @@ msgstr "{count, plural, one {# file} other {# files}}" msgid "{count, plural, one {# note} other {# notes}}" msgstr "{count, plural, one {# note} other {# notes}}" -#: src/strings.ts:1577 +#: src/strings.ts:1578 msgid "{count, plural, one {1 hour} other {# hours}}" msgstr "{count, plural, one {1 hour} other {# hours}}" -#: src/strings.ts:1572 +#: src/strings.ts:1573 msgid "{count, plural, one {1 minute} other {# minutes}}" msgstr "{count, plural, one {1 minute} other {# minutes}}" @@ -129,7 +129,7 @@ msgstr "{count, plural, one {Are you sure you want to delete this tag?} other {A msgid "{count, plural, one {Are you sure you want to download all attachments of this note?} other {Are you sure you want to download all attachments?}}" msgstr "{count, plural, one {Are you sure you want to download all attachments of this note?} other {Are you sure you want to download all attachments?}}" -#: src/strings.ts:862 +#: src/strings.ts:863 msgid "{count, plural, one {Are you sure you want to move this notebook to {selectedNotebookTitle}?} other {Are you sure you want to move these # notebooks {selectedNotebookTitle}?}}" msgstr "{count, plural, one {Are you sure you want to move this notebook to {selectedNotebookTitle}?} other {Are you sure you want to move these # notebooks {selectedNotebookTitle}?}}" @@ -288,15 +288,15 @@ msgstr "{count, plural, one {Item restored} other {# items restored}}" msgid "{count, plural, one {Item unpublished} other {# items unpublished}}" msgstr "{count, plural, one {Item unpublished} other {# items unpublished}}" -#: src/strings.ts:2426 +#: src/strings.ts:2427 msgid "{count, plural, one {Move all notes in this notebook to trash} other {Move all notes in these notebooks to trash}}" msgstr "{count, plural, one {Move all notes in this notebook to trash} other {Move all notes in these notebooks to trash}}" -#: src/strings.ts:860 +#: src/strings.ts:861 msgid "{count, plural, one {Move notebook} other {Move # notebooks}}" msgstr "{count, plural, one {Move notebook} other {Move # notebooks}}" -#: src/strings.ts:480 +#: src/strings.ts:481 msgid "{count, plural, one {Moving {title}} other {Moving # notebooks}}" msgstr "{count, plural, one {Moving {title}} other {Moving # notebooks}}" @@ -336,7 +336,7 @@ msgstr "{count, plural, one {Note restored} other {# notes restored}}" msgid "{count, plural, one {Note unpublished} other {# notes unpublished}}" msgstr "{count, plural, one {Note unpublished} other {# notes unpublished}}" -#: src/strings.ts:919 +#: src/strings.ts:920 msgid "{count, plural, one {Note will be automatically deleted from all other devices & any future changes won't get synced. Are you sure you want to continue?} other {# notes will be automatically deleted from all other devices & any future changes won't get synced. Are you sure you want to continue?}}" msgstr "{count, plural, one {Note will be automatically deleted from all other devices & any future changes won't get synced. Are you sure you want to continue?} other {# notes will be automatically deleted from all other devices & any future changes won't get synced. Are you sure you want to continue?}}" @@ -390,7 +390,7 @@ msgstr "{count, plural, one {Pin note} other {Pin # notes}}" msgid "{count, plural, one {Pin notebook} other {Pin # notebooks}}" msgstr "{count, plural, one {Pin notebook} other {Pin # notebooks}}" -#: src/strings.ts:914 +#: src/strings.ts:915 msgid "{count, plural, one {Prevent note from syncing} other {Prevent # notes from syncing}}" msgstr "{count, plural, one {Prevent note from syncing} other {Prevent # notes from syncing}}" @@ -491,15 +491,15 @@ msgstr "{count, plural, one {Unpublish item} other {Unpublish # items}}" msgid "{count, plural, one {Unpublish note} other {Unpublish # notes}}" msgstr "{count, plural, one {Unpublish note} other {Unpublish # notes}}" -#: src/strings.ts:2496 +#: src/strings.ts:2497 msgid "{count} characters" msgstr "{count} characters" -#: src/strings.ts:1563 +#: src/strings.ts:1564 msgid "{days, plural, one {1 day} other {# days}}" msgstr "{days, plural, one {1 day} other {# days}}" -#: src/strings.ts:2556 +#: src/strings.ts:2557 msgid "{days} days free" msgstr "{days} days free" @@ -527,55 +527,55 @@ msgstr "{itemType, select, tag {Add a tag} notebook {Add a notebook} reminder {A msgid "{key, select, dateCreated {Created at} dateEdited {Last edited at} dateModified {Last modified at} dateUploaded {Uploaded at} dateDeleted {Deleted at} other {{key}}}" msgstr "{key, select, dateCreated {Created at} dateEdited {Last edited at} dateModified {Last modified at} dateUploaded {Uploaded at} dateDeleted {Deleted at} other {{key}}}" -#: src/strings.ts:439 +#: src/strings.ts:440 msgid "{mode, select, create {Create app lock {keyboardType}} change {Change app lock {keyboardType}} remove {Remove app lock {keyboardType}} other {}}" msgstr "{mode, select, create {Create app lock {keyboardType}} change {Change app lock {keyboardType}} remove {Remove app lock {keyboardType}} other {}}" -#: src/strings.ts:604 +#: src/strings.ts:605 msgid "{mode, select, day {Daily} week {Weekly} month {Monthly} year {Yearly} other {Unknown mode}}" msgstr "{mode, select, day {Daily} week {Weekly} month {Monthly} year {Yearly} other {Unknown mode}}" -#: src/strings.ts:597 +#: src/strings.ts:598 msgid "{mode, select, repeat {Repeat} once {Once} permanent {Permanent} other {Unknown mode}}" msgstr "{mode, select, repeat {Repeat} once {Once} permanent {Permanent} other {Unknown mode}}" -#: src/strings.ts:1975 +#: src/strings.ts:1976 msgid "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}} and {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}." msgstr "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}} and {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}." -#: src/strings.ts:1970 +#: src/strings.ts:1971 msgid "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}}." msgstr "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}}." -#: src/strings.ts:1965 +#: src/strings.ts:1966 msgid "{n} {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}." msgstr "{n} {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}." -#: src/strings.ts:1960 +#: src/strings.ts:1961 msgid "{notes, plural, one {1 note} other {# notes}}" msgstr "{notes, plural, one {1 note} other {# notes}}" -#: src/strings.ts:470 +#: src/strings.ts:471 msgid "{notes, plural, one {Export note} other {Export # notes}}" msgstr "{notes, plural, one {Export note} other {Export # notes}}" -#: src/strings.ts:1705 +#: src/strings.ts:1706 msgid "{percentage}% updating..." msgstr "{percentage}% updating..." -#: src/strings.ts:2540 +#: src/strings.ts:2541 msgid "{plan} plan" msgstr "{plan} plan" -#: src/strings.ts:742 +#: src/strings.ts:743 msgid "{platform, select, android {{name} saved to selected path} other {{name} saved to File Manager/Notesnook/downloads}}" msgstr "{platform, select, android {{name} saved to selected path} other {{name} saved to File Manager/Notesnook/downloads}}" -#: src/strings.ts:1336 +#: src/strings.ts:1337 msgid "{platform, select, android {Backup file saved in \"Notesnook backups\" folder on your phone.} other {Backup file is saved in File Manager/Notesnook folder}}" msgstr "{platform, select, android {Backup file saved in \"Notesnook backups\" folder on your phone.} other {Backup file is saved in File Manager/Notesnook folder}}" -#: src/strings.ts:2356 +#: src/strings.ts:2357 msgid "{selected} selected" msgstr "{selected} selected" @@ -591,191 +591,191 @@ msgstr "{type, select, other {This list is empty} notebook {No notebooks} tag {N msgid "{type, select, upload {Uploading} download {Downloading} sync {Syncing} other {Loading}}" msgstr "{type, select, upload {Uploading} download {Downloading} sync {Syncing} other {Loading}}" -#: src/strings.ts:784 +#: src/strings.ts:785 msgid "{type} does not match" msgstr "{type} does not match" -#: src/strings.ts:1598 +#: src/strings.ts:1599 msgid "{words, plural, one {# word} other {# words}}" msgstr "{words, plural, one {# word} other {# words}}" -#: src/strings.ts:1661 +#: src/strings.ts:1662 msgid "{words, plural, other {# selected}}" msgstr "{words, plural, other {# selected}}" -#: src/strings.ts:1789 +#: src/strings.ts:1790 msgid "#notesnook" msgstr "#notesnook" -#: src/strings.ts:1582 +#: src/strings.ts:1583 msgid "12-hour" msgstr "12-hour" -#: src/strings.ts:1583 +#: src/strings.ts:1584 msgid "24-hour" msgstr "24-hour" -#: src/strings.ts:1903 +#: src/strings.ts:1904 msgid "2FA code is required()" msgstr "2FA code is required()" -#: src/strings.ts:1007 +#: src/strings.ts:1008 msgid "2FA code sent via {method}" msgstr "2FA code sent via {method}" -#: src/strings.ts:2580 +#: src/strings.ts:2581 msgid "5 year plan (One time purchase)" msgstr "5 year plan (One time purchase)" -#: src/strings.ts:1844 +#: src/strings.ts:1845 msgid "6 digit code" msgstr "6 digit code" -#: src/strings.ts:1430 +#: src/strings.ts:1431 msgid "A notebook can have unlimited topics with unlimited notes." msgstr "A notebook can have unlimited topics with unlimited notes." -#: src/strings.ts:646 +#: src/strings.ts:647 msgid "A to Z" msgstr "A to Z" -#: src/strings.ts:447 +#: src/strings.ts:448 msgid "A vault stores your notes in an encrypted storage." msgstr "A vault stores your notes in an encrypted storage." -#: src/strings.ts:661 +#: src/strings.ts:662 msgid "Abc" msgstr "Abc" -#: src/strings.ts:1288 +#: src/strings.ts:1289 msgid "About" msgstr "About" -#: src/strings.ts:1023 +#: src/strings.ts:1024 msgid "Account" msgstr "Account" -#: src/strings.ts:1846 +#: src/strings.ts:1847 msgid "Account password" msgstr "Account password" -#: src/strings.ts:2451 +#: src/strings.ts:2452 msgid "Actions for note: {title}" msgstr "Actions for note: {title}" -#: src/strings.ts:2452 +#: src/strings.ts:2453 msgid "Actions for notebook: {title}" msgstr "Actions for notebook: {title}" -#: src/strings.ts:2453 +#: src/strings.ts:2454 msgid "Actions for tag: {title}" msgstr "Actions for tag: {title}" -#: src/strings.ts:2036 +#: src/strings.ts:2037 msgid "Activate" msgstr "Activate" -#: src/strings.ts:1822 +#: src/strings.ts:1823 msgid "Activating trial" msgstr "Activating trial" -#: src/strings.ts:529 +#: src/strings.ts:530 msgid "Add" msgstr "Add" -#: src/strings.ts:1055 +#: src/strings.ts:1056 msgid "Add 2FA fallback method" msgstr "Add 2FA fallback method" -#: src/strings.ts:1506 +#: src/strings.ts:1507 msgid "Add a short note" msgstr "Add a short note" -#: src/strings.ts:1599 +#: src/strings.ts:1600 msgid "Add a tag" msgstr "Add a tag" -#: src/strings.ts:556 +#: src/strings.ts:557 msgid "Add color" msgstr "Add color" -#: src/strings.ts:894 +#: src/strings.ts:895 msgid "Add notebook" msgstr "Add notebook" -#: src/strings.ts:2478 +#: src/strings.ts:2479 msgid "Add notes" msgstr "Add notes" -#: src/strings.ts:484 +#: src/strings.ts:485 msgid "Add notes to {title}" msgstr "Add notes to {title}" -#: src/strings.ts:893 +#: src/strings.ts:894 msgid "Add shortcut" msgstr "Add shortcut" -#: src/strings.ts:736 +#: src/strings.ts:737 msgid "Add shortcuts for notebooks and tags here." msgstr "Add shortcuts for notebooks and tags here." -#: src/strings.ts:571 +#: src/strings.ts:572 msgid "Add tag" msgstr "Add tag" -#: src/strings.ts:932 +#: src/strings.ts:933 msgid "Add tags" msgstr "Add tags" -#: src/strings.ts:933 +#: src/strings.ts:934 msgid "Add tags to multiple notes at once" msgstr "Add tags to multiple notes at once" -#: src/strings.ts:2243 +#: src/strings.ts:2244 msgid "Add to dictionary" msgstr "Add to dictionary" -#: src/strings.ts:2613 +#: src/strings.ts:2614 msgid "Add to home" msgstr "Add to home" -#: src/strings.ts:2476 +#: src/strings.ts:2477 msgid "Add to notebook" msgstr "Add to notebook" -#: src/strings.ts:973 +#: src/strings.ts:974 msgid "Add your first note" msgstr "Add your first note" -#: src/strings.ts:974 +#: src/strings.ts:975 msgid "Add your first notebook" msgstr "Add your first notebook" -#: src/strings.ts:2616 +#: src/strings.ts:2617 msgid "Adjust the line height of the editor" msgstr "Adjust the line height of the editor" -#: src/strings.ts:2170 +#: src/strings.ts:2171 msgid "Advanced" msgstr "Advanced" -#: src/strings.ts:1725 +#: src/strings.ts:1726 msgid "After scanning the QR code image, the app will display a code that you can enter below." msgstr "After scanning the QR code image, the app will display a code that you can enter below." -#: src/strings.ts:2308 +#: src/strings.ts:2309 msgid "Align left" msgstr "Align left" -#: src/strings.ts:2309 +#: src/strings.ts:2310 msgid "Align right" msgstr "Align right" -#: src/strings.ts:2278 +#: src/strings.ts:2279 msgid "Alignment" msgstr "Alignment" -#: src/strings.ts:725 +#: src/strings.ts:726 msgid "All" msgstr "All" @@ -783,55 +783,55 @@ msgstr "All" msgid "All attachments are end-to-end encrypted." msgstr "All attachments are end-to-end encrypted." -#: src/strings.ts:2403 +#: src/strings.ts:2404 msgid "All cached attachments have been cleared." msgstr "All cached attachments have been cleared." -#: src/strings.ts:766 +#: src/strings.ts:767 msgid "All fields are required" msgstr "All fields are required" -#: src/strings.ts:753 +#: src/strings.ts:754 msgid "All files" msgstr "All files" -#: src/strings.ts:1173 +#: src/strings.ts:1174 msgid "All locked notes will be re-encrypted with the new password." msgstr "All locked notes will be re-encrypted with the new password." -#: src/strings.ts:738 +#: src/strings.ts:739 msgid "All logs are local only and are not sent to any server. You can share the logs from here with us if you face an issue to help us find the root cause." msgstr "All logs are local only and are not sent to any server. You can share the logs from here with us if you face an issue to help us find the root cause." -#: src/strings.ts:1636 +#: src/strings.ts:1637 msgid "All server urls are required." msgstr "All server urls are required." -#: src/strings.ts:1905 +#: src/strings.ts:1906 msgid "All the data in your account will be overwritten with the data in the backup file. There is no way to reverse this action." msgstr "All the data in your account will be overwritten with the data in the backup file. There is no way to reverse this action." -#: src/strings.ts:2150 +#: src/strings.ts:2151 msgid "All the source code for Notesnook is available & open for everyone on GitHub." msgstr "All the source code for Notesnook is available & open for everyone on GitHub." -#: src/strings.ts:429 +#: src/strings.ts:430 msgid "All tools are grouped" msgstr "All tools are grouped" -#: src/strings.ts:1320 +#: src/strings.ts:1321 msgid "All tools in the collapsed section will be removed" msgstr "All tools in the collapsed section will be removed" -#: src/strings.ts:1315 +#: src/strings.ts:1316 msgid "All tools in this group will be removed from the toolbar." msgstr "All tools in this group will be removed from the toolbar." -#: src/strings.ts:1345 +#: src/strings.ts:1346 msgid "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder" msgstr "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder" -#: src/strings.ts:1077 +#: src/strings.ts:1078 msgid "All your data will be removed permanently. Make sure you have saved backup of your notes. This action is IRREVERSIBLE." msgstr "All your data will be removed permanently. Make sure you have saved backup of your notes. This action is IRREVERSIBLE." @@ -839,7 +839,7 @@ msgstr "All your data will be removed permanently. Make sure you have saved back msgid "Already have an account?" msgstr "Already have an account?" -#: src/strings.ts:2220 +#: src/strings.ts:2221 msgid "Amount" msgstr "Amount" @@ -847,7 +847,7 @@ msgstr "Amount" msgid "An error occurred while migrating your data. You can logout of your account and try to relogin. However this is not recommended as it may result in some data loss if your data was not synced." msgstr "An error occurred while migrating your data. You can logout of your account and try to relogin. However this is not recommended as it may result in some data loss if your data was not synced." -#: src/strings.ts:2574 +#: src/strings.ts:2575 msgid "and" msgstr "and" @@ -855,19 +855,19 @@ msgstr "and" msgid "and " msgstr "and " -#: src/strings.ts:1790 +#: src/strings.ts:1791 msgid "and get a chance to win free promo codes." msgstr "and get a chance to win free promo codes." -#: src/strings.ts:2533 +#: src/strings.ts:2534 msgid "and much more." msgstr "and much more." -#: src/strings.ts:1396 +#: src/strings.ts:1397 msgid "and we will manually confirm your account." msgstr "and we will manually confirm your account." -#: src/strings.ts:2591 +#: src/strings.ts:2592 msgid "ANNOUNCEMENT" msgstr "ANNOUNCEMENT" @@ -875,106 +875,106 @@ msgstr "ANNOUNCEMENT" msgid "App data has been cleared. Kindly relaunch the app to login again." msgstr "App data has been cleared. Kindly relaunch the app to login again." -#: src/strings.ts:1182 -#: src/strings.ts:1692 +#: src/strings.ts:1183 +#: src/strings.ts:1693 msgid "App lock" msgstr "App lock" -#: src/strings.ts:780 -#: src/strings.ts:1208 +#: src/strings.ts:781 +#: src/strings.ts:1209 msgid "App lock disabled" msgstr "App lock disabled" -#: src/strings.ts:1188 +#: src/strings.ts:1189 msgid "App lock timeout" msgstr "App lock timeout" -#: src/strings.ts:1299 +#: src/strings.ts:1300 msgid "App version" msgstr "App version" -#: src/strings.ts:1773 +#: src/strings.ts:1774 msgid "App will reload in {sec} seconds" msgstr "App will reload in {sec} seconds" -#: src/strings.ts:1113 +#: src/strings.ts:1114 msgid "Appearance" msgstr "Appearance" -#: src/strings.ts:538 +#: src/strings.ts:539 msgid "Applied as dark theme" msgstr "Applied as dark theme" -#: src/strings.ts:539 +#: src/strings.ts:540 msgid "Applied as light theme" msgstr "Applied as light theme" -#: src/strings.ts:456 +#: src/strings.ts:457 msgid "Apply changes" msgstr "Apply changes" -#: src/strings.ts:2043 +#: src/strings.ts:2044 msgid "Applying changes" msgstr "Applying changes" -#: src/strings.ts:1529 -#: src/strings.ts:2483 +#: src/strings.ts:1530 +#: src/strings.ts:2484 msgid "Archive" msgstr "Archive" -#: src/strings.ts:1444 +#: src/strings.ts:1445 msgid "Are you scrolling a lot to find a specific note? Pin it to the top from Note properties." msgstr "Are you scrolling a lot to find a specific note? Pin it to the top from Note properties." -#: src/strings.ts:1015 +#: src/strings.ts:1016 msgid "Are you sure you want to clear all logs from {key}?" msgstr "Are you sure you want to clear all logs from {key}?" -#: src/strings.ts:1323 +#: src/strings.ts:1324 msgid "Are you sure you want to clear trash?" msgstr "Are you sure you want to clear trash?" -#: src/strings.ts:1541 +#: src/strings.ts:1542 msgid "Are you sure you want to logout and clear all data stored on THIS DEVICE?" msgstr "Are you sure you want to logout and clear all data stored on THIS DEVICE?" -#: src/strings.ts:774 +#: src/strings.ts:775 msgid "Are you sure you want to logout from this device? Any unsynced changes will be lost." msgstr "Are you sure you want to logout from this device? Any unsynced changes will be lost." -#: src/strings.ts:1045 +#: src/strings.ts:1046 msgid "Are you sure you want to remove your name?" msgstr "Are you sure you want to remove your name?" -#: src/strings.ts:1042 +#: src/strings.ts:1043 msgid "Are you sure you want to remove your profile picture?" msgstr "Are you sure you want to remove your profile picture?" -#: src/strings.ts:1322 +#: src/strings.ts:1323 msgid "Are you sure?" msgstr "Are you sure?" -#: src/strings.ts:1129 +#: src/strings.ts:1130 msgid "Ask every time" msgstr "Ask every time" -#: src/strings.ts:2032 +#: src/strings.ts:2033 msgid "Assign color" msgstr "Assign color" -#: src/strings.ts:931 +#: src/strings.ts:932 msgid "Assign to..." msgstr "Assign to..." -#: src/strings.ts:432 +#: src/strings.ts:433 msgid "Atleast 8 characters required" msgstr "Atleast 8 characters required" -#: src/strings.ts:2345 +#: src/strings.ts:2346 msgid "Attach image from URL" msgstr "Attach image from URL" -#: src/strings.ts:907 +#: src/strings.ts:908 msgid "Attached files" msgstr "Attached files" @@ -983,23 +983,23 @@ msgid "attachment" msgstr "attachment" #: src/strings.ts:300 -#: src/strings.ts:2342 +#: src/strings.ts:2343 msgid "Attachment" msgstr "Attachment" -#: src/strings.ts:2446 +#: src/strings.ts:2447 msgid "Attachment manager" msgstr "Attachment manager" -#: src/strings.ts:1934 +#: src/strings.ts:1935 msgid "Attachment preview failed" msgstr "Attachment preview failed" -#: src/strings.ts:2396 +#: src/strings.ts:2397 msgid "Attachment recheck cancelled" msgstr "Attachment recheck cancelled" -#: src/strings.ts:2313 +#: src/strings.ts:2314 msgid "Attachment settings" msgstr "Attachment settings" @@ -1008,256 +1008,256 @@ msgid "attachments" msgstr "attachments" #: src/strings.ts:320 -#: src/strings.ts:906 +#: src/strings.ts:907 msgid "Attachments" msgstr "Attachments" -#: src/strings.ts:1883 +#: src/strings.ts:1884 msgid "Attachments cache cleared!" msgstr "Attachments cache cleared!" -#: src/strings.ts:2398 +#: src/strings.ts:2399 msgid "Attachments recheck complete" msgstr "Attachments recheck complete" -#: src/strings.ts:759 +#: src/strings.ts:760 msgid "Audios" msgstr "Audios" -#: src/strings.ts:1625 +#: src/strings.ts:1626 msgid "Auth server" msgstr "Auth server" -#: src/strings.ts:1794 +#: src/strings.ts:1795 msgid "Authenticated as {email}" msgstr "Authenticated as {email}" -#: src/strings.ts:1897 +#: src/strings.ts:1898 msgid "Authenticating user" msgstr "Authenticating user" -#: src/strings.ts:2133 +#: src/strings.ts:2134 msgid "Authentication" msgstr "Authentication" -#: src/strings.ts:1729 +#: src/strings.ts:1730 msgid "authentication app" msgstr "authentication app" -#: src/strings.ts:1350 +#: src/strings.ts:1351 msgid "Authentication cancelled by user" msgstr "Authentication cancelled by user" -#: src/strings.ts:1351 +#: src/strings.ts:1352 msgid "Authentication failed" msgstr "Authentication failed" -#: src/strings.ts:2096 +#: src/strings.ts:2097 msgid "Auto" msgstr "Auto" -#: src/strings.ts:1660 +#: src/strings.ts:1661 msgid "Auto save: off" msgstr "Auto save: off" -#: src/strings.ts:2110 +#: src/strings.ts:2111 msgid "Auto start on system startup" msgstr "Auto start on system startup" -#: src/strings.ts:1217 -#: src/strings.ts:1688 +#: src/strings.ts:1218 +#: src/strings.ts:1689 msgid "Automatic backups" msgstr "Automatic backups" -#: src/strings.ts:1364 +#: src/strings.ts:1365 msgid "Automatic backups are off" msgstr "Automatic backups are off" -#: src/strings.ts:2004 +#: src/strings.ts:2005 msgid "Automatic backups disabled" msgstr "Automatic backups disabled" -#: src/strings.ts:1220 +#: src/strings.ts:1221 msgid "Automatic backups with attachments" msgstr "Automatic backups with attachments" -#: src/strings.ts:2106 +#: src/strings.ts:2107 msgid "Automatic updates" msgstr "Automatic updates" -#: src/strings.ts:1137 +#: src/strings.ts:1138 msgid "Automatically clear trash after a certain period of time" msgstr "Automatically clear trash after a certain period of time" -#: src/strings.ts:2108 +#: src/strings.ts:2109 msgid "Automatically download & install updates in the background without prompting first." msgstr "Automatically download & install updates in the background without prompting first." -#: src/strings.ts:1190 +#: src/strings.ts:1191 msgid "Automatically lock the app after a certain period" msgstr "Automatically lock the app after a certain period" -#: src/strings.ts:1120 +#: src/strings.ts:1121 msgid "Automatically switch between light and dark themes based on your system settings" msgstr "Automatically switch between light and dark themes based on your system settings" -#: src/strings.ts:2153 +#: src/strings.ts:2154 msgid "Available on iOS" msgstr "Available on iOS" -#: src/strings.ts:2154 +#: src/strings.ts:2155 msgid "Available on iOS & Android" msgstr "Available on iOS & Android" -#: src/strings.ts:2301 +#: src/strings.ts:2302 msgid "Background color" msgstr "Background color" -#: src/strings.ts:1092 +#: src/strings.ts:1093 msgid "Background sync (experimental)" msgstr "Background sync (experimental)" -#: src/strings.ts:2102 +#: src/strings.ts:2103 msgid "Backup" msgstr "Backup" -#: src/strings.ts:2140 +#: src/strings.ts:2141 msgid "Backup & export" msgstr "Backup & export" -#: src/strings.ts:1209 +#: src/strings.ts:1210 msgid "Backup & restore" msgstr "Backup & restore" -#: src/strings.ts:1334 +#: src/strings.ts:1335 msgid "Backup complete" msgstr "Backup complete" -#: src/strings.ts:1560 +#: src/strings.ts:1561 msgid "Backup directory not selected" msgstr "Backup directory not selected" -#: src/strings.ts:1232 +#: src/strings.ts:1233 msgid "Backup encryption" msgstr "Backup encryption" -#: src/strings.ts:1857 +#: src/strings.ts:1858 msgid "Backup files have .nnbackup extension" msgstr "Backup files have .nnbackup extension" -#: src/strings.ts:881 +#: src/strings.ts:882 msgid "Backup is encrypted" msgstr "Backup is encrypted" -#: src/strings.ts:1613 +#: src/strings.ts:1614 msgid "Backup is encrypted, decrypting..." msgstr "Backup is encrypted, decrypting..." -#: src/strings.ts:1211 +#: src/strings.ts:1212 msgid "Backup now" msgstr "Backup now" -#: src/strings.ts:1212 +#: src/strings.ts:1213 msgid "Backup now with attachments" msgstr "Backup now with attachments" -#: src/strings.ts:888 +#: src/strings.ts:889 msgid "Backup restored" msgstr "Backup restored" -#: src/strings.ts:1918 +#: src/strings.ts:1919 msgid "Backup saved at {path}" msgstr "Backup saved at {path}" -#: src/strings.ts:1346 +#: src/strings.ts:1347 msgid "Backup successful" msgstr "Backup successful" -#: src/strings.ts:2103 +#: src/strings.ts:2104 msgid "Backup with attachments" msgstr "Backup with attachments" -#: src/strings.ts:492 +#: src/strings.ts:493 msgid "Backups" msgstr "Backups" -#: src/strings.ts:540 +#: src/strings.ts:541 msgid "Basic" msgstr "Basic" -#: src/strings.ts:1792 +#: src/strings.ts:1793 msgid "Because where's the fun in nookin' alone?" msgstr "Because where's the fun in nookin' alone?" -#: src/strings.ts:1123 +#: src/strings.ts:1124 msgid "Behavior" msgstr "Behavior" -#: src/strings.ts:2135 +#: src/strings.ts:2136 msgid "Behaviour" msgstr "Behaviour" -#: src/strings.ts:2470 +#: src/strings.ts:2471 msgid "Believer plan" msgstr "Believer plan" -#: src/strings.ts:2577 +#: src/strings.ts:2578 msgid "Best value" msgstr "Best value" -#: src/strings.ts:2459 +#: src/strings.ts:2460 msgid "Beta" msgstr "Beta" -#: src/strings.ts:2259 +#: src/strings.ts:2260 msgid "Bi-directional note link" msgstr "Bi-directional note link" -#: src/strings.ts:2553 +#: src/strings.ts:2554 msgid "billed annually at {price}" msgstr "billed annually at {price}" -#: src/strings.ts:2554 +#: src/strings.ts:2555 msgid "billed monthly at {price}" msgstr "billed monthly at {price}" -#: src/strings.ts:2201 +#: src/strings.ts:2202 msgid "Billing history" msgstr "Billing history" -#: src/strings.ts:1176 +#: src/strings.ts:1177 msgid "Biometric unlocking" msgstr "Biometric unlocking" -#: src/strings.ts:811 +#: src/strings.ts:812 msgid "Biometric unlocking disabled" msgstr "Biometric unlocking disabled" -#: src/strings.ts:810 +#: src/strings.ts:811 msgid "Biometric unlocking enabled" msgstr "Biometric unlocking enabled" -#: src/strings.ts:1348 +#: src/strings.ts:1349 msgid "Biometrics authentication failed. Please try again." msgstr "Biometrics authentication failed. Please try again." -#: src/strings.ts:1185 +#: src/strings.ts:1186 msgid "Biometrics not enrolled" msgstr "Biometrics not enrolled" -#: src/strings.ts:2255 +#: src/strings.ts:2256 msgid "Bold" msgstr "Bold" -#: src/strings.ts:2408 +#: src/strings.ts:2409 msgid "Boost your productivity with Notebooks and organize your notes." msgstr "Boost your productivity with Notebooks and organize your notes." -#: src/strings.ts:1808 +#: src/strings.ts:1809 msgid "Browse" msgstr "Browse" -#: src/strings.ts:2272 +#: src/strings.ts:2273 msgid "Bullet list" msgstr "Bullet list" @@ -1265,7 +1265,7 @@ msgstr "Bullet list" msgid "By" msgstr "By" -#: src/strings.ts:2572 +#: src/strings.ts:2573 msgid "By joining you agree to our" msgstr "By joining you agree to our" @@ -1273,60 +1273,60 @@ msgstr "By joining you agree to our" msgid "By signing up, you agree to our " msgstr "By signing up, you agree to our " -#: src/strings.ts:2333 +#: src/strings.ts:2334 msgid "Callout" msgstr "Callout" -#: src/strings.ts:2513 +#: src/strings.ts:2514 msgid "Can I cancel my free trial anytime?" msgstr "Can I cancel my free trial anytime?" -#: src/strings.ts:548 +#: src/strings.ts:549 msgid "Cancel" msgstr "Cancel" -#: src/strings.ts:2570 +#: src/strings.ts:2571 msgid "Cancel anytime, subscription auto-renews." msgstr "Cancel anytime, subscription auto-renews." -#: src/strings.ts:2535 +#: src/strings.ts:2536 msgid "Cancel anytime." msgstr "Cancel anytime." -#: src/strings.ts:516 +#: src/strings.ts:517 msgid "Cancel download" msgstr "Cancel download" -#: src/strings.ts:553 +#: src/strings.ts:554 msgid "Cancel login" msgstr "Cancel login" -#: src/strings.ts:1825 +#: src/strings.ts:1826 msgid "Cancel subscription" msgstr "Cancel subscription" -#: src/strings.ts:517 +#: src/strings.ts:518 msgid "Cancel upload" msgstr "Cancel upload" -#: src/strings.ts:2300 +#: src/strings.ts:2301 msgid "Cell background color" msgstr "Cell background color" -#: src/strings.ts:2302 +#: src/strings.ts:2303 msgid "Cell border color" msgstr "Cell border color" -#: src/strings.ts:2304 #: src/strings.ts:2305 +#: src/strings.ts:2306 msgid "Cell border width" msgstr "Cell border width" -#: src/strings.ts:2286 +#: src/strings.ts:2287 msgid "Cell properties" msgstr "Cell properties" -#: src/strings.ts:2303 +#: src/strings.ts:2304 msgid "Cell text color" msgstr "Cell text color" @@ -1334,115 +1334,115 @@ msgstr "Cell text color" msgid "Change" msgstr "Change" -#: src/strings.ts:1058 +#: src/strings.ts:1059 msgid "Change 2FA fallback method" msgstr "Change 2FA fallback method" -#: src/strings.ts:677 +#: src/strings.ts:678 msgid "Change 2FA method" msgstr "Change 2FA method" -#: src/strings.ts:1197 +#: src/strings.ts:1198 msgid "Change app lock password" msgstr "Change app lock password" -#: src/strings.ts:1196 +#: src/strings.ts:1197 msgid "Change app lock pin" msgstr "Change app lock pin" -#: src/strings.ts:1231 +#: src/strings.ts:1232 msgid "Change backup directory" msgstr "Change backup directory" -#: src/strings.ts:464 +#: src/strings.ts:465 msgid "Change email address" msgstr "Change email address" -#: src/strings.ts:1124 +#: src/strings.ts:1125 msgid "Change how the app behaves in different situations" msgstr "Change how the app behaves in different situations" -#: src/strings.ts:2351 +#: src/strings.ts:2352 msgid "Change language" msgstr "Change language" -#: src/strings.ts:1252 +#: src/strings.ts:1253 msgid "Change notification sound" msgstr "Change notification sound" -#: src/strings.ts:433 +#: src/strings.ts:434 msgid "Change password" msgstr "Change password" -#: src/strings.ts:2584 +#: src/strings.ts:2585 msgid "Change plan" msgstr "Change plan" -#: src/strings.ts:1817 +#: src/strings.ts:1818 msgid "Change profile picture" msgstr "Change profile picture" -#: src/strings.ts:2179 +#: src/strings.ts:2180 msgid "Change proxy" msgstr "Change proxy" -#: src/strings.ts:2200 +#: src/strings.ts:2201 msgid "Change the payment method you used to purchase this subscription." msgstr "Change the payment method you used to purchase this subscription." -#: src/strings.ts:1254 +#: src/strings.ts:1255 msgid "Change the sound that plays when you receive a notification" msgstr "Change the sound that plays when you receive a notification" -#: src/strings.ts:450 +#: src/strings.ts:451 msgid "Change vault password" msgstr "Change vault password" -#: src/strings.ts:1052 +#: src/strings.ts:1053 msgid "Change your account password" msgstr "Change your account password" -#: src/strings.ts:1054 +#: src/strings.ts:1055 msgid "Change your primary two-factor authentication method" msgstr "Change your primary two-factor authentication method" -#: src/strings.ts:1088 +#: src/strings.ts:1089 msgid "Changes from other devices won't be updated in the editor in real-time." msgstr "Changes from other devices won't be updated in the editor in real-time." -#: src/strings.ts:733 +#: src/strings.ts:734 msgid "Changing password is an irreversible process. You will be logged out from all your devices. Please make sure you do not close the app while your password is changing and have good internet connection." msgstr "Changing password is an irreversible process. You will be logged out from all your devices. Please make sure you do not close the app while your password is changing and have good internet connection." -#: src/strings.ts:2489 +#: src/strings.ts:2490 msgid "Characters" msgstr "Characters" -#: src/strings.ts:1295 +#: src/strings.ts:1296 msgid "Check for new version of Notesnook" msgstr "Check for new version of Notesnook" -#: src/strings.ts:1298 +#: src/strings.ts:1299 msgid "Check for new version of the app available on app launch" msgstr "Check for new version of the app available on app launch" -#: src/strings.ts:1294 +#: src/strings.ts:1295 msgid "Check for updates" msgstr "Check for updates" -#: src/strings.ts:1296 +#: src/strings.ts:1297 msgid "Check for updates automatically" msgstr "Check for updates automatically" -#: src/strings.ts:2152 +#: src/strings.ts:2153 msgid "Check roadmap" msgstr "Check roadmap" -#: src/strings.ts:683 +#: src/strings.ts:684 msgid "Check your spam folder if you haven't received an email yet." msgstr "Check your spam folder if you haven't received an email yet." -#: src/strings.ts:2400 +#: src/strings.ts:2401 msgid "Checking all attachments" msgstr "Checking all attachments" @@ -1450,51 +1450,51 @@ msgstr "Checking all attachments" msgid "Checking for new version" msgstr "Checking for new version" -#: src/strings.ts:1704 +#: src/strings.ts:1705 msgid "Checking for updates" msgstr "Checking for updates" -#: src/strings.ts:2399 +#: src/strings.ts:2400 msgid "Checking note attachments" msgstr "Checking note attachments" -#: src/strings.ts:2274 +#: src/strings.ts:2275 msgid "Checklist" msgstr "Checklist" -#: src/strings.ts:2328 +#: src/strings.ts:2329 msgid "Choose a block to insert" msgstr "Choose a block to insert" -#: src/strings.ts:1796 +#: src/strings.ts:1797 msgid "Choose a recovery method" msgstr "Choose a recovery method" -#: src/strings.ts:2101 +#: src/strings.ts:2102 msgid "Choose backup format" msgstr "Choose backup format" -#: src/strings.ts:2364 +#: src/strings.ts:2365 msgid "Choose custom color" msgstr "Choose custom color" -#: src/strings.ts:1117 +#: src/strings.ts:1118 msgid "Choose from pre-built themes or create your own" msgstr "Choose from pre-built themes or create your own" -#: src/strings.ts:1132 +#: src/strings.ts:1133 msgid "Choose how dates are displayed in the app" msgstr "Choose how dates are displayed in the app" -#: src/strings.ts:2610 +#: src/strings.ts:2620 msgid "Choose how day is displayed in the app" msgstr "Choose how day is displayed in the app" -#: src/strings.ts:1157 +#: src/strings.ts:1158 msgid "Choose how the new note titles are formatted" msgstr "Choose how the new note titles are formatted" -#: src/strings.ts:1134 +#: src/strings.ts:1135 msgid "Choose how time is displayed in the app" msgstr "Choose how time is displayed in the app" @@ -1502,63 +1502,63 @@ msgstr "Choose how time is displayed in the app" msgid "Choose how you want to secure your notes locally." msgstr "Choose how you want to secure your notes locally." -#: src/strings.ts:1227 +#: src/strings.ts:1228 msgid "Choose where to save your backups" msgstr "Choose where to save your backups" -#: src/strings.ts:2061 +#: src/strings.ts:2062 msgid "Choose your style" msgstr "Choose your style" -#: src/strings.ts:1616 +#: src/strings.ts:1617 msgid "cleaningUp" msgstr "cleaningUp" -#: src/strings.ts:1013 +#: src/strings.ts:1014 msgid "Clear" msgstr "Clear" -#: src/strings.ts:1869 +#: src/strings.ts:1870 msgid "Clear all cached attachments. Current cache size: {cacheSize}" msgstr "Clear all cached attachments. Current cache size: {cacheSize}" -#: src/strings.ts:2268 +#: src/strings.ts:2269 msgid "Clear all formatting" msgstr "Clear all formatting" -#: src/strings.ts:1870 +#: src/strings.ts:1871 msgid "Clear attachments cache?" msgstr "Clear attachments cache?" -#: src/strings.ts:1867 +#: src/strings.ts:1868 msgid "Clear cache" msgstr "Clear cache" -#: src/strings.ts:2362 +#: src/strings.ts:2363 msgid "Clear completed tasks" msgstr "Clear completed tasks" -#: src/strings.ts:1804 +#: src/strings.ts:1805 msgid "Clear data & reset account" msgstr "Clear data & reset account" -#: src/strings.ts:1138 +#: src/strings.ts:1139 msgid "Clear default notebook" msgstr "Clear default notebook" -#: src/strings.ts:1012 +#: src/strings.ts:1013 msgid "Clear logs" msgstr "Clear logs" -#: src/strings.ts:2195 +#: src/strings.ts:2196 msgid "clear sessions" msgstr "clear sessions" -#: src/strings.ts:1321 +#: src/strings.ts:1322 msgid "Clear trash" msgstr "Clear trash" -#: src/strings.ts:1135 +#: src/strings.ts:1136 msgid "Clear trash interval" msgstr "Clear trash interval" @@ -1566,7 +1566,7 @@ msgstr "Clear trash interval" msgid "Clear vault" msgstr "Clear vault" -#: src/strings.ts:1872 +#: src/strings.ts:1873 msgid "" "Clearing attachments cache will perform the following actions:\n" "\n" @@ -1592,7 +1592,7 @@ msgstr "" "\n" "**Only use this for troubleshooting purposes. If you are having persistent issues, it is recommended that you reach out to us via support@streetwriters.co so we can help you resolve it permanently.**" -#: src/strings.ts:2606 +#: src/strings.ts:2607 msgid "Click here to directly claim the promotion." msgstr "Click here to directly claim the promotion." @@ -1600,75 +1600,75 @@ msgstr "Click here to directly claim the promotion." msgid "Click to deselect" msgstr "Click to deselect" -#: src/strings.ts:1866 +#: src/strings.ts:1867 msgid "Click to preview" msgstr "Click to preview" -#: src/strings.ts:1771 +#: src/strings.ts:1772 msgid "Click to remove" msgstr "Click to remove" -#: src/strings.ts:2391 +#: src/strings.ts:2392 msgid "Click to reset {title}" msgstr "Click to reset {title}" -#: src/strings.ts:2614 +#: src/strings.ts:2615 msgid "Click to save" msgstr "Click to save" -#: src/strings.ts:2610 +#: src/strings.ts:2611 msgid "Click to update" msgstr "Click to update" -#: src/strings.ts:1380 +#: src/strings.ts:1381 msgid "Close" msgstr "Close" -#: src/strings.ts:2018 +#: src/strings.ts:2019 msgid "Close all" msgstr "Close all" -#: src/strings.ts:2449 +#: src/strings.ts:2450 msgid "Close all tabs" msgstr "Close all tabs" -#: src/strings.ts:2448 +#: src/strings.ts:2449 msgid "Close current tab" msgstr "Close current tab" -#: src/strings.ts:2015 +#: src/strings.ts:2016 msgid "Close others" msgstr "Close others" -#: src/strings.ts:2119 +#: src/strings.ts:2120 msgid "Close to system tray" msgstr "Close to system tray" -#: src/strings.ts:2017 +#: src/strings.ts:2018 msgid "Close to the left" msgstr "Close to the left" -#: src/strings.ts:2016 +#: src/strings.ts:2017 msgid "Close to the right" msgstr "Close to the right" -#: src/strings.ts:2527 +#: src/strings.ts:2528 msgid "cloud storage space for storing images and files." msgstr "cloud storage space for storing images and files." -#: src/strings.ts:2266 +#: src/strings.ts:2267 msgid "Code" msgstr "Code" -#: src/strings.ts:2330 +#: src/strings.ts:2331 msgid "Code block" msgstr "Code block" -#: src/strings.ts:2267 +#: src/strings.ts:2268 msgid "Code remove" msgstr "Code remove" -#: src/strings.ts:430 +#: src/strings.ts:431 msgid "COLLAPSED" msgstr "COLLAPSED" @@ -1677,19 +1677,19 @@ msgid "color" msgstr "color" #: src/strings.ts:299 -#: src/strings.ts:1843 +#: src/strings.ts:1844 msgid "Color" msgstr "Color" -#: src/strings.ts:786 +#: src/strings.ts:787 msgid "Color #{color} already exists" msgstr "Color #{color} already exists" -#: src/strings.ts:2094 +#: src/strings.ts:2095 msgid "Color scheme" msgstr "Color scheme" -#: src/strings.ts:1488 +#: src/strings.ts:1489 msgid "Color title" msgstr "Color title" @@ -1701,19 +1701,19 @@ msgstr "colors" msgid "Colors" msgstr "Colors" -#: src/strings.ts:2284 +#: src/strings.ts:2285 msgid "Column properties" msgstr "Column properties" -#: src/strings.ts:2440 +#: src/strings.ts:2441 msgid "Command palette" msgstr "Command palette" -#: src/strings.ts:1270 +#: src/strings.ts:1271 msgid "Community" msgstr "Community" -#: src/strings.ts:2547 +#: src/strings.ts:2548 msgid "Compare plans" msgstr "Compare plans" @@ -1725,7 +1725,7 @@ msgstr "Completed" msgid "Compress" msgstr "Compress" -#: src/strings.ts:1128 +#: src/strings.ts:1129 msgid "Compress images before uploading" msgstr "Compress images before uploading" @@ -1733,128 +1733,128 @@ msgstr "Compress images before uploading" msgid "Compressed images are uploaded in Full HD resolution and usually are good enough for most use cases." msgstr "Compressed images are uploaded in Full HD resolution and usually are good enough for most use cases." -#: src/strings.ts:2250 +#: src/strings.ts:2251 msgid "Configure" msgstr "Configure" -#: src/strings.ts:2405 +#: src/strings.ts:2406 msgid "Configure server URLs for Notesnook" msgstr "Configure server URLs for Notesnook" -#: src/strings.ts:681 +#: src/strings.ts:682 msgid "Confirm email" msgstr "Confirm email" -#: src/strings.ts:902 +#: src/strings.ts:903 msgid "Confirm email to publish note" msgstr "Confirm email to publish note" -#: src/strings.ts:1487 +#: src/strings.ts:1488 msgid "Confirm new password" msgstr "Confirm new password" -#: src/strings.ts:1482 +#: src/strings.ts:1483 msgid "Confirm password" msgstr "Confirm password" -#: src/strings.ts:1486 +#: src/strings.ts:1487 msgid "Confirm pin" msgstr "Confirm pin" -#: src/strings.ts:2079 +#: src/strings.ts:2080 msgid "Congratulations!" msgstr "Congratulations!" -#: src/strings.ts:1635 +#: src/strings.ts:1636 msgid "Connected to all servers sucessfully." msgstr "Connected to all servers sucessfully." -#: src/strings.ts:1670 +#: src/strings.ts:1671 msgid "Contact support" msgstr "Contact support" -#: src/strings.ts:1261 +#: src/strings.ts:1262 msgid "Contact us directly via support@streetwriters.co for any help or support" msgstr "Contact us directly via support@streetwriters.co for any help or support" -#: src/strings.ts:542 +#: src/strings.ts:543 msgid "Continue" msgstr "Continue" -#: src/strings.ts:1163 +#: src/strings.ts:1164 msgid "Contribute towards a better Notesnook. All tracking information is anonymous." msgstr "Contribute towards a better Notesnook. All tracking information is anonymous." -#: src/strings.ts:1247 +#: src/strings.ts:1248 msgid "Controls whether this device should receive reminder notifications." msgstr "Controls whether this device should receive reminder notifications." -#: src/strings.ts:1989 +#: src/strings.ts:1990 msgid "Copied" msgstr "Copied" -#: src/strings.ts:674 +#: src/strings.ts:675 msgid "Copy" msgstr "Copy" #. placeholder {0}: format ? " " + format : "" -#: src/strings.ts:2035 +#: src/strings.ts:2036 msgid "Copy as{0}" msgstr "Copy as{0}" -#: src/strings.ts:678 +#: src/strings.ts:679 msgid "Copy codes" msgstr "Copy codes" -#: src/strings.ts:2246 +#: src/strings.ts:2247 msgid "Copy image" msgstr "Copy image" -#: src/strings.ts:909 +#: src/strings.ts:910 msgid "Copy link" msgstr "Copy link" -#: src/strings.ts:2245 +#: src/strings.ts:2246 msgid "Copy link text" msgstr "Copy link text" -#: src/strings.ts:453 +#: src/strings.ts:454 msgid "Copy note" msgstr "Copy note" -#: src/strings.ts:590 +#: src/strings.ts:591 msgid "Copy to clipboard" msgstr "Copy to clipboard" -#: src/strings.ts:1618 +#: src/strings.ts:1619 msgid "Copying backup files to cache" msgstr "Copying backup files to cache" -#: src/strings.ts:1167 +#: src/strings.ts:1168 msgid "CORS bypass" msgstr "CORS bypass" -#: src/strings.ts:1985 +#: src/strings.ts:1986 msgid "Could not activate trial. Please try again later." msgstr "Could not activate trial. Please try again later." -#: src/strings.ts:2003 +#: src/strings.ts:2004 msgid "Could not clear trash." msgstr "Could not clear trash." -#: src/strings.ts:1638 +#: src/strings.ts:1639 msgid "Could not connect to {server}." msgstr "Could not connect to {server}." -#: src/strings.ts:1950 +#: src/strings.ts:1951 msgid "Could not convert note to {format}." msgstr "Could not convert note to {format}." -#: src/strings.ts:768 +#: src/strings.ts:769 msgid "Could not create backup" msgstr "Could not create backup" -#: src/strings.ts:558 +#: src/strings.ts:559 msgid "Could not unlock" msgstr "Could not unlock" @@ -1862,250 +1862,250 @@ msgstr "Could not unlock" msgid "Create" msgstr "Create" -#: src/strings.ts:729 +#: src/strings.ts:730 msgid "Create a group" msgstr "Create a group" -#: src/strings.ts:937 +#: src/strings.ts:938 msgid "Create a new note" msgstr "Create a new note" -#: src/strings.ts:950 +#: src/strings.ts:951 msgid "Create a note first" msgstr "Create a note first" -#: src/strings.ts:669 +#: src/strings.ts:670 msgid "Create a shortcut" msgstr "Create a shortcut" -#: src/strings.ts:1848 +#: src/strings.ts:1849 msgid "Create account" msgstr "Create account" -#: src/strings.ts:580 +#: src/strings.ts:581 msgid "Create link" msgstr "Create link" -#: src/strings.ts:1472 +#: src/strings.ts:1473 msgid "Create shortcut of this notebook in side menu" msgstr "Create shortcut of this notebook in side menu" -#: src/strings.ts:1386 +#: src/strings.ts:1387 msgid "Create unlimited notebooks with Notesnook Pro" msgstr "Create unlimited notebooks with Notesnook Pro" -#: src/strings.ts:1385 +#: src/strings.ts:1386 msgid "Create unlimited tags with Notesnook Pro" msgstr "Create unlimited tags with Notesnook Pro" -#: src/strings.ts:1387 +#: src/strings.ts:1388 msgid "Create unlimited vaults with Notesnook Pro" msgstr "Create unlimited vaults with Notesnook Pro" -#: src/strings.ts:446 +#: src/strings.ts:447 msgid "Create vault" msgstr "Create vault" -#: src/strings.ts:521 +#: src/strings.ts:522 msgid "Create your account" msgstr "Create your account" -#: src/strings.ts:2228 +#: src/strings.ts:2229 msgid "Created at" msgstr "Created at" #. placeholder {0}: type === "full" ? " full" : "" -#: src/strings.ts:1343 +#: src/strings.ts:1344 msgid "Creating a{0} backup" msgstr "Creating a{0} backup" -#: src/strings.ts:2048 +#: src/strings.ts:2049 msgid "Credentials" msgstr "Credentials" -#: src/strings.ts:2064 +#: src/strings.ts:2065 msgid "Cross platform & 100% encrypted" msgstr "Cross platform & 100% encrypted" -#: src/strings.ts:740 +#: src/strings.ts:741 msgid "Curate the toolbar that fits your needs and matches your personality." msgstr "Curate the toolbar that fits your needs and matches your personality." -#: src/strings.ts:1835 +#: src/strings.ts:1836 msgid "Current note" msgstr "Current note" -#: src/strings.ts:1484 +#: src/strings.ts:1485 msgid "Current password" msgstr "Current password" -#: src/strings.ts:1228 +#: src/strings.ts:1229 msgid "Current path: {path}" msgstr "Current path: {path}" -#: src/strings.ts:1483 +#: src/strings.ts:1484 msgid "Current pin" msgstr "Current pin" -#: src/strings.ts:1772 +#: src/strings.ts:1773 msgid "CURRENT PLAN" msgstr "CURRENT PLAN" -#: src/strings.ts:2009 +#: src/strings.ts:2010 msgid "Custom" msgstr "Custom" -#: src/strings.ts:2130 +#: src/strings.ts:2131 msgid "Custom dictionary words" msgstr "Custom dictionary words" -#: src/strings.ts:1112 +#: src/strings.ts:1113 msgid "Customization" msgstr "Customization" -#: src/strings.ts:1115 +#: src/strings.ts:1116 msgid "Customize the appearance of the app with custom themes" msgstr "Customize the appearance of the app with custom themes" -#: src/strings.ts:1142 +#: src/strings.ts:1143 msgid "Customize the note editor" msgstr "Customize the note editor" -#: src/strings.ts:1144 +#: src/strings.ts:1145 msgid "Customize the toolbar in the note editor" msgstr "Customize the toolbar in the note editor" -#: src/strings.ts:1143 +#: src/strings.ts:1144 msgid "Customize toolbar" msgstr "Customize toolbar" -#: src/strings.ts:2244 +#: src/strings.ts:2245 msgid "Cut" msgstr "Cut" #: src/strings.ts:167 -#: src/strings.ts:1567 +#: src/strings.ts:1568 msgid "Daily" msgstr "Daily" -#: src/strings.ts:723 +#: src/strings.ts:724 msgid "Dark" msgstr "Dark" -#: src/strings.ts:1121 +#: src/strings.ts:1122 msgid "Dark mode" msgstr "Dark mode" -#: src/strings.ts:2095 +#: src/strings.ts:2096 msgid "Dark or light, we won't judge." msgstr "Dark or light, we won't judge." -#: src/strings.ts:1546 +#: src/strings.ts:1547 msgid "Database setup failed, could not get database key" msgstr "Database setup failed, could not get database key" -#: src/strings.ts:1838 +#: src/strings.ts:1839 msgid "Date" msgstr "Date" -#: src/strings.ts:2104 +#: src/strings.ts:2105 msgid "Date & time" msgstr "Date & time" -#: src/strings.ts:652 +#: src/strings.ts:653 msgid "Date created" msgstr "Date created" -#: src/strings.ts:655 +#: src/strings.ts:656 msgid "Date deleted" msgstr "Date deleted" -#: src/strings.ts:651 +#: src/strings.ts:652 msgid "Date edited" msgstr "Date edited" -#: src/strings.ts:1131 +#: src/strings.ts:1132 msgid "Date format" msgstr "Date format" -#: src/strings.ts:650 +#: src/strings.ts:651 msgid "Date modified" msgstr "Date modified" -#: src/strings.ts:2041 +#: src/strings.ts:2042 msgid "Date uploaded" msgstr "Date uploaded" -#: src/strings.ts:1840 +#: src/strings.ts:1841 msgid "Day" msgstr "Day" -#: src/strings.ts:2609 +#: src/strings.ts:2619 msgid "Day format" msgstr "Day format" -#: src/strings.ts:2037 +#: src/strings.ts:2038 msgid "Deactivate" msgstr "Deactivate" -#: src/strings.ts:1010 +#: src/strings.ts:1011 msgid "Debug log copied!" msgstr "Debug log copied!" -#: src/strings.ts:1268 +#: src/strings.ts:1269 msgid "Debug logs" msgstr "Debug logs" -#: src/strings.ts:1011 +#: src/strings.ts:1012 msgid "Debug logs downloaded" msgstr "Debug logs downloaded" -#: src/strings.ts:1265 +#: src/strings.ts:1266 msgid "Debugging" msgstr "Debugging" -#: src/strings.ts:2393 +#: src/strings.ts:2394 msgid "Decrease {title}" msgstr "Decrease {title}" -#: src/strings.ts:659 -#: src/strings.ts:2007 +#: src/strings.ts:660 +#: src/strings.ts:2008 msgid "Default" msgstr "Default" -#: src/strings.ts:1154 +#: src/strings.ts:1155 msgid "Default font family" msgstr "Default font family" -#: src/strings.ts:1155 +#: src/strings.ts:1156 msgid "Default font family in editor" msgstr "Default font family in editor" -#: src/strings.ts:1152 +#: src/strings.ts:1153 msgid "Default font size" msgstr "Default font size" -#: src/strings.ts:1153 +#: src/strings.ts:1154 msgid "Default font size in editor" msgstr "Default font size in editor" -#: src/strings.ts:1140 +#: src/strings.ts:1141 msgid "Default notebook cleared" msgstr "Default notebook cleared" -#: src/strings.ts:1126 +#: src/strings.ts:1127 msgid "Default screen to open on app launch" msgstr "Default screen to open on app launch" -#: src/strings.ts:2480 +#: src/strings.ts:2481 msgid "Default sidebar tab" msgstr "Default sidebar tab" -#: src/strings.ts:1248 +#: src/strings.ts:1249 msgid "Default snooze time" msgstr "Default snooze time" -#: src/strings.ts:1300 +#: src/strings.ts:1301 msgid "Default sound" msgstr "Default sound" @@ -2113,39 +2113,39 @@ msgstr "Default sound" msgid "Delete" msgstr "Delete" -#: src/strings.ts:1075 +#: src/strings.ts:1076 msgid "Delete account" msgstr "Delete account" -#: src/strings.ts:1318 +#: src/strings.ts:1319 msgid "Delete collapsed section" msgstr "Delete collapsed section" -#: src/strings.ts:2291 +#: src/strings.ts:2292 msgid "Delete column" msgstr "Delete column" -#: src/strings.ts:1313 +#: src/strings.ts:1314 msgid "Delete group" msgstr "Delete group" -#: src/strings.ts:2365 +#: src/strings.ts:2366 msgid "Delete mode" msgstr "Delete mode" -#: src/strings.ts:561 +#: src/strings.ts:562 msgid "Delete notes in this vault" msgstr "Delete notes in this vault" -#: src/strings.ts:568 +#: src/strings.ts:569 msgid "Delete permanently" msgstr "Delete permanently" -#: src/strings.ts:2298 +#: src/strings.ts:2299 msgid "Delete row" msgstr "Delete row" -#: src/strings.ts:2299 +#: src/strings.ts:2300 msgid "Delete table" msgstr "Delete table" @@ -2153,7 +2153,7 @@ msgstr "Delete table" msgid "Delete vault" msgstr "Delete vault" -#: src/strings.ts:1175 +#: src/strings.ts:1176 msgid "Delete vault (and optionally remove all notes)." msgstr "Delete vault (and optionally remove all notes)." @@ -2161,43 +2161,43 @@ msgstr "Delete vault (and optionally remove all notes)." msgid "Deleted on {date}" msgstr "Deleted on {date}" -#: src/strings.ts:1927 +#: src/strings.ts:1928 msgid "Deleting" msgstr "Deleting" -#: src/strings.ts:1837 +#: src/strings.ts:1838 msgid "Description" msgstr "Description" -#: src/strings.ts:2105 +#: src/strings.ts:2106 msgid "Desktop app" msgstr "Desktop app" -#: src/strings.ts:2109 +#: src/strings.ts:2110 msgid "Desktop integration" msgstr "Desktop integration" -#: src/strings.ts:870 +#: src/strings.ts:871 msgid "Did you save recovery key?" msgstr "Did you save recovery key?" -#: src/strings.ts:1375 +#: src/strings.ts:1376 msgid "Disable" msgstr "Disable" -#: src/strings.ts:1083 +#: src/strings.ts:1084 msgid "Disable auto sync" msgstr "Disable auto sync" -#: src/strings.ts:2010 +#: src/strings.ts:2011 msgid "Disable editor margins" msgstr "Disable editor margins" -#: src/strings.ts:1086 +#: src/strings.ts:1087 msgid "Disable realtime sync" msgstr "Disable realtime sync" -#: src/strings.ts:1089 +#: src/strings.ts:1090 msgid "Disable sync" msgstr "Disable sync" @@ -2205,15 +2205,15 @@ msgstr "Disable sync" msgid "Disabled" msgstr "Disabled" -#: src/strings.ts:564 +#: src/strings.ts:565 msgid "Discard" msgstr "Discard" -#: src/strings.ts:1596 +#: src/strings.ts:1597 msgid "Dismiss" msgstr "Dismiss" -#: src/strings.ts:1649 +#: src/strings.ts:1650 msgid "Dismiss announcement" msgstr "Dismiss announcement" @@ -2225,27 +2225,27 @@ msgstr "Disputed" msgid "Do you enjoy using Notesnook?" msgstr "Do you enjoy using Notesnook?" -#: src/strings.ts:2227 +#: src/strings.ts:2228 msgid "Do you want to clear the trash?" msgstr "Do you want to clear the trash?" -#: src/strings.ts:1262 +#: src/strings.ts:1263 msgid "Documentation" msgstr "Documentation" -#: src/strings.ts:756 +#: src/strings.ts:757 msgid "Documents" msgstr "Documents" -#: src/strings.ts:983 +#: src/strings.ts:984 msgid "Don't have access to your authenticator app?" msgstr "Don't have access to your authenticator app?" -#: src/strings.ts:990 +#: src/strings.ts:991 msgid "Don't have access to your email address?" msgstr "Don't have access to your email address?" -#: src/strings.ts:999 +#: src/strings.ts:1000 msgid "Don't have access to your phone number?" msgstr "Don't have access to your phone number?" @@ -2253,23 +2253,23 @@ msgstr "Don't have access to your phone number?" msgid "Don't have an account?" msgstr "Don't have an account?" -#: src/strings.ts:1831 +#: src/strings.ts:1832 msgid "Don't have backup file?" msgstr "Don't have backup file?" -#: src/strings.ts:1830 +#: src/strings.ts:1831 msgid "Don't have your account recovery key?" msgstr "Don't have your account recovery key?" -#: src/strings.ts:1002 +#: src/strings.ts:1003 msgid "Don't have your recovery codes?" msgstr "Don't have your recovery codes?" -#: src/strings.ts:1809 +#: src/strings.ts:1810 msgid "Don't show again" msgstr "Don't show again" -#: src/strings.ts:1810 +#: src/strings.ts:1811 msgid "Don't show again on this device?" msgstr "Don't show again on this device?" @@ -2277,60 +2277,60 @@ msgstr "Don't show again on this device?" msgid "Done" msgstr "Done" -#: src/strings.ts:1148 +#: src/strings.ts:1149 msgid "Double spaced lines" msgstr "Double spaced lines" -#: src/strings.ts:508 +#: src/strings.ts:509 msgid "Download" msgstr "Download" -#: src/strings.ts:1815 +#: src/strings.ts:1816 msgid "Download all attachments" msgstr "Download all attachments" -#: src/strings.ts:2314 +#: src/strings.ts:2315 msgid "Download attachment" msgstr "Download attachment" -#: src/strings.ts:1859 +#: src/strings.ts:1860 msgid "Download backup file" msgstr "Download backup file" -#: src/strings.ts:515 +#: src/strings.ts:516 msgid "Download cancelled" msgstr "Download cancelled" -#: src/strings.ts:2207 +#: src/strings.ts:2208 msgid "Download everything including attachments on sync" msgstr "Download everything including attachments on sync" -#: src/strings.ts:1289 +#: src/strings.ts:1290 msgid "Download on desktop" msgstr "Download on desktop" -#: src/strings.ts:805 +#: src/strings.ts:806 msgid "Download started... Please wait" msgstr "Download started... Please wait" -#: src/strings.ts:513 +#: src/strings.ts:514 msgid "Download successful" msgstr "Download successful" -#: src/strings.ts:666 +#: src/strings.ts:667 msgid "Download update" msgstr "Download update" -#: src/strings.ts:507 +#: src/strings.ts:508 msgid "Downloaded" msgstr "Downloaded" #: src/strings.ts:64 -#: src/strings.ts:506 +#: src/strings.ts:507 msgid "Downloading" msgstr "Downloading" -#: src/strings.ts:506 +#: src/strings.ts:507 msgid "Downloading ({progress})" msgstr "Downloading ({progress})" @@ -2338,117 +2338,117 @@ msgstr "Downloading ({progress})" msgid "Downloading attachments" msgstr "Downloading attachments" -#: src/strings.ts:1703 +#: src/strings.ts:1704 msgid "Downloading images" msgstr "Downloading images" -#: src/strings.ts:1769 +#: src/strings.ts:1770 msgid "Drag & drop files here, or click to select files" msgstr "Drag & drop files here, or click to select files" -#: src/strings.ts:1768 +#: src/strings.ts:1769 msgid "Drop the files here" msgstr "Drop the files here" -#: src/strings.ts:1662 +#: src/strings.ts:1663 msgid "Drop your files here to attach" msgstr "Drop your files here to attach" -#: src/strings.ts:2557 +#: src/strings.ts:2558 msgid "Due {date}" msgstr "Due {date}" -#: src/strings.ts:654 +#: src/strings.ts:655 msgid "Due date" msgstr "Due date" -#: src/strings.ts:2555 +#: src/strings.ts:2556 msgid "Due today" msgstr "Due today" -#: src/strings.ts:923 +#: src/strings.ts:924 msgid "Duplicate" msgstr "Duplicate" -#: src/strings.ts:643 +#: src/strings.ts:644 msgid "Earliest first" msgstr "Earliest first" -#: src/strings.ts:2417 +#: src/strings.ts:2418 msgid "Easy access" msgstr "Easy access" -#: src/strings.ts:1776 +#: src/strings.ts:1777 msgid "Edit" msgstr "Edit" -#: src/strings.ts:526 +#: src/strings.ts:527 msgid "Edit internal link" msgstr "Edit internal link" -#: src/strings.ts:2233 -#: src/strings.ts:2261 +#: src/strings.ts:2234 +#: src/strings.ts:2262 msgid "Edit link" msgstr "Edit link" -#: src/strings.ts:2473 +#: src/strings.ts:2474 msgid "Edit profile" msgstr "Edit profile" -#: src/strings.ts:1306 +#: src/strings.ts:1307 msgid "Edit profile picture" msgstr "Edit profile picture" -#: src/strings.ts:1818 +#: src/strings.ts:1819 msgid "Edit your full name" msgstr "Edit your full name" -#: src/strings.ts:1141 -#: src/strings.ts:1525 +#: src/strings.ts:1142 +#: src/strings.ts:1526 msgid "Editor" msgstr "Editor" -#: src/strings.ts:2581 +#: src/strings.ts:2582 msgid "Education plan" msgstr "Education plan" -#: src/strings.ts:1480 +#: src/strings.ts:1481 msgid "Email" msgstr "Email" -#: src/strings.ts:2430 +#: src/strings.ts:2431 msgid "Email copied" msgstr "Email copied" -#: src/strings.ts:771 +#: src/strings.ts:772 msgid "Email is required" msgstr "Email is required" -#: src/strings.ts:763 +#: src/strings.ts:764 msgid "Email not confirmed" msgstr "Email not confirmed" -#: src/strings.ts:1552 +#: src/strings.ts:1553 msgid "Email or password incorrect" msgstr "Email or password incorrect" -#: src/strings.ts:1259 +#: src/strings.ts:1260 msgid "Email support" msgstr "Email support" -#: src/strings.ts:856 +#: src/strings.ts:857 msgid "Email updated to {email}" msgstr "Email updated to {email}" -#: src/strings.ts:2340 +#: src/strings.ts:2341 msgid "Embed" msgstr "Embed" -#: src/strings.ts:2320 +#: src/strings.ts:2321 msgid "Embed properties" msgstr "Embed properties" -#: src/strings.ts:2316 +#: src/strings.ts:2317 msgid "Embed settings" msgstr "Embed settings" @@ -2456,35 +2456,35 @@ msgstr "Embed settings" msgid "Enable" msgstr "Enable" -#: src/strings.ts:1130 +#: src/strings.ts:1131 msgid "Enable (Recommended)" msgstr "Enable (Recommended)" -#: src/strings.ts:1184 +#: src/strings.ts:1185 msgid "Enable app lock" msgstr "Enable app lock" -#: src/strings.ts:2011 +#: src/strings.ts:2012 msgid "Enable editor margins" msgstr "Enable editor margins" -#: src/strings.ts:2464 +#: src/strings.ts:2465 msgid "Enable ligatures for common symbols like →, ←, etc" msgstr "Enable ligatures for common symbols like →, ←, etc" -#: src/strings.ts:2380 +#: src/strings.ts:2381 msgid "Enable regex" msgstr "Enable regex" -#: src/strings.ts:2126 +#: src/strings.ts:2127 msgid "Enable spell checker" msgstr "Enable spell checker" -#: src/strings.ts:495 +#: src/strings.ts:496 msgid "Enable two-factor authentication to add an extra layer of security to your account." msgstr "Enable two-factor authentication to add an extra layer of security to your account." -#: src/strings.ts:1233 +#: src/strings.ts:1234 msgid "Encrypt your backups for added security" msgstr "Encrypt your backups for added security" @@ -2492,23 +2492,23 @@ msgstr "Encrypt your backups for added security" msgid "Encrypted and synced" msgstr "Encrypted and synced" -#: src/strings.ts:2240 +#: src/strings.ts:2241 msgid "Encrypted backup" msgstr "Encrypted backup" -#: src/strings.ts:1656 +#: src/strings.ts:1657 msgid "Encrypted, private, secure." msgstr "Encrypted, private, secure." -#: src/strings.ts:939 +#: src/strings.ts:940 msgid "Encrypting attachment" msgstr "Encrypting attachment" -#: src/strings.ts:1842 +#: src/strings.ts:1843 msgid "Encryption key" msgstr "Encryption key" -#: src/strings.ts:819 +#: src/strings.ts:820 msgid "End to end encrypted." msgstr "End to end encrypted." @@ -2516,23 +2516,23 @@ msgstr "End to end encrypted." msgid "Enter 6 digit code" msgstr "Enter 6 digit code" -#: src/strings.ts:1078 +#: src/strings.ts:1079 msgid "Enter account password" msgstr "Enter account password" -#: src/strings.ts:1079 +#: src/strings.ts:1080 msgid "Enter account password to proceed." msgstr "Enter account password to proceed." -#: src/strings.ts:1851 +#: src/strings.ts:1852 msgid "Enter account recovery key" msgstr "Enter account recovery key" -#: src/strings.ts:1018 +#: src/strings.ts:1019 msgid "Enter app lock password" msgstr "Enter app lock password" -#: src/strings.ts:1021 +#: src/strings.ts:1022 msgid "Enter app lock pin" msgstr "Enter app lock pin" @@ -2540,39 +2540,39 @@ msgstr "Enter app lock pin" msgid "Enter code from authenticator app" msgstr "Enter code from authenticator app" -#: src/strings.ts:1510 +#: src/strings.ts:1511 msgid "Enter email address" msgstr "Enter email address" -#: src/strings.ts:2368 +#: src/strings.ts:2369 msgid "Enter embed source URL" msgstr "Enter embed source URL" -#: src/strings.ts:1312 +#: src/strings.ts:1313 msgid "Enter full name" msgstr "Enter full name" -#: src/strings.ts:1700 +#: src/strings.ts:1701 msgid "Enter fullscreen" msgstr "Enter fullscreen" -#: src/strings.ts:1489 +#: src/strings.ts:1490 msgid "Enter notebook description" msgstr "Enter notebook description" -#: src/strings.ts:855 +#: src/strings.ts:856 msgid "Enter notebook title" msgstr "Enter notebook title" -#: src/strings.ts:790 +#: src/strings.ts:791 msgid "Enter password" msgstr "Enter password" -#: src/strings.ts:2087 +#: src/strings.ts:2088 msgid "Enter pin or password to enable app lock." msgstr "Enter pin or password to enable app lock." -#: src/strings.ts:1003 +#: src/strings.ts:1004 msgid "Enter recovery code" msgstr "Enter recovery code" @@ -2588,7 +2588,7 @@ msgstr "Enter the 6 digit code sent to your email to continue logging in" msgid "Enter the 6 digit code sent to your phone number to continue logging in" msgstr "Enter the 6 digit code sent to your phone number to continue logging in" -#: src/strings.ts:2432 +#: src/strings.ts:2433 msgid "Enter the gift code to redeem your subscription." msgstr "Enter the gift code to redeem your subscription." @@ -2596,35 +2596,35 @@ msgstr "Enter the gift code to redeem your subscription." msgid "Enter the recovery code to continue logging in" msgstr "Enter the recovery code to continue logging in" -#: src/strings.ts:2617 +#: src/strings.ts:2618 msgid "Enter title" msgstr "Enter title" -#: src/strings.ts:1492 +#: src/strings.ts:1493 msgid "Enter verification code sent to your new email" msgstr "Enter verification code sent to your new email" -#: src/strings.ts:1491 +#: src/strings.ts:1492 msgid "Enter your new email" msgstr "Enter your new email" -#: src/strings.ts:2088 +#: src/strings.ts:2089 msgid "Enter your username" msgstr "Enter your username" -#: src/strings.ts:2424 +#: src/strings.ts:2425 msgid "Error" msgstr "Error" -#: src/strings.ts:1553 +#: src/strings.ts:1554 msgid "Error applying promo code" msgstr "Error applying promo code" -#: src/strings.ts:746 +#: src/strings.ts:747 msgid "Error downloading file: {message}" msgstr "Error downloading file: {message}" -#: src/strings.ts:1513 +#: src/strings.ts:1514 msgid "Error getting codes" msgstr "Error getting codes" @@ -2632,92 +2632,92 @@ msgstr "Error getting codes" msgid "Error loading themes" msgstr "Error loading themes" -#: src/strings.ts:1074 +#: src/strings.ts:1075 msgid "Error logging out" msgstr "Error logging out" -#: src/strings.ts:1008 +#: src/strings.ts:1009 msgid "Error sending 2FA code" msgstr "Error sending 2FA code" -#: src/strings.ts:758 +#: src/strings.ts:759 msgid "Errors" msgstr "Errors" -#: src/strings.ts:1695 +#: src/strings.ts:1696 msgid "Errors in {count} attachments" msgstr "Errors in {count} attachments" -#: src/strings.ts:2469 +#: src/strings.ts:2470 msgid "Essential plan" msgstr "Essential plan" -#: src/strings.ts:1627 +#: src/strings.ts:1628 msgid "Events server" msgstr "Events server" -#: src/strings.ts:2410 +#: src/strings.ts:2411 msgid "Every Notebook can have notes and sub notebooks." msgstr "Every Notebook can have notes and sub notebooks." -#: src/strings.ts:2412 +#: src/strings.ts:2413 msgid "Everything related to my job in one place." msgstr "Everything related to my job in one place." -#: src/strings.ts:2421 +#: src/strings.ts:2422 msgid "Everything related to my school in one place." msgstr "Everything related to my school in one place." -#: src/strings.ts:2438 +#: src/strings.ts:2439 msgid "Execute" msgstr "Execute" -#: src/strings.ts:2437 +#: src/strings.ts:2438 msgid "Execute a command..." msgstr "Execute a command..." -#: src/strings.ts:2012 +#: src/strings.ts:2013 msgid "Exit fullscreen" msgstr "Exit fullscreen" -#: src/strings.ts:2372 +#: src/strings.ts:2373 msgid "Expand" msgstr "Expand" -#: src/strings.ts:2465 +#: src/strings.ts:2466 msgid "Expand sidebar" msgstr "Expand sidebar" -#: src/strings.ts:2071 +#: src/strings.ts:2072 msgid "Experience the next level of private note taking\"" msgstr "Experience the next level of private note taking\"" -#: src/strings.ts:2538 +#: src/strings.ts:2539 msgid "Explore all plans" msgstr "Explore all plans" -#: src/strings.ts:468 +#: src/strings.ts:469 msgid "Export" msgstr "Export" -#: src/strings.ts:577 +#: src/strings.ts:578 msgid "Export again" msgstr "Export again" -#: src/strings.ts:1236 +#: src/strings.ts:1237 msgid "Export all notes" msgstr "Export all notes" -#: src/strings.ts:1238 +#: src/strings.ts:1239 msgid "Export all notes as pdf, markdown, html or text in a single zip file" msgstr "Export all notes as pdf, markdown, html or text in a single zip file" #. placeholder {0}: format ? " " + format : "" -#: src/strings.ts:2034 +#: src/strings.ts:2035 msgid "Export as{0}" msgstr "Export as{0}" -#: src/strings.ts:1384 +#: src/strings.ts:1385 msgid "Export notes as PDF, Markdown and HTML with Notesnook Pro" msgstr "Export notes as PDF, Markdown and HTML with Notesnook Pro" @@ -2725,228 +2725,228 @@ msgstr "Export notes as PDF, Markdown and HTML with Notesnook Pro" msgid "Exporting \"{title}\"" msgstr "Exporting \"{title}\"" -#: src/strings.ts:1617 +#: src/strings.ts:1618 msgid "Extracting files..." msgstr "Extracting files..." -#: src/strings.ts:1806 +#: src/strings.ts:1807 msgid "EXTREMELY DANGEROUS! This action is irreversible. All your data including notes, notebooks, attachments & settings will be deleted. This is a full account reset. Proceed with caution." msgstr "EXTREMELY DANGEROUS! This action is irreversible. All your data including notes, notebooks, attachments & settings will be deleted. This is a full account reset. Proceed with caution." -#: src/strings.ts:1258 +#: src/strings.ts:1259 msgid "Faced an issue or have a suggestion? Click here to create a bug report" msgstr "Faced an issue or have a suggestion? Click here to create a bug report" -#: src/strings.ts:2402 +#: src/strings.ts:2403 msgid "Failed" msgstr "Failed" -#: src/strings.ts:1935 +#: src/strings.ts:1936 msgid "Failed to copy note" msgstr "Failed to copy note" -#: src/strings.ts:1559 +#: src/strings.ts:1560 msgid "Failed to decrypt backup" msgstr "Failed to decrypt backup" -#: src/strings.ts:2001 +#: src/strings.ts:2002 msgid "Failed to delete" msgstr "Failed to delete" -#: src/strings.ts:1080 +#: src/strings.ts:1081 msgid "Failed to delete account" msgstr "Failed to delete account" -#: src/strings.ts:791 +#: src/strings.ts:792 msgid "Failed to download file" msgstr "Failed to download file" -#: src/strings.ts:1997 +#: src/strings.ts:1998 msgid "Failed to install theme." msgstr "Failed to install theme." -#: src/strings.ts:947 +#: src/strings.ts:948 msgid "Failed to open" msgstr "Failed to open" -#: src/strings.ts:866 +#: src/strings.ts:867 msgid "Failed to publish note" msgstr "Failed to publish note" -#: src/strings.ts:2002 +#: src/strings.ts:2003 msgid "Failed to register task" msgstr "Failed to register task" -#: src/strings.ts:803 +#: src/strings.ts:804 msgid "Failed to resolve download url" msgstr "Failed to resolve download url" -#: src/strings.ts:772 +#: src/strings.ts:773 msgid "Failed to send recovery email" msgstr "Failed to send recovery email" -#: src/strings.ts:1400 +#: src/strings.ts:1401 msgid "Failed to send verification email" msgstr "Failed to send verification email" -#: src/strings.ts:936 +#: src/strings.ts:937 msgid "Failed to subscribe" msgstr "Failed to subscribe" -#: src/strings.ts:2202 +#: src/strings.ts:2203 msgid "Failed to take backup" msgstr "Failed to take backup" -#: src/strings.ts:2204 +#: src/strings.ts:2205 msgid "Failed to take backup of your data. Do you want to continue logging out?" msgstr "Failed to take backup of your data. Do you want to continue logging out?" -#: src/strings.ts:867 +#: src/strings.ts:868 msgid "Failed to unpublish note" msgstr "Failed to unpublish note" -#: src/strings.ts:797 +#: src/strings.ts:798 msgid "Failed to zip files" msgstr "Failed to zip files" -#: src/strings.ts:499 +#: src/strings.ts:500 msgid "Fallback method for 2FA enabled" msgstr "Fallback method for 2FA enabled" -#: src/strings.ts:2548 +#: src/strings.ts:2549 msgid "FAQs" msgstr "FAQs" -#: src/strings.ts:2031 +#: src/strings.ts:2032 msgid "Favorite" msgstr "Favorite" #: src/strings.ts:321 -#: src/strings.ts:1520 +#: src/strings.ts:1521 msgid "Favorites" msgstr "Favorites" -#: src/strings.ts:2546 +#: src/strings.ts:2547 msgid "Featured on" msgstr "Featured on" -#: src/strings.ts:2414 +#: src/strings.ts:2415 msgid "February 2022 Week 2" msgstr "February 2022 Week 2" -#: src/strings.ts:2415 +#: src/strings.ts:2416 msgid "February 2022 Week 3" msgstr "February 2022 Week 3" -#: src/strings.ts:731 +#: src/strings.ts:732 msgid "File check failed: {reason} Try reuploading the file to fix the issue." msgstr "File check failed: {reason} Try reuploading the file to fix the issue." -#: src/strings.ts:749 +#: src/strings.ts:750 msgid "File check passed" msgstr "File check passed" -#: src/strings.ts:800 +#: src/strings.ts:801 msgid "File length is 0. Please upload this file again from the attachment manager." msgstr "File length is 0. Please upload this file again from the attachment manager." -#: src/strings.ts:802 +#: src/strings.ts:803 msgid "File length mismatch. Expected {expectedSize} but got {currentSize} bytes. Please upload this file again from the attachment manager." msgstr "File length mismatch. Expected {expectedSize} but got {currentSize} bytes. Please upload this file again from the attachment manager." -#: src/strings.ts:948 +#: src/strings.ts:949 msgid "File mismatch" msgstr "File mismatch" -#: src/strings.ts:944 +#: src/strings.ts:945 msgid "File size should be less than {sizeInMB}" msgstr "File size should be less than {sizeInMB}" -#: src/strings.ts:942 +#: src/strings.ts:943 msgid "File too big" msgstr "File too big" -#: src/strings.ts:1477 +#: src/strings.ts:1478 msgid "Filter attachments by filename, type or hash" msgstr "Filter attachments by filename, type or hash" -#: src/strings.ts:1832 +#: src/strings.ts:1833 msgid "Filter languages" msgstr "Filter languages" -#: src/strings.ts:2603 +#: src/strings.ts:2604 msgid "Finish your purchase in the browser." msgstr "Finish your purchase in the browser." -#: src/strings.ts:1668 +#: src/strings.ts:1669 msgid "Fix it" msgstr "Fix it" -#: src/strings.ts:2014 +#: src/strings.ts:2015 msgid "Focus mode" msgstr "Focus mode" -#: src/strings.ts:2162 +#: src/strings.ts:2163 msgid "Follow" msgstr "Follow" -#: src/strings.ts:1274 +#: src/strings.ts:1275 msgid "Follow us on Mastodon" msgstr "Follow us on Mastodon" -#: src/strings.ts:1276 +#: src/strings.ts:1277 msgid "Follow us on Mastodon for updates and news about Notesnook" msgstr "Follow us on Mastodon for updates and news about Notesnook" -#: src/strings.ts:1277 +#: src/strings.ts:1278 msgid "Follow us on X" msgstr "Follow us on X" -#: src/strings.ts:1278 +#: src/strings.ts:1279 msgid "Follow us on X for updates and news about Notesnook" msgstr "Follow us on X for updates and news about Notesnook" -#: src/strings.ts:2275 +#: src/strings.ts:2276 msgid "Font family" msgstr "Font family" -#: src/strings.ts:2462 +#: src/strings.ts:2463 msgid "Font ligatures" msgstr "Font ligatures" -#: src/strings.ts:2276 +#: src/strings.ts:2277 msgid "Font size" msgstr "Font size" -#: src/strings.ts:2520 +#: src/strings.ts:2521 msgid "For a monthly subscription, you can get a refund within 7 days of purchase. For a yearly subscription, we offer a full refund within 14 days of purchase. For a 5 year subscription, you can request a refund within 30 days of purchase." msgstr "For a monthly subscription, you can get a refund within 7 days of purchase. For a yearly subscription, we offer a full refund within 14 days of purchase. For a 5 year subscription, you can request a refund within 30 days of purchase." -#: src/strings.ts:1685 +#: src/strings.ts:1686 msgid "For a more integrated user experience, try out Notesnook for {platform}" msgstr "For a more integrated user experience, try out Notesnook for {platform}" -#: src/strings.ts:1766 +#: src/strings.ts:1767 msgid "for help regarding how to use the Notesnook Importer." msgstr "for help regarding how to use the Notesnook Importer." -#: src/strings.ts:2529 +#: src/strings.ts:2530 msgid "for locking your notes as soon as app enters background" msgstr "for locking your notes as soon as app enters background" -#: src/strings.ts:2194 +#: src/strings.ts:2195 msgid "Force logout from all your other logged in devices." msgstr "Force logout from all your other logged in devices." -#: src/strings.ts:1095 +#: src/strings.ts:1096 msgid "Force pull changes" msgstr "Force pull changes" -#: src/strings.ts:1104 +#: src/strings.ts:1105 msgid "Force push changes" msgstr "Force push changes" -#: src/strings.ts:2211 +#: src/strings.ts:2212 msgid "" "Force push:\n" "Use this if changes made on this device are not appearing on other devices. This will overwrite the data on the server with the data from this device.\n" @@ -2964,91 +2964,91 @@ msgstr "" "\n" "**These must only be used for troubleshooting. Using them regularly for sync is not recommended and will lead to unexpected data loss and other issues. If you are having persistent issues with sync, please report them to us at support@streetwriters.co.**" -#: src/strings.ts:552 +#: src/strings.ts:553 msgid "Forgot password?" msgstr "Forgot password?" -#: src/strings.ts:2563 +#: src/strings.ts:2564 msgid "Free {duration} day trial, cancel any time" msgstr "Free {duration} day trial, cancel any time" -#: src/strings.ts:2467 +#: src/strings.ts:2468 msgid "Free plan" msgstr "Free plan" -#: src/strings.ts:626 +#: src/strings.ts:627 msgid "Fri" msgstr "Fri" -#: src/strings.ts:617 +#: src/strings.ts:618 msgid "Friday" msgstr "Friday" -#: src/strings.ts:2370 +#: src/strings.ts:2371 msgid "From code" msgstr "From code" -#: src/strings.ts:2367 +#: src/strings.ts:2368 msgid "From URL" msgstr "From URL" -#: src/strings.ts:1998 +#: src/strings.ts:1999 msgid "Full name updated" msgstr "Full name updated" -#: src/strings.ts:2205 +#: src/strings.ts:2206 msgid "Full offline mode" msgstr "Full offline mode" -#: src/strings.ts:2322 +#: src/strings.ts:2323 msgid "Full screen" msgstr "Full screen" -#: src/strings.ts:2091 +#: src/strings.ts:2092 msgid "General" msgstr "General" -#: src/strings.ts:1267 +#: src/strings.ts:1268 msgid "Get helpful debug info about the app to help us find bugs." msgstr "Get helpful debug info about the app to help us find bugs." -#: src/strings.ts:1291 +#: src/strings.ts:1292 msgid "Get Notesnook app on your desktop and access all notes" msgstr "Get Notesnook app on your desktop and access all notes" -#: src/strings.ts:2156 +#: src/strings.ts:2157 msgid "Get Notesnook app on your iPhone and access all your notes on the go." msgstr "Get Notesnook app on your iPhone and access all your notes on the go." -#: src/strings.ts:2158 +#: src/strings.ts:2159 msgid "Get Notesnook app on your iPhone or Android device and access all your notes on the go." msgstr "Get Notesnook app on your iPhone or Android device and access all your notes on the go." -#: src/strings.ts:1381 +#: src/strings.ts:1382 msgid "Get Notesnook Pro" msgstr "Get Notesnook Pro" -#: src/strings.ts:1366 +#: src/strings.ts:1367 msgid "Get Notesnook Pro to enable automatic backups" msgstr "Get Notesnook Pro to enable automatic backups" -#: src/strings.ts:2406 +#: src/strings.ts:2407 msgid "Get Priority support" msgstr "Get Priority support" -#: src/strings.ts:687 +#: src/strings.ts:688 msgid "Get Pro" msgstr "Get Pro" -#: src/strings.ts:562 +#: src/strings.ts:563 msgid "Get started" msgstr "Get started" -#: src/strings.ts:2526 +#: src/strings.ts:2527 msgid "Get this and so much more:" msgstr "Get this and so much more:" -#: src/strings.ts:1884 +#: src/strings.ts:1885 msgid "Getting encryption key..." msgstr "Getting encryption key..." @@ -3060,99 +3060,99 @@ msgstr "Getting information" msgid "Getting recovery codes" msgstr "Getting recovery codes" -#: src/strings.ts:2161 +#: src/strings.ts:2162 msgid "GNU GENERAL PUBLIC LICENSE Version 3" msgstr "GNU GENERAL PUBLIC LICENSE Version 3" -#: src/strings.ts:2604 +#: src/strings.ts:2605 msgid "Go back" msgstr "Go back" -#: src/strings.ts:2445 +#: src/strings.ts:2446 msgid "Go back in tab" msgstr "Go back in tab" -#: src/strings.ts:2224 +#: src/strings.ts:2225 msgid "Go back to notebooks" msgstr "Go back to notebooks" -#: src/strings.ts:2225 +#: src/strings.ts:2226 msgid "Go back to tags" msgstr "Go back to tags" -#: src/strings.ts:2444 +#: src/strings.ts:2445 msgid "Go forward in tab" msgstr "Go forward in tab" -#: src/strings.ts:1812 +#: src/strings.ts:1813 msgid "Go to" msgstr "Go to" -#: src/strings.ts:1813 +#: src/strings.ts:1814 msgid "Go to #{tag}" msgstr "Go to #{tag}" -#: src/strings.ts:1696 +#: src/strings.ts:1697 msgid "Go to next page" msgstr "Go to next page" -#: src/strings.ts:1697 +#: src/strings.ts:1698 msgid "Go to previous page" msgstr "Go to previous page" -#: src/strings.ts:1303 +#: src/strings.ts:1304 msgid "Go to web app" msgstr "Go to web app" -#: src/strings.ts:2537 +#: src/strings.ts:2538 msgid "Google will remind you 2 days before your trial ends." msgstr "Google will remind you 2 days before your trial ends." -#: src/strings.ts:2564 +#: src/strings.ts:2565 msgid "Google will remind you before your trial ends" msgstr "Google will remind you before your trial ends" -#: src/strings.ts:585 +#: src/strings.ts:586 msgid "Got it" msgstr "Got it" -#: src/strings.ts:428 +#: src/strings.ts:429 msgid "GROUP" msgstr "GROUP" -#: src/strings.ts:1886 +#: src/strings.ts:1887 msgid "Group added successfully" msgstr "Group added successfully" -#: src/strings.ts:536 +#: src/strings.ts:537 msgid "Group by" msgstr "Group by" -#: src/strings.ts:751 +#: src/strings.ts:752 msgid "Hash copied" msgstr "Hash copied" -#: src/strings.ts:2208 +#: src/strings.ts:2209 msgid "Having problems with sync?" msgstr "Having problems with sync?" -#: src/strings.ts:2552 +#: src/strings.ts:2553 msgid "hdImages" msgstr "hdImages" -#: src/strings.ts:2348 +#: src/strings.ts:2349 msgid "Heading {level}" msgstr "Heading {level}" -#: src/strings.ts:2277 +#: src/strings.ts:2278 msgid "Headings" msgstr "Headings" -#: src/strings.ts:2383 +#: src/strings.ts:2384 msgid "Height" msgstr "Height" -#: src/strings.ts:1255 +#: src/strings.ts:1256 msgid "Help and support" msgstr "Help and support" @@ -3160,55 +3160,55 @@ msgstr "Help and support" msgid "Help improve Notesnook by sending completely anonymized" msgstr "Help improve Notesnook by sending completely anonymized" -#: src/strings.ts:1374 +#: src/strings.ts:1375 msgid "Hide" msgstr "Hide" -#: src/strings.ts:1181 +#: src/strings.ts:1182 msgid "Hide app contents when you switch to other apps. This will also disable screenshot taking in the app." msgstr "Hide app contents when you switch to other apps. This will also disable screenshot taking in the app." -#: src/strings.ts:2167 +#: src/strings.ts:2168 msgid "Hide note title" msgstr "Hide note title" -#: src/strings.ts:2280 +#: src/strings.ts:2281 msgid "Highlight" msgstr "Highlight" -#: src/strings.ts:908 +#: src/strings.ts:909 msgid "History" msgstr "History" -#: src/strings.ts:1526 +#: src/strings.ts:1527 msgid "Home" msgstr "Home" -#: src/strings.ts:1125 +#: src/strings.ts:1126 msgid "Homepage" msgstr "Homepage" -#: src/strings.ts:1316 +#: src/strings.ts:1317 msgid "Homepage changed to {name}" msgstr "Homepage changed to {name}" -#: src/strings.ts:2329 +#: src/strings.ts:2330 msgid "Horizontal rule" msgstr "Horizontal rule" -#: src/strings.ts:1797 +#: src/strings.ts:1798 msgid "How do you want to recover your account?" msgstr "How do you want to recover your account?" -#: src/strings.ts:1667 +#: src/strings.ts:1668 msgid "How to fix it?" msgstr "How to fix it?" -#: src/strings.ts:879 +#: src/strings.ts:880 msgid "hr" msgstr "hr" -#: src/strings.ts:2497 +#: src/strings.ts:2498 msgid "I already have an account" msgstr "I already have an account" @@ -3232,19 +3232,19 @@ msgstr "I don't have recovery codes" msgid "I have a recovery code" msgstr "I have a recovery code" -#: src/strings.ts:1885 +#: src/strings.ts:1886 msgid "I have saved my key" msgstr "I have saved my key" -#: src/strings.ts:2423 +#: src/strings.ts:2424 msgid "I love cooking and collecting recipes." msgstr "I love cooking and collecting recipes." -#: src/strings.ts:2209 +#: src/strings.ts:2210 msgid "I understand" msgstr "I understand" -#: src/strings.ts:550 +#: src/strings.ts:551 msgid "I understand, change my password" msgstr "I understand, change my password" @@ -3256,19 +3256,19 @@ msgstr "If the editor fails to load even after reloading. Try restarting the app msgid "If this continues to happen, please reach out to us via" msgstr "If this continues to happen, please reach out to us via" -#: src/strings.ts:2112 +#: src/strings.ts:2113 msgid "If true, Notesnook will automatically start up when you turn on & login to your system." msgstr "If true, Notesnook will automatically start up when you turn on & login to your system." -#: src/strings.ts:2115 +#: src/strings.ts:2116 msgid "If true, Notesnook will start minimized to either the system tray or your system taskbar/dock. This setting only works with Auto start on system startup is enabled." msgstr "If true, Notesnook will start minimized to either the system tray or your system taskbar/dock. This setting only works with Auto start on system startup is enabled." -#: src/strings.ts:1723 +#: src/strings.ts:1724 msgid "If you can't scan the QR code above, enter this text instead (spaces don't matter)" msgstr "If you can't scan the QR code above, enter this text instead (spaces don't matter)" -#: src/strings.ts:1393 +#: src/strings.ts:1394 msgid "" "If you didn't get an email from us or the confirmation link isn't\n" " working," @@ -3276,11 +3276,11 @@ msgstr "" "If you didn't get an email from us or the confirmation link isn't\n" " working," -#: src/strings.ts:1803 +#: src/strings.ts:1804 msgid "If you don't have a recovery key, you can recover your data by restoring a Notesnook data backup file (.nnbackup)." msgstr "If you don't have a recovery key, you can recover your data by restoring a Notesnook data backup file (.nnbackup)." -#: src/strings.ts:2076 +#: src/strings.ts:2077 msgid "If you face any issue, you can reach out to us anytime." msgstr "If you face any issue, you can reach out to us anytime." @@ -3288,27 +3288,27 @@ msgstr "If you face any issue, you can reach out to us anytime." msgid "If you want to ask something in general or need some assistance, we would suggest that you" msgstr "If you want to ask something in general or need some assistance, we would suggest that you" -#: src/strings.ts:2334 +#: src/strings.ts:2335 msgid "Image" msgstr "Image" -#: src/strings.ts:1127 +#: src/strings.ts:1128 msgid "Image Compression" msgstr "Image Compression" -#: src/strings.ts:2310 +#: src/strings.ts:2311 msgid "Image properties" msgstr "Image properties" -#: src/strings.ts:2306 +#: src/strings.ts:2307 msgid "Image settings" msgstr "Image settings" -#: src/strings.ts:946 +#: src/strings.ts:947 msgid "Image size should be less than {sizeInMB}" msgstr "Image size should be less than {sizeInMB}" -#: src/strings.ts:754 +#: src/strings.ts:755 msgid "Images" msgstr "Images" @@ -3316,19 +3316,19 @@ msgstr "Images" msgid "Images uploaded without compression are slow to load and take more bandwidth. We recommend compressing images unless you need image in original quality." msgstr "Images uploaded without compression are slow to load and take more bandwidth. We recommend compressing images unless you need image in original quality." -#: src/strings.ts:1581 +#: src/strings.ts:1582 msgid "Immediately" msgstr "Immediately" -#: src/strings.ts:2139 +#: src/strings.ts:2140 msgid "Import & export" msgstr "Import & export" -#: src/strings.ts:1750 +#: src/strings.ts:1751 msgid "Import completed" msgstr "Import completed" -#: src/strings.ts:1765 +#: src/strings.ts:1766 msgid "import guide" msgstr "import guide" @@ -3336,79 +3336,79 @@ msgstr "import guide" msgid "Incoming" msgstr "Incoming" -#: src/strings.ts:1836 +#: src/strings.ts:1837 msgid "Incoming note" msgstr "Incoming note" -#: src/strings.ts:783 +#: src/strings.ts:784 msgid "Incorrect {type}" msgstr "Incorrect {type}" -#: src/strings.ts:2392 +#: src/strings.ts:2393 msgid "Increase {title}" msgstr "Increase {title}" -#: src/strings.ts:2234 +#: src/strings.ts:2235 msgid "Insert" msgstr "Insert" -#: src/strings.ts:2389 +#: src/strings.ts:2390 msgid "Insert a {rows}x{columns} table" msgstr "Insert a {rows}x{columns} table" -#: src/strings.ts:2339 +#: src/strings.ts:2340 msgid "Insert a table" msgstr "Insert a table" -#: src/strings.ts:2341 +#: src/strings.ts:2342 msgid "Insert an embed" msgstr "Insert an embed" -#: src/strings.ts:2335 +#: src/strings.ts:2336 msgid "Insert an image" msgstr "Insert an image" -#: src/strings.ts:2287 +#: src/strings.ts:2288 msgid "Insert column left" msgstr "Insert column left" -#: src/strings.ts:2288 +#: src/strings.ts:2289 msgid "Insert column right" msgstr "Insert column right" -#: src/strings.ts:2232 +#: src/strings.ts:2233 msgid "Insert link" msgstr "Insert link" -#: src/strings.ts:2294 +#: src/strings.ts:2295 msgid "Insert row above" msgstr "Insert row above" -#: src/strings.ts:2295 +#: src/strings.ts:2296 msgid "Insert row below" msgstr "Insert row below" -#: src/strings.ts:1683 +#: src/strings.ts:1684 msgid "Install Notesnook" msgstr "Install Notesnook" -#: src/strings.ts:2147 +#: src/strings.ts:2148 msgid "Install update" msgstr "Install update" -#: src/strings.ts:1718 +#: src/strings.ts:1719 msgid "installs" msgstr "installs" -#: src/strings.ts:747 +#: src/strings.ts:748 msgid "Invalid {type}" msgstr "Invalid {type}" -#: src/strings.ts:1990 +#: src/strings.ts:1991 msgid "Invalid CORS proxy url" msgstr "Invalid CORS proxy url" -#: src/strings.ts:1481 +#: src/strings.ts:1482 msgid "Invalid email" msgstr "Invalid email" @@ -3416,12 +3416,12 @@ msgstr "Invalid email" msgid "Issue created" msgstr "Issue created" -#: src/strings.ts:989 -#: src/strings.ts:998 +#: src/strings.ts:990 +#: src/strings.ts:999 msgid "It may take a minute to receive your code." msgstr "It may take a minute to receive your code." -#: src/strings.ts:1589 +#: src/strings.ts:1590 msgid "It seems that your changes could not be saved. What to do next:" msgstr "It seems that your changes could not be saved. What to do next:" @@ -3429,7 +3429,7 @@ msgstr "It seems that your changes could not be saved. What to do next:" msgid "It took us a year to bring Notesnook to life. Share your experience and suggestions to help us improve it." msgstr "It took us a year to bring Notesnook to life. Share your experience and suggestions to help us improve it." -#: src/strings.ts:2256 +#: src/strings.ts:2257 msgid "Italic" msgstr "Italic" @@ -3442,7 +3442,7 @@ msgid "Item" msgstr "Item" #: src/strings.ts:311 -#: src/strings.ts:1702 +#: src/strings.ts:1703 msgid "items" msgstr "items" @@ -3450,7 +3450,7 @@ msgstr "items" msgid "Items" msgstr "Items" -#: src/strings.ts:2159 +#: src/strings.ts:2160 msgid "Join community" msgstr "Join community" @@ -3458,55 +3458,55 @@ msgstr "Join community" msgid "join our community on Discord." msgstr "join our community on Discord." -#: src/strings.ts:1279 +#: src/strings.ts:1280 msgid "Join our Discord server" msgstr "Join our Discord server" -#: src/strings.ts:1281 +#: src/strings.ts:1282 msgid "Join our Discord server to chat with other users and the team" msgstr "Join our Discord server to chat with other users and the team" -#: src/strings.ts:1271 +#: src/strings.ts:1272 msgid "Join our Telegram group" msgstr "Join our Telegram group" -#: src/strings.ts:1273 +#: src/strings.ts:1274 msgid "Join our Telegram group to chat with other users and the team" msgstr "Join our Telegram group to chat with other users and the team" -#: src/strings.ts:2067 +#: src/strings.ts:2068 msgid "Join the cause" msgstr "Join the cause" -#: src/strings.ts:2025 +#: src/strings.ts:2026 msgid "Jump to group" msgstr "Jump to group" -#: src/strings.ts:566 +#: src/strings.ts:567 msgid "Keep" msgstr "Keep" -#: src/strings.ts:2020 +#: src/strings.ts:2021 msgid "Keep open" msgstr "Keep open" -#: src/strings.ts:1358 +#: src/strings.ts:1359 msgid "Keep your data safe" msgstr "Keep your data safe" -#: src/strings.ts:2127 +#: src/strings.ts:2128 msgid "Languages" msgstr "Languages" -#: src/strings.ts:2229 +#: src/strings.ts:2230 msgid "Last edited at" msgstr "Last edited at" -#: src/strings.ts:589 +#: src/strings.ts:590 msgid "Later" msgstr "Later" -#: src/strings.ts:642 +#: src/strings.ts:643 msgid "Latest first" msgstr "Latest first" @@ -3514,11 +3514,11 @@ msgstr "Latest first" msgid "Learn how this works." msgstr "Learn how this works." -#: src/strings.ts:570 +#: src/strings.ts:571 msgid "Learn more" msgstr "Learn more" -#: src/strings.ts:976 +#: src/strings.ts:977 msgid "Learn more about Monographs" msgstr "Learn more about Monographs" @@ -3526,67 +3526,67 @@ msgstr "Learn more about Monographs" msgid "Learn more about Notesnook Monograph" msgstr "Learn more about Notesnook Monograph" -#: src/strings.ts:645 +#: src/strings.ts:646 msgid "Least relevant first" msgstr "Least relevant first" -#: src/strings.ts:1561 +#: src/strings.ts:1562 msgid "Legal" msgstr "Legal" -#: src/strings.ts:475 +#: src/strings.ts:476 msgid "Let us know if you have faced any issue/bug while using Notesnook. We will try to fix it as soon as possible." msgstr "Let us know if you have faced any issue/bug while using Notesnook. We will try to fix it as soon as possible." -#: src/strings.ts:2160 +#: src/strings.ts:2161 msgid "License" msgstr "License" -#: src/strings.ts:1719 +#: src/strings.ts:1720 msgid "Licensed under {license}" msgstr "Licensed under {license}" -#: src/strings.ts:2325 +#: src/strings.ts:2326 msgid "Lift list item" msgstr "Lift list item" -#: src/strings.ts:724 +#: src/strings.ts:725 msgid "Light" msgstr "Light" -#: src/strings.ts:2355 +#: src/strings.ts:2356 msgid "Line {line}, Column {column}" msgstr "Line {line}, Column {column}" -#: src/strings.ts:2615 +#: src/strings.ts:2616 msgid "Line height" msgstr "Line height" -#: src/strings.ts:1151 +#: src/strings.ts:1152 msgid "Line spacing changed" msgstr "Line spacing changed" -#: src/strings.ts:2260 +#: src/strings.ts:2261 msgid "Link" msgstr "Link" -#: src/strings.ts:910 +#: src/strings.ts:911 msgid "Link copied" msgstr "Link copied" -#: src/strings.ts:928 +#: src/strings.ts:929 msgid "Link notebooks" msgstr "Link notebooks" -#: src/strings.ts:2474 +#: src/strings.ts:2475 msgid "Link notes" msgstr "Link notes" -#: src/strings.ts:2265 +#: src/strings.ts:2266 msgid "Link settings" msgstr "Link settings" -#: src/strings.ts:2385 +#: src/strings.ts:2386 msgid "Link text" msgstr "Link text" @@ -3594,31 +3594,31 @@ msgstr "Link text" msgid "LINK TO A SECTION" msgstr "LINK TO A SECTION" -#: src/strings.ts:525 +#: src/strings.ts:526 msgid "Link to note" msgstr "Link to note" -#: src/strings.ts:850 +#: src/strings.ts:851 msgid "Link to notebook" msgstr "Link to notebook" -#: src/strings.ts:594 +#: src/strings.ts:595 msgid "Linked notes" msgstr "Linked notes" -#: src/strings.ts:1595 +#: src/strings.ts:1596 msgid "Linking to a specific block is not available for locked notes." msgstr "Linking to a specific block is not available for locked notes." -#: src/strings.ts:503 +#: src/strings.ts:504 msgid "List of" msgstr "List of" -#: src/strings.ts:726 +#: src/strings.ts:727 msgid "Load from file" msgstr "Load from file" -#: src/strings.ts:1694 +#: src/strings.ts:1695 msgid "Loading" msgstr "Loading" @@ -3627,11 +3627,11 @@ msgstr "Loading" msgid "Loading {0}, please wait..." msgstr "Loading {0}, please wait..." -#: src/strings.ts:1663 +#: src/strings.ts:1664 msgid "Loading editor. Please wait..." msgstr "Loading editor. Please wait..." -#: src/strings.ts:1063 +#: src/strings.ts:1064 msgid "Loading subscription details" msgstr "Loading subscription details" @@ -3639,35 +3639,35 @@ msgstr "Loading subscription details" msgid "Loading themes..." msgstr "Loading themes..." -#: src/strings.ts:1326 +#: src/strings.ts:1327 msgid "Loading trash" msgstr "Loading trash" -#: src/strings.ts:972 +#: src/strings.ts:973 msgid "Loading your archive" msgstr "Loading your archive" -#: src/strings.ts:966 +#: src/strings.ts:967 msgid "Loading your favorites" msgstr "Loading your favorites" -#: src/strings.ts:971 +#: src/strings.ts:972 msgid "Loading your monographs" msgstr "Loading your monographs" -#: src/strings.ts:969 +#: src/strings.ts:970 msgid "Loading your notebooks" msgstr "Loading your notebooks" -#: src/strings.ts:967 +#: src/strings.ts:968 msgid "Loading your notes" msgstr "Loading your notes" -#: src/strings.ts:970 +#: src/strings.ts:971 msgid "Loading your reminders" msgstr "Loading your reminders" -#: src/strings.ts:968 +#: src/strings.ts:969 msgid "Loading your tags" msgstr "Loading your tags" @@ -3675,23 +3675,23 @@ msgstr "Loading your tags" msgid "Lock" msgstr "Lock" -#: src/strings.ts:455 +#: src/strings.ts:456 msgid "Lock note" msgstr "Lock note" -#: src/strings.ts:1183 +#: src/strings.ts:1184 msgid "Lock the app with a password or pin" msgstr "Lock the app with a password or pin" -#: src/strings.ts:900 +#: src/strings.ts:901 msgid "Locked notes cannot be pinned" msgstr "Locked notes cannot be pinned" -#: src/strings.ts:903 +#: src/strings.ts:904 msgid "Locked notes cannot be published" msgstr "Locked notes cannot be published" -#: src/strings.ts:2192 +#: src/strings.ts:2193 msgid "Log out from all other devices" msgstr "Log out from all other devices" @@ -3699,7 +3699,7 @@ msgstr "Log out from all other devices" msgid "Logged in as {email}" msgstr "Logged in as {email}" -#: src/strings.ts:1073 +#: src/strings.ts:1074 msgid "Logging out will clear all data stored on THIS DEVICE. Make sure you have synced all your changes before logging out." msgstr "Logging out will clear all data stored on THIS DEVICE. Make sure you have synced all your changes before logging out." @@ -3707,7 +3707,7 @@ msgstr "Logging out will clear all data stored on THIS DEVICE. Make sure you hav msgid "Logging out. Please wait..." msgstr "Logging out. Please wait..." -#: src/strings.ts:1781 +#: src/strings.ts:1782 msgid "Logging you in" msgstr "Logging you in" @@ -3715,131 +3715,131 @@ msgstr "Logging you in" msgid "Login" msgstr "Login" -#: src/strings.ts:777 +#: src/strings.ts:778 msgid "Login failed" msgstr "Login failed" -#: src/strings.ts:901 +#: src/strings.ts:902 msgid "Login required" msgstr "Login required" -#: src/strings.ts:778 +#: src/strings.ts:779 msgid "Login successful" msgstr "Login successful" -#: src/strings.ts:1361 +#: src/strings.ts:1362 msgid "Login to encrypt and sync notes" msgstr "Login to encrypt and sync notes" -#: src/strings.ts:2608 +#: src/strings.ts:2609 msgid "Login to upload attachments. [Read more](https://help.notesnook.com/faqs/login-to-upload-attachments)" msgstr "Login to upload attachments. [Read more](https://help.notesnook.com/faqs/login-to-upload-attachments)" -#: src/strings.ts:541 +#: src/strings.ts:542 msgid "Login to your account" msgstr "Login to your account" -#: src/strings.ts:775 +#: src/strings.ts:776 msgid "Logout" msgstr "Logout" -#: src/strings.ts:581 +#: src/strings.ts:582 msgid "Logout and clear data" msgstr "Logout and clear data" -#: src/strings.ts:554 +#: src/strings.ts:555 msgid "Logout from this device" msgstr "Logout from this device" -#: src/strings.ts:1411 +#: src/strings.ts:1412 msgid "Long press on any item in list to enter multi-select mode." msgstr "Long press on any item in list to enter multi-select mode." -#: src/strings.ts:2360 +#: src/strings.ts:2361 msgid "Make task list readonly" msgstr "Make task list readonly" -#: src/strings.ts:1037 +#: src/strings.ts:1038 msgid "Manage account" msgstr "Manage account" -#: src/strings.ts:1050 +#: src/strings.ts:1051 msgid "Manage attachments" msgstr "Manage attachments" -#: src/strings.ts:684 +#: src/strings.ts:685 msgid "Manage subscription on desktop" msgstr "Manage subscription on desktop" -#: src/strings.ts:849 +#: src/strings.ts:850 msgid "Manage tags" msgstr "Manage tags" -#: src/strings.ts:1038 +#: src/strings.ts:1039 msgid "Manage your account related settings here" msgstr "Manage your account related settings here" -#: src/strings.ts:1051 +#: src/strings.ts:1052 msgid "Manage your attachments in one place" msgstr "Manage your attachments in one place" -#: src/strings.ts:1210 +#: src/strings.ts:1211 msgid "Manage your backups and restore data" msgstr "Manage your backups and restore data" -#: src/strings.ts:1244 +#: src/strings.ts:1245 msgid "Manage your reminders" msgstr "Manage your reminders" -#: src/strings.ts:1082 +#: src/strings.ts:1083 msgid "Manage your sync settings here" msgstr "Manage your sync settings here" -#: src/strings.ts:1439 +#: src/strings.ts:1440 msgid "Mark important notes by adding them to favorites." msgstr "Mark important notes by adding them to favorites." -#: src/strings.ts:1158 +#: src/strings.ts:1159 msgid "Markdown shortcuts" msgstr "Markdown shortcuts" -#: src/strings.ts:1164 +#: src/strings.ts:1165 msgid "Marketing emails" msgstr "Marketing emails" -#: src/strings.ts:2373 +#: src/strings.ts:2374 msgid "Match case" msgstr "Match case" -#: src/strings.ts:2374 +#: src/strings.ts:2375 msgid "Match whole word" msgstr "Match whole word" -#: src/strings.ts:2282 +#: src/strings.ts:2283 msgid "Math (inline)" msgstr "Math (inline)" -#: src/strings.ts:2332 +#: src/strings.ts:2333 msgid "Math & formulas" msgstr "Math & formulas" -#: src/strings.ts:2039 +#: src/strings.ts:2040 msgid "Maximize" msgstr "Maximize" -#: src/strings.ts:2069 +#: src/strings.ts:2070 msgid "Meet other privacy-minded people & talk to us directly about your concerns, issues and suggestions." msgstr "Meet other privacy-minded people & talk to us directly about your concerns, issues and suggestions." -#: src/strings.ts:2416 +#: src/strings.ts:2417 msgid "Meetings" msgstr "Meetings" -#: src/strings.ts:1778 +#: src/strings.ts:1779 msgid "Member since {date}" msgstr "Member since {date}" -#: src/strings.ts:2293 +#: src/strings.ts:2294 msgid "Merge cells" msgstr "Merge cells" @@ -3853,134 +3853,134 @@ msgstr "Migrating {0} {1}... please wait" msgid "Migration failed" msgstr "Migration failed" -#: src/strings.ts:878 +#: src/strings.ts:879 msgid "min" msgstr "min" -#: src/strings.ts:2008 +#: src/strings.ts:2009 msgid "Minimal" msgstr "Minimal" -#: src/strings.ts:2038 +#: src/strings.ts:2039 msgid "Minimize" msgstr "Minimize" -#: src/strings.ts:2116 +#: src/strings.ts:2117 msgid "Minimize to system tray" msgstr "Minimize to system tray" -#: src/strings.ts:688 +#: src/strings.ts:689 msgid "mo" msgstr "mo" -#: src/strings.ts:622 +#: src/strings.ts:623 msgid "Mon" msgstr "Mon" -#: src/strings.ts:613 +#: src/strings.ts:614 msgid "Monday" msgstr "Monday" -#: src/strings.ts:1630 +#: src/strings.ts:1631 msgid "Monograph server" msgstr "Monograph server" -#: src/strings.ts:869 +#: src/strings.ts:870 msgid "Monograph URL copied" msgstr "Monograph URL copied" #: src/strings.ts:322 -#: src/strings.ts:938 -#: src/strings.ts:1528 +#: src/strings.ts:939 +#: src/strings.ts:1529 msgid "Monographs" msgstr "Monographs" -#: src/strings.ts:1421 +#: src/strings.ts:1422 msgid "Monographs can be encrypted with a secret key and shared with anyone." msgstr "Monographs can be encrypted with a secret key and shared with anyone." -#: src/strings.ts:1416 +#: src/strings.ts:1417 msgid "Monographs enable you to share your notes in a secure and private way." msgstr "Monographs enable you to share your notes in a secure and private way." -#: src/strings.ts:1839 +#: src/strings.ts:1840 msgid "month" msgstr "month" -#: src/strings.ts:664 +#: src/strings.ts:665 msgid "Month" msgstr "Month" #: src/strings.ts:169 -#: src/strings.ts:1569 +#: src/strings.ts:1570 msgid "Monthly" msgstr "Monthly" -#: src/strings.ts:2312 +#: src/strings.ts:2313 msgid "More" msgstr "More" -#: src/strings.ts:644 +#: src/strings.ts:645 msgid "Most relevant first" msgstr "Most relevant first" -#: src/strings.ts:851 +#: src/strings.ts:852 msgid "Move" msgstr "Move" -#: src/strings.ts:2361 +#: src/strings.ts:2362 msgid "Move all checked tasks to bottom" msgstr "Move all checked tasks to bottom" -#: src/strings.ts:2289 +#: src/strings.ts:2290 msgid "Move column left" msgstr "Move column left" -#: src/strings.ts:2290 +#: src/strings.ts:2291 msgid "Move column right" msgstr "Move column right" -#: src/strings.ts:935 +#: src/strings.ts:936 msgid "Move notebook" msgstr "Move notebook" -#: src/strings.ts:897 +#: src/strings.ts:898 msgid "Move notes" msgstr "Move notes" -#: src/strings.ts:2297 +#: src/strings.ts:2298 msgid "Move row down" msgstr "Move row down" -#: src/strings.ts:2296 +#: src/strings.ts:2297 msgid "Move row up" msgstr "Move row up" -#: src/strings.ts:584 +#: src/strings.ts:585 msgid "Move selected notes" msgstr "Move selected notes" -#: src/strings.ts:583 +#: src/strings.ts:584 msgid "Move to top" msgstr "Move to top" -#: src/strings.ts:854 +#: src/strings.ts:855 msgid "Move to trash" msgstr "Move to trash" -#: src/strings.ts:1171 +#: src/strings.ts:1172 msgid "Multi-layer encryption to most important notes" msgstr "Multi-layer encryption to most important notes" -#: src/strings.ts:886 +#: src/strings.ts:887 msgid "Name" msgstr "Name" -#: src/strings.ts:1687 +#: src/strings.ts:1688 msgid "Native high-performance encryption" msgstr "Native high-performance encryption" -#: src/strings.ts:2441 +#: src/strings.ts:2442 msgid "Navigate" msgstr "Navigate" @@ -3988,31 +3988,31 @@ msgstr "Navigate" msgid "Never" msgstr "Never" -#: src/strings.ts:1341 +#: src/strings.ts:1342 msgid "Never ask again" msgstr "Never ask again" -#: src/strings.ts:1036 +#: src/strings.ts:1037 msgid "Never hesitate to choose privacy" msgstr "Never hesitate to choose privacy" -#: src/strings.ts:671 +#: src/strings.ts:672 msgid "Never show again" msgstr "Never show again" -#: src/strings.ts:641 +#: src/strings.ts:642 msgid "New - old" msgstr "New - old" -#: src/strings.ts:527 +#: src/strings.ts:528 msgid "New color" msgstr "New color" -#: src/strings.ts:1845 +#: src/strings.ts:1846 msgid "New Email" msgstr "New Email" -#: src/strings.ts:1150 +#: src/strings.ts:1151 msgid "New lines will be double spaced (old ones won't be affected)." msgstr "New lines will be double spaced (old ones won't be affected)." @@ -4020,63 +4020,63 @@ msgstr "New lines will be double spaced (old ones won't be affected)." msgid "New note" msgstr "New note" -#: src/strings.ts:524 +#: src/strings.ts:525 msgid "New notebook" msgstr "New notebook" -#: src/strings.ts:1479 +#: src/strings.ts:1480 msgid "New password" msgstr "New password" -#: src/strings.ts:1485 +#: src/strings.ts:1486 msgid "New pin" msgstr "New pin" -#: src/strings.ts:534 +#: src/strings.ts:535 msgid "New reminder" msgstr "New reminder" -#: src/strings.ts:575 +#: src/strings.ts:576 msgid "New tab" msgstr "New tab" -#: src/strings.ts:2447 +#: src/strings.ts:2448 msgid "New tag" msgstr "New tag" -#: src/strings.ts:1367 +#: src/strings.ts:1368 msgid "New update available" msgstr "New update available" -#: src/strings.ts:530 +#: src/strings.ts:531 msgid "New version" msgstr "New version" -#: src/strings.ts:2023 +#: src/strings.ts:2024 msgid "Newest - oldest" msgstr "Newest - oldest" -#: src/strings.ts:1139 +#: src/strings.ts:1140 msgid "Newly created notes will be uncategorized" msgstr "Newly created notes will be uncategorized" -#: src/strings.ts:551 +#: src/strings.ts:552 msgid "Next" msgstr "Next" -#: src/strings.ts:2377 +#: src/strings.ts:2378 msgid "Next match" msgstr "Next match" -#: src/strings.ts:2442 +#: src/strings.ts:2443 msgid "Next tab" msgstr "Next tab" -#: src/strings.ts:546 +#: src/strings.ts:547 msgid "No" msgstr "No" -#: src/strings.ts:858 +#: src/strings.ts:859 msgid "No application found to open {fileToOpen}" msgstr "No application found to open {fileToOpen}" @@ -4092,11 +4092,11 @@ msgstr "No backups found" msgid "No blocks linked" msgstr "No blocks linked" -#: src/strings.ts:785 +#: src/strings.ts:786 msgid "No color selected" msgstr "No color selected" -#: src/strings.ts:1230 +#: src/strings.ts:1231 msgid "No directory selected" msgstr "No directory selected" @@ -4104,15 +4104,15 @@ msgstr "No directory selected" msgid "No downloads in progress." msgstr "No downloads in progress." -#: src/strings.ts:1983 +#: src/strings.ts:1984 msgid "No encryption key found" msgstr "No encryption key found" -#: src/strings.ts:1664 +#: src/strings.ts:1665 msgid "No headings found" msgstr "No headings found" -#: src/strings.ts:595 +#: src/strings.ts:596 msgid "No linked notes" msgstr "No linked notes" @@ -4124,7 +4124,7 @@ msgstr "No links found" msgid "No note history available for this device." msgstr "No note history available for this device." -#: src/strings.ts:2491 +#: src/strings.ts:2492 msgid "No notebooks selected to move" msgstr "No notebooks selected to move" @@ -4132,7 +4132,7 @@ msgstr "No notebooks selected to move" msgid "No one can view this {type} except you." msgstr "No one can view this {type} except you." -#: src/strings.ts:2611 +#: src/strings.ts:2612 msgid "No password" msgstr "No password" @@ -4140,7 +4140,7 @@ msgstr "No password" msgid "No references found of this note" msgstr "No references found of this note" -#: src/strings.ts:1515 +#: src/strings.ts:1516 msgid "No results found" msgstr "No results found" @@ -4148,7 +4148,7 @@ msgstr "No results found" msgid "No results found for \"{query}\"" msgstr "No results found for \"{query}\"" -#: src/strings.ts:1515 +#: src/strings.ts:1516 msgid "No results found for {query}" msgstr "No results found for {query}" @@ -4160,11 +4160,11 @@ msgstr "No themes found" msgid "No updates available" msgstr "No updates available" -#: src/strings.ts:660 +#: src/strings.ts:661 msgid "None" msgstr "None" -#: src/strings.ts:2013 +#: src/strings.ts:2014 msgid "Normal mode" msgstr "Normal mode" @@ -4181,31 +4181,31 @@ msgstr "note" msgid "Note" msgstr "Note" -#: src/strings.ts:814 +#: src/strings.ts:815 msgid "Note copied to clipboard" msgstr "Note copied to clipboard" -#: src/strings.ts:1948 +#: src/strings.ts:1949 msgid "Note does not exist" msgstr "Note does not exist" -#: src/strings.ts:457 +#: src/strings.ts:458 msgid "Note history" msgstr "Note history" -#: src/strings.ts:809 +#: src/strings.ts:810 msgid "Note locked" msgstr "Note locked" -#: src/strings.ts:844 +#: src/strings.ts:845 msgid "Note restored from history" msgstr "Note restored from history" -#: src/strings.ts:1584 +#: src/strings.ts:1585 msgid "Note title" msgstr "Note title" -#: src/strings.ts:813 +#: src/strings.ts:814 msgid "Note unlocked" msgstr "Note unlocked" @@ -4213,7 +4213,7 @@ msgstr "Note unlocked" msgid "Note version history is local only." msgstr "Note version history is local only." -#: src/strings.ts:1223 +#: src/strings.ts:1224 msgid "NOTE: Creating a backup with attachments can take a while, and also fail completely. The app will try to resume/restart the backup in case of interruptions." msgstr "NOTE: Creating a backup with attachments can take a while, and also fail completely. The app will try to resume/restart the backup in case of interruptions." @@ -4222,11 +4222,11 @@ msgid "notebook" msgstr "notebook" #: src/strings.ts:296 -#: src/strings.ts:1519 +#: src/strings.ts:1520 msgid "Notebook" msgstr "Notebook" -#: src/strings.ts:2477 +#: src/strings.ts:2478 msgid "Notebook added" msgstr "Notebook added" @@ -4236,15 +4236,15 @@ msgstr "notebooks" #: src/strings.ts:258 #: src/strings.ts:316 -#: src/strings.ts:1518 +#: src/strings.ts:1519 msgid "Notebooks" msgstr "Notebooks" -#: src/strings.ts:1793 +#: src/strings.ts:1794 msgid "NOTEBOOKS" msgstr "NOTEBOOKS" -#: src/strings.ts:2239 +#: src/strings.ts:2240 msgid "Notebooks are the best way to organize your notes." msgstr "Notebooks are the best way to organize your notes." @@ -4253,7 +4253,7 @@ msgid "notes" msgstr "notes" #: src/strings.ts:315 -#: src/strings.ts:1517 +#: src/strings.ts:1518 msgid "Notes" msgstr "Notes" @@ -4261,35 +4261,35 @@ msgstr "Notes" msgid "Notes exported as {path} successfully" msgstr "Notes exported as {path} successfully" -#: src/strings.ts:1749 +#: src/strings.ts:1750 msgid "notes imported" msgstr "notes imported" -#: src/strings.ts:2541 +#: src/strings.ts:2542 msgid "Notesnook" msgstr "Notesnook" -#: src/strings.ts:2596 +#: src/strings.ts:2597 msgid "Notesnook Circle" msgstr "Notesnook Circle" -#: src/strings.ts:2598 +#: src/strings.ts:2599 msgid "Notesnook Circle brings together trusted partners who share our commitment to privacy, transparency, and user freedom." msgstr "Notesnook Circle brings together trusted partners who share our commitment to privacy, transparency, and user freedom." -#: src/strings.ts:2066 +#: src/strings.ts:2067 msgid "Notesnook encrypts everything offline before syncing to your other devices. This means that no one can read your notes except you. Not even us." msgstr "Notesnook encrypts everything offline before syncing to your other devices. This means that no one can read your notes except you. Not even us." -#: src/strings.ts:2141 +#: src/strings.ts:2142 msgid "Notesnook Importer" msgstr "Notesnook Importer" -#: src/strings.ts:1065 +#: src/strings.ts:1066 msgid "Notesnook Pro" msgstr "Notesnook Pro" -#: src/strings.ts:2173 +#: src/strings.ts:2174 msgid "" "Notesnook uses the following DNS providers:\n" "\n" @@ -4305,31 +4305,31 @@ msgstr "" "\n" "This can sometimes bypass local ISP blockages on Notesnook traffic. Disable this if you want the app to use system's DNS settings." -#: src/strings.ts:986 +#: src/strings.ts:987 msgid "Notesnook will send you a 2FA code on your email when prompted" msgstr "Notesnook will send you a 2FA code on your email when prompted" -#: src/strings.ts:993 +#: src/strings.ts:994 msgid "Notesnook will send you an SMS with a 2FA code when prompted" msgstr "Notesnook will send you an SMS with a 2FA code when prompted" -#: src/strings.ts:2136 +#: src/strings.ts:2137 msgid "Notifications" msgstr "Notifications" -#: src/strings.ts:1376 +#: src/strings.ts:1377 msgid "Notifications disabled" msgstr "Notifications disabled" -#: src/strings.ts:2273 +#: src/strings.ts:2274 msgid "Numbered list" msgstr "Numbered list" -#: src/strings.ts:1717 +#: src/strings.ts:1718 msgid "of" msgstr "of" -#: src/strings.ts:1601 +#: src/strings.ts:1602 msgid "Off" msgstr "Off" @@ -4337,35 +4337,35 @@ msgstr "Off" msgid "Offline" msgstr "Offline" -#: src/strings.ts:2226 +#: src/strings.ts:2227 msgid "Okay" msgstr "Okay" -#: src/strings.ts:640 +#: src/strings.ts:641 msgid "Old - new" msgstr "Old - new" -#: src/strings.ts:1478 +#: src/strings.ts:1479 msgid "Old password" msgstr "Old password" -#: src/strings.ts:1834 +#: src/strings.ts:1835 msgid "Older version" msgstr "Older version" -#: src/strings.ts:2022 +#: src/strings.ts:2023 msgid "Oldest - newest" msgstr "Oldest - newest" -#: src/strings.ts:735 +#: src/strings.ts:736 msgid "Once your password is changed, please make sure to save the new account recovery key" msgstr "Once your password is changed, please make sure to save the new account recovery key" -#: src/strings.ts:2559 +#: src/strings.ts:2560 msgid "One time purchase, no auto-renewal" msgstr "One time purchase, no auto-renewal" -#: src/strings.ts:1770 +#: src/strings.ts:1771 msgid "Only .zip files are supported." msgstr "Only .zip files are supported." @@ -4373,7 +4373,7 @@ msgstr "Only .zip files are supported." msgid "Open" msgstr "Open" -#: src/strings.ts:576 +#: src/strings.ts:577 msgid "Open file location" msgstr "Open file location" @@ -4381,51 +4381,51 @@ msgstr "Open file location" msgid "Open in browser" msgstr "Open in browser" -#: src/strings.ts:1305 +#: src/strings.ts:1306 msgid "Open in browser to manage subscription" msgstr "Open in browser to manage subscription" -#: src/strings.ts:2323 +#: src/strings.ts:2324 msgid "Open in new tab" msgstr "Open in new tab" -#: src/strings.ts:578 +#: src/strings.ts:579 msgid "Open issue" msgstr "Open issue" -#: src/strings.ts:2263 +#: src/strings.ts:2264 msgid "Open link" msgstr "Open link" -#: src/strings.ts:1862 +#: src/strings.ts:1863 msgid "Open note" msgstr "Open note" -#: src/strings.ts:1379 +#: src/strings.ts:1380 msgid "Open settings" msgstr "Open settings" -#: src/strings.ts:2324 +#: src/strings.ts:2325 msgid "Open source" msgstr "Open source" -#: src/strings.ts:1287 +#: src/strings.ts:1288 msgid "Open source libraries used in Notesnook" msgstr "Open source libraries used in Notesnook" -#: src/strings.ts:1286 +#: src/strings.ts:1287 msgid "Open source licenses" msgstr "Open source licenses" -#: src/strings.ts:818 +#: src/strings.ts:819 msgid "Open source." msgstr "Open source." -#: src/strings.ts:982 +#: src/strings.ts:983 msgid "Open the two-factor authentication (TOTP) app to view your authentication code." msgstr "Open the two-factor authentication (TOTP) app to view your authentication code." -#: src/strings.ts:1856 +#: src/strings.ts:1857 msgid "Optional" msgstr "Optional" @@ -4433,36 +4433,36 @@ msgstr "Optional" msgid "or email us at" msgstr "or email us at" -#: src/strings.ts:2021 +#: src/strings.ts:2022 msgid "Order by" msgstr "Order by" -#: src/strings.ts:2219 +#: src/strings.ts:2220 msgid "Order ID" msgstr "Order ID" -#: src/strings.ts:757 -#: src/strings.ts:761 +#: src/strings.ts:758 +#: src/strings.ts:762 msgid "Orphaned" msgstr "Orphaned" -#: src/strings.ts:2144 +#: src/strings.ts:2145 msgid "Other" msgstr "Other" -#: src/strings.ts:2344 +#: src/strings.ts:2345 msgid "Outline list" msgstr "Outline list" -#: src/strings.ts:2347 +#: src/strings.ts:2348 msgid "Paragraph" msgstr "Paragraph" -#: src/strings.ts:2490 +#: src/strings.ts:2491 msgid "Paragraphs" msgstr "Paragraphs" -#: src/strings.ts:2100 +#: src/strings.ts:2101 msgid "Partial backups contain all your data except attachments. They are created from data already available on your device and do not require an Internet connection." msgstr "Partial backups contain all your data except attachments. They are created from data already available on your device and do not require an Internet connection." @@ -4470,31 +4470,31 @@ msgstr "Partial backups contain all your data except attachments. They are creat msgid "Partially refunded" msgstr "Partially refunded" -#: src/strings.ts:2401 +#: src/strings.ts:2402 msgid "Passed" msgstr "Passed" -#: src/strings.ts:882 +#: src/strings.ts:883 msgid "Password" msgstr "Password" -#: src/strings.ts:770 +#: src/strings.ts:771 msgid "Password change failed" msgstr "Password change failed" -#: src/strings.ts:769 +#: src/strings.ts:770 msgid "Password changed successfully" msgstr "Password changed successfully" -#: src/strings.ts:807 +#: src/strings.ts:808 msgid "Password does not match" msgstr "Password does not match" -#: src/strings.ts:782 +#: src/strings.ts:783 msgid "Password incorrect" msgstr "Password incorrect" -#: src/strings.ts:806 +#: src/strings.ts:807 msgid "Password not entered" msgstr "Password not entered" @@ -4502,173 +4502,173 @@ msgstr "Password not entered" msgid "Password protection" msgstr "Password protection" -#: src/strings.ts:808 +#: src/strings.ts:809 msgid "Password updated" msgstr "Password updated" -#: src/strings.ts:2080 +#: src/strings.ts:2081 msgid "Password/pin" msgstr "Password/pin" -#: src/strings.ts:2247 +#: src/strings.ts:2248 msgid "Paste" msgstr "Paste" -#: src/strings.ts:2248 +#: src/strings.ts:2249 msgid "Paste and match style" msgstr "Paste and match style" -#: src/strings.ts:2369 +#: src/strings.ts:2370 msgid "Paste embed code here. Only iframes are supported." msgstr "Paste embed code here. Only iframes are supported." -#: src/strings.ts:2384 +#: src/strings.ts:2385 msgid "Paste image URL here" msgstr "Paste image URL here" -#: src/strings.ts:2249 +#: src/strings.ts:2250 msgid "Paste without formatting" msgstr "Paste without formatting" -#: src/strings.ts:2560 +#: src/strings.ts:2561 msgid "Pay once and use for 5 years" msgstr "Pay once and use for 5 years" -#: src/strings.ts:2198 +#: src/strings.ts:2199 msgid "Payment method" msgstr "Payment method" -#: src/strings.ts:787 +#: src/strings.ts:788 msgid "PDF is password protected" msgstr "PDF is password protected" -#: src/strings.ts:1728 +#: src/strings.ts:1729 msgid "phone number" msgstr "phone number" -#: src/strings.ts:1847 +#: src/strings.ts:1848 msgid "Phone number" msgstr "Phone number" -#: src/strings.ts:1006 +#: src/strings.ts:1007 msgid "Phone number not entered" msgstr "Phone number not entered" -#: src/strings.ts:899 +#: src/strings.ts:900 msgid "Pin" msgstr "Pin" -#: src/strings.ts:1689 +#: src/strings.ts:1690 msgid "Pin notes in notifications drawer" msgstr "Pin notes in notifications drawer" -#: src/strings.ts:927 +#: src/strings.ts:928 msgid "Pin notification" msgstr "Pin notification" -#: src/strings.ts:522 +#: src/strings.ts:523 msgid "Pinned" msgstr "Pinned" -#: src/strings.ts:2578 +#: src/strings.ts:2579 msgid "Plan limits" msgstr "Plan limits" -#: src/strings.ts:2541 +#: src/strings.ts:2542 msgid "Plans" msgstr "Plans" -#: src/strings.ts:1363 +#: src/strings.ts:1364 msgid "Please confirm your email to sync notes" msgstr "Please confirm your email to sync notes" -#: src/strings.ts:1001 +#: src/strings.ts:1002 msgid "Please confirm your identity by entering a recovery code." msgstr "Please confirm your identity by entering a recovery code." -#: src/strings.ts:980 -#: src/strings.ts:2231 +#: src/strings.ts:981 +#: src/strings.ts:2232 msgid "Please confirm your identity by entering the authentication code from your authenticator app." msgstr "Please confirm your identity by entering the authentication code from your authenticator app." #. placeholder {0}: phoneNumber ? phoneNumber : "your registered phone number." -#: src/strings.ts:995 +#: src/strings.ts:996 msgid "Please confirm your identity by entering the authentication code sent to {0}." msgstr "Please confirm your identity by entering the authentication code sent to {0}." -#: src/strings.ts:988 +#: src/strings.ts:989 msgid "Please confirm your identity by entering the authentication code sent to your email address." msgstr "Please confirm your identity by entering the authentication code sent to your email address." -#: src/strings.ts:1908 +#: src/strings.ts:1909 msgid "Please download a backup of your data as your account will be cleared before recovery." msgstr "Please download a backup of your data as your account will be cleared before recovery." -#: src/strings.ts:2006 +#: src/strings.ts:2007 msgid "Please enable automatic backups to avoid losing important data." msgstr "Please enable automatic backups to avoid losing important data." -#: src/strings.ts:1511 +#: src/strings.ts:1512 msgid "Please enter a valid email address" msgstr "Please enter a valid email address" -#: src/strings.ts:1953 +#: src/strings.ts:1954 msgid "Please enter a valid hex color (e.g. #ffffff)" msgstr "Please enter a valid hex color (e.g. #ffffff)" -#: src/strings.ts:1512 +#: src/strings.ts:1513 msgid "Please enter a valid phone number with country code" msgstr "Please enter a valid phone number with country code" -#: src/strings.ts:1634 +#: src/strings.ts:1635 msgid "Please enter a valid URL" msgstr "Please enter a valid URL" -#: src/strings.ts:1619 +#: src/strings.ts:1620 msgid "Please enter password of this backup file" msgstr "Please enter password of this backup file" -#: src/strings.ts:2242 +#: src/strings.ts:2243 msgid "Please enter the password to decrypt and restore this backup." msgstr "Please enter the password to decrypt and restore this backup." -#: src/strings.ts:789 +#: src/strings.ts:790 msgid "Please enter the password to unlock the PDF and view the content." msgstr "Please enter the password to unlock the PDF and view the content." -#: src/strings.ts:1864 +#: src/strings.ts:1865 msgid "Please enter the password to unlock this note" msgstr "Please enter the password to unlock this note" -#: src/strings.ts:1861 +#: src/strings.ts:1862 msgid "Please enter the password to view this version" msgstr "Please enter the password to view this version" -#: src/strings.ts:1020 +#: src/strings.ts:1021 msgid "Please enter your app lock password to continue" msgstr "Please enter your app lock password to continue" -#: src/strings.ts:1022 +#: src/strings.ts:1023 msgid "Please enter your app lock pin to continue" msgstr "Please enter your app lock pin to continue" -#: src/strings.ts:1016 +#: src/strings.ts:1017 msgid "Please enter your password to continue" msgstr "Please enter your password to continue" -#: src/strings.ts:1932 +#: src/strings.ts:1933 msgid "Please enter your vault password to continue" msgstr "Please enter your vault password to continue" -#: src/strings.ts:767 +#: src/strings.ts:768 msgid "Please fill all the fields to continue." msgstr "Please fill all the fields to continue." -#: src/strings.ts:1555 +#: src/strings.ts:1556 msgid "Please grant notifications permission to add new reminders." msgstr "Please grant notifications permission to add new reminders." -#: src/strings.ts:872 +#: src/strings.ts:873 msgid "Please make sure you have saved the recovery key. Tap one more time to confirm." msgstr "Please make sure you have saved the recovery key. Tap one more time to confirm." @@ -4676,27 +4676,27 @@ msgstr "Please make sure you have saved the recovery key. Tap one more time to c msgid "Please note that we will respond to your issue on the given link. We recommend that you save it." msgstr "Please note that we will respond to your issue on the given link. We recommend that you save it." -#: src/strings.ts:1764 +#: src/strings.ts:1765 msgid "Please refer to the" msgstr "Please refer to the" -#: src/strings.ts:1556 +#: src/strings.ts:1557 msgid "Please select the day to repeat the reminder on" msgstr "Please select the day to repeat the reminder on" -#: src/strings.ts:1395 +#: src/strings.ts:1396 msgid "please send us an email from your registered email address" msgstr "please send us an email from your registered email address" -#: src/strings.ts:2390 +#: src/strings.ts:2391 msgid "Please set a table size" msgstr "Please set a table size" -#: src/strings.ts:1557 +#: src/strings.ts:1558 msgid "Please set title of the reminder" msgstr "Please set title of the reminder" -#: src/strings.ts:1986 +#: src/strings.ts:1987 msgid "Please try again" msgstr "Please try again" @@ -4708,16 +4708,16 @@ msgstr "Please verify it's you" msgid "Please wait" msgstr "Please wait" -#: src/strings.ts:1005 +#: src/strings.ts:1006 msgid "Please wait before requesting a new code" msgstr "Please wait before requesting a new code" -#: src/strings.ts:1398 -#: src/strings.ts:1550 +#: src/strings.ts:1399 +#: src/strings.ts:1551 msgid "Please wait before requesting another email" msgstr "Please wait before requesting another email" -#: src/strings.ts:941 +#: src/strings.ts:942 msgid "Please wait while we encrypt {name} for upload." msgstr "Please wait while we encrypt {name} for upload." @@ -4729,11 +4729,11 @@ msgstr "Please wait while we export your not." msgid "Please wait while we export your notes." msgstr "Please wait while we export your notes." -#: src/strings.ts:1893 +#: src/strings.ts:1894 msgid "Please wait while we finalize your account." msgstr "Please wait while we finalize your account." -#: src/strings.ts:1064 +#: src/strings.ts:1065 msgid "Please wait while we load your subscription" msgstr "Please wait while we load your subscription" @@ -4741,15 +4741,15 @@ msgstr "Please wait while we load your subscription" msgid "Please wait while we log you out." msgstr "Please wait while we log you out." -#: src/strings.ts:1914 +#: src/strings.ts:1915 msgid "Please wait while we reset your account password." msgstr "Please wait while we reset your account password." -#: src/strings.ts:1612 +#: src/strings.ts:1613 msgid "Please wait while we restore your backup..." msgstr "Please wait while we restore your backup..." -#: src/strings.ts:1896 +#: src/strings.ts:1897 msgid "Please wait while we send you recovery instructions" msgstr "Please wait while we send you recovery instructions" @@ -4757,44 +4757,44 @@ msgstr "Please wait while we send you recovery instructions" msgid "Please wait while we sync all your data." msgstr "Please wait while we sync all your data." -#: src/strings.ts:1070 +#: src/strings.ts:1071 msgid "Please wait while we verify your subscription" msgstr "Please wait while we verify your subscription" -#: src/strings.ts:1782 -#: src/strings.ts:1889 +#: src/strings.ts:1783 +#: src/strings.ts:1890 msgid "Please wait while you are authenticated." msgstr "Please wait while you are authenticated." -#: src/strings.ts:1901 +#: src/strings.ts:1902 msgid "Please wait while your data is downloaded & decrypted." msgstr "Please wait while your data is downloaded & decrypted." -#: src/strings.ts:904 +#: src/strings.ts:905 msgid "Preparing note for share" msgstr "Preparing note for share" -#: src/strings.ts:1614 +#: src/strings.ts:1615 msgid "Preparing to restore backup file..." msgstr "Preparing to restore backup file..." -#: src/strings.ts:427 +#: src/strings.ts:428 msgid "PRESETS" msgstr "PRESETS" -#: src/strings.ts:2118 +#: src/strings.ts:2119 msgid "Pressing \"—\" will hide the app in your system tray." msgstr "Pressing \"—\" will hide the app in your system tray." -#: src/strings.ts:2121 +#: src/strings.ts:2122 msgid "Pressing \"X\" will hide the app in your system tray." msgstr "Pressing \"X\" will hide the app in your system tray." -#: src/strings.ts:2169 +#: src/strings.ts:2170 msgid "Prevent note title from appearing in tab/window title." msgstr "Prevent note title from appearing in tab/window title." -#: src/strings.ts:2311 +#: src/strings.ts:2312 msgid "Preview attachment" msgstr "Preview attachment" @@ -4802,43 +4802,43 @@ msgstr "Preview attachment" msgid "Preview not available, content is encrypted." msgstr "Preview not available, content is encrypted." -#: src/strings.ts:2378 +#: src/strings.ts:2379 msgid "Previous match" msgstr "Previous match" -#: src/strings.ts:2443 +#: src/strings.ts:2444 msgid "Previous tab" msgstr "Previous tab" -#: src/strings.ts:2033 +#: src/strings.ts:2034 msgid "Print" msgstr "Print" -#: src/strings.ts:2143 +#: src/strings.ts:2144 msgid "Privacy" msgstr "Privacy" -#: src/strings.ts:1160 +#: src/strings.ts:1161 msgid "Privacy & security" msgstr "Privacy & security" -#: src/strings.ts:1654 +#: src/strings.ts:1655 msgid "Privacy comes first." msgstr "Privacy comes first." -#: src/strings.ts:826 +#: src/strings.ts:827 msgid "Privacy for everyone" msgstr "Privacy for everyone" -#: src/strings.ts:1179 +#: src/strings.ts:1180 msgid "Privacy mode" msgstr "Privacy mode" -#: src/strings.ts:2573 +#: src/strings.ts:2574 msgid "privacy policy" msgstr "privacy policy" -#: src/strings.ts:1284 +#: src/strings.ts:1285 msgid "Privacy policy" msgstr "Privacy policy" @@ -4850,43 +4850,43 @@ msgstr "Privacy Policy. " msgid "private analytics and bug reports." msgstr "private analytics and bug reports." -#: src/strings.ts:820 +#: src/strings.ts:821 msgid "Private." msgstr "Private." -#: src/strings.ts:828 +#: src/strings.ts:829 msgid "privileged few" msgstr "privileged few" -#: src/strings.ts:1720 +#: src/strings.ts:1721 msgid "Pro" msgstr "Pro" -#: src/strings.ts:2468 +#: src/strings.ts:2469 msgid "Pro plan" msgstr "Pro plan" -#: src/strings.ts:2046 +#: src/strings.ts:2047 msgid "Processing {collection}..." msgstr "Processing {collection}..." -#: src/strings.ts:2045 +#: src/strings.ts:2046 msgid "Processing..." msgstr "Processing..." -#: src/strings.ts:1239 +#: src/strings.ts:1240 msgid "Productivity" msgstr "Productivity" -#: src/strings.ts:2132 +#: src/strings.ts:2133 msgid "Profile" msgstr "Profile" -#: src/strings.ts:1954 +#: src/strings.ts:1955 msgid "Profile updated" msgstr "Profile updated" -#: src/strings.ts:1865 +#: src/strings.ts:1866 msgid "Properties" msgstr "Properties" @@ -4894,27 +4894,27 @@ msgstr "Properties" msgid "Protect your notes" msgstr "Protect your notes" -#: src/strings.ts:2180 +#: src/strings.ts:2181 msgid "Proxy" msgstr "Proxy" -#: src/strings.ts:485 +#: src/strings.ts:486 msgid "Publish" msgstr "Publish" -#: src/strings.ts:486 +#: src/strings.ts:487 msgid "Publish note" msgstr "Publish note" -#: src/strings.ts:2612 +#: src/strings.ts:2613 msgid "Publish to the web" msgstr "Publish to the web" -#: src/strings.ts:488 +#: src/strings.ts:489 msgid "Publish your note to share it with others. You can set a password to protect it." msgstr "Publish your note to share it with others. You can set a password to protect it." -#: src/strings.ts:925 +#: src/strings.ts:926 msgid "Published" msgstr "Published" @@ -4930,43 +4930,43 @@ msgstr "Published note can only be viewed by someone with the password." msgid "Published note link will be automatically deleted once it is viewed by someone." msgstr "Published note link will be automatically deleted once it is viewed by someone." -#: src/strings.ts:2566 +#: src/strings.ts:2567 msgid "Purchase" msgstr "Purchase" -#: src/strings.ts:1370 +#: src/strings.ts:1371 msgid "Quick note" msgstr "Quick note" -#: src/strings.ts:1240 +#: src/strings.ts:1241 msgid "Quick note notification" msgstr "Quick note notification" -#: src/strings.ts:1691 +#: src/strings.ts:1692 msgid "Quick note widgets" msgstr "Quick note widgets" -#: src/strings.ts:2439 +#: src/strings.ts:2440 msgid "Quick open" msgstr "Quick open" -#: src/strings.ts:1242 +#: src/strings.ts:1243 msgid "Quickly create a note from the notification" msgstr "Quickly create a note from the notification" -#: src/strings.ts:2331 +#: src/strings.ts:2332 msgid "Quote" msgstr "Quote" -#: src/strings.ts:1356 +#: src/strings.ts:1357 msgid "Rate Notesnook on App Store" msgstr "Rate Notesnook on App Store" -#: src/strings.ts:1357 +#: src/strings.ts:1358 msgid "Rate Notesnook on Play Store" msgstr "Rate Notesnook on Play Store" -#: src/strings.ts:588 +#: src/strings.ts:589 msgid "Rate now (It takes only a second)" msgstr "Rate now (It takes only a second)" @@ -4974,51 +4974,51 @@ msgstr "Rate now (It takes only a second)" msgid "Read full release notes on Github" msgstr "Read full release notes on Github" -#: src/strings.ts:911 +#: src/strings.ts:912 msgid "Read only" msgstr "Read only" -#: src/strings.ts:1264 +#: src/strings.ts:1265 msgid "Read the documentation to learn more about Notesnook" msgstr "Read the documentation to learn more about Notesnook" -#: src/strings.ts:1285 +#: src/strings.ts:1286 msgid "Read the privacy policy" msgstr "Read the privacy policy" -#: src/strings.ts:1283 +#: src/strings.ts:1284 msgid "Read the terms of service" msgstr "Read the terms of service" -#: src/strings.ts:1615 +#: src/strings.ts:1616 msgid "Reading backup file..." msgstr "Reading backup file..." -#: src/strings.ts:2543 +#: src/strings.ts:2544 msgid "Ready to take the next step on your private note taking journey?" msgstr "Ready to take the next step on your private note taking journey?" -#: src/strings.ts:2222 +#: src/strings.ts:2223 msgid "Receipt" msgstr "Receipt" -#: src/strings.ts:1610 +#: src/strings.ts:1611 msgid "RECENT BACKUPS" msgstr "RECENT BACKUPS" -#: src/strings.ts:2454 +#: src/strings.ts:2455 msgid "Recents" msgstr "Recents" -#: src/strings.ts:2397 +#: src/strings.ts:2398 msgid "Recheck all" msgstr "Recheck all" -#: src/strings.ts:2000 +#: src/strings.ts:2001 msgid "Rechecking failed" msgstr "Rechecking failed" -#: src/strings.ts:2422 +#: src/strings.ts:2423 msgid "Recipes" msgstr "Recipes" @@ -5026,19 +5026,19 @@ msgstr "Recipes" msgid "Recommended" msgstr "Recommended" -#: src/strings.ts:2545 +#: src/strings.ts:2546 msgid "Recommended by Privacy Guides" msgstr "Recommended by Privacy Guides" -#: src/strings.ts:434 +#: src/strings.ts:435 msgid "Recover your account" msgstr "Recover your account" -#: src/strings.ts:1004 +#: src/strings.ts:1005 msgid "Recovery codes copied!" msgstr "Recovery codes copied!" -#: src/strings.ts:1009 +#: src/strings.ts:1010 msgid "Recovery codes saved!" msgstr "Recovery codes saved!" @@ -5050,39 +5050,39 @@ msgstr "Recovery email has been sent to your email address. Please check your in msgid "Recovery email sent!" msgstr "Recovery email sent!" -#: src/strings.ts:875 +#: src/strings.ts:876 msgid "Recovery key copied" msgstr "Recovery key copied" -#: src/strings.ts:873 +#: src/strings.ts:874 msgid "Recovery key QR code saved" msgstr "Recovery key QR code saved" -#: src/strings.ts:874 +#: src/strings.ts:875 msgid "Recovery key text file saved" msgstr "Recovery key text file saved" -#: src/strings.ts:1915 +#: src/strings.ts:1916 msgid "Recovery successful!" msgstr "Recovery successful!" -#: src/strings.ts:2434 +#: src/strings.ts:2435 msgid "Redeem" msgstr "Redeem" -#: src/strings.ts:2595 +#: src/strings.ts:2596 msgid "Redeem code" msgstr "Redeem code" -#: src/strings.ts:2431 +#: src/strings.ts:2432 msgid "Redeem gift code" msgstr "Redeem gift code" -#: src/strings.ts:2433 +#: src/strings.ts:2434 msgid "Redeeming gift code" msgstr "Redeeming gift code" -#: src/strings.ts:520 +#: src/strings.ts:521 msgid "Redo" msgstr "Redo" @@ -5090,43 +5090,43 @@ msgstr "Redo" msgid "Referenced in" msgstr "Referenced in" -#: src/strings.ts:934 +#: src/strings.ts:935 msgid "References" msgstr "References" -#: src/strings.ts:519 +#: src/strings.ts:520 msgid "Regenerate" msgstr "Regenerate" -#: src/strings.ts:2086 +#: src/strings.ts:2087 msgid "Register" msgstr "Register" -#: src/strings.ts:431 +#: src/strings.ts:432 msgid "Release notes" msgstr "Release notes" -#: src/strings.ts:2456 +#: src/strings.ts:2457 msgid "Release track" msgstr "Release track" -#: src/strings.ts:656 +#: src/strings.ts:657 msgid "Relevance" msgstr "Relevance" -#: src/strings.ts:1669 +#: src/strings.ts:1670 msgid "Reload app" msgstr "Reload app" -#: src/strings.ts:1827 +#: src/strings.ts:1828 msgid "Relogin to your account" msgstr "Relogin to your account" -#: src/strings.ts:1795 +#: src/strings.ts:1796 msgid "Remembered your password?" msgstr "Remembered your password?" -#: src/strings.ts:924 +#: src/strings.ts:925 msgid "Remind me" msgstr "Remind me" @@ -5134,7 +5134,7 @@ msgstr "Remind me" msgid "Remind me in" msgstr "Remind me in" -#: src/strings.ts:1505 +#: src/strings.ts:1506 msgid "Remind me of..." msgstr "Remind me of..." @@ -5146,11 +5146,11 @@ msgstr "reminder" msgid "Reminder" msgstr "Reminder" -#: src/strings.ts:1245 +#: src/strings.ts:1246 msgid "Reminder notifications" msgstr "Reminder notifications" -#: src/strings.ts:1558 +#: src/strings.ts:1559 msgid "Reminder time cannot be earlier than the current time." msgstr "Reminder time cannot be earlier than the current time." @@ -5159,92 +5159,92 @@ msgid "reminders" msgstr "reminders" #: src/strings.ts:318 -#: src/strings.ts:1243 -#: src/strings.ts:1521 +#: src/strings.ts:1244 +#: src/strings.ts:1522 msgid "Reminders" msgstr "Reminders" -#: src/strings.ts:1378 +#: src/strings.ts:1379 msgid "Reminders cannot be set because notifications have been disabled from app settings. If you want to keep receiving reminder notifications, enable notifications for Notesnook from app settings." msgstr "Reminders cannot be set because notifications have been disabled from app settings. If you want to keep receiving reminder notifications, enable notifications for Notesnook from app settings." -#: src/strings.ts:1952 +#: src/strings.ts:1953 msgid "Reminders will not be active on this device as it does not support notifications." msgstr "Reminders will not be active on this device as it does not support notifications." -#: src/strings.ts:781 +#: src/strings.ts:782 msgid "Remove" msgstr "Remove" -#: src/strings.ts:1174 +#: src/strings.ts:1175 msgid "Remove all notes from the vault." msgstr "Remove all notes from the vault." -#: src/strings.ts:1201 +#: src/strings.ts:1202 msgid "Remove app lock password" msgstr "Remove app lock password" -#: src/strings.ts:1205 +#: src/strings.ts:1206 msgid "Remove app lock password, app lock will be disabled if no other security method is enabled." msgstr "Remove app lock password, app lock will be disabled if no other security method is enabled." -#: src/strings.ts:1200 +#: src/strings.ts:1201 msgid "Remove app lock pin" msgstr "Remove app lock pin" -#: src/strings.ts:1203 +#: src/strings.ts:1204 msgid "Remove app lock pin, app lock will be disabled if no other security method is enabled." msgstr "Remove app lock pin, app lock will be disabled if no other security method is enabled." -#: src/strings.ts:895 +#: src/strings.ts:896 msgid "Remove as default" msgstr "Remove as default" -#: src/strings.ts:2315 +#: src/strings.ts:2316 msgid "Remove attachment" msgstr "Remove attachment" -#: src/strings.ts:930 +#: src/strings.ts:931 msgid "Remove from all" msgstr "Remove from all" -#: src/strings.ts:905 +#: src/strings.ts:906 msgid "Remove from notebook" msgstr "Remove from notebook" -#: src/strings.ts:2455 +#: src/strings.ts:2456 msgid "Remove from recents" msgstr "Remove from recents" -#: src/strings.ts:1043 +#: src/strings.ts:1044 msgid "Remove full name" msgstr "Remove full name" -#: src/strings.ts:2262 +#: src/strings.ts:2263 msgid "Remove link" msgstr "Remove link" -#: src/strings.ts:1039 +#: src/strings.ts:1040 msgid "Remove profile picture" msgstr "Remove profile picture" -#: src/strings.ts:1046 +#: src/strings.ts:1047 msgid "Remove your full name from profile" msgstr "Remove your full name from profile" -#: src/strings.ts:1040 +#: src/strings.ts:1041 msgid "Remove your profile picture" msgstr "Remove your profile picture" -#: src/strings.ts:545 +#: src/strings.ts:546 msgid "Rename" msgstr "Rename" -#: src/strings.ts:750 +#: src/strings.ts:751 msgid "Rename file" msgstr "Rename file" -#: src/strings.ts:890 +#: src/strings.ts:891 msgid "Reorder" msgstr "Reorder" @@ -5252,23 +5252,23 @@ msgstr "Reorder" msgid "Repeats daily at {date}" msgstr "Repeats daily at {date}" -#: src/strings.ts:2375 +#: src/strings.ts:2376 msgid "Replace" msgstr "Replace" -#: src/strings.ts:2376 +#: src/strings.ts:2377 msgid "Replace all" msgstr "Replace all" -#: src/strings.ts:2163 +#: src/strings.ts:2164 msgid "Report" msgstr "Report" -#: src/strings.ts:1256 +#: src/strings.ts:1257 msgid "Report an issue" msgstr "Report an issue" -#: src/strings.ts:471 +#: src/strings.ts:472 msgid "Report issue" msgstr "Report issue" @@ -5277,95 +5277,95 @@ msgid "Resend code in ({seconds})" msgstr "Resend code in ({seconds})" #. placeholder {0}: seconds ? ` in ${seconds}` : "" -#: src/strings.ts:676 +#: src/strings.ts:677 msgid "Resend code{0}" msgstr "Resend code{0}" -#: src/strings.ts:1401 +#: src/strings.ts:1402 msgid "Resend email" msgstr "Resend email" -#: src/strings.ts:1819 +#: src/strings.ts:1820 msgid "Reset" msgstr "Reset" -#: src/strings.ts:1911 +#: src/strings.ts:1912 msgid "Reset account password" msgstr "Reset account password" -#: src/strings.ts:2482 +#: src/strings.ts:2483 msgid "Reset homepage" msgstr "Reset homepage" -#: src/strings.ts:1820 +#: src/strings.ts:1821 msgid "Reset selection" msgstr "Reset selection" -#: src/strings.ts:1647 +#: src/strings.ts:1648 msgid "Reset server urls" msgstr "Reset server urls" -#: src/strings.ts:2029 +#: src/strings.ts:2030 msgid "Reset sidebar" msgstr "Reset sidebar" -#: src/strings.ts:1146 +#: src/strings.ts:1147 msgid "Reset the toolbar to default settings" msgstr "Reset the toolbar to default settings" -#: src/strings.ts:1145 +#: src/strings.ts:1146 msgid "Reset toolbar" msgstr "Reset toolbar" -#: src/strings.ts:1913 +#: src/strings.ts:1914 msgid "Resetting account password ({progress})" msgstr "Resetting account password ({progress})" -#: src/strings.ts:1988 +#: src/strings.ts:1989 msgid "Restart now" msgstr "Restart now" -#: src/strings.ts:1646 +#: src/strings.ts:1647 msgid "Restart the app for changes to take effect." msgstr "Restart the app for changes to take effect." -#: src/strings.ts:1317 +#: src/strings.ts:1318 msgid "Restart the app to apply the changes" msgstr "Restart the app to apply the changes" -#: src/strings.ts:1592 +#: src/strings.ts:1593 msgid "Restart the app." msgstr "Restart the app." -#: src/strings.ts:567 +#: src/strings.ts:568 msgid "Restore" msgstr "Restore" -#: src/strings.ts:1234 +#: src/strings.ts:1235 msgid "Restore backup" msgstr "Restore backup" -#: src/strings.ts:2404 +#: src/strings.ts:2405 msgid "Restore backup?" msgstr "Restore backup?" -#: src/strings.ts:889 +#: src/strings.ts:890 msgid "Restore failed" msgstr "Restore failed" -#: src/strings.ts:1609 +#: src/strings.ts:1610 msgid "Restore from files" msgstr "Restore from files" -#: src/strings.ts:1659 +#: src/strings.ts:1660 msgid "Restore this version" msgstr "Restore this version" -#: src/strings.ts:1235 +#: src/strings.ts:1236 msgid "Restore your data from a backup" msgstr "Restore your data from a backup" -#: src/strings.ts:848 +#: src/strings.ts:849 msgid "Restored successfully" msgstr "Restored successfully" @@ -5377,23 +5377,23 @@ msgstr "Restoring" msgid "Restoring {collection}..." msgstr "Restoring {collection}..." -#: src/strings.ts:1611 +#: src/strings.ts:1612 msgid "Restoring backup..." msgstr "Restoring backup..." -#: src/strings.ts:685 +#: src/strings.ts:686 msgid "Resubscribe from Playstore" msgstr "Resubscribe from Playstore" -#: src/strings.ts:686 +#: src/strings.ts:687 msgid "Resubscribe to Pro" msgstr "Resubscribe to Pro" -#: src/strings.ts:512 +#: src/strings.ts:513 msgid "Reupload" msgstr "Reupload" -#: src/strings.ts:2019 +#: src/strings.ts:2020 msgid "Reveal in list" msgstr "Reveal in list" @@ -5401,164 +5401,164 @@ msgstr "Reveal in list" msgid "Revoke" msgstr "Revoke" -#: src/strings.ts:1178 +#: src/strings.ts:1179 msgid "Revoke biometric unlocking" msgstr "Revoke biometric unlocking" -#: src/strings.ts:449 +#: src/strings.ts:450 msgid "Revoke vault fingerprint unlock" msgstr "Revoke vault fingerprint unlock" -#: src/strings.ts:1292 +#: src/strings.ts:1293 msgid "Roadmap" msgstr "Roadmap" -#: src/strings.ts:2047 +#: src/strings.ts:2048 msgid "Root" msgstr "Root" -#: src/strings.ts:2026 +#: src/strings.ts:2027 msgid "Rotate left" msgstr "Rotate left" -#: src/strings.ts:2027 +#: src/strings.ts:2028 msgid "Rotate right" msgstr "Rotate right" -#: src/strings.ts:2285 +#: src/strings.ts:2286 msgid "Row properties" msgstr "Row properties" -#: src/strings.ts:544 +#: src/strings.ts:545 msgid "Run file check" msgstr "Run file check" -#: src/strings.ts:2058 +#: src/strings.ts:2059 msgid "Safe & encrypted notes" msgstr "Safe & encrypted notes" -#: src/strings.ts:627 +#: src/strings.ts:628 msgid "Sat" msgstr "Sat" -#: src/strings.ts:618 +#: src/strings.ts:619 msgid "Saturday" msgstr "Saturday" -#: src/strings.ts:573 +#: src/strings.ts:574 msgid "Save" msgstr "Save" -#: src/strings.ts:476 +#: src/strings.ts:477 msgid "Save a backup of your notes" msgstr "Save a backup of your notes" -#: src/strings.ts:563 +#: src/strings.ts:564 msgid "Save a copy" msgstr "Save a copy" -#: src/strings.ts:489 +#: src/strings.ts:490 msgid "Save account recovery key" msgstr "Save account recovery key" -#: src/strings.ts:582 +#: src/strings.ts:583 msgid "Save and continue" msgstr "Save and continue" -#: src/strings.ts:1047 +#: src/strings.ts:1048 msgid "Save data recovery key" msgstr "Save data recovery key" -#: src/strings.ts:952 +#: src/strings.ts:953 msgid "Save failed. Vault is locked" msgstr "Save failed. Vault is locked" -#: src/strings.ts:591 +#: src/strings.ts:592 msgid "Save QR code to gallery" msgstr "Save QR code to gallery" -#: src/strings.ts:496 +#: src/strings.ts:497 msgid "Save recovery codes" msgstr "Save recovery codes" -#: src/strings.ts:679 +#: src/strings.ts:680 msgid "Save to file" msgstr "Save to file" -#: src/strings.ts:592 +#: src/strings.ts:593 msgid "Save to text file" msgstr "Save to text file" -#: src/strings.ts:1359 +#: src/strings.ts:1360 msgid "Save your account recovery key" msgstr "Save your account recovery key" -#: src/strings.ts:491 +#: src/strings.ts:492 msgid "Save your account recovery key in a safe place. You will need it to recover your account in case you forget your password." msgstr "Save your account recovery key in a safe place. You will need it to recover your account in case you forget your password." -#: src/strings.ts:1049 +#: src/strings.ts:1050 msgid "Save your data recovery key in a safe place. You will need it to recover your data in case you forget your password." msgstr "Save your data recovery key in a safe place. You will need it to recover your data in case you forget your password." -#: src/strings.ts:498 +#: src/strings.ts:499 msgid "Save your recovery codes in a safe place. You will need them to recover your account in case you lose access to your two-factor authentication methods." msgstr "Save your recovery codes in a safe place. You will need them to recover your account in case you lose access to your two-factor authentication methods." -#: src/strings.ts:2394 +#: src/strings.ts:2395 msgid "Saved" msgstr "Saved" -#: src/strings.ts:2395 +#: src/strings.ts:2396 msgid "Saving" msgstr "Saving" -#: src/strings.ts:1587 +#: src/strings.ts:1588 msgid "Saving this note is taking too long. Copy your changes and restart the app to prevent data loss. If the problem persists, please report it to us at support@streetwriters.co." msgstr "Saving this note is taking too long. Copy your changes and restart the app to prevent data loss. If the problem persists, please report it to us at support@streetwriters.co." -#: src/strings.ts:795 +#: src/strings.ts:796 msgid "Saving zip file ({progress}%). Please wait..." msgstr "Saving zip file ({progress}%). Please wait..." -#: src/strings.ts:796 +#: src/strings.ts:797 msgid "Saving zip file. Please wait..." msgstr "Saving zip file. Please wait..." -#: src/strings.ts:1721 +#: src/strings.ts:1722 msgid "Scan the QR code with your authenticator app" msgstr "Scan the QR code with your authenticator app" -#: src/strings.ts:2420 +#: src/strings.ts:2421 msgid "School work" msgstr "School work" -#: src/strings.ts:2493 +#: src/strings.ts:2494 msgid "Scroll to bottom" msgstr "Scroll to bottom" -#: src/strings.ts:2492 +#: src/strings.ts:2493 msgid "Scroll to top" msgstr "Scroll to top" -#: src/strings.ts:1509 -#: src/strings.ts:1527 +#: src/strings.ts:1510 +#: src/strings.ts:1528 msgid "Search" msgstr "Search" -#: src/strings.ts:1504 +#: src/strings.ts:1505 msgid "Search a note" msgstr "Search a note" -#: src/strings.ts:1502 +#: src/strings.ts:1503 msgid "Search a note to link to" msgstr "Search a note to link to" -#: src/strings.ts:2436 +#: src/strings.ts:2437 msgid "Search for notes, notebooks, and tags..." msgstr "Search for notes, notebooks, and tags..." -#: src/strings.ts:1537 +#: src/strings.ts:1538 msgid "Search in {routeName}" msgstr "Search in {routeName}" @@ -5610,75 +5610,75 @@ msgstr "Search in Tags" msgid "Search in Trash" msgstr "Search in Trash" -#: src/strings.ts:2357 +#: src/strings.ts:2358 msgid "Search languages" msgstr "Search languages" -#: src/strings.ts:1490 +#: src/strings.ts:1491 msgid "Search notebooks" msgstr "Search notebooks" -#: src/strings.ts:1503 +#: src/strings.ts:1504 msgid "Search or add a tag" msgstr "Search or add a tag" -#: src/strings.ts:1833 +#: src/strings.ts:1834 msgid "Search themes" msgstr "Search themes" -#: src/strings.ts:1507 +#: src/strings.ts:1508 msgid "Searching for {query}..." msgstr "Searching for {query}..." -#: src/strings.ts:877 +#: src/strings.ts:878 msgid "sec" msgstr "sec" -#: src/strings.ts:2142 +#: src/strings.ts:2143 msgid "Security & privacy" msgstr "Security & privacy" -#: src/strings.ts:2082 +#: src/strings.ts:2083 msgid "Security key" msgstr "Security key" -#: src/strings.ts:1987 +#: src/strings.ts:1988 msgid "Security key successfully registered." msgstr "Security key successfully registered." -#: src/strings.ts:1293 +#: src/strings.ts:1294 msgid "See what the future of Notesnook is going to be like." msgstr "See what the future of Notesnook is going to be like." -#: src/strings.ts:1333 +#: src/strings.ts:1334 msgid "Select" msgstr "Select" -#: src/strings.ts:1608 +#: src/strings.ts:1609 msgid "Select a backup file from your device to restore backup" msgstr "Select a backup file from your device to restore backup" -#: src/strings.ts:2487 +#: src/strings.ts:2488 msgid "Select a notebook to move this notebook into, or unselect to move it to the root level." msgstr "Select a notebook to move this notebook into, or unselect to move it to the root level." -#: src/strings.ts:2097 +#: src/strings.ts:2098 msgid "Select a theme" msgstr "Select a theme" -#: src/strings.ts:1225 +#: src/strings.ts:1226 msgid "Select backup directory" msgstr "Select backup directory" -#: src/strings.ts:1854 +#: src/strings.ts:1855 msgid "Select backup file" msgstr "Select backup file" -#: src/strings.ts:639 +#: src/strings.ts:640 msgid "Select backups folder" msgstr "Select backups folder" -#: src/strings.ts:629 +#: src/strings.ts:630 msgid "Select date" msgstr "Select date" @@ -5686,15 +5686,15 @@ msgstr "Select date" msgid "Select day of the week to repeat the reminder." msgstr "Select day of the week to repeat the reminder." -#: src/strings.ts:1762 +#: src/strings.ts:1763 msgid "Select files to import" msgstr "Select files to import" -#: src/strings.ts:1605 +#: src/strings.ts:1606 msgid "Select folder where Notesnook backup files are stored to view and restore them from the app" msgstr "Select folder where Notesnook backup files are stored to view and restore them from the app" -#: src/strings.ts:1606 +#: src/strings.ts:1607 msgid "Select folder with backup files" msgstr "Select folder with backup files" @@ -5702,7 +5702,7 @@ msgstr "Select folder with backup files" msgid "Select how you would like to recieve the code" msgstr "Select how you would like to recieve the code" -#: src/strings.ts:2352 +#: src/strings.ts:2353 msgid "Select language" msgstr "Select language" @@ -5710,15 +5710,15 @@ msgstr "Select language" msgid "Select method for two-factor authentication" msgstr "Select method for two-factor authentication" -#: src/strings.ts:458 +#: src/strings.ts:459 msgid "Select notebooks" msgstr "Select notebooks" -#: src/strings.ts:459 +#: src/strings.ts:460 msgid "Select notebooks you want to add note(s) to." msgstr "Select notebooks you want to add note(s) to." -#: src/strings.ts:2475 +#: src/strings.ts:2476 msgid "Select notes to link to \"{title}\"" msgstr "Select notes to link to \"{title}\"" @@ -5726,11 +5726,11 @@ msgstr "Select notes to link to \"{title}\"" msgid "Select nth day of the month to repeat the reminder." msgstr "Select nth day of the month to repeat the reminder." -#: src/strings.ts:1816 +#: src/strings.ts:1817 msgid "Select profile picture" msgstr "Select profile picture" -#: src/strings.ts:2481 +#: src/strings.ts:2482 msgid "Select the default sidebar tab" msgstr "Select the default sidebar tab" @@ -5738,11 +5738,11 @@ msgstr "Select the default sidebar tab" msgid "Select the folder that includes your backup files to list them here." msgstr "Select the folder that includes your backup files to list them here." -#: src/strings.ts:2129 +#: src/strings.ts:2130 msgid "Select the languages the spell checker should check in." msgstr "Select the languages the spell checker should check in." -#: src/strings.ts:2457 +#: src/strings.ts:2458 msgid "Select the release track for Notesnook." msgstr "Select the release track for Notesnook." @@ -5754,7 +5754,7 @@ msgstr "SELECTED NOTE" msgid "Self destruct" msgstr "Self destruct" -#: src/strings.ts:2164 +#: src/strings.ts:2165 msgid "Send" msgstr "Send" @@ -5770,47 +5770,47 @@ msgstr "Send code via email" msgid "Send code via SMS" msgstr "Send code via SMS" -#: src/strings.ts:1858 +#: src/strings.ts:1859 msgid "Send recovery email" msgstr "Send recovery email" -#: src/strings.ts:1894 +#: src/strings.ts:1895 msgid "Sending recovery email" msgstr "Sending recovery email" -#: src/strings.ts:1645 +#: src/strings.ts:1646 msgid "Server url changed" msgstr "Server url changed" -#: src/strings.ts:1648 +#: src/strings.ts:1649 msgid "Server urls reset" msgstr "Server urls reset" -#: src/strings.ts:1626 +#: src/strings.ts:1627 msgid "Server used for login/sign up and authentication." msgstr "Server used for login/sign up and authentication." -#: src/strings.ts:1631 +#: src/strings.ts:1632 msgid "Server used to host your published notes." msgstr "Server used to host your published notes." -#: src/strings.ts:1629 +#: src/strings.ts:1630 msgid "Server used to receive important notifications & events." msgstr "Server used to receive important notifications & events." -#: src/strings.ts:1624 +#: src/strings.ts:1625 msgid "Server used to sync your notes & other data between devices." msgstr "Server used to sync your notes & other data between devices." -#: src/strings.ts:1637 +#: src/strings.ts:1638 msgid "Server with host {host} not found." msgstr "Server with host {host} not found." -#: src/strings.ts:2137 +#: src/strings.ts:2138 msgid "Servers" msgstr "Servers" -#: src/strings.ts:2138 +#: src/strings.ts:2139 msgid "Servers configuration" msgstr "Servers configuration" @@ -5818,77 +5818,77 @@ msgstr "Servers configuration" msgid "Session expired" msgstr "Session expired" -#: src/strings.ts:2190 +#: src/strings.ts:2191 msgid "Sessions" msgstr "Sessions" -#: src/strings.ts:975 +#: src/strings.ts:976 msgid "Set a reminder" msgstr "Set a reminder" -#: src/strings.ts:727 +#: src/strings.ts:728 msgid "Set as dark theme" msgstr "Set as dark theme" -#: src/strings.ts:896 +#: src/strings.ts:897 msgid "Set as default" msgstr "Set as default" -#: src/strings.ts:2479 +#: src/strings.ts:2480 msgid "Set as homepage" msgstr "Set as homepage" -#: src/strings.ts:728 +#: src/strings.ts:729 msgid "Set as light theme" msgstr "Set as light theme" -#: src/strings.ts:1332 +#: src/strings.ts:1333 msgid "Set automatic trash cleanup interval from Settings > Behaviour > Clean trash interval." msgstr "Set automatic trash cleanup interval from Settings > Behaviour > Clean trash interval." -#: src/strings.ts:1309 +#: src/strings.ts:1310 msgid "Set full name" msgstr "Set full name" -#: src/strings.ts:1251 +#: src/strings.ts:1252 msgid "Set snooze time in minutes" msgstr "Set snooze time in minutes" -#: src/strings.ts:1250 +#: src/strings.ts:1251 msgid "Set the default time to snooze a reminder to when you press the snooze button on a notification." msgstr "Set the default time to snooze a reminder to when you press the snooze button on a notification." -#: src/strings.ts:1222 +#: src/strings.ts:1223 msgid "Set the interval to create a backup (with attachments) automatically." msgstr "Set the interval to create a backup (with attachments) automatically." -#: src/strings.ts:1219 +#: src/strings.ts:1220 msgid "Set the interval to create a partial backup (without attachments) automatically." msgstr "Set the interval to create a partial backup (without attachments) automatically." -#: src/strings.ts:426 +#: src/strings.ts:427 msgid "Set your name" msgstr "Set your name" #: src/strings.ts:387 -#: src/strings.ts:1523 +#: src/strings.ts:1524 msgid "Settings" msgstr "Settings" -#: src/strings.ts:1198 #: src/strings.ts:1199 +#: src/strings.ts:1200 msgid "Setup a new password for app lock" msgstr "Setup a new password for app lock" -#: src/strings.ts:1195 +#: src/strings.ts:1196 msgid "Setup a password to lock the app" msgstr "Setup a password to lock the app" -#: src/strings.ts:1193 +#: src/strings.ts:1194 msgid "Setup a pin to lock the app" msgstr "Setup a pin to lock the app" -#: src/strings.ts:2182 +#: src/strings.ts:2183 msgid "" "Setup an HTTP/HTTPS/SOCKS proxy.\n" "\n" @@ -5908,27 +5908,27 @@ msgstr "" "\n" "To remove the proxy, simply erase everything in the input." -#: src/strings.ts:1194 +#: src/strings.ts:1195 msgid "Setup app lock password" msgstr "Setup app lock password" -#: src/strings.ts:1192 +#: src/strings.ts:1193 msgid "Setup app lock pin" msgstr "Setup app lock pin" -#: src/strings.ts:680 +#: src/strings.ts:681 msgid "Setup secondary 2FA method" msgstr "Setup secondary 2FA method" -#: src/strings.ts:977 +#: src/strings.ts:978 msgid "Setup using an Authenticator app" msgstr "Setup using an Authenticator app" -#: src/strings.ts:984 +#: src/strings.ts:985 msgid "Setup using email" msgstr "Setup using email" -#: src/strings.ts:991 +#: src/strings.ts:992 msgid "Setup using SMS" msgstr "Setup using SMS" @@ -5936,23 +5936,23 @@ msgstr "Setup using SMS" msgid "Share" msgstr "Share" -#: src/strings.ts:1690 +#: src/strings.ts:1691 msgid "Share & append to notes from anywhere" msgstr "Share & append to notes from anywhere" -#: src/strings.ts:1340 +#: src/strings.ts:1341 msgid "Share backup" msgstr "Share backup" -#: src/strings.ts:452 +#: src/strings.ts:453 msgid "Share note" msgstr "Share note" -#: src/strings.ts:1786 +#: src/strings.ts:1787 msgid "Share Notesnook with friends!" msgstr "Share Notesnook with friends!" -#: src/strings.ts:593 +#: src/strings.ts:594 msgid "Share to cloud" msgstr "Share to cloud" @@ -5964,7 +5964,7 @@ msgstr "shortcut" msgid "Shortcut" msgstr "Shortcut" -#: src/strings.ts:1999 +#: src/strings.ts:2000 msgid "Shortcut removed" msgstr "Shortcut removed" @@ -5980,11 +5980,11 @@ msgstr "Shortcuts" msgid "Sign up" msgstr "Sign up" -#: src/strings.ts:1029 +#: src/strings.ts:1030 msgid "Signed up on {date}" msgstr "Signed up on {date}" -#: src/strings.ts:776 +#: src/strings.ts:777 msgid "Signup failed" msgstr "Signup failed" @@ -5992,95 +5992,95 @@ msgstr "Signup failed" msgid "Silent" msgstr "Silent" -#: src/strings.ts:2326 +#: src/strings.ts:2327 msgid "Sink list item" msgstr "Sink list item" -#: src/strings.ts:2040 +#: src/strings.ts:2041 msgid "Size" msgstr "Size" -#: src/strings.ts:549 +#: src/strings.ts:550 msgid "Skip" msgstr "Skip" -#: src/strings.ts:1828 +#: src/strings.ts:1829 msgid "Skip & go directly to the app" msgstr "Skip & go directly to the app" -#: src/strings.ts:672 +#: src/strings.ts:673 msgid "Skip introduction" msgstr "Skip introduction" -#: src/strings.ts:1603 +#: src/strings.ts:1604 msgid "Some exported notes are locked, Unlock to export them" msgstr "Some exported notes are locked, Unlock to export them" -#: src/strings.ts:1475 +#: src/strings.ts:1476 msgid "Some notes are published" msgstr "Some notes are published" -#: src/strings.ts:1665 +#: src/strings.ts:1666 msgid "Something went wrong" msgstr "Something went wrong" -#: src/strings.ts:2024 +#: src/strings.ts:2025 msgid "Sort" msgstr "Sort" -#: src/strings.ts:535 +#: src/strings.ts:536 msgid "Sort by" msgstr "Sort by" -#: src/strings.ts:2148 +#: src/strings.ts:2149 msgid "Source code" msgstr "Source code" -#: src/strings.ts:2353 +#: src/strings.ts:2354 msgid "Spaces" msgstr "Spaces" -#: src/strings.ts:2588 +#: src/strings.ts:2589 msgid "Special Offer" msgstr "Special Offer" -#: src/strings.ts:2125 +#: src/strings.ts:2126 msgid "Spell check" msgstr "Spell check" -#: src/strings.ts:2292 +#: src/strings.ts:2293 msgid "Split cells" msgstr "Split cells" -#: src/strings.ts:2458 +#: src/strings.ts:2459 msgid "Stable" msgstr "Stable" -#: src/strings.ts:1111 +#: src/strings.ts:1112 msgid "Start" msgstr "Start" -#: src/strings.ts:1829 +#: src/strings.ts:1830 msgid "Start account recovery" msgstr "Start account recovery" -#: src/strings.ts:1824 +#: src/strings.ts:1825 msgid "Start import" msgstr "Start import" -#: src/strings.ts:1821 +#: src/strings.ts:1822 msgid "Start importing now" msgstr "Start importing now" -#: src/strings.ts:2113 +#: src/strings.ts:2114 msgid "Start minimized" msgstr "Start minimized" -#: src/strings.ts:1756 +#: src/strings.ts:1757 msgid "Start over" msgstr "Start over" -#: src/strings.ts:949 +#: src/strings.ts:950 msgid "Start writing to create a new note" msgstr "Start writing to create a new note" @@ -6088,103 +6088,103 @@ msgstr "Start writing to create a new note" msgid "Start writing to save your note." msgstr "Start writing to save your note." -#: src/strings.ts:1600 +#: src/strings.ts:1601 msgid "Start writing your note..." msgstr "Start writing your note..." -#: src/strings.ts:2221 +#: src/strings.ts:2222 msgid "Status" msgstr "Status" -#: src/strings.ts:2471 +#: src/strings.ts:2472 msgid "Storage" msgstr "Storage" -#: src/strings.ts:1547 +#: src/strings.ts:1548 msgid "Streaming not supported" msgstr "Streaming not supported" -#: src/strings.ts:2258 +#: src/strings.ts:2259 msgid "Strikethrough" msgstr "Strikethrough" -#: src/strings.ts:2223 +#: src/strings.ts:2224 msgid "Subgroup 1" msgstr "Subgroup 1" -#: src/strings.ts:1993 +#: src/strings.ts:1994 msgid "Subgroup added" msgstr "Subgroup added" -#: src/strings.ts:579 +#: src/strings.ts:580 msgid "Submit" msgstr "Submit" -#: src/strings.ts:2567 +#: src/strings.ts:2568 msgid "Subscribe" msgstr "Subscribe" -#: src/strings.ts:2568 +#: src/strings.ts:2569 msgid "Subscribe and start free trial" msgstr "Subscribe and start free trial" -#: src/strings.ts:1024 +#: src/strings.ts:1025 msgid "Subscribe to Pro" msgstr "Subscribe to Pro" -#: src/strings.ts:706 +#: src/strings.ts:707 msgid "Subscribed on Android" msgstr "Subscribed on Android" -#: src/strings.ts:699 +#: src/strings.ts:700 msgid "Subscribed on iOS" msgstr "Subscribed on iOS" -#: src/strings.ts:1304 +#: src/strings.ts:1305 msgid "Subscribed on web" msgstr "Subscribed on web" -#: src/strings.ts:713 +#: src/strings.ts:714 msgid "Subscribed on Web" msgstr "Subscribed on Web" -#: src/strings.ts:719 +#: src/strings.ts:720 msgid "Subscribed using gift card" msgstr "Subscribed using gift card" -#: src/strings.ts:2269 +#: src/strings.ts:2270 msgid "Subscript" msgstr "Subscript" -#: src/strings.ts:693 +#: src/strings.ts:694 msgid "Subscription awarded from Streetwriters" msgstr "Subscription awarded from Streetwriters" -#: src/strings.ts:1028 +#: src/strings.ts:1029 msgid "Subscription details" msgstr "Subscription details" -#: src/strings.ts:1062 +#: src/strings.ts:1063 msgid "Subscription not activated?" msgstr "Subscription not activated?" -#: src/strings.ts:621 +#: src/strings.ts:622 msgid "Sun" msgstr "Sun" -#: src/strings.ts:612 +#: src/strings.ts:613 msgid "Sunday" msgstr "Sunday" -#: src/strings.ts:2270 +#: src/strings.ts:2271 msgid "Superscript" msgstr "Superscript" -#: src/strings.ts:1468 +#: src/strings.ts:1469 msgid "Switch to search/replace mode" msgstr "Switch to search/replace mode" -#: src/strings.ts:2134 +#: src/strings.ts:2135 msgid "Sync" msgstr "Sync" @@ -6192,7 +6192,7 @@ msgstr "Sync" msgid "Sync failed" msgstr "Sync failed" -#: src/strings.ts:1362 +#: src/strings.ts:1363 msgid "Sync is disabled" msgstr "Sync is disabled" @@ -6200,19 +6200,19 @@ msgstr "Sync is disabled" msgid "Sync now" msgstr "Sync now" -#: src/strings.ts:912 +#: src/strings.ts:913 msgid "Sync off" msgstr "Sync off" -#: src/strings.ts:1622 +#: src/strings.ts:1623 msgid "Sync server" msgstr "Sync server" -#: src/strings.ts:1081 +#: src/strings.ts:1082 msgid "Sync settings" msgstr "Sync settings" -#: src/strings.ts:1094 +#: src/strings.ts:1095 msgid "Sync your notes in the background even when the app is closed. This is an experimental feature. If you face any issues, please turn it off." msgstr "Sync your notes in the background even when the app is closed. This is an experimental feature. If you face any issues, please turn it off." @@ -6228,27 +6228,27 @@ msgstr "Syncing" msgid "Syncing your data" msgstr "Syncing your data" -#: src/strings.ts:1701 +#: src/strings.ts:1702 msgid "Syncing your notes" msgstr "Syncing your notes" -#: src/strings.ts:2338 +#: src/strings.ts:2339 msgid "Table" msgstr "Table" -#: src/strings.ts:537 +#: src/strings.ts:538 msgid "Table of contents" msgstr "Table of contents" -#: src/strings.ts:2283 +#: src/strings.ts:2284 msgid "Table settings" msgstr "Table settings" -#: src/strings.ts:2532 +#: src/strings.ts:2533 msgid "tables, outlines, block level note linking" msgstr "tables, outlines, block level note linking" -#: src/strings.ts:528 +#: src/strings.ts:529 msgid "Tabs" msgstr "Tabs" @@ -6265,55 +6265,55 @@ msgid "tags" msgstr "tags" #: src/strings.ts:317 -#: src/strings.ts:1524 +#: src/strings.ts:1525 msgid "Tags" msgstr "Tags" -#: src/strings.ts:1542 +#: src/strings.ts:1543 msgid "Take a backup before logging out" msgstr "Take a backup before logging out" -#: src/strings.ts:1214 +#: src/strings.ts:1215 msgid "Take a full backup of your data with all attachments" msgstr "Take a full backup of your data with all attachments" -#: src/strings.ts:1216 +#: src/strings.ts:1217 msgid "Take a partial backup of your data that does not include attachments" msgstr "Take a partial backup of your data that does not include attachments" -#: src/strings.ts:2337 +#: src/strings.ts:2338 msgid "Take a photo using camera" msgstr "Take a photo using camera" -#: src/strings.ts:1372 +#: src/strings.ts:1373 msgid "Take note" msgstr "Take note" -#: src/strings.ts:1655 +#: src/strings.ts:1656 msgid "Take notes privately." msgstr "Take notes privately." -#: src/strings.ts:673 +#: src/strings.ts:674 msgid "Taking too long? Reload editor" msgstr "Taking too long? Reload editor" -#: src/strings.ts:1456 +#: src/strings.ts:1457 msgid "Tap here to change sorting" msgstr "Tap here to change sorting" -#: src/strings.ts:1460 +#: src/strings.ts:1461 msgid "Tap here to jump to a section" msgstr "Tap here to jump to a section" -#: src/strings.ts:1368 +#: src/strings.ts:1369 msgid "Tap here to update to the latest version" msgstr "Tap here to update to the latest version" -#: src/strings.ts:1591 +#: src/strings.ts:1592 msgid "Tap on \"Dismiss\" and copy the contents of your note so they are not lost." msgstr "Tap on \"Dismiss\" and copy the contents of your note so they are not lost." -#: src/strings.ts:1371 +#: src/strings.ts:1372 msgid "Tap on \"Take note\" to add a note." msgstr "Tap on \"Take note\" to add a note." @@ -6329,11 +6329,11 @@ msgstr "Tap to cancel" msgid "Tap to deselect" msgstr "Tap to deselect" -#: src/strings.ts:667 +#: src/strings.ts:668 msgid "Tap to stop reordering" msgstr "Tap to stop reordering" -#: src/strings.ts:1352 +#: src/strings.ts:1353 msgid "Tap to try again" msgstr "Tap to try again" @@ -6341,19 +6341,19 @@ msgstr "Tap to try again" msgid "Tap twice to confirm you have saved the recovery key." msgstr "Tap twice to confirm you have saved the recovery key." -#: src/strings.ts:2343 +#: src/strings.ts:2344 msgid "Task list" msgstr "Task list" -#: src/strings.ts:2413 +#: src/strings.ts:2414 msgid "Tasks" msgstr "Tasks" -#: src/strings.ts:1161 +#: src/strings.ts:1162 msgid "Telemetry" msgstr "Telemetry" -#: src/strings.ts:1494 +#: src/strings.ts:1495 msgid "" "Tell us more about the issue you are facing.\n" "\n" @@ -6371,11 +6371,11 @@ msgstr "" "- Steps to reproduce the issue\n" "- Things you have tried etc." -#: src/strings.ts:1493 +#: src/strings.ts:1494 msgid "Tell us what happened" msgstr "Tell us what happened" -#: src/strings.ts:1282 +#: src/strings.ts:1283 msgid "Terms of service" msgstr "Terms of service" @@ -6383,51 +6383,51 @@ msgstr "Terms of service" msgid "Terms of Service " msgstr "Terms of Service " -#: src/strings.ts:2575 +#: src/strings.ts:2576 msgid "terms of use." msgstr "terms of use." -#: src/strings.ts:1621 +#: src/strings.ts:1622 msgid "Test connection" msgstr "Test connection" -#: src/strings.ts:1644 +#: src/strings.ts:1645 msgid "Test connection before changing server urls" msgstr "Test connection before changing server urls" -#: src/strings.ts:2281 +#: src/strings.ts:2282 msgid "Text color" msgstr "Text color" -#: src/strings.ts:2279 +#: src/strings.ts:2280 msgid "Text direction" msgstr "Text direction" -#: src/strings.ts:1785 +#: src/strings.ts:1786 msgid "Thank you for choosing end-to-end encrypted note taking. Now you can sync your notes to unlimited devices." msgstr "Thank you for choosing end-to-end encrypted note taking. Now you can sync your notes to unlimited devices." -#: src/strings.ts:2049 +#: src/strings.ts:2050 msgid "Thank you for reporting!" msgstr "Thank you for reporting!" -#: src/strings.ts:2549 +#: src/strings.ts:2550 msgid "Thank you for subscribing" msgstr "Thank you for subscribing" -#: src/strings.ts:2583 +#: src/strings.ts:2584 msgid "Thank you for the purchase" msgstr "Thank you for the purchase" -#: src/strings.ts:478 +#: src/strings.ts:479 msgid "Thank you for updating Notesnook! We will be applying some minor changes for a better note taking experience." msgstr "Thank you for updating Notesnook! We will be applying some minor changes for a better note taking experience." -#: src/strings.ts:2074 +#: src/strings.ts:2075 msgid "Thank you. You are the proof that privacy always comes first." msgstr "Thank you. You are the proof that privacy always comes first." -#: src/strings.ts:1642 +#: src/strings.ts:1643 msgid "The {title} at {url} is not compatible with this client." msgstr "The {title} at {url} is not compatible with this client." @@ -6435,11 +6435,11 @@ msgstr "The {title} at {url} is not compatible with this client." msgid "The information above will be publically available at" msgstr "The information above will be publically available at" -#: src/strings.ts:2602 +#: src/strings.ts:2603 msgid "The Notesnook Circle is exclusive to subscribers. Please consider subscribing to gain access to Notesnook Circle and enjoy additional benefits." msgstr "The Notesnook Circle is exclusive to subscribers. Please consider subscribing to gain access to Notesnook Circle and enjoy additional benefits." -#: src/strings.ts:2081 +#: src/strings.ts:2082 msgid "The password/pin for unlocking the app." msgstr "The password/pin for unlocking the app." @@ -6451,19 +6451,19 @@ msgstr "The reminder will repeat daily at {date}." msgid "The reminder will repeat every year on {date}." msgstr "The reminder will repeat every year on {date}." -#: src/strings.ts:1711 +#: src/strings.ts:1712 msgid "The reminder will start on {date} at {time}." msgstr "The reminder will start on {date} at {time}." -#: src/strings.ts:2084 +#: src/strings.ts:2085 msgid "The security key for unlocking the app. This is the most secure method." msgstr "The security key for unlocking the app. This is the most secure method." -#: src/strings.ts:1640 +#: src/strings.ts:1641 msgid "The URL you have given ({url}) does not point to the {server}." msgstr "The URL you have given ({url}) does not point to the {server}." -#: src/strings.ts:1116 +#: src/strings.ts:1117 msgid "Themes" msgstr "Themes" @@ -6471,11 +6471,11 @@ msgstr "Themes" msgid "There are no blocks in this note." msgstr "There are no blocks in this note." -#: src/strings.ts:2236 +#: src/strings.ts:2237 msgid "These items will be **kept in your Trash for {interval} days** after which they will be permanently deleted." msgstr "These items will be **kept in your Trash for {interval} days** after which they will be permanently deleted." -#: src/strings.ts:1919 +#: src/strings.ts:1920 msgid "This action is IRREVERSIBLE." msgstr "This action is IRREVERSIBLE." @@ -6483,52 +6483,52 @@ msgstr "This action is IRREVERSIBLE." msgid "This device" msgstr "This device" -#: src/strings.ts:1682 +#: src/strings.ts:1683 msgid "This error can be fixed by rebuilding the search index. This action won't result in any kind of data loss." msgstr "This error can be fixed by rebuilding the search index. This action won't result in any kind of data loss." -#: src/strings.ts:1674 +#: src/strings.ts:1675 msgid "This error can only be fixed by wiping & reseting the database. Beware that this will wipe all your data inside the database with no way to recover it later on. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device." msgstr "This error can only be fixed by wiping & reseting the database. Beware that this will wipe all your data inside the database with no way to recover it later on. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device." -#: src/strings.ts:1678 +#: src/strings.ts:1679 msgid "This error can only be fixed by wiping & reseting the Key Store and the database. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device." msgstr "This error can only be fixed by wiping & reseting the Key Store and the database. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device." -#: src/strings.ts:1676 +#: src/strings.ts:1677 msgid "This error means the at rest encryption key could not be decrypted. This can be due to data corruption or implementation change." msgstr "This error means the at rest encryption key could not be decrypted. This can be due to data corruption or implementation change." -#: src/strings.ts:1672 +#: src/strings.ts:1673 msgid "This error usually means the database file is either corrupt or it could not be decrypted." msgstr "This error usually means the database file is either corrupt or it could not be decrypted." -#: src/strings.ts:1680 +#: src/strings.ts:1681 msgid "This error usually means the search index is corrupted." msgstr "This error usually means the search index is corrupted." -#: src/strings.ts:1933 +#: src/strings.ts:1934 msgid "This image cannot be previewed" msgstr "This image cannot be previewed" -#: src/strings.ts:2569 +#: src/strings.ts:2570 msgid "This is a one time purchase, no subscription." msgstr "This is a one time purchase, no subscription." -#: src/strings.ts:2044 +#: src/strings.ts:2045 msgid "This may take a while" msgstr "This may take a while" -#: src/strings.ts:1100 -#: src/strings.ts:1109 +#: src/strings.ts:1101 +#: src/strings.ts:1110 msgid "This must only be used for troubleshooting. Using it regularly for sync is not recommended and will lead to unexpected data loss and other issues. If you are having persistent issues with sync, please report them to us at support@streetwriters.co." msgstr "This must only be used for troubleshooting. Using it regularly for sync is not recommended and will lead to unexpected data loss and other issues. If you are having persistent issues with sync, please report them to us at support@streetwriters.co." -#: src/strings.ts:1593 +#: src/strings.ts:1594 msgid "This note is locked" msgstr "This note is locked" -#: src/strings.ts:951 +#: src/strings.ts:952 msgid "This note is locked. Unlock note to save changes" msgstr "This note is locked. Unlock note to save changes" @@ -6544,129 +6544,129 @@ msgstr "This note is not referenced in other notes." msgid "This note will be published to a public URL." msgstr "This note will be published to a public URL." -#: src/strings.ts:2090 +#: src/strings.ts:2091 msgid "This username will be used to distinguish between different credentials in your security key. Make sure it is unique." msgstr "This username will be used to distinguish between different credentials in your security key. Make sure it is unique." -#: src/strings.ts:1302 +#: src/strings.ts:1303 msgid "This version of Notesnook app does not support in-app purchases. Kindly login on the Notesnook web app to make the purchase." msgstr "This version of Notesnook app does not support in-app purchases. Kindly login on the Notesnook web app to make the purchase." -#: src/strings.ts:625 +#: src/strings.ts:626 msgid "Thu" msgstr "Thu" -#: src/strings.ts:616 +#: src/strings.ts:617 msgid "Thursday" msgstr "Thursday" -#: src/strings.ts:1841 +#: src/strings.ts:1842 msgid "Time" msgstr "Time" -#: src/strings.ts:1133 +#: src/strings.ts:1134 msgid "Time format" msgstr "Time format" -#: src/strings.ts:670 +#: src/strings.ts:671 msgid "TIP" msgstr "TIP" -#: src/strings.ts:648 -#: src/strings.ts:653 +#: src/strings.ts:649 +#: src/strings.ts:654 msgid "Title" msgstr "Title" -#: src/strings.ts:1156 +#: src/strings.ts:1157 msgid "Title format" msgstr "Title format" -#: src/strings.ts:1187 +#: src/strings.ts:1188 msgid "To use app lock, you must enable biometrics such as Fingerprint lock or Face ID on your phone." msgstr "To use app lock, you must enable biometrics such as Fingerprint lock or Face ID on your phone." -#: src/strings.ts:1811 +#: src/strings.ts:1812 msgid "Toggle dark/light mode" msgstr "Toggle dark/light mode" -#: src/strings.ts:2461 +#: src/strings.ts:2462 msgid "Toggle focus mode" msgstr "Toggle focus mode" -#: src/strings.ts:2350 +#: src/strings.ts:2351 msgid "Toggle indentation mode" msgstr "Toggle indentation mode" -#: src/strings.ts:2379 +#: src/strings.ts:2380 msgid "Toggle replace" msgstr "Toggle replace" -#: src/strings.ts:2450 +#: src/strings.ts:2451 msgid "Toggle theme" msgstr "Toggle theme" -#: src/strings.ts:2131 +#: src/strings.ts:2132 msgid "Toolbar" msgstr "Toolbar" -#: src/strings.ts:1147 +#: src/strings.ts:1148 msgid "Toolbar reset to default preset" msgstr "Toolbar reset to default preset" -#: src/strings.ts:1325 -#: src/strings.ts:1522 +#: src/strings.ts:1326 +#: src/strings.ts:1523 msgid "Trash" msgstr "Trash" -#: src/strings.ts:1324 +#: src/strings.ts:1325 msgid "Trash cleared successfully!" msgstr "Trash cleared successfully!" -#: src/strings.ts:1330 +#: src/strings.ts:1331 msgid "Trash gets automatically cleaned up after {days} days" msgstr "Trash gets automatically cleaned up after {days} days" -#: src/strings.ts:1328 +#: src/strings.ts:1329 msgid "Trash gets automatically cleaned up daily" msgstr "Trash gets automatically cleaned up daily" -#: src/strings.ts:2539 +#: src/strings.ts:2540 msgid "Try {plan} for free" msgstr "Try {plan} for free" -#: src/strings.ts:1464 +#: src/strings.ts:1465 msgid "Try compact mode to fit more items on screen" msgstr "Try compact mode to fit more items on screen" -#: src/strings.ts:1823 +#: src/strings.ts:1824 msgid "Try free for 14 days" msgstr "Try free for 14 days" -#: src/strings.ts:2525 +#: src/strings.ts:2526 msgid "Try it for free" msgstr "Try it for free" -#: src/strings.ts:623 +#: src/strings.ts:624 msgid "Tue" msgstr "Tue" -#: src/strings.ts:614 +#: src/strings.ts:615 msgid "Tuesday" msgstr "Tuesday" -#: src/strings.ts:1085 +#: src/strings.ts:1086 msgid "Turn off automatic syncing. Changes from this client will be synced only when you run sync manually." msgstr "Turn off automatic syncing. Changes from this client will be synced only when you run sync manually." -#: src/strings.ts:891 +#: src/strings.ts:892 msgid "Turn off reminder" msgstr "Turn off reminder" -#: src/strings.ts:892 +#: src/strings.ts:893 msgid "Turn on reminder" msgstr "Turn on reminder" -#: src/strings.ts:1091 +#: src/strings.ts:1092 msgid "Turns off syncing completely on this device. Any changes made will remain local only and new changes from your other devices won't sync to this device." msgstr "Turns off syncing completely on this device. Any changes made will remain local only and new changes from your other devices won't sync to this device." @@ -6674,55 +6674,55 @@ msgstr "Turns off syncing completely on this device. Any changes made will remai msgid "Two factor authentication" msgstr "Two factor authentication" -#: src/strings.ts:493 +#: src/strings.ts:494 msgid "Two-factor authentication" msgstr "Two-factor authentication" -#: src/strings.ts:502 +#: src/strings.ts:503 msgid "Two-factor authentication enabled" msgstr "Two-factor authentication enabled" -#: src/strings.ts:1501 +#: src/strings.ts:1502 msgid "Type # to search for headings" msgstr "Type # to search for headings" -#: src/strings.ts:1508 +#: src/strings.ts:1509 msgid "Type a keyword" msgstr "Type a keyword" -#: src/strings.ts:1548 +#: src/strings.ts:1549 msgid "Unable to resolve download url" msgstr "Unable to resolve download url" -#: src/strings.ts:1551 +#: src/strings.ts:1552 msgid "Unable to send 2FA code" msgstr "Unable to send 2FA code" -#: src/strings.ts:2485 +#: src/strings.ts:2486 msgid "Unarchive" msgstr "Unarchive" -#: src/strings.ts:2257 +#: src/strings.ts:2258 msgid "Underline" msgstr "Underline" -#: src/strings.ts:565 +#: src/strings.ts:566 msgid "Undo" msgstr "Undo" -#: src/strings.ts:853 +#: src/strings.ts:854 msgid "Unfavorite" msgstr "Unfavorite" -#: src/strings.ts:2579 +#: src/strings.ts:2580 msgid "Unlimited" msgstr "Unlimited" -#: src/strings.ts:929 +#: src/strings.ts:930 msgid "Unlink from all" msgstr "Unlink from all" -#: src/strings.ts:852 +#: src/strings.ts:853 msgid "Unlink notebook" msgstr "Unlink notebook" @@ -6730,32 +6730,32 @@ msgstr "Unlink notebook" msgid "Unlock" msgstr "Unlock" -#: src/strings.ts:1382 +#: src/strings.ts:1383 msgid "Unlock more colors with Notesnook Pro" msgstr "Unlock more colors with Notesnook Pro" -#: src/strings.ts:454 -#: src/strings.ts:557 +#: src/strings.ts:455 +#: src/strings.ts:558 msgid "Unlock note" msgstr "Unlock note" -#: src/strings.ts:887 +#: src/strings.ts:888 msgid "Unlock note to delete it" msgstr "Unlock note to delete it" -#: src/strings.ts:1207 +#: src/strings.ts:1208 msgid "Unlock the app with biometric authentication. This requires biometrics to be enabled on your device." msgstr "Unlock the app with biometric authentication. This requires biometrics to be enabled on your device." -#: src/strings.ts:1931 +#: src/strings.ts:1932 msgid "Unlock vault" msgstr "Unlock vault" -#: src/strings.ts:543 +#: src/strings.ts:544 msgid "Unlock with biometrics" msgstr "Unlock with biometrics" -#: src/strings.ts:1826 +#: src/strings.ts:1827 msgid "Unlock with security key" msgstr "Unlock with security key" @@ -6763,40 +6763,40 @@ msgstr "Unlock with security key" msgid "Unlock your notes" msgstr "Unlock your notes" -#: src/strings.ts:1177 +#: src/strings.ts:1178 msgid "Unlock your vault with biometric authentication" msgstr "Unlock your vault with biometric authentication" -#: src/strings.ts:1709 +#: src/strings.ts:1710 msgid "Unlocking" msgstr "Unlocking" -#: src/strings.ts:898 +#: src/strings.ts:899 msgid "Unpin" msgstr "Unpin" -#: src/strings.ts:926 +#: src/strings.ts:927 msgid "Unpin notification" msgstr "Unpin notification" -#: src/strings.ts:586 +#: src/strings.ts:587 msgid "Unpublish" msgstr "Unpublish" -#: src/strings.ts:1476 +#: src/strings.ts:1477 msgid "Unpublish notes to delete them" msgstr "Unpublish notes to delete them" -#: src/strings.ts:2085 +#: src/strings.ts:2086 msgid "Unregister" msgstr "Unregister" #: src/strings.ts:210 -#: src/strings.ts:2359 +#: src/strings.ts:2360 msgid "Untitled" msgstr "Untitled" -#: src/strings.ts:587 +#: src/strings.ts:588 msgid "Update" msgstr "Update" @@ -6804,65 +6804,65 @@ msgstr "Update" msgid "Update available" msgstr "Update available" -#: src/strings.ts:1369 +#: src/strings.ts:1370 msgid "Update now" msgstr "Update now" -#: src/strings.ts:2499 +#: src/strings.ts:2500 msgid "Upgrade" msgstr "Upgrade" -#: src/strings.ts:1917 +#: src/strings.ts:1918 msgid "Upgrade now" msgstr "Upgrade now" -#: src/strings.ts:2498 +#: src/strings.ts:2499 msgid "Upgrade plan" msgstr "Upgrade plan" -#: src/strings.ts:2524 +#: src/strings.ts:2525 msgid "Upgrade plan to {plan} to use this feature." msgstr "Upgrade plan to {plan} to use this feature." -#: src/strings.ts:1938 +#: src/strings.ts:1939 msgid "Upgrade to Notesnook Pro to add colors." msgstr "Upgrade to Notesnook Pro to add colors." -#: src/strings.ts:1939 +#: src/strings.ts:1940 msgid "Upgrade to Notesnook Pro to create more tags." msgstr "Upgrade to Notesnook Pro to create more tags." -#: src/strings.ts:748 +#: src/strings.ts:749 msgid "Upgrade to Pro" msgstr "Upgrade to Pro" -#: src/strings.ts:2594 +#: src/strings.ts:2595 msgid "Upgrade to redeem" msgstr "Upgrade to redeem" -#: src/strings.ts:509 +#: src/strings.ts:510 msgid "Upload" msgstr "Upload" -#: src/strings.ts:2336 +#: src/strings.ts:2337 msgid "Upload from disk" msgstr "Upload from disk" -#: src/strings.ts:510 -#: src/strings.ts:1650 +#: src/strings.ts:511 +#: src/strings.ts:1651 msgid "Uploaded" msgstr "Uploaded" -#: src/strings.ts:798 +#: src/strings.ts:799 msgid "Uploaded file verification failed." msgstr "Uploaded file verification failed." #: src/strings.ts:65 -#: src/strings.ts:511 +#: src/strings.ts:512 msgid "Uploading" msgstr "Uploading" -#: src/strings.ts:762 +#: src/strings.ts:763 msgid "Uploads" msgstr "Uploads" @@ -6870,67 +6870,67 @@ msgstr "Uploads" msgid "Urgent" msgstr "Urgent" -#: src/strings.ts:2386 +#: src/strings.ts:2387 msgid "URL" msgstr "URL" -#: src/strings.ts:1788 +#: src/strings.ts:1789 msgid "Use" msgstr "Use" -#: src/strings.ts:461 +#: src/strings.ts:462 msgid "Use {keyboardShortcut}+click to select multiple notebooks" msgstr "Use {keyboardShortcut}+click to select multiple notebooks" -#: src/strings.ts:1801 +#: src/strings.ts:1802 msgid "Use a backup file" msgstr "Use a backup file" -#: src/strings.ts:1899 +#: src/strings.ts:1900 msgid "Use a data recovery key to reset your account password." msgstr "Use a data recovery key to reset your account password." -#: src/strings.ts:555 +#: src/strings.ts:556 msgid "Use account password" msgstr "Use account password" -#: src/strings.ts:2531 +#: src/strings.ts:2532 msgid "Use advanced note taking features like" msgstr "Use advanced note taking features like" -#: src/strings.ts:978 +#: src/strings.ts:979 msgid "Use an authenticator app to generate 2FA codes." msgstr "Use an authenticator app to generate 2FA codes." -#: src/strings.ts:2171 +#: src/strings.ts:2172 msgid "Use custom DNS" msgstr "Use custom DNS" -#: src/strings.ts:1122 +#: src/strings.ts:1123 msgid "Use dark mode for the app" msgstr "Use dark mode for the app" -#: src/strings.ts:1620 +#: src/strings.ts:1621 msgid "Use encryption key" msgstr "Use encryption key" -#: src/strings.ts:1159 +#: src/strings.ts:1160 msgid "Use markdown shortcuts in the editor" msgstr "Use markdown shortcuts in the editor" -#: src/strings.ts:2124 +#: src/strings.ts:2125 msgid "Use native OS titlebar instead of replacing it with a custom one. Requires app restart for changes to take effect." msgstr "Use native OS titlebar instead of replacing it with a custom one. Requires app restart for changes to take effect." -#: src/strings.ts:2122 +#: src/strings.ts:2123 msgid "Use native titlebar" msgstr "Use native titlebar" -#: src/strings.ts:1798 +#: src/strings.ts:1799 msgid "Use recovery key" msgstr "Use recovery key" -#: src/strings.ts:1118 +#: src/strings.ts:1119 msgid "Use system theme" msgstr "Use system theme" @@ -6943,7 +6943,8 @@ msgid "" "$timestamp$: Full date and time without any spaces or other symbols.\n" "(e.g 202305261253).\n" "$count$: Number of notes + 1.\n" -"$headline$: Use starting line of the note as title." +"$headline$: Use starting line of the note as title.\n" +"$day$: Current day (eg. Monday)" msgstr "" "Use the following key to format the title:\n" "\n" @@ -6952,85 +6953,86 @@ msgstr "" "$timestamp$: Full date and time without any spaces or other symbols.\n" "(e.g 202305261253).\n" "$count$: Number of notes + 1.\n" -"$headline$: Use starting line of the note as title." +"$headline$: Use starting line of the note as title.\n" +"$day$: Current day (eg. Monday)" -#: src/strings.ts:1098 +#: src/strings.ts:1099 msgid "Use this if changes from other devices are not appearing on this device. This will overwrite the data on this device with the latest data from the server." msgstr "Use this if changes from other devices are not appearing on this device. This will overwrite the data on this device with the latest data from the server." -#: src/strings.ts:1107 +#: src/strings.ts:1108 msgid "Use this if changes made on this device are not appearing on other devices. This will overwrite the data on the server with the data from this device." msgstr "Use this if changes made on this device are not appearing on other devices. This will overwrite the data on the server with the data from this device." -#: src/strings.ts:2472 +#: src/strings.ts:2473 msgid "used" msgstr "used" -#: src/strings.ts:1017 +#: src/strings.ts:1018 msgid "User verification failed" msgstr "User verification failed" -#: src/strings.ts:2253 +#: src/strings.ts:2254 msgid "Using {instance} (v{version})" msgstr "Using {instance} (v{version})" -#: src/strings.ts:2251 +#: src/strings.ts:2252 msgid "Using official Notesnook instance" msgstr "Using official Notesnook instance" -#: src/strings.ts:1708 +#: src/strings.ts:1709 msgid "v{version} available" msgstr "v{version} available" -#: src/strings.ts:1170 +#: src/strings.ts:1171 msgid "Vault" msgstr "Vault" -#: src/strings.ts:1991 +#: src/strings.ts:1992 msgid "Vault cleared" msgstr "Vault cleared" -#: src/strings.ts:812 +#: src/strings.ts:813 msgid "Vault created" msgstr "Vault created" -#: src/strings.ts:1992 +#: src/strings.ts:1993 msgid "Vault deleted" msgstr "Vault deleted" -#: src/strings.ts:448 +#: src/strings.ts:449 msgid "Vault fingerprint unlock" msgstr "Vault fingerprint unlock" -#: src/strings.ts:1930 +#: src/strings.ts:1931 msgid "Vault locked" msgstr "Vault locked" -#: src/strings.ts:1929 +#: src/strings.ts:1930 msgid "Vault unlocked" msgstr "Vault unlocked" -#: src/strings.ts:1399 +#: src/strings.ts:1400 msgid "Verification email sent" msgstr "Verification email sent" -#: src/strings.ts:574 +#: src/strings.ts:575 msgid "Verify" msgstr "Verify" -#: src/strings.ts:1068 +#: src/strings.ts:1069 msgid "Verify subscription" msgstr "Verify subscription" -#: src/strings.ts:1071 +#: src/strings.ts:1072 msgid "Verify your subscription to Notesnook Pro" msgstr "Verify your subscription to Notesnook Pro" -#: src/strings.ts:1902 +#: src/strings.ts:1903 msgid "Verifying 2FA code" msgstr "Verifying 2FA code" -#: src/strings.ts:1888 +#: src/strings.ts:1889 msgid "Verifying your email" msgstr "Verifying your email" @@ -7042,35 +7044,35 @@ msgstr "Version" msgid "Vibrate" msgstr "Vibrate" -#: src/strings.ts:755 +#: src/strings.ts:756 msgid "Videos" msgstr "Videos" -#: src/strings.ts:569 +#: src/strings.ts:570 msgid "View all linked notebooks" msgstr "View all linked notebooks" -#: src/strings.ts:1269 +#: src/strings.ts:1270 msgid "View and share debug logs" msgstr "View and share debug logs" -#: src/strings.ts:1746 +#: src/strings.ts:1747 msgid "View receipt" msgstr "View receipt" -#: src/strings.ts:1059 +#: src/strings.ts:1060 msgid "View recovery codes" msgstr "View recovery codes" -#: src/strings.ts:2151 +#: src/strings.ts:2152 msgid "View source code" msgstr "View source code" -#: src/strings.ts:1061 +#: src/strings.ts:1062 msgid "View your recovery codes to recover your account in case you lose access to your two-factor authentication methods." msgstr "View your recovery codes to recover your account in case you lose access to your two-factor authentication methods." -#: src/strings.ts:2609 +#: src/strings.ts:2610 msgid "Views" msgstr "Views" @@ -7078,149 +7080,149 @@ msgstr "Views" msgid "Visit homepage" msgstr "Visit homepage" -#: src/strings.ts:1349 +#: src/strings.ts:1350 msgid "Wait 30 seconds to try again" msgstr "Wait 30 seconds to try again" -#: src/strings.ts:1651 +#: src/strings.ts:1652 msgid "Waiting for upload" msgstr "Waiting for upload" -#: src/strings.ts:1910 +#: src/strings.ts:1911 msgid "We are creating a backup of your data. Please wait..." msgstr "We are creating a backup of your data. Please wait..." -#: src/strings.ts:473 +#: src/strings.ts:474 msgid "We are sorry, it seems that the app crashed due to an error. You can submit a bug report below so we can fix this asap." msgstr "We are sorry, it seems that the app crashed due to an error. You can submit a bug report below so we can fix this asap." -#: src/strings.ts:1389 +#: src/strings.ts:1390 msgid "We have sent you an email confirmation link. Please check your email inbox. If you cannot find the email, check your spam folder." msgstr "We have sent you an email confirmation link. Please check your email inbox. If you cannot find the email, check your spam folder." -#: src/strings.ts:2510 +#: src/strings.ts:2511 msgid "We require credit card details to fight abuse and to make it seamless for you to upgrade. Your credit card is NOT charged until your free trial ends and your subscription starts. You will be notified via email of the upcoming charge before your trial ends." msgstr "We require credit card details to fight abuse and to make it seamless for you to upgrade. Your credit card is NOT charged until your free trial ends and your subscription starts. You will be notified via email of the upcoming charge before your trial ends." -#: src/strings.ts:2166 +#: src/strings.ts:2167 msgid "We send you occasional promotional offers & product updates on your email (once every month)." msgstr "We send you occasional promotional offers & product updates on your email (once every month)." -#: src/strings.ts:1166 +#: src/strings.ts:1167 msgid "We will send you occasional promotional offers & product updates on your email (sent once every month)." msgstr "We will send you occasional promotional offers & product updates on your email (sent once every month)." -#: src/strings.ts:1353 +#: src/strings.ts:1354 msgid "We would love to know what you think!" msgstr "We would love to know what you think!" -#: src/strings.ts:2551 +#: src/strings.ts:2552 msgid "We’re setting up your plan right now. We’ll notify you as soon as everything is ready." msgstr "We’re setting up your plan right now. We’ll notify you as soon as everything is ready." -#: src/strings.ts:2321 +#: src/strings.ts:2322 msgid "Web clip settings" msgstr "Web clip settings" -#: src/strings.ts:2028 +#: src/strings.ts:2029 msgid "Website" msgstr "Website" -#: src/strings.ts:624 +#: src/strings.ts:625 msgid "Wed" msgstr "Wed" -#: src/strings.ts:615 +#: src/strings.ts:616 msgid "Wednesday" msgstr "Wednesday" -#: src/strings.ts:663 +#: src/strings.ts:664 msgid "Week" msgstr "Week" #: src/strings.ts:168 -#: src/strings.ts:1568 +#: src/strings.ts:1569 msgid "Weekly" msgstr "Weekly" -#: src/strings.ts:779 +#: src/strings.ts:780 msgid "Welcome back, {email}" msgstr "Welcome back, {email}" -#: src/strings.ts:1887 +#: src/strings.ts:1888 msgid "Welcome back!" msgstr "Welcome back!" -#: src/strings.ts:2582 +#: src/strings.ts:2583 msgid "Welcome to Notesnook {plan}" msgstr "Welcome to Notesnook {plan}" -#: src/strings.ts:2072 +#: src/strings.ts:2073 msgid "Welcome to Notesnook Pro" msgstr "Welcome to Notesnook Pro" -#: src/strings.ts:1391 +#: src/strings.ts:1392 msgid "What do I do if I am not getting the email?" msgstr "What do I do if I am not getting the email?" -#: src/strings.ts:2502 +#: src/strings.ts:2503 msgid "What happens to my data if I switch plans?" msgstr "What happens to my data if I switch plans?" -#: src/strings.ts:2518 +#: src/strings.ts:2519 msgid "What is your refund policy?" msgstr "What is your refund policy?" -#: src/strings.ts:1666 +#: src/strings.ts:1667 msgid "What went wrong?" msgstr "What went wrong?" -#: src/strings.ts:2508 +#: src/strings.ts:2509 msgid "Why do you need my credit card details for a free trial?" msgstr "Why do you need my credit card details for a free trial?" -#: src/strings.ts:2382 +#: src/strings.ts:2383 msgid "Width" msgstr "Width" -#: src/strings.ts:2488 +#: src/strings.ts:2489 msgid "Words" msgstr "Words" -#: src/strings.ts:2411 +#: src/strings.ts:2412 msgid "Work & Office" msgstr "Work & Office" -#: src/strings.ts:822 +#: src/strings.ts:823 msgid "Write notes with freedom, no spying, no tracking." msgstr "Write notes with freedom, no spying, no tracking." -#: src/strings.ts:1373 +#: src/strings.ts:1374 msgid "Write something..." msgstr "Write something..." -#: src/strings.ts:1653 +#: src/strings.ts:1654 msgid "Write with freedom." msgstr "Write with freedom." -#: src/strings.ts:2060 +#: src/strings.ts:2061 msgid "Write with freedom. Never compromise on privacy again." msgstr "Write with freedom. Never compromise on privacy again." -#: src/strings.ts:662 +#: src/strings.ts:663 msgid "Year" msgstr "Year" #: src/strings.ts:170 -#: src/strings.ts:1570 +#: src/strings.ts:1571 msgid "Yearly" msgstr "Yearly" -#: src/strings.ts:547 +#: src/strings.ts:548 msgid "Yes" msgstr "Yes" -#: src/strings.ts:2515 +#: src/strings.ts:2516 msgid "Yes, you can cancel your trial anytime. No questions asked." msgstr "Yes, you can cancel your trial anytime. No questions asked." @@ -7228,71 +7230,71 @@ msgstr "Yes, you can cancel your trial anytime. No questions asked." msgid "You also agree to recieve marketing emails from us which you can opt-out of from app settings." msgstr "You also agree to recieve marketing emails from us which you can opt-out of from app settings." -#: src/strings.ts:2587 +#: src/strings.ts:2588 msgid "You are already subscribed to this plan." msgstr "You are already subscribed to this plan." -#: src/strings.ts:2238 +#: src/strings.ts:2239 msgid "You are editing \"{notebookTitle}\"." msgstr "You are editing \"{notebookTitle}\"." -#: src/strings.ts:2042 +#: src/strings.ts:2043 msgid "You are editing #{tag}" msgstr "You are editing #{tag}" -#: src/strings.ts:1780 +#: src/strings.ts:1781 msgid "You are logging into the beta version of Notesnook. Switching between beta & stable versions can cause weird issues including data loss. It is recommended that you do not use both simultaneously." msgstr "You are logging into the beta version of Notesnook. Switching between beta & stable versions can cause weird issues including data loss. It is recommended that you do not use both simultaneously." -#: src/strings.ts:1360 +#: src/strings.ts:1361 msgid "You are not logged in" msgstr "You are not logged in" -#: src/strings.ts:885 +#: src/strings.ts:886 msgid "You are renaming color {color}" msgstr "You are renaming color {color}" -#: src/strings.ts:572 +#: src/strings.ts:573 msgid "You can add as many tags as you want." msgstr "You can add as many tags as you want." -#: src/strings.ts:463 +#: src/strings.ts:464 msgid "You can also link a note to multiple Notebooks. Tap and hold any notebook to enable multi-select." msgstr "You can also link a note to multiple Notebooks. Tap and hold any notebook to enable multi-select." -#: src/strings.ts:2063 +#: src/strings.ts:2064 msgid "You can change the theme at any time from Settings or the side menu." msgstr "You can change the theme at any time from Settings or the side menu." -#: src/strings.ts:2590 +#: src/strings.ts:2591 msgid "You can change your subscription plan from the web app" msgstr "You can change your subscription plan from the web app" -#: src/strings.ts:2419 +#: src/strings.ts:2420 msgid "You can create shortcuts of frequently accessed notebooks in the side menu" msgstr "You can create shortcuts of frequently accessed notebooks in the side menu" -#: src/strings.ts:2078 +#: src/strings.ts:2079 msgid "You can import your notes from most other note taking apps." msgstr "You can import your notes from most other note taking apps." -#: src/strings.ts:1435 +#: src/strings.ts:1436 msgid "You can multi-select notes and move them to a notebook at once" msgstr "You can multi-select notes and move them to a notebook at once" -#: src/strings.ts:1426 +#: src/strings.ts:1427 msgid "You can pin frequently used Notebooks to the Side Menu to quickly access them." msgstr "You can pin frequently used Notebooks to the Side Menu to quickly access them." -#: src/strings.ts:1169 +#: src/strings.ts:1170 msgid "You can set a custom proxy URL to increase your privacy." msgstr "You can set a custom proxy URL to increase your privacy." -#: src/strings.ts:1407 +#: src/strings.ts:1408 msgid "You can swipe left anywhere in the app to start a new note." msgstr "You can swipe left anywhere in the app to start a new note." -#: src/strings.ts:2052 +#: src/strings.ts:2053 msgid "" "You can track your bug report at [{url}]({url}).\n" "\n" @@ -7310,236 +7312,236 @@ msgstr "" msgid "You can track your issue at " msgstr "You can track your issue at " -#: src/strings.ts:1027 +#: src/strings.ts:1028 msgid "You can use all premium features for free for the next 14 days" msgstr "You can use all premium features for free for the next 14 days" -#: src/strings.ts:1057 +#: src/strings.ts:1058 msgid "You can use fallback 2FA method incase you are unable to login via primary method" msgstr "You can use fallback 2FA method incase you are unable to login via primary method" -#: src/strings.ts:1449 +#: src/strings.ts:1450 msgid "You can view & restore older versions of any note by going to its properties -> History." msgstr "You can view & restore older versions of any note by going to its properties -> History." -#: src/strings.ts:1748 +#: src/strings.ts:1749 msgid "You have {count} custom dictionary words." msgstr "You have {count} custom dictionary words." -#: src/strings.ts:2197 +#: src/strings.ts:2198 msgid "You have been logged out from all other devices." msgstr "You have been logged out from all other devices." -#: src/strings.ts:2191 +#: src/strings.ts:2192 msgid "You have been logged out." msgstr "You have been logged out." -#: src/strings.ts:2586 +#: src/strings.ts:2587 msgid "You have made a one time purchase. To change your plan please contact support." msgstr "You have made a one time purchase. To change your plan please contact support." -#: src/strings.ts:963 +#: src/strings.ts:964 msgid "You have not added any notebooks yet" msgstr "You have not added any notebooks yet" -#: src/strings.ts:962 +#: src/strings.ts:963 msgid "You have not added any tags yet" msgstr "You have not added any tags yet" -#: src/strings.ts:961 +#: src/strings.ts:962 msgid "You have not created any notes yet" msgstr "You have not created any notes yet" -#: src/strings.ts:960 +#: src/strings.ts:961 msgid "You have not favorited any notes yet" msgstr "You have not favorited any notes yet" -#: src/strings.ts:965 +#: src/strings.ts:966 msgid "You have not published any monographs yet" msgstr "You have not published any monographs yet" -#: src/strings.ts:964 +#: src/strings.ts:965 msgid "You have not set any reminders yet" msgstr "You have not set any reminders yet" -#: src/strings.ts:1544 +#: src/strings.ts:1545 msgid "You have unsynced notes. Take a backup or sync your notes to avoid losing your critical data." msgstr "You have unsynced notes. Take a backup or sync your notes to avoid losing your critical data." -#: src/strings.ts:1633 +#: src/strings.ts:1634 msgid "You must log out in order to change/reset server URLs." msgstr "You must log out in order to change/reset server URLs." -#: src/strings.ts:835 +#: src/strings.ts:836 msgid "You simply cannot get any better of a note taking app than @notesnook. The UI is clean and slick, it is feature rich, encrypted, reasonably priced (esp. for students & educators) & open source" msgstr "You simply cannot get any better of a note taking app than @notesnook. The UI is clean and slick, it is feature rich, encrypted, reasonably priced (esp. for students & educators) & open source" -#: src/strings.ts:1067 +#: src/strings.ts:1068 msgid "You subscribed to Notesnook Pro on {date}. Verify this subscription?" msgstr "You subscribed to Notesnook Pro on {date}. Verify this subscription?" -#: src/strings.ts:708 +#: src/strings.ts:709 msgid "You subscribed to Notesnook Pro on Android Phone/Tablet using Google In App Purchase." msgstr "You subscribed to Notesnook Pro on Android Phone/Tablet using Google In App Purchase." -#: src/strings.ts:701 +#: src/strings.ts:702 msgid "You subscribed to Notesnook Pro on iOS using Apple In App Purchase. You can cancel anytime with your iTunes Account settings." msgstr "You subscribed to Notesnook Pro on iOS using Apple In App Purchase. You can cancel anytime with your iTunes Account settings." -#: src/strings.ts:714 +#: src/strings.ts:715 msgid "You subscribed to Notesnook Pro on the Web/Desktop App." msgstr "You subscribed to Notesnook Pro on the Web/Desktop App." -#: src/strings.ts:720 +#: src/strings.ts:721 msgid "You subscribed to Notesnook Pro using a gift card." msgstr "You subscribed to Notesnook Pro using a gift card." -#: src/strings.ts:695 +#: src/strings.ts:696 msgid "You were awarded a subscription to Notesnook Pro by Streetwriters." msgstr "You were awarded a subscription to Notesnook Pro by Streetwriters." -#: src/strings.ts:467 +#: src/strings.ts:468 msgid "You will be logged out from all your devices" msgstr "You will be logged out from all your devices" -#: src/strings.ts:1850 +#: src/strings.ts:1851 msgid "You will receive instructions on how to recover your account on this email" msgstr "You will receive instructions on how to recover your account on this email" -#: src/strings.ts:466 +#: src/strings.ts:467 msgid "Your account email will be changed without affecting your subscription or any other settings." msgstr "Your account email will be changed without affecting your subscription or any other settings." -#: src/strings.ts:1916 +#: src/strings.ts:1917 msgid "Your account has been recovered." msgstr "Your account has been recovered." -#: src/strings.ts:501 -#: src/strings.ts:1727 +#: src/strings.ts:502 +#: src/strings.ts:1728 msgid "Your account is now 100% secure against unauthorized logins." msgstr "Your account is now 100% secure against unauthorized logins." -#: src/strings.ts:1855 +#: src/strings.ts:1856 msgid "Your account password must be strong & unique." msgstr "Your account password must be strong & unique." -#: src/strings.ts:1033 +#: src/strings.ts:1034 msgid "Your account will be downgraded in {days} days" msgstr "Your account will be downgraded in {days} days" -#: src/strings.ts:959 +#: src/strings.ts:960 msgid "Your archive" msgstr "Your archive" -#: src/strings.ts:2484 +#: src/strings.ts:2485 msgid "Your archive is empty" msgstr "Your archive is empty" -#: src/strings.ts:1928 +#: src/strings.ts:1929 msgid "Your backup is ready to download" msgstr "Your backup is ready to download" -#: src/strings.ts:1585 +#: src/strings.ts:1586 msgid "Your changes could not be saved" msgstr "Your changes could not be saved" -#: src/strings.ts:1775 +#: src/strings.ts:1776 msgid "Your changes have been saved and will be reflected after the app has refreshed." msgstr "Your changes have been saved and will be reflected after the app has refreshed." -#: src/strings.ts:2098 +#: src/strings.ts:2099 msgid "Your current 2FA method is {method}" msgstr "Your current 2FA method is {method}" -#: src/strings.ts:2593 +#: src/strings.ts:2594 msgid "Your current subscription does not allow changing plans" msgstr "Your current subscription does not allow changing plans" -#: src/strings.ts:1800 +#: src/strings.ts:1801 msgid "Your data recovery key is basically a hashed version of your password (plus some random salt). It can be used to decrypt your data for re-encryption." msgstr "Your data recovery key is basically a hashed version of your password (plus some random salt). It can be used to decrypt your data for re-encryption." -#: src/strings.ts:1853 +#: src/strings.ts:1854 msgid "Your data recovery key will be used to decrypt your data" msgstr "Your data recovery key will be used to decrypt your data" -#: src/strings.ts:2504 +#: src/strings.ts:2505 msgid "Your data remains 100% accessible regardless of what plan you are on. That includes your notes, notebooks, attachments, and anything else you might have created." msgstr "Your data remains 100% accessible regardless of what plan you are on. That includes your notes, notebooks, attachments, and anything else you might have created." -#: src/strings.ts:1783 +#: src/strings.ts:1784 msgid "Your email has been confirmed." msgstr "Your email has been confirmed." -#: src/strings.ts:2495 +#: src/strings.ts:2496 msgid "Your email has been confirmed. You can now securely sync your encrypted notes across all devices." msgstr "Your email has been confirmed. You can now securely sync your encrypted notes across all devices." -#: src/strings.ts:765 +#: src/strings.ts:766 msgid "Your email is not confirmed. Please confirm your email address to change account password." msgstr "Your email is not confirmed. Please confirm your email address to change account password." -#: src/strings.ts:953 +#: src/strings.ts:954 msgid "Your favorites" msgstr "Your favorites" -#: src/strings.ts:1030 +#: src/strings.ts:1031 msgid "Your free trial ends on {date}" msgstr "Your free trial ends on {date}" -#: src/strings.ts:1403 +#: src/strings.ts:1404 msgid "Your free trial has expired" msgstr "Your free trial has expired" -#: src/strings.ts:1025 +#: src/strings.ts:1026 msgid "Your free trial has started" msgstr "Your free trial has started" -#: src/strings.ts:1402 +#: src/strings.ts:1403 msgid "Your free trial is ending soon" msgstr "Your free trial is ending soon" -#: src/strings.ts:1777 +#: src/strings.ts:1778 msgid "Your full name" msgstr "Your full name" -#: src/strings.ts:958 +#: src/strings.ts:959 msgid "Your monographs" msgstr "Your monographs" -#: src/strings.ts:1311 +#: src/strings.ts:1312 msgid "Your name is stored 100% end-to-end encrypted and only visible to you." msgstr "Your name is stored 100% end-to-end encrypted and only visible to you." -#: src/strings.ts:560 +#: src/strings.ts:561 msgid "Your note will be unencrypted and removed from the vault." msgstr "Your note will be unencrypted and removed from the vault." -#: src/strings.ts:956 +#: src/strings.ts:957 msgid "Your notebooks" msgstr "Your notebooks" -#: src/strings.ts:954 +#: src/strings.ts:955 msgid "Your notes" msgstr "Your notes" -#: src/strings.ts:1891 +#: src/strings.ts:1892 msgid "Your password is always hashed before leaving this device." msgstr "Your password is always hashed before leaving this device." -#: src/strings.ts:831 +#: src/strings.ts:832 msgid "Your privacy matters to us, no matter who you are. In a world where everyone is trying to spy on you, Notesnook encrypts all your data before it leaves your device. With Notesnook no one can ever sell your data again." msgstr "Your privacy matters to us, no matter who you are. In a world where everyone is trying to spy on you, Notesnook encrypts all your data before it leaves your device. With Notesnook no one can ever sell your data again." -#: src/strings.ts:1308 +#: src/strings.ts:1309 msgid "Your profile pictrure is stored 100% end-to-end encrypted and only visible to you." msgstr "Your profile pictrure is stored 100% end-to-end encrypted and only visible to you." -#: src/strings.ts:1996 +#: src/strings.ts:1997 msgid "Your refund has been issued. Please wait 24 hours before reaching out to us in case you do not receive your funds." msgstr "Your refund has been issued. Please wait 24 hours before reaching out to us in case you do not receive your funds." -#: src/strings.ts:957 +#: src/strings.ts:958 msgid "Your reminders" msgstr "Your reminders" @@ -7547,54 +7549,54 @@ msgstr "Your reminders" msgid "Your session has expired. Please enter password for {obfuscatedEmail} to continue." msgstr "Your session has expired. Please enter password for {obfuscatedEmail} to continue." -#: src/strings.ts:1034 +#: src/strings.ts:1035 msgid "Your subscription ends on {date}" msgstr "Your subscription ends on {date}" -#: src/strings.ts:1994 +#: src/strings.ts:1995 msgid "Your subscription has been canceled." msgstr "Your subscription has been canceled." -#: src/strings.ts:1031 +#: src/strings.ts:1032 msgid "Your subscription has ended" msgstr "Your subscription has ended" -#: src/strings.ts:1035 +#: src/strings.ts:1036 msgid "Your subscription renews on {date}" msgstr "Your subscription renews on {date}" -#: src/strings.ts:955 +#: src/strings.ts:956 msgid "Your tags" msgstr "Your tags" -#: src/strings.ts:689 +#: src/strings.ts:690 msgid "yr" msgstr "yr" -#: src/strings.ts:647 +#: src/strings.ts:648 msgid "Z to A" msgstr "Z to A" -#: src/strings.ts:792 +#: src/strings.ts:793 msgid "Zipping" msgstr "Zipping" -#: src/strings.ts:2460 +#: src/strings.ts:2461 msgid "Zoom" msgstr "Zoom" -#: src/strings.ts:2092 +#: src/strings.ts:2093 msgid "Zoom factor" msgstr "Zoom factor" -#: src/strings.ts:1699 +#: src/strings.ts:1700 msgid "Zoom in" msgstr "Zoom in" -#: src/strings.ts:2093 +#: src/strings.ts:2094 msgid "Zoom in or out the app content." msgstr "Zoom in or out the app content." -#: src/strings.ts:1698 +#: src/strings.ts:1699 msgid "Zoom out" msgstr "Zoom out" diff --git a/packages/intl/locale/pseudo-LOCALE.po b/packages/intl/locale/pseudo-LOCALE.po index 84f1044af..afc3aa41b 100644 --- a/packages/intl/locale/pseudo-LOCALE.po +++ b/packages/intl/locale/pseudo-LOCALE.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/strings.ts:2409 +#: src/strings.ts:2410 msgid " \"Notebook > Notes\"" msgstr "" @@ -21,27 +21,27 @@ msgstr "" msgid " Unlock with password once to enable biometric access." msgstr "" -#: src/strings.ts:1940 +#: src/strings.ts:1941 msgid " Upgrade to Notesnook Pro to add more notebooks." msgstr "" -#: src/strings.ts:1943 +#: src/strings.ts:1944 msgid " Upgrade to Notesnook Pro to customize the toolbar." msgstr "" -#: src/strings.ts:1942 +#: src/strings.ts:1943 msgid " Upgrade to Notesnook Pro to use custom toolbar presets." msgstr "" -#: src/strings.ts:1941 +#: src/strings.ts:1942 msgid " Upgrade to Notesnook Pro to use the notes vault." msgstr "" -#: src/strings.ts:1944 +#: src/strings.ts:1945 msgid " Upgrade to Notesnook Pro to use this feature." msgstr "" -#: src/strings.ts:827 +#: src/strings.ts:828 msgid "— not just the" msgstr "" @@ -59,24 +59,24 @@ msgid "{0}" msgstr "" #. placeholder {0}: name || "File" -#: src/strings.ts:514 +#: src/strings.ts:515 msgid "{0} downloaded" msgstr "" #. placeholder {0}: version ? `v${version} ` : "New version" -#: src/strings.ts:532 +#: src/strings.ts:533 msgid "{0} Highlights 🎉" msgstr "" -#: src/strings.ts:1752 +#: src/strings.ts:1753 msgid "{count, plural, one {# error occured} other {# errors occured}}" msgstr "" -#: src/strings.ts:1758 +#: src/strings.ts:1759 msgid "{count, plural, one {# file ready for import} other {# files ready for import}}" msgstr "" -#: src/strings.ts:1713 +#: src/strings.ts:1714 msgid "{count, plural, one {# file} other {# files}}" msgstr "" @@ -84,11 +84,11 @@ msgstr "" msgid "{count, plural, one {# note} other {# notes}}" msgstr "" -#: src/strings.ts:1577 +#: src/strings.ts:1578 msgid "{count, plural, one {1 hour} other {# hours}}" msgstr "" -#: src/strings.ts:1572 +#: src/strings.ts:1573 msgid "{count, plural, one {1 minute} other {# minutes}}" msgstr "" @@ -129,7 +129,7 @@ msgstr "" msgid "{count, plural, one {Are you sure you want to download all attachments of this note?} other {Are you sure you want to download all attachments?}}" msgstr "" -#: src/strings.ts:862 +#: src/strings.ts:863 msgid "{count, plural, one {Are you sure you want to move this notebook to {selectedNotebookTitle}?} other {Are you sure you want to move these # notebooks {selectedNotebookTitle}?}}" msgstr "" @@ -288,15 +288,15 @@ msgstr "" msgid "{count, plural, one {Item unpublished} other {# items unpublished}}" msgstr "" -#: src/strings.ts:2426 +#: src/strings.ts:2427 msgid "{count, plural, one {Move all notes in this notebook to trash} other {Move all notes in these notebooks to trash}}" msgstr "" -#: src/strings.ts:860 +#: src/strings.ts:861 msgid "{count, plural, one {Move notebook} other {Move # notebooks}}" msgstr "" -#: src/strings.ts:480 +#: src/strings.ts:481 msgid "{count, plural, one {Moving {title}} other {Moving # notebooks}}" msgstr "" @@ -336,7 +336,7 @@ msgstr "" msgid "{count, plural, one {Note unpublished} other {# notes unpublished}}" msgstr "" -#: src/strings.ts:919 +#: src/strings.ts:920 msgid "{count, plural, one {Note will be automatically deleted from all other devices & any future changes won't get synced. Are you sure you want to continue?} other {# notes will be automatically deleted from all other devices & any future changes won't get synced. Are you sure you want to continue?}}" msgstr "" @@ -390,7 +390,7 @@ msgstr "" msgid "{count, plural, one {Pin notebook} other {Pin # notebooks}}" msgstr "" -#: src/strings.ts:914 +#: src/strings.ts:915 msgid "{count, plural, one {Prevent note from syncing} other {Prevent # notes from syncing}}" msgstr "" @@ -491,15 +491,15 @@ msgstr "" msgid "{count, plural, one {Unpublish note} other {Unpublish # notes}}" msgstr "" -#: src/strings.ts:2496 +#: src/strings.ts:2497 msgid "{count} characters" msgstr "" -#: src/strings.ts:1563 +#: src/strings.ts:1564 msgid "{days, plural, one {1 day} other {# days}}" msgstr "" -#: src/strings.ts:2556 +#: src/strings.ts:2557 msgid "{days} days free" msgstr "" @@ -527,55 +527,55 @@ msgstr "" msgid "{key, select, dateCreated {Created at} dateEdited {Last edited at} dateModified {Last modified at} dateUploaded {Uploaded at} dateDeleted {Deleted at} other {{key}}}" msgstr "" -#: src/strings.ts:439 +#: src/strings.ts:440 msgid "{mode, select, create {Create app lock {keyboardType}} change {Change app lock {keyboardType}} remove {Remove app lock {keyboardType}} other {}}" msgstr "" -#: src/strings.ts:604 +#: src/strings.ts:605 msgid "{mode, select, day {Daily} week {Weekly} month {Monthly} year {Yearly} other {Unknown mode}}" msgstr "" -#: src/strings.ts:597 +#: src/strings.ts:598 msgid "{mode, select, repeat {Repeat} once {Once} permanent {Permanent} other {Unknown mode}}" msgstr "" -#: src/strings.ts:1975 +#: src/strings.ts:1976 msgid "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}} and {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}." msgstr "" -#: src/strings.ts:1970 +#: src/strings.ts:1971 msgid "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}}." msgstr "" -#: src/strings.ts:1965 +#: src/strings.ts:1966 msgid "{n} {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}." msgstr "" -#: src/strings.ts:1960 +#: src/strings.ts:1961 msgid "{notes, plural, one {1 note} other {# notes}}" msgstr "" -#: src/strings.ts:470 +#: src/strings.ts:471 msgid "{notes, plural, one {Export note} other {Export # notes}}" msgstr "" -#: src/strings.ts:1705 +#: src/strings.ts:1706 msgid "{percentage}% updating..." msgstr "" -#: src/strings.ts:2540 +#: src/strings.ts:2541 msgid "{plan} plan" msgstr "" -#: src/strings.ts:742 +#: src/strings.ts:743 msgid "{platform, select, android {{name} saved to selected path} other {{name} saved to File Manager/Notesnook/downloads}}" msgstr "" -#: src/strings.ts:1336 +#: src/strings.ts:1337 msgid "{platform, select, android {Backup file saved in \"Notesnook backups\" folder on your phone.} other {Backup file is saved in File Manager/Notesnook folder}}" msgstr "" -#: src/strings.ts:2356 +#: src/strings.ts:2357 msgid "{selected} selected" msgstr "" @@ -591,191 +591,191 @@ msgstr "" msgid "{type, select, upload {Uploading} download {Downloading} sync {Syncing} other {Loading}}" msgstr "" -#: src/strings.ts:784 +#: src/strings.ts:785 msgid "{type} does not match" msgstr "" -#: src/strings.ts:1598 +#: src/strings.ts:1599 msgid "{words, plural, one {# word} other {# words}}" msgstr "" -#: src/strings.ts:1661 +#: src/strings.ts:1662 msgid "{words, plural, other {# selected}}" msgstr "" -#: src/strings.ts:1789 +#: src/strings.ts:1790 msgid "#notesnook" msgstr "" -#: src/strings.ts:1582 +#: src/strings.ts:1583 msgid "12-hour" msgstr "" -#: src/strings.ts:1583 +#: src/strings.ts:1584 msgid "24-hour" msgstr "" -#: src/strings.ts:1903 +#: src/strings.ts:1904 msgid "2FA code is required()" msgstr "" -#: src/strings.ts:1007 +#: src/strings.ts:1008 msgid "2FA code sent via {method}" msgstr "" -#: src/strings.ts:2580 +#: src/strings.ts:2581 msgid "5 year plan (One time purchase)" msgstr "" -#: src/strings.ts:1844 +#: src/strings.ts:1845 msgid "6 digit code" msgstr "" -#: src/strings.ts:1430 +#: src/strings.ts:1431 msgid "A notebook can have unlimited topics with unlimited notes." msgstr "" -#: src/strings.ts:646 +#: src/strings.ts:647 msgid "A to Z" msgstr "" -#: src/strings.ts:447 +#: src/strings.ts:448 msgid "A vault stores your notes in an encrypted storage." msgstr "" -#: src/strings.ts:661 +#: src/strings.ts:662 msgid "Abc" msgstr "" -#: src/strings.ts:1288 +#: src/strings.ts:1289 msgid "About" msgstr "" -#: src/strings.ts:1023 +#: src/strings.ts:1024 msgid "Account" msgstr "" -#: src/strings.ts:1846 +#: src/strings.ts:1847 msgid "Account password" msgstr "" -#: src/strings.ts:2451 +#: src/strings.ts:2452 msgid "Actions for note: {title}" msgstr "" -#: src/strings.ts:2452 +#: src/strings.ts:2453 msgid "Actions for notebook: {title}" msgstr "" -#: src/strings.ts:2453 +#: src/strings.ts:2454 msgid "Actions for tag: {title}" msgstr "" -#: src/strings.ts:2036 +#: src/strings.ts:2037 msgid "Activate" msgstr "" -#: src/strings.ts:1822 +#: src/strings.ts:1823 msgid "Activating trial" msgstr "" -#: src/strings.ts:529 +#: src/strings.ts:530 msgid "Add" msgstr "" -#: src/strings.ts:1055 +#: src/strings.ts:1056 msgid "Add 2FA fallback method" msgstr "" -#: src/strings.ts:1506 +#: src/strings.ts:1507 msgid "Add a short note" msgstr "" -#: src/strings.ts:1599 +#: src/strings.ts:1600 msgid "Add a tag" msgstr "" -#: src/strings.ts:556 +#: src/strings.ts:557 msgid "Add color" msgstr "" -#: src/strings.ts:894 +#: src/strings.ts:895 msgid "Add notebook" msgstr "" -#: src/strings.ts:2478 +#: src/strings.ts:2479 msgid "Add notes" msgstr "" -#: src/strings.ts:484 +#: src/strings.ts:485 msgid "Add notes to {title}" msgstr "" -#: src/strings.ts:893 +#: src/strings.ts:894 msgid "Add shortcut" msgstr "" -#: src/strings.ts:736 +#: src/strings.ts:737 msgid "Add shortcuts for notebooks and tags here." msgstr "" -#: src/strings.ts:571 +#: src/strings.ts:572 msgid "Add tag" msgstr "" -#: src/strings.ts:932 +#: src/strings.ts:933 msgid "Add tags" msgstr "" -#: src/strings.ts:933 +#: src/strings.ts:934 msgid "Add tags to multiple notes at once" msgstr "" -#: src/strings.ts:2243 +#: src/strings.ts:2244 msgid "Add to dictionary" msgstr "" -#: src/strings.ts:2613 +#: src/strings.ts:2614 msgid "Add to home" msgstr "" -#: src/strings.ts:2476 +#: src/strings.ts:2477 msgid "Add to notebook" msgstr "" -#: src/strings.ts:973 +#: src/strings.ts:974 msgid "Add your first note" msgstr "" -#: src/strings.ts:974 +#: src/strings.ts:975 msgid "Add your first notebook" -msgstr "" +msgstr "<<<<<<< HEAD" -#: src/strings.ts:2616 +#: src/strings.ts:2617 msgid "Adjust the line height of the editor" msgstr "" -#: src/strings.ts:2170 +#: src/strings.ts:2171 msgid "Advanced" msgstr "" -#: src/strings.ts:1725 +#: src/strings.ts:1726 msgid "After scanning the QR code image, the app will display a code that you can enter below." msgstr "" -#: src/strings.ts:2308 +#: src/strings.ts:2309 msgid "Align left" msgstr "" -#: src/strings.ts:2309 +#: src/strings.ts:2310 msgid "Align right" msgstr "" -#: src/strings.ts:2278 +#: src/strings.ts:2279 msgid "Alignment" msgstr "" -#: src/strings.ts:725 +#: src/strings.ts:726 msgid "All" msgstr "" @@ -783,55 +783,55 @@ msgstr "" msgid "All attachments are end-to-end encrypted." msgstr "" -#: src/strings.ts:2403 +#: src/strings.ts:2404 msgid "All cached attachments have been cleared." msgstr "" -#: src/strings.ts:766 +#: src/strings.ts:767 msgid "All fields are required" msgstr "" -#: src/strings.ts:753 +#: src/strings.ts:754 msgid "All files" msgstr "" -#: src/strings.ts:1173 +#: src/strings.ts:1174 msgid "All locked notes will be re-encrypted with the new password." msgstr "" -#: src/strings.ts:738 +#: src/strings.ts:739 msgid "All logs are local only and are not sent to any server. You can share the logs from here with us if you face an issue to help us find the root cause." msgstr "" -#: src/strings.ts:1636 +#: src/strings.ts:1637 msgid "All server urls are required." msgstr "" -#: src/strings.ts:1905 +#: src/strings.ts:1906 msgid "All the data in your account will be overwritten with the data in the backup file. There is no way to reverse this action." msgstr "" -#: src/strings.ts:2150 +#: src/strings.ts:2151 msgid "All the source code for Notesnook is available & open for everyone on GitHub." msgstr "" -#: src/strings.ts:429 +#: src/strings.ts:430 msgid "All tools are grouped" msgstr "" -#: src/strings.ts:1320 +#: src/strings.ts:1321 msgid "All tools in the collapsed section will be removed" msgstr "" -#: src/strings.ts:1315 +#: src/strings.ts:1316 msgid "All tools in this group will be removed from the toolbar." msgstr "" -#: src/strings.ts:1345 +#: src/strings.ts:1346 msgid "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder" msgstr "" -#: src/strings.ts:1077 +#: src/strings.ts:1078 msgid "All your data will be removed permanently. Make sure you have saved backup of your notes. This action is IRREVERSIBLE." msgstr "" @@ -839,7 +839,7 @@ msgstr "" msgid "Already have an account?" msgstr "" -#: src/strings.ts:2220 +#: src/strings.ts:2221 msgid "Amount" msgstr "" @@ -847,7 +847,7 @@ msgstr "" msgid "An error occurred while migrating your data. You can logout of your account and try to relogin. However this is not recommended as it may result in some data loss if your data was not synced." msgstr "" -#: src/strings.ts:2574 +#: src/strings.ts:2575 msgid "and" msgstr "" @@ -855,19 +855,19 @@ msgstr "" msgid "and " msgstr "" -#: src/strings.ts:1790 +#: src/strings.ts:1791 msgid "and get a chance to win free promo codes." msgstr "" -#: src/strings.ts:2533 +#: src/strings.ts:2534 msgid "and much more." msgstr "" -#: src/strings.ts:1396 +#: src/strings.ts:1397 msgid "and we will manually confirm your account." msgstr "" -#: src/strings.ts:2591 +#: src/strings.ts:2592 msgid "ANNOUNCEMENT" msgstr "" @@ -875,106 +875,106 @@ msgstr "" msgid "App data has been cleared. Kindly relaunch the app to login again." msgstr "" -#: src/strings.ts:1182 -#: src/strings.ts:1692 +#: src/strings.ts:1183 +#: src/strings.ts:1693 msgid "App lock" msgstr "" -#: src/strings.ts:780 -#: src/strings.ts:1208 +#: src/strings.ts:781 +#: src/strings.ts:1209 msgid "App lock disabled" msgstr "" -#: src/strings.ts:1188 +#: src/strings.ts:1189 msgid "App lock timeout" msgstr "" -#: src/strings.ts:1299 +#: src/strings.ts:1300 msgid "App version" msgstr "" -#: src/strings.ts:1773 +#: src/strings.ts:1774 msgid "App will reload in {sec} seconds" msgstr "" -#: src/strings.ts:1113 +#: src/strings.ts:1114 msgid "Appearance" msgstr "" -#: src/strings.ts:538 +#: src/strings.ts:539 msgid "Applied as dark theme" msgstr "" -#: src/strings.ts:539 +#: src/strings.ts:540 msgid "Applied as light theme" msgstr "" -#: src/strings.ts:456 +#: src/strings.ts:457 msgid "Apply changes" msgstr "" -#: src/strings.ts:2043 +#: src/strings.ts:2044 msgid "Applying changes" msgstr "" -#: src/strings.ts:1529 -#: src/strings.ts:2483 +#: src/strings.ts:1530 +#: src/strings.ts:2484 msgid "Archive" msgstr "" -#: src/strings.ts:1444 +#: src/strings.ts:1445 msgid "Are you scrolling a lot to find a specific note? Pin it to the top from Note properties." msgstr "" -#: src/strings.ts:1015 +#: src/strings.ts:1016 msgid "Are you sure you want to clear all logs from {key}?" msgstr "" -#: src/strings.ts:1323 +#: src/strings.ts:1324 msgid "Are you sure you want to clear trash?" msgstr "" -#: src/strings.ts:1541 +#: src/strings.ts:1542 msgid "Are you sure you want to logout and clear all data stored on THIS DEVICE?" msgstr "" -#: src/strings.ts:774 +#: src/strings.ts:775 msgid "Are you sure you want to logout from this device? Any unsynced changes will be lost." msgstr "" -#: src/strings.ts:1045 +#: src/strings.ts:1046 msgid "Are you sure you want to remove your name?" msgstr "" -#: src/strings.ts:1042 +#: src/strings.ts:1043 msgid "Are you sure you want to remove your profile picture?" msgstr "" -#: src/strings.ts:1322 +#: src/strings.ts:1323 msgid "Are you sure?" msgstr "" -#: src/strings.ts:1129 +#: src/strings.ts:1130 msgid "Ask every time" msgstr "" -#: src/strings.ts:2032 +#: src/strings.ts:2033 msgid "Assign color" msgstr "" -#: src/strings.ts:931 +#: src/strings.ts:932 msgid "Assign to..." msgstr "" -#: src/strings.ts:432 +#: src/strings.ts:433 msgid "Atleast 8 characters required" msgstr "" -#: src/strings.ts:2345 +#: src/strings.ts:2346 msgid "Attach image from URL" msgstr "" -#: src/strings.ts:907 +#: src/strings.ts:908 msgid "Attached files" msgstr "" @@ -983,23 +983,23 @@ msgid "attachment" msgstr "" #: src/strings.ts:300 -#: src/strings.ts:2342 +#: src/strings.ts:2343 msgid "Attachment" msgstr "" -#: src/strings.ts:2446 +#: src/strings.ts:2447 msgid "Attachment manager" msgstr "" -#: src/strings.ts:1934 +#: src/strings.ts:1935 msgid "Attachment preview failed" msgstr "" -#: src/strings.ts:2396 +#: src/strings.ts:2397 msgid "Attachment recheck cancelled" msgstr "" -#: src/strings.ts:2313 +#: src/strings.ts:2314 msgid "Attachment settings" msgstr "" @@ -1008,256 +1008,256 @@ msgid "attachments" msgstr "" #: src/strings.ts:320 -#: src/strings.ts:906 +#: src/strings.ts:907 msgid "Attachments" msgstr "" -#: src/strings.ts:1883 +#: src/strings.ts:1884 msgid "Attachments cache cleared!" msgstr "" -#: src/strings.ts:2398 +#: src/strings.ts:2399 msgid "Attachments recheck complete" msgstr "" -#: src/strings.ts:759 +#: src/strings.ts:760 msgid "Audios" msgstr "" -#: src/strings.ts:1625 +#: src/strings.ts:1626 msgid "Auth server" msgstr "" -#: src/strings.ts:1794 +#: src/strings.ts:1795 msgid "Authenticated as {email}" msgstr "" -#: src/strings.ts:1897 +#: src/strings.ts:1898 msgid "Authenticating user" msgstr "" -#: src/strings.ts:2133 +#: src/strings.ts:2134 msgid "Authentication" msgstr "" -#: src/strings.ts:1729 +#: src/strings.ts:1730 msgid "authentication app" msgstr "" -#: src/strings.ts:1350 +#: src/strings.ts:1351 msgid "Authentication cancelled by user" msgstr "" -#: src/strings.ts:1351 +#: src/strings.ts:1352 msgid "Authentication failed" msgstr "" -#: src/strings.ts:2096 +#: src/strings.ts:2097 msgid "Auto" msgstr "" -#: src/strings.ts:1660 +#: src/strings.ts:1661 msgid "Auto save: off" msgstr "" -#: src/strings.ts:2110 +#: src/strings.ts:2111 msgid "Auto start on system startup" msgstr "" -#: src/strings.ts:1217 -#: src/strings.ts:1688 +#: src/strings.ts:1218 +#: src/strings.ts:1689 msgid "Automatic backups" msgstr "" -#: src/strings.ts:1364 +#: src/strings.ts:1365 msgid "Automatic backups are off" msgstr "" -#: src/strings.ts:2004 +#: src/strings.ts:2005 msgid "Automatic backups disabled" msgstr "" -#: src/strings.ts:1220 +#: src/strings.ts:1221 msgid "Automatic backups with attachments" msgstr "" -#: src/strings.ts:2106 +#: src/strings.ts:2107 msgid "Automatic updates" msgstr "" -#: src/strings.ts:1137 +#: src/strings.ts:1138 msgid "Automatically clear trash after a certain period of time" msgstr "" -#: src/strings.ts:2108 +#: src/strings.ts:2109 msgid "Automatically download & install updates in the background without prompting first." msgstr "" -#: src/strings.ts:1190 +#: src/strings.ts:1191 msgid "Automatically lock the app after a certain period" msgstr "" -#: src/strings.ts:1120 +#: src/strings.ts:1121 msgid "Automatically switch between light and dark themes based on your system settings" msgstr "" -#: src/strings.ts:2153 +#: src/strings.ts:2154 msgid "Available on iOS" msgstr "" -#: src/strings.ts:2154 +#: src/strings.ts:2155 msgid "Available on iOS & Android" msgstr "" -#: src/strings.ts:2301 +#: src/strings.ts:2302 msgid "Background color" msgstr "" -#: src/strings.ts:1092 +#: src/strings.ts:1093 msgid "Background sync (experimental)" msgstr "" -#: src/strings.ts:2102 +#: src/strings.ts:2103 msgid "Backup" msgstr "" -#: src/strings.ts:2140 +#: src/strings.ts:2141 msgid "Backup & export" msgstr "" -#: src/strings.ts:1209 +#: src/strings.ts:1210 msgid "Backup & restore" msgstr "" -#: src/strings.ts:1334 +#: src/strings.ts:1335 msgid "Backup complete" msgstr "" -#: src/strings.ts:1560 +#: src/strings.ts:1561 msgid "Backup directory not selected" msgstr "" -#: src/strings.ts:1232 +#: src/strings.ts:1233 msgid "Backup encryption" msgstr "" -#: src/strings.ts:1857 +#: src/strings.ts:1858 msgid "Backup files have .nnbackup extension" msgstr "" -#: src/strings.ts:881 +#: src/strings.ts:882 msgid "Backup is encrypted" msgstr "" -#: src/strings.ts:1613 +#: src/strings.ts:1614 msgid "Backup is encrypted, decrypting..." msgstr "" -#: src/strings.ts:1211 +#: src/strings.ts:1212 msgid "Backup now" msgstr "" -#: src/strings.ts:1212 +#: src/strings.ts:1213 msgid "Backup now with attachments" msgstr "" -#: src/strings.ts:888 +#: src/strings.ts:889 msgid "Backup restored" msgstr "" -#: src/strings.ts:1918 +#: src/strings.ts:1919 msgid "Backup saved at {path}" msgstr "" -#: src/strings.ts:1346 +#: src/strings.ts:1347 msgid "Backup successful" msgstr "" -#: src/strings.ts:2103 +#: src/strings.ts:2104 msgid "Backup with attachments" msgstr "" -#: src/strings.ts:492 +#: src/strings.ts:493 msgid "Backups" msgstr "" -#: src/strings.ts:540 +#: src/strings.ts:541 msgid "Basic" msgstr "" -#: src/strings.ts:1792 +#: src/strings.ts:1793 msgid "Because where's the fun in nookin' alone?" msgstr "" -#: src/strings.ts:1123 +#: src/strings.ts:1124 msgid "Behavior" msgstr "" -#: src/strings.ts:2135 +#: src/strings.ts:2136 msgid "Behaviour" msgstr "" -#: src/strings.ts:2470 +#: src/strings.ts:2471 msgid "Believer plan" msgstr "" -#: src/strings.ts:2577 +#: src/strings.ts:2578 msgid "Best value" msgstr "" -#: src/strings.ts:2459 +#: src/strings.ts:2460 msgid "Beta" msgstr "" -#: src/strings.ts:2259 +#: src/strings.ts:2260 msgid "Bi-directional note link" msgstr "" -#: src/strings.ts:2553 +#: src/strings.ts:2554 msgid "billed annually at {price}" msgstr "" -#: src/strings.ts:2554 +#: src/strings.ts:2555 msgid "billed monthly at {price}" msgstr "" -#: src/strings.ts:2201 +#: src/strings.ts:2202 msgid "Billing history" msgstr "" -#: src/strings.ts:1176 +#: src/strings.ts:1177 msgid "Biometric unlocking" msgstr "" -#: src/strings.ts:811 +#: src/strings.ts:812 msgid "Biometric unlocking disabled" msgstr "" -#: src/strings.ts:810 +#: src/strings.ts:811 msgid "Biometric unlocking enabled" msgstr "" -#: src/strings.ts:1348 +#: src/strings.ts:1349 msgid "Biometrics authentication failed. Please try again." msgstr "" -#: src/strings.ts:1185 +#: src/strings.ts:1186 msgid "Biometrics not enrolled" msgstr "" -#: src/strings.ts:2255 +#: src/strings.ts:2256 msgid "Bold" msgstr "" -#: src/strings.ts:2408 +#: src/strings.ts:2409 msgid "Boost your productivity with Notebooks and organize your notes." msgstr "" -#: src/strings.ts:1808 +#: src/strings.ts:1809 msgid "Browse" msgstr "" -#: src/strings.ts:2272 +#: src/strings.ts:2273 msgid "Bullet list" msgstr "" @@ -1265,7 +1265,7 @@ msgstr "" msgid "By" msgstr "" -#: src/strings.ts:2572 +#: src/strings.ts:2573 msgid "By joining you agree to our" msgstr "" @@ -1273,60 +1273,60 @@ msgstr "" msgid "By signing up, you agree to our " msgstr "" -#: src/strings.ts:2333 +#: src/strings.ts:2334 msgid "Callout" msgstr "" -#: src/strings.ts:2513 +#: src/strings.ts:2514 msgid "Can I cancel my free trial anytime?" msgstr "" -#: src/strings.ts:548 +#: src/strings.ts:549 msgid "Cancel" msgstr "" -#: src/strings.ts:2570 +#: src/strings.ts:2571 msgid "Cancel anytime, subscription auto-renews." msgstr "" -#: src/strings.ts:2535 +#: src/strings.ts:2536 msgid "Cancel anytime." msgstr "" -#: src/strings.ts:516 +#: src/strings.ts:517 msgid "Cancel download" msgstr "" -#: src/strings.ts:553 +#: src/strings.ts:554 msgid "Cancel login" msgstr "" -#: src/strings.ts:1825 +#: src/strings.ts:1826 msgid "Cancel subscription" msgstr "" -#: src/strings.ts:517 +#: src/strings.ts:518 msgid "Cancel upload" msgstr "" -#: src/strings.ts:2300 +#: src/strings.ts:2301 msgid "Cell background color" msgstr "" -#: src/strings.ts:2302 +#: src/strings.ts:2303 msgid "Cell border color" msgstr "" -#: src/strings.ts:2304 #: src/strings.ts:2305 +#: src/strings.ts:2306 msgid "Cell border width" msgstr "" -#: src/strings.ts:2286 +#: src/strings.ts:2287 msgid "Cell properties" msgstr "" -#: src/strings.ts:2303 +#: src/strings.ts:2304 msgid "Cell text color" msgstr "" @@ -1334,115 +1334,115 @@ msgstr "" msgid "Change" msgstr "" -#: src/strings.ts:1058 +#: src/strings.ts:1059 msgid "Change 2FA fallback method" msgstr "" -#: src/strings.ts:677 +#: src/strings.ts:678 msgid "Change 2FA method" msgstr "" -#: src/strings.ts:1197 +#: src/strings.ts:1198 msgid "Change app lock password" msgstr "" -#: src/strings.ts:1196 +#: src/strings.ts:1197 msgid "Change app lock pin" msgstr "" -#: src/strings.ts:1231 +#: src/strings.ts:1232 msgid "Change backup directory" msgstr "" -#: src/strings.ts:464 +#: src/strings.ts:465 msgid "Change email address" msgstr "" -#: src/strings.ts:1124 +#: src/strings.ts:1125 msgid "Change how the app behaves in different situations" msgstr "" -#: src/strings.ts:2351 +#: src/strings.ts:2352 msgid "Change language" msgstr "" -#: src/strings.ts:1252 +#: src/strings.ts:1253 msgid "Change notification sound" msgstr "" -#: src/strings.ts:433 +#: src/strings.ts:434 msgid "Change password" msgstr "" -#: src/strings.ts:2584 +#: src/strings.ts:2585 msgid "Change plan" msgstr "" -#: src/strings.ts:1817 +#: src/strings.ts:1818 msgid "Change profile picture" msgstr "" -#: src/strings.ts:2179 +#: src/strings.ts:2180 msgid "Change proxy" msgstr "" -#: src/strings.ts:2200 +#: src/strings.ts:2201 msgid "Change the payment method you used to purchase this subscription." msgstr "" -#: src/strings.ts:1254 +#: src/strings.ts:1255 msgid "Change the sound that plays when you receive a notification" msgstr "" -#: src/strings.ts:450 +#: src/strings.ts:451 msgid "Change vault password" msgstr "" -#: src/strings.ts:1052 +#: src/strings.ts:1053 msgid "Change your account password" msgstr "" -#: src/strings.ts:1054 +#: src/strings.ts:1055 msgid "Change your primary two-factor authentication method" msgstr "" -#: src/strings.ts:1088 +#: src/strings.ts:1089 msgid "Changes from other devices won't be updated in the editor in real-time." msgstr "" -#: src/strings.ts:733 +#: src/strings.ts:734 msgid "Changing password is an irreversible process. You will be logged out from all your devices. Please make sure you do not close the app while your password is changing and have good internet connection." msgstr "" -#: src/strings.ts:2489 +#: src/strings.ts:2490 msgid "Characters" msgstr "" -#: src/strings.ts:1295 +#: src/strings.ts:1296 msgid "Check for new version of Notesnook" msgstr "" -#: src/strings.ts:1298 +#: src/strings.ts:1299 msgid "Check for new version of the app available on app launch" msgstr "" -#: src/strings.ts:1294 +#: src/strings.ts:1295 msgid "Check for updates" msgstr "" -#: src/strings.ts:1296 +#: src/strings.ts:1297 msgid "Check for updates automatically" msgstr "" -#: src/strings.ts:2152 +#: src/strings.ts:2153 msgid "Check roadmap" msgstr "" -#: src/strings.ts:683 +#: src/strings.ts:684 msgid "Check your spam folder if you haven't received an email yet." msgstr "" -#: src/strings.ts:2400 +#: src/strings.ts:2401 msgid "Checking all attachments" msgstr "" @@ -1450,51 +1450,51 @@ msgstr "" msgid "Checking for new version" msgstr "" -#: src/strings.ts:1704 +#: src/strings.ts:1705 msgid "Checking for updates" msgstr "" -#: src/strings.ts:2399 +#: src/strings.ts:2400 msgid "Checking note attachments" msgstr "" -#: src/strings.ts:2274 +#: src/strings.ts:2275 msgid "Checklist" msgstr "" -#: src/strings.ts:2328 +#: src/strings.ts:2329 msgid "Choose a block to insert" msgstr "" -#: src/strings.ts:1796 +#: src/strings.ts:1797 msgid "Choose a recovery method" msgstr "" -#: src/strings.ts:2101 +#: src/strings.ts:2102 msgid "Choose backup format" msgstr "" -#: src/strings.ts:2364 +#: src/strings.ts:2365 msgid "Choose custom color" msgstr "" -#: src/strings.ts:1117 +#: src/strings.ts:1118 msgid "Choose from pre-built themes or create your own" msgstr "" -#: src/strings.ts:1132 +#: src/strings.ts:1133 msgid "Choose how dates are displayed in the app" msgstr "" -#: src/strings.ts:2610 +#: src/strings.ts:2620 msgid "Choose how day is displayed in the app" msgstr "" -#: src/strings.ts:1157 +#: src/strings.ts:1158 msgid "Choose how the new note titles are formatted" msgstr "" -#: src/strings.ts:1134 +#: src/strings.ts:1135 msgid "Choose how time is displayed in the app" msgstr "" @@ -1502,63 +1502,63 @@ msgstr "" msgid "Choose how you want to secure your notes locally." msgstr "" -#: src/strings.ts:1227 +#: src/strings.ts:1228 msgid "Choose where to save your backups" msgstr "" -#: src/strings.ts:2061 +#: src/strings.ts:2062 msgid "Choose your style" msgstr "" -#: src/strings.ts:1616 +#: src/strings.ts:1617 msgid "cleaningUp" msgstr "" -#: src/strings.ts:1013 +#: src/strings.ts:1014 msgid "Clear" msgstr "" -#: src/strings.ts:1869 +#: src/strings.ts:1870 msgid "Clear all cached attachments. Current cache size: {cacheSize}" msgstr "" -#: src/strings.ts:2268 +#: src/strings.ts:2269 msgid "Clear all formatting" msgstr "" -#: src/strings.ts:1870 +#: src/strings.ts:1871 msgid "Clear attachments cache?" msgstr "" -#: src/strings.ts:1867 +#: src/strings.ts:1868 msgid "Clear cache" msgstr "" -#: src/strings.ts:2362 +#: src/strings.ts:2363 msgid "Clear completed tasks" msgstr "" -#: src/strings.ts:1804 +#: src/strings.ts:1805 msgid "Clear data & reset account" msgstr "" -#: src/strings.ts:1138 +#: src/strings.ts:1139 msgid "Clear default notebook" msgstr "" -#: src/strings.ts:1012 +#: src/strings.ts:1013 msgid "Clear logs" msgstr "" -#: src/strings.ts:2195 +#: src/strings.ts:2196 msgid "clear sessions" msgstr "" -#: src/strings.ts:1321 +#: src/strings.ts:1322 msgid "Clear trash" msgstr "" -#: src/strings.ts:1135 +#: src/strings.ts:1136 msgid "Clear trash interval" msgstr "" @@ -1566,7 +1566,7 @@ msgstr "" msgid "Clear vault" msgstr "" -#: src/strings.ts:1872 +#: src/strings.ts:1873 msgid "" "Clearing attachments cache will perform the following actions:\n" "\n" @@ -1581,7 +1581,7 @@ msgid "" "**Only use this for troubleshooting purposes. If you are having persistent issues, it is recommended that you reach out to us via support@streetwriters.co so we can help you resolve it permanently.**" msgstr "" -#: src/strings.ts:2606 +#: src/strings.ts:2607 msgid "Click here to directly claim the promotion." msgstr "" @@ -1589,75 +1589,75 @@ msgstr "" msgid "Click to deselect" msgstr "" -#: src/strings.ts:1866 +#: src/strings.ts:1867 msgid "Click to preview" msgstr "" -#: src/strings.ts:1771 +#: src/strings.ts:1772 msgid "Click to remove" msgstr "" -#: src/strings.ts:2391 +#: src/strings.ts:2392 msgid "Click to reset {title}" -msgstr "" +msgstr "<<<<<<< HEAD" -#: src/strings.ts:2614 +#: src/strings.ts:2615 msgid "Click to save" msgstr "" -#: src/strings.ts:2610 +#: src/strings.ts:2611 msgid "Click to update" msgstr "" -#: src/strings.ts:1380 +#: src/strings.ts:1381 msgid "Close" msgstr "" -#: src/strings.ts:2018 +#: src/strings.ts:2019 msgid "Close all" msgstr "" -#: src/strings.ts:2449 +#: src/strings.ts:2450 msgid "Close all tabs" msgstr "" -#: src/strings.ts:2448 +#: src/strings.ts:2449 msgid "Close current tab" msgstr "" -#: src/strings.ts:2015 +#: src/strings.ts:2016 msgid "Close others" msgstr "" -#: src/strings.ts:2119 +#: src/strings.ts:2120 msgid "Close to system tray" msgstr "" -#: src/strings.ts:2017 +#: src/strings.ts:2018 msgid "Close to the left" msgstr "" -#: src/strings.ts:2016 +#: src/strings.ts:2017 msgid "Close to the right" msgstr "" -#: src/strings.ts:2527 +#: src/strings.ts:2528 msgid "cloud storage space for storing images and files." msgstr "" -#: src/strings.ts:2266 +#: src/strings.ts:2267 msgid "Code" msgstr "" -#: src/strings.ts:2330 +#: src/strings.ts:2331 msgid "Code block" msgstr "" -#: src/strings.ts:2267 +#: src/strings.ts:2268 msgid "Code remove" msgstr "" -#: src/strings.ts:430 +#: src/strings.ts:431 msgid "COLLAPSED" msgstr "" @@ -1666,19 +1666,19 @@ msgid "color" msgstr "" #: src/strings.ts:299 -#: src/strings.ts:1843 +#: src/strings.ts:1844 msgid "Color" msgstr "" -#: src/strings.ts:786 +#: src/strings.ts:787 msgid "Color #{color} already exists" msgstr "" -#: src/strings.ts:2094 +#: src/strings.ts:2095 msgid "Color scheme" msgstr "" -#: src/strings.ts:1488 +#: src/strings.ts:1489 msgid "Color title" msgstr "" @@ -1690,19 +1690,19 @@ msgstr "" msgid "Colors" msgstr "" -#: src/strings.ts:2284 +#: src/strings.ts:2285 msgid "Column properties" msgstr "" -#: src/strings.ts:2440 +#: src/strings.ts:2441 msgid "Command palette" msgstr "" -#: src/strings.ts:1270 +#: src/strings.ts:1271 msgid "Community" msgstr "" -#: src/strings.ts:2547 +#: src/strings.ts:2548 msgid "Compare plans" msgstr "" @@ -1714,7 +1714,7 @@ msgstr "" msgid "Compress" msgstr "" -#: src/strings.ts:1128 +#: src/strings.ts:1129 msgid "Compress images before uploading" msgstr "" @@ -1722,128 +1722,128 @@ msgstr "" msgid "Compressed images are uploaded in Full HD resolution and usually are good enough for most use cases." msgstr "" -#: src/strings.ts:2250 +#: src/strings.ts:2251 msgid "Configure" msgstr "" -#: src/strings.ts:2405 +#: src/strings.ts:2406 msgid "Configure server URLs for Notesnook" msgstr "" -#: src/strings.ts:681 +#: src/strings.ts:682 msgid "Confirm email" msgstr "" -#: src/strings.ts:902 +#: src/strings.ts:903 msgid "Confirm email to publish note" msgstr "" -#: src/strings.ts:1487 +#: src/strings.ts:1488 msgid "Confirm new password" msgstr "" -#: src/strings.ts:1482 +#: src/strings.ts:1483 msgid "Confirm password" msgstr "" -#: src/strings.ts:1486 +#: src/strings.ts:1487 msgid "Confirm pin" msgstr "" -#: src/strings.ts:2079 +#: src/strings.ts:2080 msgid "Congratulations!" msgstr "" -#: src/strings.ts:1635 +#: src/strings.ts:1636 msgid "Connected to all servers sucessfully." msgstr "" -#: src/strings.ts:1670 +#: src/strings.ts:1671 msgid "Contact support" msgstr "" -#: src/strings.ts:1261 +#: src/strings.ts:1262 msgid "Contact us directly via support@streetwriters.co for any help or support" msgstr "" -#: src/strings.ts:542 +#: src/strings.ts:543 msgid "Continue" msgstr "" -#: src/strings.ts:1163 +#: src/strings.ts:1164 msgid "Contribute towards a better Notesnook. All tracking information is anonymous." msgstr "" -#: src/strings.ts:1247 +#: src/strings.ts:1248 msgid "Controls whether this device should receive reminder notifications." msgstr "" -#: src/strings.ts:1989 +#: src/strings.ts:1990 msgid "Copied" msgstr "" -#: src/strings.ts:674 +#: src/strings.ts:675 msgid "Copy" msgstr "" #. placeholder {0}: format ? " " + format : "" -#: src/strings.ts:2035 +#: src/strings.ts:2036 msgid "Copy as{0}" msgstr "" -#: src/strings.ts:678 +#: src/strings.ts:679 msgid "Copy codes" msgstr "" -#: src/strings.ts:2246 +#: src/strings.ts:2247 msgid "Copy image" msgstr "" -#: src/strings.ts:909 +#: src/strings.ts:910 msgid "Copy link" msgstr "" -#: src/strings.ts:2245 +#: src/strings.ts:2246 msgid "Copy link text" msgstr "" -#: src/strings.ts:453 +#: src/strings.ts:454 msgid "Copy note" msgstr "" -#: src/strings.ts:590 +#: src/strings.ts:591 msgid "Copy to clipboard" msgstr "" -#: src/strings.ts:1618 +#: src/strings.ts:1619 msgid "Copying backup files to cache" msgstr "" -#: src/strings.ts:1167 +#: src/strings.ts:1168 msgid "CORS bypass" msgstr "" -#: src/strings.ts:1985 +#: src/strings.ts:1986 msgid "Could not activate trial. Please try again later." msgstr "" -#: src/strings.ts:2003 +#: src/strings.ts:2004 msgid "Could not clear trash." msgstr "" -#: src/strings.ts:1638 +#: src/strings.ts:1639 msgid "Could not connect to {server}." msgstr "" -#: src/strings.ts:1950 +#: src/strings.ts:1951 msgid "Could not convert note to {format}." msgstr "" -#: src/strings.ts:768 +#: src/strings.ts:769 msgid "Could not create backup" msgstr "" -#: src/strings.ts:558 +#: src/strings.ts:559 msgid "Could not unlock" msgstr "" @@ -1851,250 +1851,250 @@ msgstr "" msgid "Create" msgstr "" -#: src/strings.ts:729 +#: src/strings.ts:730 msgid "Create a group" msgstr "" -#: src/strings.ts:937 +#: src/strings.ts:938 msgid "Create a new note" msgstr "" -#: src/strings.ts:950 +#: src/strings.ts:951 msgid "Create a note first" msgstr "" -#: src/strings.ts:669 +#: src/strings.ts:670 msgid "Create a shortcut" msgstr "" -#: src/strings.ts:1848 +#: src/strings.ts:1849 msgid "Create account" msgstr "" -#: src/strings.ts:580 +#: src/strings.ts:581 msgid "Create link" msgstr "" -#: src/strings.ts:1472 +#: src/strings.ts:1473 msgid "Create shortcut of this notebook in side menu" msgstr "" -#: src/strings.ts:1386 +#: src/strings.ts:1387 msgid "Create unlimited notebooks with Notesnook Pro" msgstr "" -#: src/strings.ts:1385 +#: src/strings.ts:1386 msgid "Create unlimited tags with Notesnook Pro" msgstr "" -#: src/strings.ts:1387 +#: src/strings.ts:1388 msgid "Create unlimited vaults with Notesnook Pro" msgstr "" -#: src/strings.ts:446 +#: src/strings.ts:447 msgid "Create vault" msgstr "" -#: src/strings.ts:521 +#: src/strings.ts:522 msgid "Create your account" msgstr "" -#: src/strings.ts:2228 +#: src/strings.ts:2229 msgid "Created at" msgstr "" #. placeholder {0}: type === "full" ? " full" : "" -#: src/strings.ts:1343 +#: src/strings.ts:1344 msgid "Creating a{0} backup" msgstr "" -#: src/strings.ts:2048 +#: src/strings.ts:2049 msgid "Credentials" msgstr "" -#: src/strings.ts:2064 +#: src/strings.ts:2065 msgid "Cross platform & 100% encrypted" msgstr "" -#: src/strings.ts:740 +#: src/strings.ts:741 msgid "Curate the toolbar that fits your needs and matches your personality." msgstr "" -#: src/strings.ts:1835 +#: src/strings.ts:1836 msgid "Current note" msgstr "" -#: src/strings.ts:1484 +#: src/strings.ts:1485 msgid "Current password" msgstr "" -#: src/strings.ts:1228 +#: src/strings.ts:1229 msgid "Current path: {path}" msgstr "" -#: src/strings.ts:1483 +#: src/strings.ts:1484 msgid "Current pin" msgstr "" -#: src/strings.ts:1772 +#: src/strings.ts:1773 msgid "CURRENT PLAN" msgstr "" -#: src/strings.ts:2009 +#: src/strings.ts:2010 msgid "Custom" msgstr "" -#: src/strings.ts:2130 +#: src/strings.ts:2131 msgid "Custom dictionary words" msgstr "" -#: src/strings.ts:1112 +#: src/strings.ts:1113 msgid "Customization" msgstr "" -#: src/strings.ts:1115 +#: src/strings.ts:1116 msgid "Customize the appearance of the app with custom themes" msgstr "" -#: src/strings.ts:1142 +#: src/strings.ts:1143 msgid "Customize the note editor" msgstr "" -#: src/strings.ts:1144 +#: src/strings.ts:1145 msgid "Customize the toolbar in the note editor" msgstr "" -#: src/strings.ts:1143 +#: src/strings.ts:1144 msgid "Customize toolbar" msgstr "" -#: src/strings.ts:2244 +#: src/strings.ts:2245 msgid "Cut" msgstr "" #: src/strings.ts:167 -#: src/strings.ts:1567 +#: src/strings.ts:1568 msgid "Daily" msgstr "" -#: src/strings.ts:723 +#: src/strings.ts:724 msgid "Dark" msgstr "" -#: src/strings.ts:1121 +#: src/strings.ts:1122 msgid "Dark mode" msgstr "" -#: src/strings.ts:2095 +#: src/strings.ts:2096 msgid "Dark or light, we won't judge." msgstr "" -#: src/strings.ts:1546 +#: src/strings.ts:1547 msgid "Database setup failed, could not get database key" msgstr "" -#: src/strings.ts:1838 +#: src/strings.ts:1839 msgid "Date" msgstr "" -#: src/strings.ts:2104 +#: src/strings.ts:2105 msgid "Date & time" msgstr "" -#: src/strings.ts:652 +#: src/strings.ts:653 msgid "Date created" msgstr "" -#: src/strings.ts:655 +#: src/strings.ts:656 msgid "Date deleted" msgstr "" -#: src/strings.ts:651 +#: src/strings.ts:652 msgid "Date edited" msgstr "" -#: src/strings.ts:1131 +#: src/strings.ts:1132 msgid "Date format" msgstr "" -#: src/strings.ts:650 +#: src/strings.ts:651 msgid "Date modified" msgstr "" -#: src/strings.ts:2041 +#: src/strings.ts:2042 msgid "Date uploaded" msgstr "" -#: src/strings.ts:1840 +#: src/strings.ts:1841 msgid "Day" msgstr "" -#: src/strings.ts:2609 +#: src/strings.ts:2619 msgid "Day format" msgstr "" -#: src/strings.ts:2037 +#: src/strings.ts:2038 msgid "Deactivate" msgstr "" -#: src/strings.ts:1010 +#: src/strings.ts:1011 msgid "Debug log copied!" msgstr "" -#: src/strings.ts:1268 +#: src/strings.ts:1269 msgid "Debug logs" msgstr "" -#: src/strings.ts:1011 +#: src/strings.ts:1012 msgid "Debug logs downloaded" msgstr "" -#: src/strings.ts:1265 +#: src/strings.ts:1266 msgid "Debugging" msgstr "" -#: src/strings.ts:2393 +#: src/strings.ts:2394 msgid "Decrease {title}" msgstr "" -#: src/strings.ts:659 -#: src/strings.ts:2007 +#: src/strings.ts:660 +#: src/strings.ts:2008 msgid "Default" msgstr "" -#: src/strings.ts:1154 +#: src/strings.ts:1155 msgid "Default font family" msgstr "" -#: src/strings.ts:1155 +#: src/strings.ts:1156 msgid "Default font family in editor" msgstr "" -#: src/strings.ts:1152 +#: src/strings.ts:1153 msgid "Default font size" msgstr "" -#: src/strings.ts:1153 +#: src/strings.ts:1154 msgid "Default font size in editor" msgstr "" -#: src/strings.ts:1140 +#: src/strings.ts:1141 msgid "Default notebook cleared" msgstr "" -#: src/strings.ts:1126 +#: src/strings.ts:1127 msgid "Default screen to open on app launch" msgstr "" -#: src/strings.ts:2480 +#: src/strings.ts:2481 msgid "Default sidebar tab" msgstr "" -#: src/strings.ts:1248 +#: src/strings.ts:1249 msgid "Default snooze time" msgstr "" -#: src/strings.ts:1300 +#: src/strings.ts:1301 msgid "Default sound" msgstr "" @@ -2102,39 +2102,39 @@ msgstr "" msgid "Delete" msgstr "" -#: src/strings.ts:1075 +#: src/strings.ts:1076 msgid "Delete account" msgstr "" -#: src/strings.ts:1318 +#: src/strings.ts:1319 msgid "Delete collapsed section" msgstr "" -#: src/strings.ts:2291 +#: src/strings.ts:2292 msgid "Delete column" msgstr "" -#: src/strings.ts:1313 +#: src/strings.ts:1314 msgid "Delete group" msgstr "" -#: src/strings.ts:2365 +#: src/strings.ts:2366 msgid "Delete mode" msgstr "" -#: src/strings.ts:561 +#: src/strings.ts:562 msgid "Delete notes in this vault" msgstr "" -#: src/strings.ts:568 +#: src/strings.ts:569 msgid "Delete permanently" msgstr "" -#: src/strings.ts:2298 +#: src/strings.ts:2299 msgid "Delete row" msgstr "" -#: src/strings.ts:2299 +#: src/strings.ts:2300 msgid "Delete table" msgstr "" @@ -2142,7 +2142,7 @@ msgstr "" msgid "Delete vault" msgstr "" -#: src/strings.ts:1175 +#: src/strings.ts:1176 msgid "Delete vault (and optionally remove all notes)." msgstr "" @@ -2150,43 +2150,43 @@ msgstr "" msgid "Deleted on {date}" msgstr "" -#: src/strings.ts:1927 +#: src/strings.ts:1928 msgid "Deleting" msgstr "" -#: src/strings.ts:1837 +#: src/strings.ts:1838 msgid "Description" msgstr "" -#: src/strings.ts:2105 +#: src/strings.ts:2106 msgid "Desktop app" msgstr "" -#: src/strings.ts:2109 +#: src/strings.ts:2110 msgid "Desktop integration" msgstr "" -#: src/strings.ts:870 +#: src/strings.ts:871 msgid "Did you save recovery key?" msgstr "" -#: src/strings.ts:1375 +#: src/strings.ts:1376 msgid "Disable" msgstr "" -#: src/strings.ts:1083 +#: src/strings.ts:1084 msgid "Disable auto sync" msgstr "" -#: src/strings.ts:2010 +#: src/strings.ts:2011 msgid "Disable editor margins" msgstr "" -#: src/strings.ts:1086 +#: src/strings.ts:1087 msgid "Disable realtime sync" msgstr "" -#: src/strings.ts:1089 +#: src/strings.ts:1090 msgid "Disable sync" msgstr "" @@ -2194,15 +2194,15 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/strings.ts:564 +#: src/strings.ts:565 msgid "Discard" msgstr "" -#: src/strings.ts:1596 +#: src/strings.ts:1597 msgid "Dismiss" msgstr "" -#: src/strings.ts:1649 +#: src/strings.ts:1650 msgid "Dismiss announcement" msgstr "" @@ -2214,27 +2214,27 @@ msgstr "" msgid "Do you enjoy using Notesnook?" msgstr "" -#: src/strings.ts:2227 +#: src/strings.ts:2228 msgid "Do you want to clear the trash?" msgstr "" -#: src/strings.ts:1262 +#: src/strings.ts:1263 msgid "Documentation" msgstr "" -#: src/strings.ts:756 +#: src/strings.ts:757 msgid "Documents" msgstr "" -#: src/strings.ts:983 +#: src/strings.ts:984 msgid "Don't have access to your authenticator app?" msgstr "" -#: src/strings.ts:990 +#: src/strings.ts:991 msgid "Don't have access to your email address?" msgstr "" -#: src/strings.ts:999 +#: src/strings.ts:1000 msgid "Don't have access to your phone number?" msgstr "" @@ -2242,23 +2242,23 @@ msgstr "" msgid "Don't have an account?" msgstr "" -#: src/strings.ts:1831 +#: src/strings.ts:1832 msgid "Don't have backup file?" msgstr "" -#: src/strings.ts:1830 +#: src/strings.ts:1831 msgid "Don't have your account recovery key?" msgstr "" -#: src/strings.ts:1002 +#: src/strings.ts:1003 msgid "Don't have your recovery codes?" msgstr "" -#: src/strings.ts:1809 +#: src/strings.ts:1810 msgid "Don't show again" msgstr "" -#: src/strings.ts:1810 +#: src/strings.ts:1811 msgid "Don't show again on this device?" msgstr "" @@ -2266,60 +2266,60 @@ msgstr "" msgid "Done" msgstr "" -#: src/strings.ts:1148 +#: src/strings.ts:1149 msgid "Double spaced lines" msgstr "" -#: src/strings.ts:508 +#: src/strings.ts:509 msgid "Download" msgstr "" -#: src/strings.ts:1815 +#: src/strings.ts:1816 msgid "Download all attachments" msgstr "" -#: src/strings.ts:2314 +#: src/strings.ts:2315 msgid "Download attachment" msgstr "" -#: src/strings.ts:1859 +#: src/strings.ts:1860 msgid "Download backup file" msgstr "" -#: src/strings.ts:515 +#: src/strings.ts:516 msgid "Download cancelled" msgstr "" -#: src/strings.ts:2207 +#: src/strings.ts:2208 msgid "Download everything including attachments on sync" msgstr "" -#: src/strings.ts:1289 +#: src/strings.ts:1290 msgid "Download on desktop" msgstr "" -#: src/strings.ts:805 +#: src/strings.ts:806 msgid "Download started... Please wait" msgstr "" -#: src/strings.ts:513 +#: src/strings.ts:514 msgid "Download successful" msgstr "" -#: src/strings.ts:666 +#: src/strings.ts:667 msgid "Download update" msgstr "" -#: src/strings.ts:507 +#: src/strings.ts:508 msgid "Downloaded" msgstr "" #: src/strings.ts:64 -#: src/strings.ts:506 +#: src/strings.ts:507 msgid "Downloading" msgstr "" -#: src/strings.ts:506 +#: src/strings.ts:507 msgid "Downloading ({progress})" msgstr "" @@ -2327,117 +2327,117 @@ msgstr "" msgid "Downloading attachments" msgstr "" -#: src/strings.ts:1703 +#: src/strings.ts:1704 msgid "Downloading images" msgstr "" -#: src/strings.ts:1769 +#: src/strings.ts:1770 msgid "Drag & drop files here, or click to select files" msgstr "" -#: src/strings.ts:1768 +#: src/strings.ts:1769 msgid "Drop the files here" msgstr "" -#: src/strings.ts:1662 +#: src/strings.ts:1663 msgid "Drop your files here to attach" msgstr "" -#: src/strings.ts:2557 +#: src/strings.ts:2558 msgid "Due {date}" msgstr "" -#: src/strings.ts:654 +#: src/strings.ts:655 msgid "Due date" msgstr "" -#: src/strings.ts:2555 +#: src/strings.ts:2556 msgid "Due today" msgstr "" -#: src/strings.ts:923 +#: src/strings.ts:924 msgid "Duplicate" msgstr "" -#: src/strings.ts:643 +#: src/strings.ts:644 msgid "Earliest first" msgstr "" -#: src/strings.ts:2417 +#: src/strings.ts:2418 msgid "Easy access" msgstr "" -#: src/strings.ts:1776 +#: src/strings.ts:1777 msgid "Edit" msgstr "" -#: src/strings.ts:526 +#: src/strings.ts:527 msgid "Edit internal link" msgstr "" -#: src/strings.ts:2233 -#: src/strings.ts:2261 +#: src/strings.ts:2234 +#: src/strings.ts:2262 msgid "Edit link" msgstr "" -#: src/strings.ts:2473 +#: src/strings.ts:2474 msgid "Edit profile" msgstr "" -#: src/strings.ts:1306 +#: src/strings.ts:1307 msgid "Edit profile picture" msgstr "" -#: src/strings.ts:1818 +#: src/strings.ts:1819 msgid "Edit your full name" msgstr "" -#: src/strings.ts:1141 -#: src/strings.ts:1525 +#: src/strings.ts:1142 +#: src/strings.ts:1526 msgid "Editor" msgstr "" -#: src/strings.ts:2581 +#: src/strings.ts:2582 msgid "Education plan" msgstr "" -#: src/strings.ts:1480 +#: src/strings.ts:1481 msgid "Email" msgstr "" -#: src/strings.ts:2430 +#: src/strings.ts:2431 msgid "Email copied" msgstr "" -#: src/strings.ts:771 +#: src/strings.ts:772 msgid "Email is required" msgstr "" -#: src/strings.ts:763 +#: src/strings.ts:764 msgid "Email not confirmed" msgstr "" -#: src/strings.ts:1552 +#: src/strings.ts:1553 msgid "Email or password incorrect" msgstr "" -#: src/strings.ts:1259 +#: src/strings.ts:1260 msgid "Email support" msgstr "" -#: src/strings.ts:856 +#: src/strings.ts:857 msgid "Email updated to {email}" msgstr "" -#: src/strings.ts:2340 +#: src/strings.ts:2341 msgid "Embed" msgstr "" -#: src/strings.ts:2320 +#: src/strings.ts:2321 msgid "Embed properties" msgstr "" -#: src/strings.ts:2316 +#: src/strings.ts:2317 msgid "Embed settings" msgstr "" @@ -2445,35 +2445,35 @@ msgstr "" msgid "Enable" msgstr "" -#: src/strings.ts:1130 +#: src/strings.ts:1131 msgid "Enable (Recommended)" msgstr "" -#: src/strings.ts:1184 +#: src/strings.ts:1185 msgid "Enable app lock" msgstr "" -#: src/strings.ts:2011 +#: src/strings.ts:2012 msgid "Enable editor margins" msgstr "" -#: src/strings.ts:2464 +#: src/strings.ts:2465 msgid "Enable ligatures for common symbols like →, ←, etc" msgstr "" -#: src/strings.ts:2380 +#: src/strings.ts:2381 msgid "Enable regex" msgstr "" -#: src/strings.ts:2126 +#: src/strings.ts:2127 msgid "Enable spell checker" msgstr "" -#: src/strings.ts:495 +#: src/strings.ts:496 msgid "Enable two-factor authentication to add an extra layer of security to your account." msgstr "" -#: src/strings.ts:1233 +#: src/strings.ts:1234 msgid "Encrypt your backups for added security" msgstr "" @@ -2481,23 +2481,23 @@ msgstr "" msgid "Encrypted and synced" msgstr "" -#: src/strings.ts:2240 +#: src/strings.ts:2241 msgid "Encrypted backup" msgstr "" -#: src/strings.ts:1656 +#: src/strings.ts:1657 msgid "Encrypted, private, secure." msgstr "" -#: src/strings.ts:939 +#: src/strings.ts:940 msgid "Encrypting attachment" msgstr "" -#: src/strings.ts:1842 +#: src/strings.ts:1843 msgid "Encryption key" msgstr "" -#: src/strings.ts:819 +#: src/strings.ts:820 msgid "End to end encrypted." msgstr "" @@ -2505,23 +2505,23 @@ msgstr "" msgid "Enter 6 digit code" msgstr "" -#: src/strings.ts:1078 +#: src/strings.ts:1079 msgid "Enter account password" msgstr "" -#: src/strings.ts:1079 +#: src/strings.ts:1080 msgid "Enter account password to proceed." msgstr "" -#: src/strings.ts:1851 +#: src/strings.ts:1852 msgid "Enter account recovery key" msgstr "" -#: src/strings.ts:1018 +#: src/strings.ts:1019 msgid "Enter app lock password" msgstr "" -#: src/strings.ts:1021 +#: src/strings.ts:1022 msgid "Enter app lock pin" msgstr "" @@ -2529,39 +2529,39 @@ msgstr "" msgid "Enter code from authenticator app" msgstr "" -#: src/strings.ts:1510 +#: src/strings.ts:1511 msgid "Enter email address" msgstr "" -#: src/strings.ts:2368 +#: src/strings.ts:2369 msgid "Enter embed source URL" msgstr "" -#: src/strings.ts:1312 +#: src/strings.ts:1313 msgid "Enter full name" msgstr "" -#: src/strings.ts:1700 +#: src/strings.ts:1701 msgid "Enter fullscreen" msgstr "" -#: src/strings.ts:1489 +#: src/strings.ts:1490 msgid "Enter notebook description" msgstr "" -#: src/strings.ts:855 +#: src/strings.ts:856 msgid "Enter notebook title" msgstr "" -#: src/strings.ts:790 +#: src/strings.ts:791 msgid "Enter password" msgstr "" -#: src/strings.ts:2087 +#: src/strings.ts:2088 msgid "Enter pin or password to enable app lock." msgstr "" -#: src/strings.ts:1003 +#: src/strings.ts:1004 msgid "Enter recovery code" msgstr "" @@ -2577,43 +2577,43 @@ msgstr "" msgid "Enter the 6 digit code sent to your phone number to continue logging in" msgstr "" -#: src/strings.ts:2432 +#: src/strings.ts:2433 msgid "Enter the gift code to redeem your subscription." msgstr "" #: src/strings.ts:120 msgid "Enter the recovery code to continue logging in" -msgstr "" +msgstr "<<<<<<< HEAD" -#: src/strings.ts:2617 +#: src/strings.ts:2618 msgid "Enter title" msgstr "" -#: src/strings.ts:1492 +#: src/strings.ts:1493 msgid "Enter verification code sent to your new email" msgstr "" -#: src/strings.ts:1491 +#: src/strings.ts:1492 msgid "Enter your new email" msgstr "" -#: src/strings.ts:2088 +#: src/strings.ts:2089 msgid "Enter your username" msgstr "" -#: src/strings.ts:2424 +#: src/strings.ts:2425 msgid "Error" msgstr "" -#: src/strings.ts:1553 +#: src/strings.ts:1554 msgid "Error applying promo code" msgstr "" -#: src/strings.ts:746 +#: src/strings.ts:747 msgid "Error downloading file: {message}" msgstr "" -#: src/strings.ts:1513 +#: src/strings.ts:1514 msgid "Error getting codes" msgstr "" @@ -2621,92 +2621,92 @@ msgstr "" msgid "Error loading themes" msgstr "" -#: src/strings.ts:1074 +#: src/strings.ts:1075 msgid "Error logging out" msgstr "" -#: src/strings.ts:1008 +#: src/strings.ts:1009 msgid "Error sending 2FA code" msgstr "" -#: src/strings.ts:758 +#: src/strings.ts:759 msgid "Errors" msgstr "" -#: src/strings.ts:1695 +#: src/strings.ts:1696 msgid "Errors in {count} attachments" msgstr "" -#: src/strings.ts:2469 +#: src/strings.ts:2470 msgid "Essential plan" msgstr "" -#: src/strings.ts:1627 +#: src/strings.ts:1628 msgid "Events server" msgstr "" -#: src/strings.ts:2410 +#: src/strings.ts:2411 msgid "Every Notebook can have notes and sub notebooks." msgstr "" -#: src/strings.ts:2412 +#: src/strings.ts:2413 msgid "Everything related to my job in one place." msgstr "" -#: src/strings.ts:2421 +#: src/strings.ts:2422 msgid "Everything related to my school in one place." msgstr "" -#: src/strings.ts:2438 +#: src/strings.ts:2439 msgid "Execute" msgstr "" -#: src/strings.ts:2437 +#: src/strings.ts:2438 msgid "Execute a command..." msgstr "" -#: src/strings.ts:2012 +#: src/strings.ts:2013 msgid "Exit fullscreen" msgstr "" -#: src/strings.ts:2372 +#: src/strings.ts:2373 msgid "Expand" msgstr "" -#: src/strings.ts:2465 +#: src/strings.ts:2466 msgid "Expand sidebar" msgstr "" -#: src/strings.ts:2071 +#: src/strings.ts:2072 msgid "Experience the next level of private note taking\"" msgstr "" -#: src/strings.ts:2538 +#: src/strings.ts:2539 msgid "Explore all plans" msgstr "" -#: src/strings.ts:468 +#: src/strings.ts:469 msgid "Export" msgstr "" -#: src/strings.ts:577 +#: src/strings.ts:578 msgid "Export again" msgstr "" -#: src/strings.ts:1236 +#: src/strings.ts:1237 msgid "Export all notes" msgstr "" -#: src/strings.ts:1238 +#: src/strings.ts:1239 msgid "Export all notes as pdf, markdown, html or text in a single zip file" msgstr "" #. placeholder {0}: format ? " " + format : "" -#: src/strings.ts:2034 +#: src/strings.ts:2035 msgid "Export as{0}" msgstr "" -#: src/strings.ts:1384 +#: src/strings.ts:1385 msgid "Export notes as PDF, Markdown and HTML with Notesnook Pro" msgstr "" @@ -2714,228 +2714,228 @@ msgstr "" msgid "Exporting \"{title}\"" msgstr "" -#: src/strings.ts:1617 +#: src/strings.ts:1618 msgid "Extracting files..." msgstr "" -#: src/strings.ts:1806 +#: src/strings.ts:1807 msgid "EXTREMELY DANGEROUS! This action is irreversible. All your data including notes, notebooks, attachments & settings will be deleted. This is a full account reset. Proceed with caution." msgstr "" -#: src/strings.ts:1258 +#: src/strings.ts:1259 msgid "Faced an issue or have a suggestion? Click here to create a bug report" msgstr "" -#: src/strings.ts:2402 +#: src/strings.ts:2403 msgid "Failed" msgstr "" -#: src/strings.ts:1935 +#: src/strings.ts:1936 msgid "Failed to copy note" msgstr "" -#: src/strings.ts:1559 +#: src/strings.ts:1560 msgid "Failed to decrypt backup" msgstr "" -#: src/strings.ts:2001 +#: src/strings.ts:2002 msgid "Failed to delete" msgstr "" -#: src/strings.ts:1080 +#: src/strings.ts:1081 msgid "Failed to delete account" msgstr "" -#: src/strings.ts:791 +#: src/strings.ts:792 msgid "Failed to download file" msgstr "" -#: src/strings.ts:1997 +#: src/strings.ts:1998 msgid "Failed to install theme." msgstr "" -#: src/strings.ts:947 +#: src/strings.ts:948 msgid "Failed to open" msgstr "" -#: src/strings.ts:866 +#: src/strings.ts:867 msgid "Failed to publish note" msgstr "" -#: src/strings.ts:2002 +#: src/strings.ts:2003 msgid "Failed to register task" msgstr "" -#: src/strings.ts:803 +#: src/strings.ts:804 msgid "Failed to resolve download url" msgstr "" -#: src/strings.ts:772 +#: src/strings.ts:773 msgid "Failed to send recovery email" msgstr "" -#: src/strings.ts:1400 +#: src/strings.ts:1401 msgid "Failed to send verification email" msgstr "" -#: src/strings.ts:936 +#: src/strings.ts:937 msgid "Failed to subscribe" msgstr "" -#: src/strings.ts:2202 +#: src/strings.ts:2203 msgid "Failed to take backup" msgstr "" -#: src/strings.ts:2204 +#: src/strings.ts:2205 msgid "Failed to take backup of your data. Do you want to continue logging out?" msgstr "" -#: src/strings.ts:867 +#: src/strings.ts:868 msgid "Failed to unpublish note" msgstr "" -#: src/strings.ts:797 +#: src/strings.ts:798 msgid "Failed to zip files" msgstr "" -#: src/strings.ts:499 +#: src/strings.ts:500 msgid "Fallback method for 2FA enabled" msgstr "" -#: src/strings.ts:2548 +#: src/strings.ts:2549 msgid "FAQs" msgstr "" -#: src/strings.ts:2031 +#: src/strings.ts:2032 msgid "Favorite" msgstr "" #: src/strings.ts:321 -#: src/strings.ts:1520 +#: src/strings.ts:1521 msgid "Favorites" msgstr "" -#: src/strings.ts:2546 +#: src/strings.ts:2547 msgid "Featured on" msgstr "" -#: src/strings.ts:2414 +#: src/strings.ts:2415 msgid "February 2022 Week 2" msgstr "" -#: src/strings.ts:2415 +#: src/strings.ts:2416 msgid "February 2022 Week 3" msgstr "" -#: src/strings.ts:731 +#: src/strings.ts:732 msgid "File check failed: {reason} Try reuploading the file to fix the issue." msgstr "" -#: src/strings.ts:749 +#: src/strings.ts:750 msgid "File check passed" msgstr "" -#: src/strings.ts:800 +#: src/strings.ts:801 msgid "File length is 0. Please upload this file again from the attachment manager." msgstr "" -#: src/strings.ts:802 +#: src/strings.ts:803 msgid "File length mismatch. Expected {expectedSize} but got {currentSize} bytes. Please upload this file again from the attachment manager." msgstr "" -#: src/strings.ts:948 +#: src/strings.ts:949 msgid "File mismatch" msgstr "" -#: src/strings.ts:944 +#: src/strings.ts:945 msgid "File size should be less than {sizeInMB}" msgstr "" -#: src/strings.ts:942 +#: src/strings.ts:943 msgid "File too big" msgstr "" -#: src/strings.ts:1477 +#: src/strings.ts:1478 msgid "Filter attachments by filename, type or hash" msgstr "" -#: src/strings.ts:1832 +#: src/strings.ts:1833 msgid "Filter languages" msgstr "" -#: src/strings.ts:2603 +#: src/strings.ts:2604 msgid "Finish your purchase in the browser." msgstr "" -#: src/strings.ts:1668 +#: src/strings.ts:1669 msgid "Fix it" msgstr "" -#: src/strings.ts:2014 +#: src/strings.ts:2015 msgid "Focus mode" msgstr "" -#: src/strings.ts:2162 +#: src/strings.ts:2163 msgid "Follow" msgstr "" -#: src/strings.ts:1274 +#: src/strings.ts:1275 msgid "Follow us on Mastodon" msgstr "" -#: src/strings.ts:1276 +#: src/strings.ts:1277 msgid "Follow us on Mastodon for updates and news about Notesnook" msgstr "" -#: src/strings.ts:1277 +#: src/strings.ts:1278 msgid "Follow us on X" msgstr "" -#: src/strings.ts:1278 +#: src/strings.ts:1279 msgid "Follow us on X for updates and news about Notesnook" msgstr "" -#: src/strings.ts:2275 +#: src/strings.ts:2276 msgid "Font family" msgstr "" -#: src/strings.ts:2462 +#: src/strings.ts:2463 msgid "Font ligatures" msgstr "" -#: src/strings.ts:2276 +#: src/strings.ts:2277 msgid "Font size" msgstr "" -#: src/strings.ts:2520 +#: src/strings.ts:2521 msgid "For a monthly subscription, you can get a refund within 7 days of purchase. For a yearly subscription, we offer a full refund within 14 days of purchase. For a 5 year subscription, you can request a refund within 30 days of purchase." msgstr "" -#: src/strings.ts:1685 +#: src/strings.ts:1686 msgid "For a more integrated user experience, try out Notesnook for {platform}" msgstr "" -#: src/strings.ts:1766 +#: src/strings.ts:1767 msgid "for help regarding how to use the Notesnook Importer." msgstr "" -#: src/strings.ts:2529 +#: src/strings.ts:2530 msgid "for locking your notes as soon as app enters background" msgstr "" -#: src/strings.ts:2194 +#: src/strings.ts:2195 msgid "Force logout from all your other logged in devices." msgstr "" -#: src/strings.ts:1095 +#: src/strings.ts:1096 msgid "Force pull changes" msgstr "" -#: src/strings.ts:1104 +#: src/strings.ts:1105 msgid "Force push changes" msgstr "" -#: src/strings.ts:2211 +#: src/strings.ts:2212 msgid "" "Force push:\n" "Use this if changes made on this device are not appearing on other devices. This will overwrite the data on the server with the data from this device.\n" @@ -2946,91 +2946,91 @@ msgid "" "**These must only be used for troubleshooting. Using them regularly for sync is not recommended and will lead to unexpected data loss and other issues. If you are having persistent issues with sync, please report them to us at support@streetwriters.co.**" msgstr "" -#: src/strings.ts:552 +#: src/strings.ts:553 msgid "Forgot password?" msgstr "" -#: src/strings.ts:2563 +#: src/strings.ts:2564 msgid "Free {duration} day trial, cancel any time" msgstr "" -#: src/strings.ts:2467 +#: src/strings.ts:2468 msgid "Free plan" msgstr "" -#: src/strings.ts:626 +#: src/strings.ts:627 msgid "Fri" msgstr "" -#: src/strings.ts:617 +#: src/strings.ts:618 msgid "Friday" msgstr "" -#: src/strings.ts:2370 +#: src/strings.ts:2371 msgid "From code" msgstr "" -#: src/strings.ts:2367 +#: src/strings.ts:2368 msgid "From URL" msgstr "" -#: src/strings.ts:1998 +#: src/strings.ts:1999 msgid "Full name updated" msgstr "" -#: src/strings.ts:2205 +#: src/strings.ts:2206 msgid "Full offline mode" msgstr "" -#: src/strings.ts:2322 +#: src/strings.ts:2323 msgid "Full screen" msgstr "" -#: src/strings.ts:2091 +#: src/strings.ts:2092 msgid "General" msgstr "" -#: src/strings.ts:1267 +#: src/strings.ts:1268 msgid "Get helpful debug info about the app to help us find bugs." msgstr "" -#: src/strings.ts:1291 +#: src/strings.ts:1292 msgid "Get Notesnook app on your desktop and access all notes" msgstr "" -#: src/strings.ts:2156 +#: src/strings.ts:2157 msgid "Get Notesnook app on your iPhone and access all your notes on the go." msgstr "" -#: src/strings.ts:2158 +#: src/strings.ts:2159 msgid "Get Notesnook app on your iPhone or Android device and access all your notes on the go." msgstr "" -#: src/strings.ts:1381 +#: src/strings.ts:1382 msgid "Get Notesnook Pro" msgstr "" -#: src/strings.ts:1366 +#: src/strings.ts:1367 msgid "Get Notesnook Pro to enable automatic backups" msgstr "" -#: src/strings.ts:2406 +#: src/strings.ts:2407 msgid "Get Priority support" msgstr "" -#: src/strings.ts:687 +#: src/strings.ts:688 msgid "Get Pro" msgstr "" -#: src/strings.ts:562 +#: src/strings.ts:563 msgid "Get started" msgstr "" -#: src/strings.ts:2526 +#: src/strings.ts:2527 msgid "Get this and so much more:" msgstr "" -#: src/strings.ts:1884 +#: src/strings.ts:1885 msgid "Getting encryption key..." msgstr "" @@ -3042,99 +3042,99 @@ msgstr "" msgid "Getting recovery codes" msgstr "" -#: src/strings.ts:2161 +#: src/strings.ts:2162 msgid "GNU GENERAL PUBLIC LICENSE Version 3" msgstr "" -#: src/strings.ts:2604 +#: src/strings.ts:2605 msgid "Go back" msgstr "" -#: src/strings.ts:2445 +#: src/strings.ts:2446 msgid "Go back in tab" msgstr "" -#: src/strings.ts:2224 +#: src/strings.ts:2225 msgid "Go back to notebooks" msgstr "" -#: src/strings.ts:2225 +#: src/strings.ts:2226 msgid "Go back to tags" msgstr "" -#: src/strings.ts:2444 +#: src/strings.ts:2445 msgid "Go forward in tab" msgstr "" -#: src/strings.ts:1812 +#: src/strings.ts:1813 msgid "Go to" msgstr "" -#: src/strings.ts:1813 +#: src/strings.ts:1814 msgid "Go to #{tag}" msgstr "" -#: src/strings.ts:1696 +#: src/strings.ts:1697 msgid "Go to next page" msgstr "" -#: src/strings.ts:1697 +#: src/strings.ts:1698 msgid "Go to previous page" msgstr "" -#: src/strings.ts:1303 +#: src/strings.ts:1304 msgid "Go to web app" msgstr "" -#: src/strings.ts:2537 +#: src/strings.ts:2538 msgid "Google will remind you 2 days before your trial ends." msgstr "" -#: src/strings.ts:2564 +#: src/strings.ts:2565 msgid "Google will remind you before your trial ends" msgstr "" -#: src/strings.ts:585 +#: src/strings.ts:586 msgid "Got it" msgstr "" -#: src/strings.ts:428 +#: src/strings.ts:429 msgid "GROUP" msgstr "" -#: src/strings.ts:1886 +#: src/strings.ts:1887 msgid "Group added successfully" msgstr "" -#: src/strings.ts:536 +#: src/strings.ts:537 msgid "Group by" msgstr "" -#: src/strings.ts:751 +#: src/strings.ts:752 msgid "Hash copied" msgstr "" -#: src/strings.ts:2208 +#: src/strings.ts:2209 msgid "Having problems with sync?" msgstr "" -#: src/strings.ts:2552 +#: src/strings.ts:2553 msgid "hdImages" msgstr "" -#: src/strings.ts:2348 +#: src/strings.ts:2349 msgid "Heading {level}" msgstr "" -#: src/strings.ts:2277 +#: src/strings.ts:2278 msgid "Headings" msgstr "" -#: src/strings.ts:2383 +#: src/strings.ts:2384 msgid "Height" msgstr "" -#: src/strings.ts:1255 +#: src/strings.ts:1256 msgid "Help and support" msgstr "" @@ -3142,55 +3142,55 @@ msgstr "" msgid "Help improve Notesnook by sending completely anonymized" msgstr "" -#: src/strings.ts:1374 +#: src/strings.ts:1375 msgid "Hide" msgstr "" -#: src/strings.ts:1181 +#: src/strings.ts:1182 msgid "Hide app contents when you switch to other apps. This will also disable screenshot taking in the app." msgstr "" -#: src/strings.ts:2167 +#: src/strings.ts:2168 msgid "Hide note title" msgstr "" -#: src/strings.ts:2280 +#: src/strings.ts:2281 msgid "Highlight" msgstr "" -#: src/strings.ts:908 +#: src/strings.ts:909 msgid "History" msgstr "" -#: src/strings.ts:1526 +#: src/strings.ts:1527 msgid "Home" msgstr "" -#: src/strings.ts:1125 +#: src/strings.ts:1126 msgid "Homepage" msgstr "" -#: src/strings.ts:1316 +#: src/strings.ts:1317 msgid "Homepage changed to {name}" msgstr "" -#: src/strings.ts:2329 +#: src/strings.ts:2330 msgid "Horizontal rule" msgstr "" -#: src/strings.ts:1797 +#: src/strings.ts:1798 msgid "How do you want to recover your account?" msgstr "" -#: src/strings.ts:1667 +#: src/strings.ts:1668 msgid "How to fix it?" msgstr "" -#: src/strings.ts:879 +#: src/strings.ts:880 msgid "hr" msgstr "" -#: src/strings.ts:2497 +#: src/strings.ts:2498 msgid "I already have an account" msgstr "" @@ -3214,19 +3214,19 @@ msgstr "" msgid "I have a recovery code" msgstr "" -#: src/strings.ts:1885 +#: src/strings.ts:1886 msgid "I have saved my key" msgstr "" -#: src/strings.ts:2423 +#: src/strings.ts:2424 msgid "I love cooking and collecting recipes." msgstr "" -#: src/strings.ts:2209 +#: src/strings.ts:2210 msgid "I understand" msgstr "" -#: src/strings.ts:550 +#: src/strings.ts:551 msgid "I understand, change my password" msgstr "" @@ -3238,29 +3238,29 @@ msgstr "" msgid "If this continues to happen, please reach out to us via" msgstr "" -#: src/strings.ts:2112 +#: src/strings.ts:2113 msgid "If true, Notesnook will automatically start up when you turn on & login to your system." msgstr "" -#: src/strings.ts:2115 +#: src/strings.ts:2116 msgid "If true, Notesnook will start minimized to either the system tray or your system taskbar/dock. This setting only works with Auto start on system startup is enabled." msgstr "" -#: src/strings.ts:1723 +#: src/strings.ts:1724 msgid "If you can't scan the QR code above, enter this text instead (spaces don't matter)" msgstr "" -#: src/strings.ts:1393 +#: src/strings.ts:1394 msgid "" "If you didn't get an email from us or the confirmation link isn't\n" " working," msgstr "" -#: src/strings.ts:1803 +#: src/strings.ts:1804 msgid "If you don't have a recovery key, you can recover your data by restoring a Notesnook data backup file (.nnbackup)." msgstr "" -#: src/strings.ts:2076 +#: src/strings.ts:2077 msgid "If you face any issue, you can reach out to us anytime." msgstr "" @@ -3268,27 +3268,27 @@ msgstr "" msgid "If you want to ask something in general or need some assistance, we would suggest that you" msgstr "" -#: src/strings.ts:2334 +#: src/strings.ts:2335 msgid "Image" msgstr "" -#: src/strings.ts:1127 +#: src/strings.ts:1128 msgid "Image Compression" msgstr "" -#: src/strings.ts:2310 +#: src/strings.ts:2311 msgid "Image properties" msgstr "" -#: src/strings.ts:2306 +#: src/strings.ts:2307 msgid "Image settings" msgstr "" -#: src/strings.ts:946 +#: src/strings.ts:947 msgid "Image size should be less than {sizeInMB}" msgstr "" -#: src/strings.ts:754 +#: src/strings.ts:755 msgid "Images" msgstr "" @@ -3296,19 +3296,19 @@ msgstr "" msgid "Images uploaded without compression are slow to load and take more bandwidth. We recommend compressing images unless you need image in original quality." msgstr "" -#: src/strings.ts:1581 +#: src/strings.ts:1582 msgid "Immediately" msgstr "" -#: src/strings.ts:2139 +#: src/strings.ts:2140 msgid "Import & export" msgstr "" -#: src/strings.ts:1750 +#: src/strings.ts:1751 msgid "Import completed" msgstr "" -#: src/strings.ts:1765 +#: src/strings.ts:1766 msgid "import guide" msgstr "" @@ -3316,79 +3316,79 @@ msgstr "" msgid "Incoming" msgstr "" -#: src/strings.ts:1836 +#: src/strings.ts:1837 msgid "Incoming note" msgstr "" -#: src/strings.ts:783 +#: src/strings.ts:784 msgid "Incorrect {type}" msgstr "" -#: src/strings.ts:2392 +#: src/strings.ts:2393 msgid "Increase {title}" msgstr "" -#: src/strings.ts:2234 +#: src/strings.ts:2235 msgid "Insert" msgstr "" -#: src/strings.ts:2389 +#: src/strings.ts:2390 msgid "Insert a {rows}x{columns} table" msgstr "" -#: src/strings.ts:2339 +#: src/strings.ts:2340 msgid "Insert a table" msgstr "" -#: src/strings.ts:2341 +#: src/strings.ts:2342 msgid "Insert an embed" msgstr "" -#: src/strings.ts:2335 +#: src/strings.ts:2336 msgid "Insert an image" msgstr "" -#: src/strings.ts:2287 +#: src/strings.ts:2288 msgid "Insert column left" msgstr "" -#: src/strings.ts:2288 +#: src/strings.ts:2289 msgid "Insert column right" msgstr "" -#: src/strings.ts:2232 +#: src/strings.ts:2233 msgid "Insert link" msgstr "" -#: src/strings.ts:2294 +#: src/strings.ts:2295 msgid "Insert row above" msgstr "" -#: src/strings.ts:2295 +#: src/strings.ts:2296 msgid "Insert row below" msgstr "" -#: src/strings.ts:1683 +#: src/strings.ts:1684 msgid "Install Notesnook" msgstr "" -#: src/strings.ts:2147 +#: src/strings.ts:2148 msgid "Install update" msgstr "" -#: src/strings.ts:1718 +#: src/strings.ts:1719 msgid "installs" msgstr "" -#: src/strings.ts:747 +#: src/strings.ts:748 msgid "Invalid {type}" msgstr "" -#: src/strings.ts:1990 +#: src/strings.ts:1991 msgid "Invalid CORS proxy url" msgstr "" -#: src/strings.ts:1481 +#: src/strings.ts:1482 msgid "Invalid email" msgstr "" @@ -3396,12 +3396,12 @@ msgstr "" msgid "Issue created" msgstr "" -#: src/strings.ts:989 -#: src/strings.ts:998 +#: src/strings.ts:990 +#: src/strings.ts:999 msgid "It may take a minute to receive your code." msgstr "" -#: src/strings.ts:1589 +#: src/strings.ts:1590 msgid "It seems that your changes could not be saved. What to do next:" msgstr "" @@ -3409,7 +3409,7 @@ msgstr "" msgid "It took us a year to bring Notesnook to life. Share your experience and suggestions to help us improve it." msgstr "" -#: src/strings.ts:2256 +#: src/strings.ts:2257 msgid "Italic" msgstr "" @@ -3422,7 +3422,7 @@ msgid "Item" msgstr "" #: src/strings.ts:311 -#: src/strings.ts:1702 +#: src/strings.ts:1703 msgid "items" msgstr "" @@ -3430,7 +3430,7 @@ msgstr "" msgid "Items" msgstr "" -#: src/strings.ts:2159 +#: src/strings.ts:2160 msgid "Join community" msgstr "" @@ -3438,55 +3438,55 @@ msgstr "" msgid "join our community on Discord." msgstr "" -#: src/strings.ts:1279 +#: src/strings.ts:1280 msgid "Join our Discord server" msgstr "" -#: src/strings.ts:1281 +#: src/strings.ts:1282 msgid "Join our Discord server to chat with other users and the team" msgstr "" -#: src/strings.ts:1271 +#: src/strings.ts:1272 msgid "Join our Telegram group" msgstr "" -#: src/strings.ts:1273 +#: src/strings.ts:1274 msgid "Join our Telegram group to chat with other users and the team" msgstr "" -#: src/strings.ts:2067 +#: src/strings.ts:2068 msgid "Join the cause" msgstr "" -#: src/strings.ts:2025 +#: src/strings.ts:2026 msgid "Jump to group" msgstr "" -#: src/strings.ts:566 +#: src/strings.ts:567 msgid "Keep" msgstr "" -#: src/strings.ts:2020 +#: src/strings.ts:2021 msgid "Keep open" msgstr "" -#: src/strings.ts:1358 +#: src/strings.ts:1359 msgid "Keep your data safe" msgstr "" -#: src/strings.ts:2127 +#: src/strings.ts:2128 msgid "Languages" msgstr "" -#: src/strings.ts:2229 +#: src/strings.ts:2230 msgid "Last edited at" msgstr "" -#: src/strings.ts:589 +#: src/strings.ts:590 msgid "Later" msgstr "" -#: src/strings.ts:642 +#: src/strings.ts:643 msgid "Latest first" msgstr "" @@ -3494,11 +3494,11 @@ msgstr "" msgid "Learn how this works." msgstr "" -#: src/strings.ts:570 +#: src/strings.ts:571 msgid "Learn more" msgstr "" -#: src/strings.ts:976 +#: src/strings.ts:977 msgid "Learn more about Monographs" msgstr "" @@ -3506,67 +3506,67 @@ msgstr "" msgid "Learn more about Notesnook Monograph" msgstr "" -#: src/strings.ts:645 +#: src/strings.ts:646 msgid "Least relevant first" msgstr "" -#: src/strings.ts:1561 +#: src/strings.ts:1562 msgid "Legal" msgstr "" -#: src/strings.ts:475 +#: src/strings.ts:476 msgid "Let us know if you have faced any issue/bug while using Notesnook. We will try to fix it as soon as possible." msgstr "" -#: src/strings.ts:2160 +#: src/strings.ts:2161 msgid "License" msgstr "" -#: src/strings.ts:1719 +#: src/strings.ts:1720 msgid "Licensed under {license}" msgstr "" -#: src/strings.ts:2325 +#: src/strings.ts:2326 msgid "Lift list item" msgstr "" -#: src/strings.ts:724 +#: src/strings.ts:725 msgid "Light" msgstr "" -#: src/strings.ts:2355 +#: src/strings.ts:2356 msgid "Line {line}, Column {column}" -msgstr "" +msgstr "<<<<<<< HEAD" -#: src/strings.ts:2615 +#: src/strings.ts:2616 msgid "Line height" msgstr "" -#: src/strings.ts:1151 +#: src/strings.ts:1152 msgid "Line spacing changed" msgstr "" -#: src/strings.ts:2260 +#: src/strings.ts:2261 msgid "Link" msgstr "" -#: src/strings.ts:910 +#: src/strings.ts:911 msgid "Link copied" msgstr "" -#: src/strings.ts:928 +#: src/strings.ts:929 msgid "Link notebooks" msgstr "" -#: src/strings.ts:2474 +#: src/strings.ts:2475 msgid "Link notes" msgstr "" -#: src/strings.ts:2265 +#: src/strings.ts:2266 msgid "Link settings" msgstr "" -#: src/strings.ts:2385 +#: src/strings.ts:2386 msgid "Link text" msgstr "" @@ -3574,31 +3574,31 @@ msgstr "" msgid "LINK TO A SECTION" msgstr "" -#: src/strings.ts:525 +#: src/strings.ts:526 msgid "Link to note" msgstr "" -#: src/strings.ts:850 +#: src/strings.ts:851 msgid "Link to notebook" msgstr "" -#: src/strings.ts:594 +#: src/strings.ts:595 msgid "Linked notes" msgstr "" -#: src/strings.ts:1595 +#: src/strings.ts:1596 msgid "Linking to a specific block is not available for locked notes." msgstr "" -#: src/strings.ts:503 +#: src/strings.ts:504 msgid "List of" msgstr "" -#: src/strings.ts:726 +#: src/strings.ts:727 msgid "Load from file" msgstr "" -#: src/strings.ts:1694 +#: src/strings.ts:1695 msgid "Loading" msgstr "" @@ -3607,11 +3607,11 @@ msgstr "" msgid "Loading {0}, please wait..." msgstr "" -#: src/strings.ts:1663 +#: src/strings.ts:1664 msgid "Loading editor. Please wait..." msgstr "" -#: src/strings.ts:1063 +#: src/strings.ts:1064 msgid "Loading subscription details" msgstr "" @@ -3619,35 +3619,35 @@ msgstr "" msgid "Loading themes..." msgstr "" -#: src/strings.ts:1326 +#: src/strings.ts:1327 msgid "Loading trash" msgstr "" -#: src/strings.ts:972 +#: src/strings.ts:973 msgid "Loading your archive" msgstr "" -#: src/strings.ts:966 +#: src/strings.ts:967 msgid "Loading your favorites" msgstr "" -#: src/strings.ts:971 +#: src/strings.ts:972 msgid "Loading your monographs" msgstr "" -#: src/strings.ts:969 +#: src/strings.ts:970 msgid "Loading your notebooks" msgstr "" -#: src/strings.ts:967 +#: src/strings.ts:968 msgid "Loading your notes" msgstr "" -#: src/strings.ts:970 +#: src/strings.ts:971 msgid "Loading your reminders" msgstr "" -#: src/strings.ts:968 +#: src/strings.ts:969 msgid "Loading your tags" msgstr "" @@ -3655,23 +3655,23 @@ msgstr "" msgid "Lock" msgstr "" -#: src/strings.ts:455 +#: src/strings.ts:456 msgid "Lock note" msgstr "" -#: src/strings.ts:1183 +#: src/strings.ts:1184 msgid "Lock the app with a password or pin" msgstr "" -#: src/strings.ts:900 +#: src/strings.ts:901 msgid "Locked notes cannot be pinned" msgstr "" -#: src/strings.ts:903 +#: src/strings.ts:904 msgid "Locked notes cannot be published" msgstr "" -#: src/strings.ts:2192 +#: src/strings.ts:2193 msgid "Log out from all other devices" msgstr "" @@ -3679,7 +3679,7 @@ msgstr "" msgid "Logged in as {email}" msgstr "" -#: src/strings.ts:1073 +#: src/strings.ts:1074 msgid "Logging out will clear all data stored on THIS DEVICE. Make sure you have synced all your changes before logging out." msgstr "" @@ -3687,7 +3687,7 @@ msgstr "" msgid "Logging out. Please wait..." msgstr "" -#: src/strings.ts:1781 +#: src/strings.ts:1782 msgid "Logging you in" msgstr "" @@ -3695,131 +3695,131 @@ msgstr "" msgid "Login" msgstr "" -#: src/strings.ts:777 +#: src/strings.ts:778 msgid "Login failed" msgstr "" -#: src/strings.ts:901 +#: src/strings.ts:902 msgid "Login required" msgstr "" -#: src/strings.ts:778 +#: src/strings.ts:779 msgid "Login successful" msgstr "" -#: src/strings.ts:1361 +#: src/strings.ts:1362 msgid "Login to encrypt and sync notes" msgstr "" -#: src/strings.ts:2608 +#: src/strings.ts:2609 msgid "Login to upload attachments. [Read more](https://help.notesnook.com/faqs/login-to-upload-attachments)" msgstr "" -#: src/strings.ts:541 +#: src/strings.ts:542 msgid "Login to your account" msgstr "" -#: src/strings.ts:775 +#: src/strings.ts:776 msgid "Logout" msgstr "" -#: src/strings.ts:581 +#: src/strings.ts:582 msgid "Logout and clear data" msgstr "" -#: src/strings.ts:554 +#: src/strings.ts:555 msgid "Logout from this device" msgstr "" -#: src/strings.ts:1411 +#: src/strings.ts:1412 msgid "Long press on any item in list to enter multi-select mode." msgstr "" -#: src/strings.ts:2360 +#: src/strings.ts:2361 msgid "Make task list readonly" msgstr "" -#: src/strings.ts:1037 +#: src/strings.ts:1038 msgid "Manage account" msgstr "" -#: src/strings.ts:1050 +#: src/strings.ts:1051 msgid "Manage attachments" msgstr "" -#: src/strings.ts:684 +#: src/strings.ts:685 msgid "Manage subscription on desktop" msgstr "" -#: src/strings.ts:849 +#: src/strings.ts:850 msgid "Manage tags" msgstr "" -#: src/strings.ts:1038 +#: src/strings.ts:1039 msgid "Manage your account related settings here" msgstr "" -#: src/strings.ts:1051 +#: src/strings.ts:1052 msgid "Manage your attachments in one place" msgstr "" -#: src/strings.ts:1210 +#: src/strings.ts:1211 msgid "Manage your backups and restore data" msgstr "" -#: src/strings.ts:1244 +#: src/strings.ts:1245 msgid "Manage your reminders" msgstr "" -#: src/strings.ts:1082 +#: src/strings.ts:1083 msgid "Manage your sync settings here" msgstr "" -#: src/strings.ts:1439 +#: src/strings.ts:1440 msgid "Mark important notes by adding them to favorites." msgstr "" -#: src/strings.ts:1158 +#: src/strings.ts:1159 msgid "Markdown shortcuts" msgstr "" -#: src/strings.ts:1164 +#: src/strings.ts:1165 msgid "Marketing emails" msgstr "" -#: src/strings.ts:2373 +#: src/strings.ts:2374 msgid "Match case" msgstr "" -#: src/strings.ts:2374 +#: src/strings.ts:2375 msgid "Match whole word" msgstr "" -#: src/strings.ts:2282 +#: src/strings.ts:2283 msgid "Math (inline)" msgstr "" -#: src/strings.ts:2332 +#: src/strings.ts:2333 msgid "Math & formulas" msgstr "" -#: src/strings.ts:2039 +#: src/strings.ts:2040 msgid "Maximize" msgstr "" -#: src/strings.ts:2069 +#: src/strings.ts:2070 msgid "Meet other privacy-minded people & talk to us directly about your concerns, issues and suggestions." msgstr "" -#: src/strings.ts:2416 +#: src/strings.ts:2417 msgid "Meetings" msgstr "" -#: src/strings.ts:1778 +#: src/strings.ts:1779 msgid "Member since {date}" msgstr "" -#: src/strings.ts:2293 +#: src/strings.ts:2294 msgid "Merge cells" msgstr "" @@ -3833,134 +3833,134 @@ msgstr "" msgid "Migration failed" msgstr "" -#: src/strings.ts:878 +#: src/strings.ts:879 msgid "min" msgstr "" -#: src/strings.ts:2008 +#: src/strings.ts:2009 msgid "Minimal" msgstr "" -#: src/strings.ts:2038 +#: src/strings.ts:2039 msgid "Minimize" msgstr "" -#: src/strings.ts:2116 +#: src/strings.ts:2117 msgid "Minimize to system tray" msgstr "" -#: src/strings.ts:688 +#: src/strings.ts:689 msgid "mo" msgstr "" -#: src/strings.ts:622 +#: src/strings.ts:623 msgid "Mon" msgstr "" -#: src/strings.ts:613 +#: src/strings.ts:614 msgid "Monday" msgstr "" -#: src/strings.ts:1630 +#: src/strings.ts:1631 msgid "Monograph server" msgstr "" -#: src/strings.ts:869 +#: src/strings.ts:870 msgid "Monograph URL copied" msgstr "" #: src/strings.ts:322 -#: src/strings.ts:938 -#: src/strings.ts:1528 +#: src/strings.ts:939 +#: src/strings.ts:1529 msgid "Monographs" msgstr "" -#: src/strings.ts:1421 +#: src/strings.ts:1422 msgid "Monographs can be encrypted with a secret key and shared with anyone." msgstr "" -#: src/strings.ts:1416 +#: src/strings.ts:1417 msgid "Monographs enable you to share your notes in a secure and private way." msgstr "" -#: src/strings.ts:1839 +#: src/strings.ts:1840 msgid "month" msgstr "" -#: src/strings.ts:664 +#: src/strings.ts:665 msgid "Month" msgstr "" #: src/strings.ts:169 -#: src/strings.ts:1569 +#: src/strings.ts:1570 msgid "Monthly" msgstr "" -#: src/strings.ts:2312 +#: src/strings.ts:2313 msgid "More" msgstr "" -#: src/strings.ts:644 +#: src/strings.ts:645 msgid "Most relevant first" msgstr "" -#: src/strings.ts:851 +#: src/strings.ts:852 msgid "Move" msgstr "" -#: src/strings.ts:2361 +#: src/strings.ts:2362 msgid "Move all checked tasks to bottom" msgstr "" -#: src/strings.ts:2289 +#: src/strings.ts:2290 msgid "Move column left" msgstr "" -#: src/strings.ts:2290 +#: src/strings.ts:2291 msgid "Move column right" msgstr "" -#: src/strings.ts:935 +#: src/strings.ts:936 msgid "Move notebook" msgstr "" -#: src/strings.ts:897 +#: src/strings.ts:898 msgid "Move notes" msgstr "" -#: src/strings.ts:2297 +#: src/strings.ts:2298 msgid "Move row down" msgstr "" -#: src/strings.ts:2296 +#: src/strings.ts:2297 msgid "Move row up" msgstr "" -#: src/strings.ts:584 +#: src/strings.ts:585 msgid "Move selected notes" msgstr "" -#: src/strings.ts:583 +#: src/strings.ts:584 msgid "Move to top" msgstr "" -#: src/strings.ts:854 +#: src/strings.ts:855 msgid "Move to trash" msgstr "" -#: src/strings.ts:1171 +#: src/strings.ts:1172 msgid "Multi-layer encryption to most important notes" msgstr "" -#: src/strings.ts:886 +#: src/strings.ts:887 msgid "Name" msgstr "" -#: src/strings.ts:1687 +#: src/strings.ts:1688 msgid "Native high-performance encryption" msgstr "" -#: src/strings.ts:2441 +#: src/strings.ts:2442 msgid "Navigate" msgstr "" @@ -3968,31 +3968,31 @@ msgstr "" msgid "Never" msgstr "" -#: src/strings.ts:1341 +#: src/strings.ts:1342 msgid "Never ask again" msgstr "" -#: src/strings.ts:1036 +#: src/strings.ts:1037 msgid "Never hesitate to choose privacy" msgstr "" -#: src/strings.ts:671 +#: src/strings.ts:672 msgid "Never show again" msgstr "" -#: src/strings.ts:641 +#: src/strings.ts:642 msgid "New - old" msgstr "" -#: src/strings.ts:527 +#: src/strings.ts:528 msgid "New color" msgstr "" -#: src/strings.ts:1845 +#: src/strings.ts:1846 msgid "New Email" msgstr "" -#: src/strings.ts:1150 +#: src/strings.ts:1151 msgid "New lines will be double spaced (old ones won't be affected)." msgstr "" @@ -4000,63 +4000,63 @@ msgstr "" msgid "New note" msgstr "" -#: src/strings.ts:524 +#: src/strings.ts:525 msgid "New notebook" msgstr "" -#: src/strings.ts:1479 +#: src/strings.ts:1480 msgid "New password" msgstr "" -#: src/strings.ts:1485 +#: src/strings.ts:1486 msgid "New pin" msgstr "" -#: src/strings.ts:534 +#: src/strings.ts:535 msgid "New reminder" msgstr "" -#: src/strings.ts:575 +#: src/strings.ts:576 msgid "New tab" msgstr "" -#: src/strings.ts:2447 +#: src/strings.ts:2448 msgid "New tag" msgstr "" -#: src/strings.ts:1367 +#: src/strings.ts:1368 msgid "New update available" msgstr "" -#: src/strings.ts:530 +#: src/strings.ts:531 msgid "New version" msgstr "" -#: src/strings.ts:2023 +#: src/strings.ts:2024 msgid "Newest - oldest" msgstr "" -#: src/strings.ts:1139 +#: src/strings.ts:1140 msgid "Newly created notes will be uncategorized" msgstr "" -#: src/strings.ts:551 +#: src/strings.ts:552 msgid "Next" msgstr "" -#: src/strings.ts:2377 +#: src/strings.ts:2378 msgid "Next match" msgstr "" -#: src/strings.ts:2442 +#: src/strings.ts:2443 msgid "Next tab" msgstr "" -#: src/strings.ts:546 +#: src/strings.ts:547 msgid "No" msgstr "" -#: src/strings.ts:858 +#: src/strings.ts:859 msgid "No application found to open {fileToOpen}" msgstr "" @@ -4072,11 +4072,11 @@ msgstr "" msgid "No blocks linked" msgstr "" -#: src/strings.ts:785 +#: src/strings.ts:786 msgid "No color selected" msgstr "" -#: src/strings.ts:1230 +#: src/strings.ts:1231 msgid "No directory selected" msgstr "" @@ -4084,15 +4084,15 @@ msgstr "" msgid "No downloads in progress." msgstr "" -#: src/strings.ts:1983 +#: src/strings.ts:1984 msgid "No encryption key found" msgstr "" -#: src/strings.ts:1664 +#: src/strings.ts:1665 msgid "No headings found" msgstr "" -#: src/strings.ts:595 +#: src/strings.ts:596 msgid "No linked notes" msgstr "" @@ -4104,7 +4104,7 @@ msgstr "" msgid "No note history available for this device." msgstr "" -#: src/strings.ts:2491 +#: src/strings.ts:2492 msgid "No notebooks selected to move" msgstr "" @@ -4112,7 +4112,7 @@ msgstr "" msgid "No one can view this {type} except you." msgstr "" -#: src/strings.ts:2611 +#: src/strings.ts:2612 msgid "No password" msgstr "" @@ -4120,7 +4120,7 @@ msgstr "" msgid "No references found of this note" msgstr "" -#: src/strings.ts:1515 +#: src/strings.ts:1516 msgid "No results found" msgstr "" @@ -4128,7 +4128,7 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/strings.ts:1515 +#: src/strings.ts:1516 msgid "No results found for {query}" msgstr "" @@ -4140,11 +4140,11 @@ msgstr "" msgid "No updates available" msgstr "" -#: src/strings.ts:660 +#: src/strings.ts:661 msgid "None" msgstr "" -#: src/strings.ts:2013 +#: src/strings.ts:2014 msgid "Normal mode" msgstr "" @@ -4161,31 +4161,31 @@ msgstr "" msgid "Note" msgstr "" -#: src/strings.ts:814 +#: src/strings.ts:815 msgid "Note copied to clipboard" msgstr "" -#: src/strings.ts:1948 +#: src/strings.ts:1949 msgid "Note does not exist" msgstr "" -#: src/strings.ts:457 +#: src/strings.ts:458 msgid "Note history" msgstr "" -#: src/strings.ts:809 +#: src/strings.ts:810 msgid "Note locked" msgstr "" -#: src/strings.ts:844 +#: src/strings.ts:845 msgid "Note restored from history" msgstr "" -#: src/strings.ts:1584 +#: src/strings.ts:1585 msgid "Note title" msgstr "" -#: src/strings.ts:813 +#: src/strings.ts:814 msgid "Note unlocked" msgstr "" @@ -4193,7 +4193,7 @@ msgstr "" msgid "Note version history is local only." msgstr "" -#: src/strings.ts:1223 +#: src/strings.ts:1224 msgid "NOTE: Creating a backup with attachments can take a while, and also fail completely. The app will try to resume/restart the backup in case of interruptions." msgstr "" @@ -4202,11 +4202,11 @@ msgid "notebook" msgstr "" #: src/strings.ts:296 -#: src/strings.ts:1519 +#: src/strings.ts:1520 msgid "Notebook" msgstr "" -#: src/strings.ts:2477 +#: src/strings.ts:2478 msgid "Notebook added" msgstr "" @@ -4216,15 +4216,15 @@ msgstr "" #: src/strings.ts:258 #: src/strings.ts:316 -#: src/strings.ts:1518 +#: src/strings.ts:1519 msgid "Notebooks" msgstr "" -#: src/strings.ts:1793 +#: src/strings.ts:1794 msgid "NOTEBOOKS" msgstr "" -#: src/strings.ts:2239 +#: src/strings.ts:2240 msgid "Notebooks are the best way to organize your notes." msgstr "" @@ -4233,7 +4233,7 @@ msgid "notes" msgstr "" #: src/strings.ts:315 -#: src/strings.ts:1517 +#: src/strings.ts:1518 msgid "Notes" msgstr "" @@ -4241,35 +4241,35 @@ msgstr "" msgid "Notes exported as {path} successfully" msgstr "" -#: src/strings.ts:1749 +#: src/strings.ts:1750 msgid "notes imported" msgstr "" -#: src/strings.ts:2541 +#: src/strings.ts:2542 msgid "Notesnook" msgstr "" -#: src/strings.ts:2596 +#: src/strings.ts:2597 msgid "Notesnook Circle" msgstr "" -#: src/strings.ts:2598 +#: src/strings.ts:2599 msgid "Notesnook Circle brings together trusted partners who share our commitment to privacy, transparency, and user freedom." msgstr "" -#: src/strings.ts:2066 +#: src/strings.ts:2067 msgid "Notesnook encrypts everything offline before syncing to your other devices. This means that no one can read your notes except you. Not even us." msgstr "" -#: src/strings.ts:2141 +#: src/strings.ts:2142 msgid "Notesnook Importer" msgstr "" -#: src/strings.ts:1065 +#: src/strings.ts:1066 msgid "Notesnook Pro" msgstr "" -#: src/strings.ts:2173 +#: src/strings.ts:2174 msgid "" "Notesnook uses the following DNS providers:\n" "\n" @@ -4279,31 +4279,31 @@ msgid "" "This can sometimes bypass local ISP blockages on Notesnook traffic. Disable this if you want the app to use system's DNS settings." msgstr "" -#: src/strings.ts:986 +#: src/strings.ts:987 msgid "Notesnook will send you a 2FA code on your email when prompted" msgstr "" -#: src/strings.ts:993 +#: src/strings.ts:994 msgid "Notesnook will send you an SMS with a 2FA code when prompted" msgstr "" -#: src/strings.ts:2136 +#: src/strings.ts:2137 msgid "Notifications" msgstr "" -#: src/strings.ts:1376 +#: src/strings.ts:1377 msgid "Notifications disabled" msgstr "" -#: src/strings.ts:2273 +#: src/strings.ts:2274 msgid "Numbered list" msgstr "" -#: src/strings.ts:1717 +#: src/strings.ts:1718 msgid "of" msgstr "" -#: src/strings.ts:1601 +#: src/strings.ts:1602 msgid "Off" msgstr "" @@ -4311,35 +4311,35 @@ msgstr "" msgid "Offline" msgstr "" -#: src/strings.ts:2226 +#: src/strings.ts:2227 msgid "Okay" msgstr "" -#: src/strings.ts:640 +#: src/strings.ts:641 msgid "Old - new" msgstr "" -#: src/strings.ts:1478 +#: src/strings.ts:1479 msgid "Old password" msgstr "" -#: src/strings.ts:1834 +#: src/strings.ts:1835 msgid "Older version" msgstr "" -#: src/strings.ts:2022 +#: src/strings.ts:2023 msgid "Oldest - newest" msgstr "" -#: src/strings.ts:735 +#: src/strings.ts:736 msgid "Once your password is changed, please make sure to save the new account recovery key" msgstr "" -#: src/strings.ts:2559 +#: src/strings.ts:2560 msgid "One time purchase, no auto-renewal" msgstr "" -#: src/strings.ts:1770 +#: src/strings.ts:1771 msgid "Only .zip files are supported." msgstr "" @@ -4347,7 +4347,7 @@ msgstr "" msgid "Open" msgstr "" -#: src/strings.ts:576 +#: src/strings.ts:577 msgid "Open file location" msgstr "" @@ -4355,51 +4355,51 @@ msgstr "" msgid "Open in browser" msgstr "" -#: src/strings.ts:1305 +#: src/strings.ts:1306 msgid "Open in browser to manage subscription" msgstr "" -#: src/strings.ts:2323 +#: src/strings.ts:2324 msgid "Open in new tab" msgstr "" -#: src/strings.ts:578 +#: src/strings.ts:579 msgid "Open issue" msgstr "" -#: src/strings.ts:2263 +#: src/strings.ts:2264 msgid "Open link" msgstr "" -#: src/strings.ts:1862 +#: src/strings.ts:1863 msgid "Open note" msgstr "" -#: src/strings.ts:1379 +#: src/strings.ts:1380 msgid "Open settings" msgstr "" -#: src/strings.ts:2324 +#: src/strings.ts:2325 msgid "Open source" msgstr "" -#: src/strings.ts:1287 +#: src/strings.ts:1288 msgid "Open source libraries used in Notesnook" msgstr "" -#: src/strings.ts:1286 +#: src/strings.ts:1287 msgid "Open source licenses" msgstr "" -#: src/strings.ts:818 +#: src/strings.ts:819 msgid "Open source." msgstr "" -#: src/strings.ts:982 +#: src/strings.ts:983 msgid "Open the two-factor authentication (TOTP) app to view your authentication code." msgstr "" -#: src/strings.ts:1856 +#: src/strings.ts:1857 msgid "Optional" msgstr "" @@ -4407,36 +4407,36 @@ msgstr "" msgid "or email us at" msgstr "" -#: src/strings.ts:2021 +#: src/strings.ts:2022 msgid "Order by" msgstr "" -#: src/strings.ts:2219 +#: src/strings.ts:2220 msgid "Order ID" msgstr "" -#: src/strings.ts:757 -#: src/strings.ts:761 +#: src/strings.ts:758 +#: src/strings.ts:762 msgid "Orphaned" msgstr "" -#: src/strings.ts:2144 +#: src/strings.ts:2145 msgid "Other" msgstr "" -#: src/strings.ts:2344 +#: src/strings.ts:2345 msgid "Outline list" msgstr "" -#: src/strings.ts:2347 +#: src/strings.ts:2348 msgid "Paragraph" msgstr "" -#: src/strings.ts:2490 +#: src/strings.ts:2491 msgid "Paragraphs" msgstr "" -#: src/strings.ts:2100 +#: src/strings.ts:2101 msgid "Partial backups contain all your data except attachments. They are created from data already available on your device and do not require an Internet connection." msgstr "" @@ -4444,31 +4444,31 @@ msgstr "" msgid "Partially refunded" msgstr "" -#: src/strings.ts:2401 +#: src/strings.ts:2402 msgid "Passed" msgstr "" -#: src/strings.ts:882 +#: src/strings.ts:883 msgid "Password" msgstr "" -#: src/strings.ts:770 +#: src/strings.ts:771 msgid "Password change failed" msgstr "" -#: src/strings.ts:769 +#: src/strings.ts:770 msgid "Password changed successfully" msgstr "" -#: src/strings.ts:807 +#: src/strings.ts:808 msgid "Password does not match" msgstr "" -#: src/strings.ts:782 +#: src/strings.ts:783 msgid "Password incorrect" msgstr "" -#: src/strings.ts:806 +#: src/strings.ts:807 msgid "Password not entered" msgstr "" @@ -4476,173 +4476,173 @@ msgstr "" msgid "Password protection" msgstr "" -#: src/strings.ts:808 +#: src/strings.ts:809 msgid "Password updated" msgstr "" -#: src/strings.ts:2080 +#: src/strings.ts:2081 msgid "Password/pin" msgstr "" -#: src/strings.ts:2247 +#: src/strings.ts:2248 msgid "Paste" msgstr "" -#: src/strings.ts:2248 +#: src/strings.ts:2249 msgid "Paste and match style" msgstr "" -#: src/strings.ts:2369 +#: src/strings.ts:2370 msgid "Paste embed code here. Only iframes are supported." msgstr "" -#: src/strings.ts:2384 +#: src/strings.ts:2385 msgid "Paste image URL here" msgstr "" -#: src/strings.ts:2249 +#: src/strings.ts:2250 msgid "Paste without formatting" msgstr "" -#: src/strings.ts:2560 +#: src/strings.ts:2561 msgid "Pay once and use for 5 years" msgstr "" -#: src/strings.ts:2198 +#: src/strings.ts:2199 msgid "Payment method" msgstr "" -#: src/strings.ts:787 +#: src/strings.ts:788 msgid "PDF is password protected" msgstr "" -#: src/strings.ts:1728 +#: src/strings.ts:1729 msgid "phone number" msgstr "" -#: src/strings.ts:1847 +#: src/strings.ts:1848 msgid "Phone number" msgstr "" -#: src/strings.ts:1006 +#: src/strings.ts:1007 msgid "Phone number not entered" msgstr "" -#: src/strings.ts:899 +#: src/strings.ts:900 msgid "Pin" msgstr "" -#: src/strings.ts:1689 +#: src/strings.ts:1690 msgid "Pin notes in notifications drawer" msgstr "" -#: src/strings.ts:927 +#: src/strings.ts:928 msgid "Pin notification" msgstr "" -#: src/strings.ts:522 +#: src/strings.ts:523 msgid "Pinned" msgstr "" -#: src/strings.ts:2578 +#: src/strings.ts:2579 msgid "Plan limits" msgstr "" -#: src/strings.ts:2541 +#: src/strings.ts:2542 msgid "Plans" msgstr "" -#: src/strings.ts:1363 +#: src/strings.ts:1364 msgid "Please confirm your email to sync notes" msgstr "" -#: src/strings.ts:1001 +#: src/strings.ts:1002 msgid "Please confirm your identity by entering a recovery code." msgstr "" -#: src/strings.ts:980 -#: src/strings.ts:2231 +#: src/strings.ts:981 +#: src/strings.ts:2232 msgid "Please confirm your identity by entering the authentication code from your authenticator app." msgstr "" #. placeholder {0}: phoneNumber ? phoneNumber : "your registered phone number." -#: src/strings.ts:995 +#: src/strings.ts:996 msgid "Please confirm your identity by entering the authentication code sent to {0}." msgstr "" -#: src/strings.ts:988 +#: src/strings.ts:989 msgid "Please confirm your identity by entering the authentication code sent to your email address." msgstr "" -#: src/strings.ts:1908 +#: src/strings.ts:1909 msgid "Please download a backup of your data as your account will be cleared before recovery." msgstr "" -#: src/strings.ts:2006 +#: src/strings.ts:2007 msgid "Please enable automatic backups to avoid losing important data." msgstr "" -#: src/strings.ts:1511 +#: src/strings.ts:1512 msgid "Please enter a valid email address" msgstr "" -#: src/strings.ts:1953 +#: src/strings.ts:1954 msgid "Please enter a valid hex color (e.g. #ffffff)" msgstr "" -#: src/strings.ts:1512 +#: src/strings.ts:1513 msgid "Please enter a valid phone number with country code" msgstr "" -#: src/strings.ts:1634 +#: src/strings.ts:1635 msgid "Please enter a valid URL" msgstr "" -#: src/strings.ts:1619 +#: src/strings.ts:1620 msgid "Please enter password of this backup file" msgstr "" -#: src/strings.ts:2242 +#: src/strings.ts:2243 msgid "Please enter the password to decrypt and restore this backup." msgstr "" -#: src/strings.ts:789 +#: src/strings.ts:790 msgid "Please enter the password to unlock the PDF and view the content." msgstr "" -#: src/strings.ts:1864 +#: src/strings.ts:1865 msgid "Please enter the password to unlock this note" msgstr "" -#: src/strings.ts:1861 +#: src/strings.ts:1862 msgid "Please enter the password to view this version" msgstr "" -#: src/strings.ts:1020 +#: src/strings.ts:1021 msgid "Please enter your app lock password to continue" msgstr "" -#: src/strings.ts:1022 +#: src/strings.ts:1023 msgid "Please enter your app lock pin to continue" msgstr "" -#: src/strings.ts:1016 +#: src/strings.ts:1017 msgid "Please enter your password to continue" msgstr "" -#: src/strings.ts:1932 +#: src/strings.ts:1933 msgid "Please enter your vault password to continue" msgstr "" -#: src/strings.ts:767 +#: src/strings.ts:768 msgid "Please fill all the fields to continue." msgstr "" -#: src/strings.ts:1555 +#: src/strings.ts:1556 msgid "Please grant notifications permission to add new reminders." msgstr "" -#: src/strings.ts:872 +#: src/strings.ts:873 msgid "Please make sure you have saved the recovery key. Tap one more time to confirm." msgstr "" @@ -4650,27 +4650,27 @@ msgstr "" msgid "Please note that we will respond to your issue on the given link. We recommend that you save it." msgstr "" -#: src/strings.ts:1764 +#: src/strings.ts:1765 msgid "Please refer to the" msgstr "" -#: src/strings.ts:1556 +#: src/strings.ts:1557 msgid "Please select the day to repeat the reminder on" msgstr "" -#: src/strings.ts:1395 +#: src/strings.ts:1396 msgid "please send us an email from your registered email address" msgstr "" -#: src/strings.ts:2390 +#: src/strings.ts:2391 msgid "Please set a table size" msgstr "" -#: src/strings.ts:1557 +#: src/strings.ts:1558 msgid "Please set title of the reminder" msgstr "" -#: src/strings.ts:1986 +#: src/strings.ts:1987 msgid "Please try again" msgstr "" @@ -4682,16 +4682,16 @@ msgstr "" msgid "Please wait" msgstr "" -#: src/strings.ts:1005 +#: src/strings.ts:1006 msgid "Please wait before requesting a new code" msgstr "" -#: src/strings.ts:1398 -#: src/strings.ts:1550 +#: src/strings.ts:1399 +#: src/strings.ts:1551 msgid "Please wait before requesting another email" msgstr "" -#: src/strings.ts:941 +#: src/strings.ts:942 msgid "Please wait while we encrypt {name} for upload." msgstr "" @@ -4703,11 +4703,11 @@ msgstr "" msgid "Please wait while we export your notes." msgstr "" -#: src/strings.ts:1893 +#: src/strings.ts:1894 msgid "Please wait while we finalize your account." msgstr "" -#: src/strings.ts:1064 +#: src/strings.ts:1065 msgid "Please wait while we load your subscription" msgstr "" @@ -4715,15 +4715,15 @@ msgstr "" msgid "Please wait while we log you out." msgstr "" -#: src/strings.ts:1914 +#: src/strings.ts:1915 msgid "Please wait while we reset your account password." msgstr "" -#: src/strings.ts:1612 +#: src/strings.ts:1613 msgid "Please wait while we restore your backup..." msgstr "" -#: src/strings.ts:1896 +#: src/strings.ts:1897 msgid "Please wait while we send you recovery instructions" msgstr "" @@ -4731,44 +4731,44 @@ msgstr "" msgid "Please wait while we sync all your data." msgstr "" -#: src/strings.ts:1070 +#: src/strings.ts:1071 msgid "Please wait while we verify your subscription" msgstr "" -#: src/strings.ts:1782 -#: src/strings.ts:1889 +#: src/strings.ts:1783 +#: src/strings.ts:1890 msgid "Please wait while you are authenticated." msgstr "" -#: src/strings.ts:1901 +#: src/strings.ts:1902 msgid "Please wait while your data is downloaded & decrypted." msgstr "" -#: src/strings.ts:904 +#: src/strings.ts:905 msgid "Preparing note for share" msgstr "" -#: src/strings.ts:1614 +#: src/strings.ts:1615 msgid "Preparing to restore backup file..." msgstr "" -#: src/strings.ts:427 +#: src/strings.ts:428 msgid "PRESETS" msgstr "" -#: src/strings.ts:2118 +#: src/strings.ts:2119 msgid "Pressing \"—\" will hide the app in your system tray." msgstr "" -#: src/strings.ts:2121 +#: src/strings.ts:2122 msgid "Pressing \"X\" will hide the app in your system tray." msgstr "" -#: src/strings.ts:2169 +#: src/strings.ts:2170 msgid "Prevent note title from appearing in tab/window title." msgstr "" -#: src/strings.ts:2311 +#: src/strings.ts:2312 msgid "Preview attachment" msgstr "" @@ -4776,43 +4776,43 @@ msgstr "" msgid "Preview not available, content is encrypted." msgstr "" -#: src/strings.ts:2378 +#: src/strings.ts:2379 msgid "Previous match" msgstr "" -#: src/strings.ts:2443 +#: src/strings.ts:2444 msgid "Previous tab" msgstr "" -#: src/strings.ts:2033 +#: src/strings.ts:2034 msgid "Print" msgstr "" -#: src/strings.ts:2143 +#: src/strings.ts:2144 msgid "Privacy" msgstr "" -#: src/strings.ts:1160 +#: src/strings.ts:1161 msgid "Privacy & security" msgstr "" -#: src/strings.ts:1654 +#: src/strings.ts:1655 msgid "Privacy comes first." msgstr "" -#: src/strings.ts:826 +#: src/strings.ts:827 msgid "Privacy for everyone" msgstr "" -#: src/strings.ts:1179 +#: src/strings.ts:1180 msgid "Privacy mode" msgstr "" -#: src/strings.ts:2573 +#: src/strings.ts:2574 msgid "privacy policy" msgstr "" -#: src/strings.ts:1284 +#: src/strings.ts:1285 msgid "Privacy policy" msgstr "" @@ -4824,43 +4824,43 @@ msgstr "" msgid "private analytics and bug reports." msgstr "" -#: src/strings.ts:820 +#: src/strings.ts:821 msgid "Private." msgstr "" -#: src/strings.ts:828 +#: src/strings.ts:829 msgid "privileged few" msgstr "" -#: src/strings.ts:1720 +#: src/strings.ts:1721 msgid "Pro" msgstr "" -#: src/strings.ts:2468 +#: src/strings.ts:2469 msgid "Pro plan" msgstr "" -#: src/strings.ts:2046 +#: src/strings.ts:2047 msgid "Processing {collection}..." msgstr "" -#: src/strings.ts:2045 +#: src/strings.ts:2046 msgid "Processing..." msgstr "" -#: src/strings.ts:1239 +#: src/strings.ts:1240 msgid "Productivity" msgstr "" -#: src/strings.ts:2132 +#: src/strings.ts:2133 msgid "Profile" msgstr "" -#: src/strings.ts:1954 +#: src/strings.ts:1955 msgid "Profile updated" msgstr "" -#: src/strings.ts:1865 +#: src/strings.ts:1866 msgid "Properties" msgstr "" @@ -4868,27 +4868,27 @@ msgstr "" msgid "Protect your notes" msgstr "" -#: src/strings.ts:2180 +#: src/strings.ts:2181 msgid "Proxy" msgstr "" -#: src/strings.ts:485 +#: src/strings.ts:486 msgid "Publish" msgstr "" -#: src/strings.ts:486 +#: src/strings.ts:487 msgid "Publish note" msgstr "" -#: src/strings.ts:2612 +#: src/strings.ts:2613 msgid "Publish to the web" msgstr "" -#: src/strings.ts:488 +#: src/strings.ts:489 msgid "Publish your note to share it with others. You can set a password to protect it." msgstr "" -#: src/strings.ts:925 +#: src/strings.ts:926 msgid "Published" msgstr "" @@ -4904,43 +4904,43 @@ msgstr "" msgid "Published note link will be automatically deleted once it is viewed by someone." msgstr "" -#: src/strings.ts:2566 +#: src/strings.ts:2567 msgid "Purchase" msgstr "" -#: src/strings.ts:1370 +#: src/strings.ts:1371 msgid "Quick note" msgstr "" -#: src/strings.ts:1240 +#: src/strings.ts:1241 msgid "Quick note notification" msgstr "" -#: src/strings.ts:1691 +#: src/strings.ts:1692 msgid "Quick note widgets" msgstr "" -#: src/strings.ts:2439 +#: src/strings.ts:2440 msgid "Quick open" msgstr "" -#: src/strings.ts:1242 +#: src/strings.ts:1243 msgid "Quickly create a note from the notification" msgstr "" -#: src/strings.ts:2331 +#: src/strings.ts:2332 msgid "Quote" msgstr "" -#: src/strings.ts:1356 +#: src/strings.ts:1357 msgid "Rate Notesnook on App Store" msgstr "" -#: src/strings.ts:1357 +#: src/strings.ts:1358 msgid "Rate Notesnook on Play Store" msgstr "" -#: src/strings.ts:588 +#: src/strings.ts:589 msgid "Rate now (It takes only a second)" msgstr "" @@ -4948,51 +4948,51 @@ msgstr "" msgid "Read full release notes on Github" msgstr "" -#: src/strings.ts:911 +#: src/strings.ts:912 msgid "Read only" msgstr "" -#: src/strings.ts:1264 +#: src/strings.ts:1265 msgid "Read the documentation to learn more about Notesnook" msgstr "" -#: src/strings.ts:1285 +#: src/strings.ts:1286 msgid "Read the privacy policy" msgstr "" -#: src/strings.ts:1283 +#: src/strings.ts:1284 msgid "Read the terms of service" msgstr "" -#: src/strings.ts:1615 +#: src/strings.ts:1616 msgid "Reading backup file..." msgstr "" -#: src/strings.ts:2543 +#: src/strings.ts:2544 msgid "Ready to take the next step on your private note taking journey?" msgstr "" -#: src/strings.ts:2222 +#: src/strings.ts:2223 msgid "Receipt" msgstr "" -#: src/strings.ts:1610 +#: src/strings.ts:1611 msgid "RECENT BACKUPS" msgstr "" -#: src/strings.ts:2454 +#: src/strings.ts:2455 msgid "Recents" msgstr "" -#: src/strings.ts:2397 +#: src/strings.ts:2398 msgid "Recheck all" msgstr "" -#: src/strings.ts:2000 +#: src/strings.ts:2001 msgid "Rechecking failed" msgstr "" -#: src/strings.ts:2422 +#: src/strings.ts:2423 msgid "Recipes" msgstr "" @@ -5000,19 +5000,19 @@ msgstr "" msgid "Recommended" msgstr "" -#: src/strings.ts:2545 +#: src/strings.ts:2546 msgid "Recommended by Privacy Guides" msgstr "" -#: src/strings.ts:434 +#: src/strings.ts:435 msgid "Recover your account" msgstr "" -#: src/strings.ts:1004 +#: src/strings.ts:1005 msgid "Recovery codes copied!" msgstr "" -#: src/strings.ts:1009 +#: src/strings.ts:1010 msgid "Recovery codes saved!" msgstr "" @@ -5024,39 +5024,39 @@ msgstr "" msgid "Recovery email sent!" msgstr "" -#: src/strings.ts:875 +#: src/strings.ts:876 msgid "Recovery key copied" msgstr "" -#: src/strings.ts:873 +#: src/strings.ts:874 msgid "Recovery key QR code saved" msgstr "" -#: src/strings.ts:874 +#: src/strings.ts:875 msgid "Recovery key text file saved" msgstr "" -#: src/strings.ts:1915 +#: src/strings.ts:1916 msgid "Recovery successful!" msgstr "" -#: src/strings.ts:2434 +#: src/strings.ts:2435 msgid "Redeem" msgstr "" -#: src/strings.ts:2595 +#: src/strings.ts:2596 msgid "Redeem code" msgstr "" -#: src/strings.ts:2431 +#: src/strings.ts:2432 msgid "Redeem gift code" msgstr "" -#: src/strings.ts:2433 +#: src/strings.ts:2434 msgid "Redeeming gift code" msgstr "" -#: src/strings.ts:520 +#: src/strings.ts:521 msgid "Redo" msgstr "" @@ -5064,43 +5064,43 @@ msgstr "" msgid "Referenced in" msgstr "" -#: src/strings.ts:934 +#: src/strings.ts:935 msgid "References" msgstr "" -#: src/strings.ts:519 +#: src/strings.ts:520 msgid "Regenerate" msgstr "" -#: src/strings.ts:2086 +#: src/strings.ts:2087 msgid "Register" msgstr "" -#: src/strings.ts:431 +#: src/strings.ts:432 msgid "Release notes" msgstr "" -#: src/strings.ts:2456 +#: src/strings.ts:2457 msgid "Release track" msgstr "" -#: src/strings.ts:656 +#: src/strings.ts:657 msgid "Relevance" msgstr "" -#: src/strings.ts:1669 +#: src/strings.ts:1670 msgid "Reload app" msgstr "" -#: src/strings.ts:1827 +#: src/strings.ts:1828 msgid "Relogin to your account" msgstr "" -#: src/strings.ts:1795 +#: src/strings.ts:1796 msgid "Remembered your password?" msgstr "" -#: src/strings.ts:924 +#: src/strings.ts:925 msgid "Remind me" msgstr "" @@ -5108,7 +5108,7 @@ msgstr "" msgid "Remind me in" msgstr "" -#: src/strings.ts:1505 +#: src/strings.ts:1506 msgid "Remind me of..." msgstr "" @@ -5120,11 +5120,11 @@ msgstr "" msgid "Reminder" msgstr "" -#: src/strings.ts:1245 +#: src/strings.ts:1246 msgid "Reminder notifications" msgstr "" -#: src/strings.ts:1558 +#: src/strings.ts:1559 msgid "Reminder time cannot be earlier than the current time." msgstr "" @@ -5133,92 +5133,92 @@ msgid "reminders" msgstr "" #: src/strings.ts:318 -#: src/strings.ts:1243 -#: src/strings.ts:1521 +#: src/strings.ts:1244 +#: src/strings.ts:1522 msgid "Reminders" msgstr "" -#: src/strings.ts:1378 +#: src/strings.ts:1379 msgid "Reminders cannot be set because notifications have been disabled from app settings. If you want to keep receiving reminder notifications, enable notifications for Notesnook from app settings." msgstr "" -#: src/strings.ts:1952 +#: src/strings.ts:1953 msgid "Reminders will not be active on this device as it does not support notifications." msgstr "" -#: src/strings.ts:781 +#: src/strings.ts:782 msgid "Remove" msgstr "" -#: src/strings.ts:1174 +#: src/strings.ts:1175 msgid "Remove all notes from the vault." msgstr "" -#: src/strings.ts:1201 +#: src/strings.ts:1202 msgid "Remove app lock password" msgstr "" -#: src/strings.ts:1205 +#: src/strings.ts:1206 msgid "Remove app lock password, app lock will be disabled if no other security method is enabled." msgstr "" -#: src/strings.ts:1200 +#: src/strings.ts:1201 msgid "Remove app lock pin" msgstr "" -#: src/strings.ts:1203 +#: src/strings.ts:1204 msgid "Remove app lock pin, app lock will be disabled if no other security method is enabled." msgstr "" -#: src/strings.ts:895 +#: src/strings.ts:896 msgid "Remove as default" msgstr "" -#: src/strings.ts:2315 +#: src/strings.ts:2316 msgid "Remove attachment" msgstr "" -#: src/strings.ts:930 +#: src/strings.ts:931 msgid "Remove from all" msgstr "" -#: src/strings.ts:905 +#: src/strings.ts:906 msgid "Remove from notebook" msgstr "" -#: src/strings.ts:2455 +#: src/strings.ts:2456 msgid "Remove from recents" msgstr "" -#: src/strings.ts:1043 +#: src/strings.ts:1044 msgid "Remove full name" msgstr "" -#: src/strings.ts:2262 +#: src/strings.ts:2263 msgid "Remove link" msgstr "" -#: src/strings.ts:1039 +#: src/strings.ts:1040 msgid "Remove profile picture" msgstr "" -#: src/strings.ts:1046 +#: src/strings.ts:1047 msgid "Remove your full name from profile" msgstr "" -#: src/strings.ts:1040 +#: src/strings.ts:1041 msgid "Remove your profile picture" msgstr "" -#: src/strings.ts:545 +#: src/strings.ts:546 msgid "Rename" msgstr "" -#: src/strings.ts:750 +#: src/strings.ts:751 msgid "Rename file" msgstr "" -#: src/strings.ts:890 +#: src/strings.ts:891 msgid "Reorder" msgstr "" @@ -5226,23 +5226,23 @@ msgstr "" msgid "Repeats daily at {date}" msgstr "" -#: src/strings.ts:2375 +#: src/strings.ts:2376 msgid "Replace" msgstr "" -#: src/strings.ts:2376 +#: src/strings.ts:2377 msgid "Replace all" msgstr "" -#: src/strings.ts:2163 +#: src/strings.ts:2164 msgid "Report" msgstr "" -#: src/strings.ts:1256 +#: src/strings.ts:1257 msgid "Report an issue" msgstr "" -#: src/strings.ts:471 +#: src/strings.ts:472 msgid "Report issue" msgstr "" @@ -5251,95 +5251,95 @@ msgid "Resend code in ({seconds})" msgstr "" #. placeholder {0}: seconds ? ` in ${seconds}` : "" -#: src/strings.ts:676 +#: src/strings.ts:677 msgid "Resend code{0}" msgstr "" -#: src/strings.ts:1401 +#: src/strings.ts:1402 msgid "Resend email" msgstr "" -#: src/strings.ts:1819 +#: src/strings.ts:1820 msgid "Reset" msgstr "" -#: src/strings.ts:1911 +#: src/strings.ts:1912 msgid "Reset account password" msgstr "" -#: src/strings.ts:2482 +#: src/strings.ts:2483 msgid "Reset homepage" msgstr "" -#: src/strings.ts:1820 +#: src/strings.ts:1821 msgid "Reset selection" msgstr "" -#: src/strings.ts:1647 +#: src/strings.ts:1648 msgid "Reset server urls" msgstr "" -#: src/strings.ts:2029 +#: src/strings.ts:2030 msgid "Reset sidebar" msgstr "" -#: src/strings.ts:1146 +#: src/strings.ts:1147 msgid "Reset the toolbar to default settings" msgstr "" -#: src/strings.ts:1145 +#: src/strings.ts:1146 msgid "Reset toolbar" msgstr "" -#: src/strings.ts:1913 +#: src/strings.ts:1914 msgid "Resetting account password ({progress})" msgstr "" -#: src/strings.ts:1988 +#: src/strings.ts:1989 msgid "Restart now" msgstr "" -#: src/strings.ts:1646 +#: src/strings.ts:1647 msgid "Restart the app for changes to take effect." msgstr "" -#: src/strings.ts:1317 +#: src/strings.ts:1318 msgid "Restart the app to apply the changes" msgstr "" -#: src/strings.ts:1592 +#: src/strings.ts:1593 msgid "Restart the app." msgstr "" -#: src/strings.ts:567 +#: src/strings.ts:568 msgid "Restore" msgstr "" -#: src/strings.ts:1234 +#: src/strings.ts:1235 msgid "Restore backup" msgstr "" -#: src/strings.ts:2404 +#: src/strings.ts:2405 msgid "Restore backup?" msgstr "" -#: src/strings.ts:889 +#: src/strings.ts:890 msgid "Restore failed" msgstr "" -#: src/strings.ts:1609 +#: src/strings.ts:1610 msgid "Restore from files" msgstr "" -#: src/strings.ts:1659 +#: src/strings.ts:1660 msgid "Restore this version" msgstr "" -#: src/strings.ts:1235 +#: src/strings.ts:1236 msgid "Restore your data from a backup" msgstr "" -#: src/strings.ts:848 +#: src/strings.ts:849 msgid "Restored successfully" msgstr "" @@ -5351,23 +5351,23 @@ msgstr "" msgid "Restoring {collection}..." msgstr "" -#: src/strings.ts:1611 +#: src/strings.ts:1612 msgid "Restoring backup..." msgstr "" -#: src/strings.ts:685 +#: src/strings.ts:686 msgid "Resubscribe from Playstore" msgstr "" -#: src/strings.ts:686 +#: src/strings.ts:687 msgid "Resubscribe to Pro" msgstr "" -#: src/strings.ts:512 +#: src/strings.ts:513 msgid "Reupload" msgstr "" -#: src/strings.ts:2019 +#: src/strings.ts:2020 msgid "Reveal in list" msgstr "" @@ -5375,164 +5375,164 @@ msgstr "" msgid "Revoke" msgstr "" -#: src/strings.ts:1178 +#: src/strings.ts:1179 msgid "Revoke biometric unlocking" msgstr "" -#: src/strings.ts:449 +#: src/strings.ts:450 msgid "Revoke vault fingerprint unlock" msgstr "" -#: src/strings.ts:1292 +#: src/strings.ts:1293 msgid "Roadmap" msgstr "" -#: src/strings.ts:2047 +#: src/strings.ts:2048 msgid "Root" msgstr "" -#: src/strings.ts:2026 +#: src/strings.ts:2027 msgid "Rotate left" msgstr "" -#: src/strings.ts:2027 +#: src/strings.ts:2028 msgid "Rotate right" msgstr "" -#: src/strings.ts:2285 +#: src/strings.ts:2286 msgid "Row properties" msgstr "" -#: src/strings.ts:544 +#: src/strings.ts:545 msgid "Run file check" msgstr "" -#: src/strings.ts:2058 +#: src/strings.ts:2059 msgid "Safe & encrypted notes" msgstr "" -#: src/strings.ts:627 +#: src/strings.ts:628 msgid "Sat" msgstr "" -#: src/strings.ts:618 +#: src/strings.ts:619 msgid "Saturday" msgstr "" -#: src/strings.ts:573 +#: src/strings.ts:574 msgid "Save" msgstr "" -#: src/strings.ts:476 +#: src/strings.ts:477 msgid "Save a backup of your notes" msgstr "" -#: src/strings.ts:563 +#: src/strings.ts:564 msgid "Save a copy" msgstr "" -#: src/strings.ts:489 +#: src/strings.ts:490 msgid "Save account recovery key" msgstr "" -#: src/strings.ts:582 +#: src/strings.ts:583 msgid "Save and continue" msgstr "" -#: src/strings.ts:1047 +#: src/strings.ts:1048 msgid "Save data recovery key" msgstr "" -#: src/strings.ts:952 +#: src/strings.ts:953 msgid "Save failed. Vault is locked" msgstr "" -#: src/strings.ts:591 +#: src/strings.ts:592 msgid "Save QR code to gallery" msgstr "" -#: src/strings.ts:496 +#: src/strings.ts:497 msgid "Save recovery codes" msgstr "" -#: src/strings.ts:679 +#: src/strings.ts:680 msgid "Save to file" msgstr "" -#: src/strings.ts:592 +#: src/strings.ts:593 msgid "Save to text file" msgstr "" -#: src/strings.ts:1359 +#: src/strings.ts:1360 msgid "Save your account recovery key" msgstr "" -#: src/strings.ts:491 +#: src/strings.ts:492 msgid "Save your account recovery key in a safe place. You will need it to recover your account in case you forget your password." msgstr "" -#: src/strings.ts:1049 +#: src/strings.ts:1050 msgid "Save your data recovery key in a safe place. You will need it to recover your data in case you forget your password." msgstr "" -#: src/strings.ts:498 +#: src/strings.ts:499 msgid "Save your recovery codes in a safe place. You will need them to recover your account in case you lose access to your two-factor authentication methods." msgstr "" -#: src/strings.ts:2394 +#: src/strings.ts:2395 msgid "Saved" msgstr "" -#: src/strings.ts:2395 +#: src/strings.ts:2396 msgid "Saving" msgstr "" -#: src/strings.ts:1587 +#: src/strings.ts:1588 msgid "Saving this note is taking too long. Copy your changes and restart the app to prevent data loss. If the problem persists, please report it to us at support@streetwriters.co." msgstr "" -#: src/strings.ts:795 +#: src/strings.ts:796 msgid "Saving zip file ({progress}%). Please wait..." msgstr "" -#: src/strings.ts:796 +#: src/strings.ts:797 msgid "Saving zip file. Please wait..." msgstr "" -#: src/strings.ts:1721 +#: src/strings.ts:1722 msgid "Scan the QR code with your authenticator app" msgstr "" -#: src/strings.ts:2420 +#: src/strings.ts:2421 msgid "School work" msgstr "" -#: src/strings.ts:2493 +#: src/strings.ts:2494 msgid "Scroll to bottom" msgstr "" -#: src/strings.ts:2492 +#: src/strings.ts:2493 msgid "Scroll to top" msgstr "" -#: src/strings.ts:1509 -#: src/strings.ts:1527 +#: src/strings.ts:1510 +#: src/strings.ts:1528 msgid "Search" msgstr "" -#: src/strings.ts:1504 +#: src/strings.ts:1505 msgid "Search a note" msgstr "" -#: src/strings.ts:1502 +#: src/strings.ts:1503 msgid "Search a note to link to" msgstr "" -#: src/strings.ts:2436 +#: src/strings.ts:2437 msgid "Search for notes, notebooks, and tags..." msgstr "" -#: src/strings.ts:1537 +#: src/strings.ts:1538 msgid "Search in {routeName}" msgstr "" @@ -5584,75 +5584,75 @@ msgstr "" msgid "Search in Trash" msgstr "" -#: src/strings.ts:2357 +#: src/strings.ts:2358 msgid "Search languages" msgstr "" -#: src/strings.ts:1490 +#: src/strings.ts:1491 msgid "Search notebooks" msgstr "" -#: src/strings.ts:1503 +#: src/strings.ts:1504 msgid "Search or add a tag" msgstr "" -#: src/strings.ts:1833 +#: src/strings.ts:1834 msgid "Search themes" msgstr "" -#: src/strings.ts:1507 +#: src/strings.ts:1508 msgid "Searching for {query}..." msgstr "" -#: src/strings.ts:877 +#: src/strings.ts:878 msgid "sec" msgstr "" -#: src/strings.ts:2142 +#: src/strings.ts:2143 msgid "Security & privacy" msgstr "" -#: src/strings.ts:2082 +#: src/strings.ts:2083 msgid "Security key" msgstr "" -#: src/strings.ts:1987 +#: src/strings.ts:1988 msgid "Security key successfully registered." msgstr "" -#: src/strings.ts:1293 +#: src/strings.ts:1294 msgid "See what the future of Notesnook is going to be like." msgstr "" -#: src/strings.ts:1333 +#: src/strings.ts:1334 msgid "Select" msgstr "" -#: src/strings.ts:1608 +#: src/strings.ts:1609 msgid "Select a backup file from your device to restore backup" msgstr "" -#: src/strings.ts:2487 +#: src/strings.ts:2488 msgid "Select a notebook to move this notebook into, or unselect to move it to the root level." msgstr "" -#: src/strings.ts:2097 +#: src/strings.ts:2098 msgid "Select a theme" msgstr "" -#: src/strings.ts:1225 +#: src/strings.ts:1226 msgid "Select backup directory" msgstr "" -#: src/strings.ts:1854 +#: src/strings.ts:1855 msgid "Select backup file" msgstr "" -#: src/strings.ts:639 +#: src/strings.ts:640 msgid "Select backups folder" msgstr "" -#: src/strings.ts:629 +#: src/strings.ts:630 msgid "Select date" msgstr "" @@ -5660,15 +5660,15 @@ msgstr "" msgid "Select day of the week to repeat the reminder." msgstr "" -#: src/strings.ts:1762 +#: src/strings.ts:1763 msgid "Select files to import" msgstr "" -#: src/strings.ts:1605 +#: src/strings.ts:1606 msgid "Select folder where Notesnook backup files are stored to view and restore them from the app" msgstr "" -#: src/strings.ts:1606 +#: src/strings.ts:1607 msgid "Select folder with backup files" msgstr "" @@ -5676,7 +5676,7 @@ msgstr "" msgid "Select how you would like to recieve the code" msgstr "" -#: src/strings.ts:2352 +#: src/strings.ts:2353 msgid "Select language" msgstr "" @@ -5684,15 +5684,15 @@ msgstr "" msgid "Select method for two-factor authentication" msgstr "" -#: src/strings.ts:458 +#: src/strings.ts:459 msgid "Select notebooks" msgstr "" -#: src/strings.ts:459 +#: src/strings.ts:460 msgid "Select notebooks you want to add note(s) to." msgstr "" -#: src/strings.ts:2475 +#: src/strings.ts:2476 msgid "Select notes to link to \"{title}\"" msgstr "" @@ -5700,11 +5700,11 @@ msgstr "" msgid "Select nth day of the month to repeat the reminder." msgstr "" -#: src/strings.ts:1816 +#: src/strings.ts:1817 msgid "Select profile picture" msgstr "" -#: src/strings.ts:2481 +#: src/strings.ts:2482 msgid "Select the default sidebar tab" msgstr "" @@ -5712,11 +5712,11 @@ msgstr "" msgid "Select the folder that includes your backup files to list them here." msgstr "" -#: src/strings.ts:2129 +#: src/strings.ts:2130 msgid "Select the languages the spell checker should check in." msgstr "" -#: src/strings.ts:2457 +#: src/strings.ts:2458 msgid "Select the release track for Notesnook." msgstr "" @@ -5728,7 +5728,7 @@ msgstr "" msgid "Self destruct" msgstr "" -#: src/strings.ts:2164 +#: src/strings.ts:2165 msgid "Send" msgstr "" @@ -5744,47 +5744,47 @@ msgstr "" msgid "Send code via SMS" msgstr "" -#: src/strings.ts:1858 +#: src/strings.ts:1859 msgid "Send recovery email" msgstr "" -#: src/strings.ts:1894 +#: src/strings.ts:1895 msgid "Sending recovery email" msgstr "" -#: src/strings.ts:1645 +#: src/strings.ts:1646 msgid "Server url changed" msgstr "" -#: src/strings.ts:1648 +#: src/strings.ts:1649 msgid "Server urls reset" msgstr "" -#: src/strings.ts:1626 +#: src/strings.ts:1627 msgid "Server used for login/sign up and authentication." msgstr "" -#: src/strings.ts:1631 +#: src/strings.ts:1632 msgid "Server used to host your published notes." msgstr "" -#: src/strings.ts:1629 +#: src/strings.ts:1630 msgid "Server used to receive important notifications & events." msgstr "" -#: src/strings.ts:1624 +#: src/strings.ts:1625 msgid "Server used to sync your notes & other data between devices." msgstr "" -#: src/strings.ts:1637 +#: src/strings.ts:1638 msgid "Server with host {host} not found." msgstr "" -#: src/strings.ts:2137 +#: src/strings.ts:2138 msgid "Servers" msgstr "" -#: src/strings.ts:2138 +#: src/strings.ts:2139 msgid "Servers configuration" msgstr "" @@ -5792,77 +5792,77 @@ msgstr "" msgid "Session expired" msgstr "" -#: src/strings.ts:2190 +#: src/strings.ts:2191 msgid "Sessions" msgstr "" -#: src/strings.ts:975 +#: src/strings.ts:976 msgid "Set a reminder" msgstr "" -#: src/strings.ts:727 +#: src/strings.ts:728 msgid "Set as dark theme" msgstr "" -#: src/strings.ts:896 +#: src/strings.ts:897 msgid "Set as default" msgstr "" -#: src/strings.ts:2479 +#: src/strings.ts:2480 msgid "Set as homepage" msgstr "" -#: src/strings.ts:728 +#: src/strings.ts:729 msgid "Set as light theme" msgstr "" -#: src/strings.ts:1332 +#: src/strings.ts:1333 msgid "Set automatic trash cleanup interval from Settings > Behaviour > Clean trash interval." msgstr "" -#: src/strings.ts:1309 +#: src/strings.ts:1310 msgid "Set full name" msgstr "" -#: src/strings.ts:1251 +#: src/strings.ts:1252 msgid "Set snooze time in minutes" msgstr "" -#: src/strings.ts:1250 +#: src/strings.ts:1251 msgid "Set the default time to snooze a reminder to when you press the snooze button on a notification." msgstr "" -#: src/strings.ts:1222 +#: src/strings.ts:1223 msgid "Set the interval to create a backup (with attachments) automatically." msgstr "" -#: src/strings.ts:1219 +#: src/strings.ts:1220 msgid "Set the interval to create a partial backup (without attachments) automatically." msgstr "" -#: src/strings.ts:426 +#: src/strings.ts:427 msgid "Set your name" msgstr "" #: src/strings.ts:387 -#: src/strings.ts:1523 +#: src/strings.ts:1524 msgid "Settings" msgstr "" -#: src/strings.ts:1198 #: src/strings.ts:1199 +#: src/strings.ts:1200 msgid "Setup a new password for app lock" msgstr "" -#: src/strings.ts:1195 +#: src/strings.ts:1196 msgid "Setup a password to lock the app" msgstr "" -#: src/strings.ts:1193 +#: src/strings.ts:1194 msgid "Setup a pin to lock the app" msgstr "" -#: src/strings.ts:2182 +#: src/strings.ts:2183 msgid "" "Setup an HTTP/HTTPS/SOCKS proxy.\n" "\n" @@ -5874,27 +5874,27 @@ msgid "" "To remove the proxy, simply erase everything in the input." msgstr "" -#: src/strings.ts:1194 +#: src/strings.ts:1195 msgid "Setup app lock password" msgstr "" -#: src/strings.ts:1192 +#: src/strings.ts:1193 msgid "Setup app lock pin" msgstr "" -#: src/strings.ts:680 +#: src/strings.ts:681 msgid "Setup secondary 2FA method" msgstr "" -#: src/strings.ts:977 +#: src/strings.ts:978 msgid "Setup using an Authenticator app" msgstr "" -#: src/strings.ts:984 +#: src/strings.ts:985 msgid "Setup using email" msgstr "" -#: src/strings.ts:991 +#: src/strings.ts:992 msgid "Setup using SMS" msgstr "" @@ -5902,23 +5902,23 @@ msgstr "" msgid "Share" msgstr "" -#: src/strings.ts:1690 +#: src/strings.ts:1691 msgid "Share & append to notes from anywhere" msgstr "" -#: src/strings.ts:1340 +#: src/strings.ts:1341 msgid "Share backup" msgstr "" -#: src/strings.ts:452 +#: src/strings.ts:453 msgid "Share note" msgstr "" -#: src/strings.ts:1786 +#: src/strings.ts:1787 msgid "Share Notesnook with friends!" msgstr "" -#: src/strings.ts:593 +#: src/strings.ts:594 msgid "Share to cloud" msgstr "" @@ -5930,7 +5930,7 @@ msgstr "" msgid "Shortcut" msgstr "" -#: src/strings.ts:1999 +#: src/strings.ts:2000 msgid "Shortcut removed" msgstr "" @@ -5946,11 +5946,11 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/strings.ts:1029 +#: src/strings.ts:1030 msgid "Signed up on {date}" msgstr "" -#: src/strings.ts:776 +#: src/strings.ts:777 msgid "Signup failed" msgstr "" @@ -5958,95 +5958,95 @@ msgstr "" msgid "Silent" msgstr "" -#: src/strings.ts:2326 +#: src/strings.ts:2327 msgid "Sink list item" msgstr "" -#: src/strings.ts:2040 +#: src/strings.ts:2041 msgid "Size" msgstr "" -#: src/strings.ts:549 +#: src/strings.ts:550 msgid "Skip" msgstr "" -#: src/strings.ts:1828 +#: src/strings.ts:1829 msgid "Skip & go directly to the app" msgstr "" -#: src/strings.ts:672 +#: src/strings.ts:673 msgid "Skip introduction" msgstr "" -#: src/strings.ts:1603 +#: src/strings.ts:1604 msgid "Some exported notes are locked, Unlock to export them" msgstr "" -#: src/strings.ts:1475 +#: src/strings.ts:1476 msgid "Some notes are published" msgstr "" -#: src/strings.ts:1665 +#: src/strings.ts:1666 msgid "Something went wrong" msgstr "" -#: src/strings.ts:2024 +#: src/strings.ts:2025 msgid "Sort" msgstr "" -#: src/strings.ts:535 +#: src/strings.ts:536 msgid "Sort by" msgstr "" -#: src/strings.ts:2148 +#: src/strings.ts:2149 msgid "Source code" msgstr "" -#: src/strings.ts:2353 +#: src/strings.ts:2354 msgid "Spaces" msgstr "" -#: src/strings.ts:2588 +#: src/strings.ts:2589 msgid "Special Offer" msgstr "" -#: src/strings.ts:2125 +#: src/strings.ts:2126 msgid "Spell check" msgstr "" -#: src/strings.ts:2292 +#: src/strings.ts:2293 msgid "Split cells" msgstr "" -#: src/strings.ts:2458 +#: src/strings.ts:2459 msgid "Stable" msgstr "" -#: src/strings.ts:1111 +#: src/strings.ts:1112 msgid "Start" msgstr "" -#: src/strings.ts:1829 +#: src/strings.ts:1830 msgid "Start account recovery" msgstr "" -#: src/strings.ts:1824 +#: src/strings.ts:1825 msgid "Start import" msgstr "" -#: src/strings.ts:1821 +#: src/strings.ts:1822 msgid "Start importing now" msgstr "" -#: src/strings.ts:2113 +#: src/strings.ts:2114 msgid "Start minimized" msgstr "" -#: src/strings.ts:1756 +#: src/strings.ts:1757 msgid "Start over" msgstr "" -#: src/strings.ts:949 +#: src/strings.ts:950 msgid "Start writing to create a new note" msgstr "" @@ -6054,103 +6054,103 @@ msgstr "" msgid "Start writing to save your note." msgstr "" -#: src/strings.ts:1600 +#: src/strings.ts:1601 msgid "Start writing your note..." msgstr "" -#: src/strings.ts:2221 +#: src/strings.ts:2222 msgid "Status" msgstr "" -#: src/strings.ts:2471 +#: src/strings.ts:2472 msgid "Storage" msgstr "" -#: src/strings.ts:1547 +#: src/strings.ts:1548 msgid "Streaming not supported" msgstr "" -#: src/strings.ts:2258 +#: src/strings.ts:2259 msgid "Strikethrough" msgstr "" -#: src/strings.ts:2223 +#: src/strings.ts:2224 msgid "Subgroup 1" msgstr "" -#: src/strings.ts:1993 +#: src/strings.ts:1994 msgid "Subgroup added" msgstr "" -#: src/strings.ts:579 +#: src/strings.ts:580 msgid "Submit" msgstr "" -#: src/strings.ts:2567 +#: src/strings.ts:2568 msgid "Subscribe" msgstr "" -#: src/strings.ts:2568 +#: src/strings.ts:2569 msgid "Subscribe and start free trial" msgstr "" -#: src/strings.ts:1024 +#: src/strings.ts:1025 msgid "Subscribe to Pro" msgstr "" -#: src/strings.ts:706 +#: src/strings.ts:707 msgid "Subscribed on Android" msgstr "" -#: src/strings.ts:699 +#: src/strings.ts:700 msgid "Subscribed on iOS" msgstr "" -#: src/strings.ts:1304 +#: src/strings.ts:1305 msgid "Subscribed on web" msgstr "" -#: src/strings.ts:713 +#: src/strings.ts:714 msgid "Subscribed on Web" msgstr "" -#: src/strings.ts:719 +#: src/strings.ts:720 msgid "Subscribed using gift card" msgstr "" -#: src/strings.ts:2269 +#: src/strings.ts:2270 msgid "Subscript" msgstr "" -#: src/strings.ts:693 +#: src/strings.ts:694 msgid "Subscription awarded from Streetwriters" msgstr "" -#: src/strings.ts:1028 +#: src/strings.ts:1029 msgid "Subscription details" msgstr "" -#: src/strings.ts:1062 +#: src/strings.ts:1063 msgid "Subscription not activated?" msgstr "" -#: src/strings.ts:621 +#: src/strings.ts:622 msgid "Sun" msgstr "" -#: src/strings.ts:612 +#: src/strings.ts:613 msgid "Sunday" msgstr "" -#: src/strings.ts:2270 +#: src/strings.ts:2271 msgid "Superscript" msgstr "" -#: src/strings.ts:1468 +#: src/strings.ts:1469 msgid "Switch to search/replace mode" msgstr "" -#: src/strings.ts:2134 +#: src/strings.ts:2135 msgid "Sync" msgstr "" @@ -6158,7 +6158,7 @@ msgstr "" msgid "Sync failed" msgstr "" -#: src/strings.ts:1362 +#: src/strings.ts:1363 msgid "Sync is disabled" msgstr "" @@ -6166,19 +6166,19 @@ msgstr "" msgid "Sync now" msgstr "" -#: src/strings.ts:912 +#: src/strings.ts:913 msgid "Sync off" msgstr "" -#: src/strings.ts:1622 +#: src/strings.ts:1623 msgid "Sync server" msgstr "" -#: src/strings.ts:1081 +#: src/strings.ts:1082 msgid "Sync settings" msgstr "" -#: src/strings.ts:1094 +#: src/strings.ts:1095 msgid "Sync your notes in the background even when the app is closed. This is an experimental feature. If you face any issues, please turn it off." msgstr "" @@ -6194,27 +6194,27 @@ msgstr "" msgid "Syncing your data" msgstr "" -#: src/strings.ts:1701 +#: src/strings.ts:1702 msgid "Syncing your notes" msgstr "" -#: src/strings.ts:2338 +#: src/strings.ts:2339 msgid "Table" msgstr "" -#: src/strings.ts:537 +#: src/strings.ts:538 msgid "Table of contents" msgstr "" -#: src/strings.ts:2283 +#: src/strings.ts:2284 msgid "Table settings" msgstr "" -#: src/strings.ts:2532 +#: src/strings.ts:2533 msgid "tables, outlines, block level note linking" msgstr "" -#: src/strings.ts:528 +#: src/strings.ts:529 msgid "Tabs" msgstr "" @@ -6231,55 +6231,55 @@ msgid "tags" msgstr "" #: src/strings.ts:317 -#: src/strings.ts:1524 +#: src/strings.ts:1525 msgid "Tags" msgstr "" -#: src/strings.ts:1542 +#: src/strings.ts:1543 msgid "Take a backup before logging out" msgstr "" -#: src/strings.ts:1214 +#: src/strings.ts:1215 msgid "Take a full backup of your data with all attachments" msgstr "" -#: src/strings.ts:1216 +#: src/strings.ts:1217 msgid "Take a partial backup of your data that does not include attachments" msgstr "" -#: src/strings.ts:2337 +#: src/strings.ts:2338 msgid "Take a photo using camera" msgstr "" -#: src/strings.ts:1372 +#: src/strings.ts:1373 msgid "Take note" msgstr "" -#: src/strings.ts:1655 +#: src/strings.ts:1656 msgid "Take notes privately." msgstr "" -#: src/strings.ts:673 +#: src/strings.ts:674 msgid "Taking too long? Reload editor" msgstr "" -#: src/strings.ts:1456 +#: src/strings.ts:1457 msgid "Tap here to change sorting" msgstr "" -#: src/strings.ts:1460 +#: src/strings.ts:1461 msgid "Tap here to jump to a section" msgstr "" -#: src/strings.ts:1368 +#: src/strings.ts:1369 msgid "Tap here to update to the latest version" msgstr "" -#: src/strings.ts:1591 +#: src/strings.ts:1592 msgid "Tap on \"Dismiss\" and copy the contents of your note so they are not lost." msgstr "" -#: src/strings.ts:1371 +#: src/strings.ts:1372 msgid "Tap on \"Take note\" to add a note." msgstr "" @@ -6295,11 +6295,11 @@ msgstr "" msgid "Tap to deselect" msgstr "" -#: src/strings.ts:667 +#: src/strings.ts:668 msgid "Tap to stop reordering" msgstr "" -#: src/strings.ts:1352 +#: src/strings.ts:1353 msgid "Tap to try again" msgstr "" @@ -6307,19 +6307,19 @@ msgstr "" msgid "Tap twice to confirm you have saved the recovery key." msgstr "" -#: src/strings.ts:2343 +#: src/strings.ts:2344 msgid "Task list" msgstr "" -#: src/strings.ts:2413 +#: src/strings.ts:2414 msgid "Tasks" msgstr "" -#: src/strings.ts:1161 +#: src/strings.ts:1162 msgid "Telemetry" msgstr "" -#: src/strings.ts:1494 +#: src/strings.ts:1495 msgid "" "Tell us more about the issue you are facing.\n" "\n" @@ -6330,11 +6330,11 @@ msgid "" "- Things you have tried etc." msgstr "" -#: src/strings.ts:1493 +#: src/strings.ts:1494 msgid "Tell us what happened" msgstr "" -#: src/strings.ts:1282 +#: src/strings.ts:1283 msgid "Terms of service" msgstr "" @@ -6342,51 +6342,51 @@ msgstr "" msgid "Terms of Service " msgstr "" -#: src/strings.ts:2575 +#: src/strings.ts:2576 msgid "terms of use." msgstr "" -#: src/strings.ts:1621 +#: src/strings.ts:1622 msgid "Test connection" msgstr "" -#: src/strings.ts:1644 +#: src/strings.ts:1645 msgid "Test connection before changing server urls" msgstr "" -#: src/strings.ts:2281 +#: src/strings.ts:2282 msgid "Text color" msgstr "" -#: src/strings.ts:2279 +#: src/strings.ts:2280 msgid "Text direction" msgstr "" -#: src/strings.ts:1785 +#: src/strings.ts:1786 msgid "Thank you for choosing end-to-end encrypted note taking. Now you can sync your notes to unlimited devices." msgstr "" -#: src/strings.ts:2049 +#: src/strings.ts:2050 msgid "Thank you for reporting!" msgstr "" -#: src/strings.ts:2549 +#: src/strings.ts:2550 msgid "Thank you for subscribing" msgstr "" -#: src/strings.ts:2583 +#: src/strings.ts:2584 msgid "Thank you for the purchase" msgstr "" -#: src/strings.ts:478 +#: src/strings.ts:479 msgid "Thank you for updating Notesnook! We will be applying some minor changes for a better note taking experience." msgstr "" -#: src/strings.ts:2074 +#: src/strings.ts:2075 msgid "Thank you. You are the proof that privacy always comes first." msgstr "" -#: src/strings.ts:1642 +#: src/strings.ts:1643 msgid "The {title} at {url} is not compatible with this client." msgstr "" @@ -6394,11 +6394,11 @@ msgstr "" msgid "The information above will be publically available at" msgstr "" -#: src/strings.ts:2602 +#: src/strings.ts:2603 msgid "The Notesnook Circle is exclusive to subscribers. Please consider subscribing to gain access to Notesnook Circle and enjoy additional benefits." msgstr "" -#: src/strings.ts:2081 +#: src/strings.ts:2082 msgid "The password/pin for unlocking the app." msgstr "" @@ -6410,19 +6410,19 @@ msgstr "" msgid "The reminder will repeat every year on {date}." msgstr "" -#: src/strings.ts:1711 +#: src/strings.ts:1712 msgid "The reminder will start on {date} at {time}." msgstr "" -#: src/strings.ts:2084 +#: src/strings.ts:2085 msgid "The security key for unlocking the app. This is the most secure method." msgstr "" -#: src/strings.ts:1640 +#: src/strings.ts:1641 msgid "The URL you have given ({url}) does not point to the {server}." msgstr "" -#: src/strings.ts:1116 +#: src/strings.ts:1117 msgid "Themes" msgstr "" @@ -6430,11 +6430,11 @@ msgstr "" msgid "There are no blocks in this note." msgstr "" -#: src/strings.ts:2236 +#: src/strings.ts:2237 msgid "These items will be **kept in your Trash for {interval} days** after which they will be permanently deleted." msgstr "" -#: src/strings.ts:1919 +#: src/strings.ts:1920 msgid "This action is IRREVERSIBLE." msgstr "" @@ -6442,52 +6442,52 @@ msgstr "" msgid "This device" msgstr "" -#: src/strings.ts:1682 +#: src/strings.ts:1683 msgid "This error can be fixed by rebuilding the search index. This action won't result in any kind of data loss." msgstr "" -#: src/strings.ts:1674 +#: src/strings.ts:1675 msgid "This error can only be fixed by wiping & reseting the database. Beware that this will wipe all your data inside the database with no way to recover it later on. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device." msgstr "" -#: src/strings.ts:1678 +#: src/strings.ts:1679 msgid "This error can only be fixed by wiping & reseting the Key Store and the database. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device." msgstr "" -#: src/strings.ts:1676 +#: src/strings.ts:1677 msgid "This error means the at rest encryption key could not be decrypted. This can be due to data corruption or implementation change." msgstr "" -#: src/strings.ts:1672 +#: src/strings.ts:1673 msgid "This error usually means the database file is either corrupt or it could not be decrypted." msgstr "" -#: src/strings.ts:1680 +#: src/strings.ts:1681 msgid "This error usually means the search index is corrupted." msgstr "" -#: src/strings.ts:1933 +#: src/strings.ts:1934 msgid "This image cannot be previewed" msgstr "" -#: src/strings.ts:2569 +#: src/strings.ts:2570 msgid "This is a one time purchase, no subscription." msgstr "" -#: src/strings.ts:2044 +#: src/strings.ts:2045 msgid "This may take a while" msgstr "" -#: src/strings.ts:1100 -#: src/strings.ts:1109 +#: src/strings.ts:1101 +#: src/strings.ts:1110 msgid "This must only be used for troubleshooting. Using it regularly for sync is not recommended and will lead to unexpected data loss and other issues. If you are having persistent issues with sync, please report them to us at support@streetwriters.co." msgstr "" -#: src/strings.ts:1593 +#: src/strings.ts:1594 msgid "This note is locked" msgstr "" -#: src/strings.ts:951 +#: src/strings.ts:952 msgid "This note is locked. Unlock note to save changes" msgstr "" @@ -6503,129 +6503,129 @@ msgstr "" msgid "This note will be published to a public URL." msgstr "" -#: src/strings.ts:2090 +#: src/strings.ts:2091 msgid "This username will be used to distinguish between different credentials in your security key. Make sure it is unique." msgstr "" -#: src/strings.ts:1302 +#: src/strings.ts:1303 msgid "This version of Notesnook app does not support in-app purchases. Kindly login on the Notesnook web app to make the purchase." msgstr "" -#: src/strings.ts:625 +#: src/strings.ts:626 msgid "Thu" msgstr "" -#: src/strings.ts:616 +#: src/strings.ts:617 msgid "Thursday" msgstr "" -#: src/strings.ts:1841 +#: src/strings.ts:1842 msgid "Time" msgstr "" -#: src/strings.ts:1133 +#: src/strings.ts:1134 msgid "Time format" msgstr "" -#: src/strings.ts:670 +#: src/strings.ts:671 msgid "TIP" msgstr "" -#: src/strings.ts:648 -#: src/strings.ts:653 +#: src/strings.ts:649 +#: src/strings.ts:654 msgid "Title" msgstr "" -#: src/strings.ts:1156 +#: src/strings.ts:1157 msgid "Title format" msgstr "" -#: src/strings.ts:1187 +#: src/strings.ts:1188 msgid "To use app lock, you must enable biometrics such as Fingerprint lock or Face ID on your phone." msgstr "" -#: src/strings.ts:1811 +#: src/strings.ts:1812 msgid "Toggle dark/light mode" msgstr "" -#: src/strings.ts:2461 +#: src/strings.ts:2462 msgid "Toggle focus mode" msgstr "" -#: src/strings.ts:2350 +#: src/strings.ts:2351 msgid "Toggle indentation mode" msgstr "" -#: src/strings.ts:2379 +#: src/strings.ts:2380 msgid "Toggle replace" msgstr "" -#: src/strings.ts:2450 +#: src/strings.ts:2451 msgid "Toggle theme" msgstr "" -#: src/strings.ts:2131 +#: src/strings.ts:2132 msgid "Toolbar" msgstr "" -#: src/strings.ts:1147 +#: src/strings.ts:1148 msgid "Toolbar reset to default preset" msgstr "" -#: src/strings.ts:1325 -#: src/strings.ts:1522 +#: src/strings.ts:1326 +#: src/strings.ts:1523 msgid "Trash" msgstr "" -#: src/strings.ts:1324 +#: src/strings.ts:1325 msgid "Trash cleared successfully!" msgstr "" -#: src/strings.ts:1330 +#: src/strings.ts:1331 msgid "Trash gets automatically cleaned up after {days} days" msgstr "" -#: src/strings.ts:1328 +#: src/strings.ts:1329 msgid "Trash gets automatically cleaned up daily" msgstr "" -#: src/strings.ts:2539 +#: src/strings.ts:2540 msgid "Try {plan} for free" msgstr "" -#: src/strings.ts:1464 +#: src/strings.ts:1465 msgid "Try compact mode to fit more items on screen" msgstr "" -#: src/strings.ts:1823 +#: src/strings.ts:1824 msgid "Try free for 14 days" msgstr "" -#: src/strings.ts:2525 +#: src/strings.ts:2526 msgid "Try it for free" msgstr "" -#: src/strings.ts:623 +#: src/strings.ts:624 msgid "Tue" msgstr "" -#: src/strings.ts:614 +#: src/strings.ts:615 msgid "Tuesday" msgstr "" -#: src/strings.ts:1085 +#: src/strings.ts:1086 msgid "Turn off automatic syncing. Changes from this client will be synced only when you run sync manually." msgstr "" -#: src/strings.ts:891 +#: src/strings.ts:892 msgid "Turn off reminder" msgstr "" -#: src/strings.ts:892 +#: src/strings.ts:893 msgid "Turn on reminder" msgstr "" -#: src/strings.ts:1091 +#: src/strings.ts:1092 msgid "Turns off syncing completely on this device. Any changes made will remain local only and new changes from your other devices won't sync to this device." msgstr "" @@ -6633,55 +6633,55 @@ msgstr "" msgid "Two factor authentication" msgstr "" -#: src/strings.ts:493 +#: src/strings.ts:494 msgid "Two-factor authentication" msgstr "" -#: src/strings.ts:502 +#: src/strings.ts:503 msgid "Two-factor authentication enabled" msgstr "" -#: src/strings.ts:1501 +#: src/strings.ts:1502 msgid "Type # to search for headings" msgstr "" -#: src/strings.ts:1508 +#: src/strings.ts:1509 msgid "Type a keyword" msgstr "" -#: src/strings.ts:1548 +#: src/strings.ts:1549 msgid "Unable to resolve download url" msgstr "" -#: src/strings.ts:1551 +#: src/strings.ts:1552 msgid "Unable to send 2FA code" msgstr "" -#: src/strings.ts:2485 +#: src/strings.ts:2486 msgid "Unarchive" msgstr "" -#: src/strings.ts:2257 +#: src/strings.ts:2258 msgid "Underline" msgstr "" -#: src/strings.ts:565 +#: src/strings.ts:566 msgid "Undo" msgstr "" -#: src/strings.ts:853 +#: src/strings.ts:854 msgid "Unfavorite" msgstr "" -#: src/strings.ts:2579 +#: src/strings.ts:2580 msgid "Unlimited" msgstr "" -#: src/strings.ts:929 +#: src/strings.ts:930 msgid "Unlink from all" msgstr "" -#: src/strings.ts:852 +#: src/strings.ts:853 msgid "Unlink notebook" msgstr "" @@ -6689,32 +6689,32 @@ msgstr "" msgid "Unlock" msgstr "" -#: src/strings.ts:1382 +#: src/strings.ts:1383 msgid "Unlock more colors with Notesnook Pro" msgstr "" -#: src/strings.ts:454 -#: src/strings.ts:557 +#: src/strings.ts:455 +#: src/strings.ts:558 msgid "Unlock note" msgstr "" -#: src/strings.ts:887 +#: src/strings.ts:888 msgid "Unlock note to delete it" msgstr "" -#: src/strings.ts:1207 +#: src/strings.ts:1208 msgid "Unlock the app with biometric authentication. This requires biometrics to be enabled on your device." msgstr "" -#: src/strings.ts:1931 +#: src/strings.ts:1932 msgid "Unlock vault" msgstr "" -#: src/strings.ts:543 +#: src/strings.ts:544 msgid "Unlock with biometrics" msgstr "" -#: src/strings.ts:1826 +#: src/strings.ts:1827 msgid "Unlock with security key" msgstr "" @@ -6722,40 +6722,40 @@ msgstr "" msgid "Unlock your notes" msgstr "" -#: src/strings.ts:1177 +#: src/strings.ts:1178 msgid "Unlock your vault with biometric authentication" msgstr "" -#: src/strings.ts:1709 +#: src/strings.ts:1710 msgid "Unlocking" msgstr "" -#: src/strings.ts:898 +#: src/strings.ts:899 msgid "Unpin" msgstr "" -#: src/strings.ts:926 +#: src/strings.ts:927 msgid "Unpin notification" msgstr "" -#: src/strings.ts:586 +#: src/strings.ts:587 msgid "Unpublish" msgstr "" -#: src/strings.ts:1476 +#: src/strings.ts:1477 msgid "Unpublish notes to delete them" msgstr "" -#: src/strings.ts:2085 +#: src/strings.ts:2086 msgid "Unregister" msgstr "" #: src/strings.ts:210 -#: src/strings.ts:2359 +#: src/strings.ts:2360 msgid "Untitled" msgstr "" -#: src/strings.ts:587 +#: src/strings.ts:588 msgid "Update" msgstr "" @@ -6763,65 +6763,65 @@ msgstr "" msgid "Update available" msgstr "" -#: src/strings.ts:1369 +#: src/strings.ts:1370 msgid "Update now" msgstr "" -#: src/strings.ts:2499 +#: src/strings.ts:2500 msgid "Upgrade" msgstr "" -#: src/strings.ts:1917 +#: src/strings.ts:1918 msgid "Upgrade now" msgstr "" -#: src/strings.ts:2498 +#: src/strings.ts:2499 msgid "Upgrade plan" msgstr "" -#: src/strings.ts:2524 +#: src/strings.ts:2525 msgid "Upgrade plan to {plan} to use this feature." msgstr "" -#: src/strings.ts:1938 +#: src/strings.ts:1939 msgid "Upgrade to Notesnook Pro to add colors." msgstr "" -#: src/strings.ts:1939 +#: src/strings.ts:1940 msgid "Upgrade to Notesnook Pro to create more tags." msgstr "" -#: src/strings.ts:748 +#: src/strings.ts:749 msgid "Upgrade to Pro" msgstr "" -#: src/strings.ts:2594 +#: src/strings.ts:2595 msgid "Upgrade to redeem" msgstr "" -#: src/strings.ts:509 +#: src/strings.ts:510 msgid "Upload" msgstr "" -#: src/strings.ts:2336 +#: src/strings.ts:2337 msgid "Upload from disk" msgstr "" -#: src/strings.ts:510 -#: src/strings.ts:1650 +#: src/strings.ts:511 +#: src/strings.ts:1651 msgid "Uploaded" msgstr "" -#: src/strings.ts:798 +#: src/strings.ts:799 msgid "Uploaded file verification failed." msgstr "" #: src/strings.ts:65 -#: src/strings.ts:511 +#: src/strings.ts:512 msgid "Uploading" msgstr "" -#: src/strings.ts:762 +#: src/strings.ts:763 msgid "Uploads" msgstr "" @@ -6829,67 +6829,67 @@ msgstr "" msgid "Urgent" msgstr "" -#: src/strings.ts:2386 +#: src/strings.ts:2387 msgid "URL" msgstr "" -#: src/strings.ts:1788 +#: src/strings.ts:1789 msgid "Use" msgstr "" -#: src/strings.ts:461 +#: src/strings.ts:462 msgid "Use {keyboardShortcut}+click to select multiple notebooks" msgstr "" -#: src/strings.ts:1801 +#: src/strings.ts:1802 msgid "Use a backup file" msgstr "" -#: src/strings.ts:1899 +#: src/strings.ts:1900 msgid "Use a data recovery key to reset your account password." msgstr "" -#: src/strings.ts:555 +#: src/strings.ts:556 msgid "Use account password" msgstr "" -#: src/strings.ts:2531 +#: src/strings.ts:2532 msgid "Use advanced note taking features like" msgstr "" -#: src/strings.ts:978 +#: src/strings.ts:979 msgid "Use an authenticator app to generate 2FA codes." msgstr "" -#: src/strings.ts:2171 +#: src/strings.ts:2172 msgid "Use custom DNS" msgstr "" -#: src/strings.ts:1122 +#: src/strings.ts:1123 msgid "Use dark mode for the app" msgstr "" -#: src/strings.ts:1620 +#: src/strings.ts:1621 msgid "Use encryption key" msgstr "" -#: src/strings.ts:1159 +#: src/strings.ts:1160 msgid "Use markdown shortcuts in the editor" msgstr "" -#: src/strings.ts:2124 +#: src/strings.ts:2125 msgid "Use native OS titlebar instead of replacing it with a custom one. Requires app restart for changes to take effect." msgstr "" -#: src/strings.ts:2122 +#: src/strings.ts:2123 msgid "Use native titlebar" msgstr "" -#: src/strings.ts:1798 +#: src/strings.ts:1799 msgid "Use recovery key" msgstr "" -#: src/strings.ts:1118 +#: src/strings.ts:1119 msgid "Use system theme" msgstr "" @@ -6902,86 +6902,87 @@ msgid "" "$timestamp$: Full date and time without any spaces or other symbols.\n" "(e.g 202305261253).\n" "$count$: Number of notes + 1.\n" -"$headline$: Use starting line of the note as title." +"$headline$: Use starting line of the note as title.\n" +"$day$: Current day (eg. Monday)" msgstr "" -#: src/strings.ts:1098 +#: src/strings.ts:1099 msgid "Use this if changes from other devices are not appearing on this device. This will overwrite the data on this device with the latest data from the server." msgstr "" -#: src/strings.ts:1107 +#: src/strings.ts:1108 msgid "Use this if changes made on this device are not appearing on other devices. This will overwrite the data on the server with the data from this device." msgstr "" -#: src/strings.ts:2472 +#: src/strings.ts:2473 msgid "used" msgstr "" -#: src/strings.ts:1017 +#: src/strings.ts:1018 msgid "User verification failed" msgstr "" -#: src/strings.ts:2253 +#: src/strings.ts:2254 msgid "Using {instance} (v{version})" msgstr "" -#: src/strings.ts:2251 +#: src/strings.ts:2252 msgid "Using official Notesnook instance" msgstr "" -#: src/strings.ts:1708 +#: src/strings.ts:1709 msgid "v{version} available" msgstr "" -#: src/strings.ts:1170 +#: src/strings.ts:1171 msgid "Vault" msgstr "" -#: src/strings.ts:1991 +#: src/strings.ts:1992 msgid "Vault cleared" msgstr "" -#: src/strings.ts:812 +#: src/strings.ts:813 msgid "Vault created" msgstr "" -#: src/strings.ts:1992 +#: src/strings.ts:1993 msgid "Vault deleted" msgstr "" -#: src/strings.ts:448 +#: src/strings.ts:449 msgid "Vault fingerprint unlock" msgstr "" -#: src/strings.ts:1930 +#: src/strings.ts:1931 msgid "Vault locked" msgstr "" -#: src/strings.ts:1929 +#: src/strings.ts:1930 msgid "Vault unlocked" msgstr "" -#: src/strings.ts:1399 +#: src/strings.ts:1400 msgid "Verification email sent" msgstr "" -#: src/strings.ts:574 +#: src/strings.ts:575 msgid "Verify" msgstr "" -#: src/strings.ts:1068 +#: src/strings.ts:1069 msgid "Verify subscription" msgstr "" -#: src/strings.ts:1071 +#: src/strings.ts:1072 msgid "Verify your subscription to Notesnook Pro" msgstr "" -#: src/strings.ts:1902 +#: src/strings.ts:1903 msgid "Verifying 2FA code" msgstr "" -#: src/strings.ts:1888 +#: src/strings.ts:1889 msgid "Verifying your email" msgstr "" @@ -6993,35 +6994,35 @@ msgstr "" msgid "Vibrate" msgstr "" -#: src/strings.ts:755 +#: src/strings.ts:756 msgid "Videos" msgstr "" -#: src/strings.ts:569 +#: src/strings.ts:570 msgid "View all linked notebooks" msgstr "" -#: src/strings.ts:1269 +#: src/strings.ts:1270 msgid "View and share debug logs" msgstr "" -#: src/strings.ts:1746 +#: src/strings.ts:1747 msgid "View receipt" msgstr "" -#: src/strings.ts:1059 +#: src/strings.ts:1060 msgid "View recovery codes" msgstr "" -#: src/strings.ts:2151 +#: src/strings.ts:2152 msgid "View source code" msgstr "" -#: src/strings.ts:1061 +#: src/strings.ts:1062 msgid "View your recovery codes to recover your account in case you lose access to your two-factor authentication methods." msgstr "" -#: src/strings.ts:2609 +#: src/strings.ts:2610 msgid "Views" msgstr "" @@ -7029,149 +7030,149 @@ msgstr "" msgid "Visit homepage" msgstr "" -#: src/strings.ts:1349 +#: src/strings.ts:1350 msgid "Wait 30 seconds to try again" msgstr "" -#: src/strings.ts:1651 +#: src/strings.ts:1652 msgid "Waiting for upload" msgstr "" -#: src/strings.ts:1910 +#: src/strings.ts:1911 msgid "We are creating a backup of your data. Please wait..." msgstr "" -#: src/strings.ts:473 +#: src/strings.ts:474 msgid "We are sorry, it seems that the app crashed due to an error. You can submit a bug report below so we can fix this asap." msgstr "" -#: src/strings.ts:1389 +#: src/strings.ts:1390 msgid "We have sent you an email confirmation link. Please check your email inbox. If you cannot find the email, check your spam folder." msgstr "" -#: src/strings.ts:2510 +#: src/strings.ts:2511 msgid "We require credit card details to fight abuse and to make it seamless for you to upgrade. Your credit card is NOT charged until your free trial ends and your subscription starts. You will be notified via email of the upcoming charge before your trial ends." msgstr "" -#: src/strings.ts:2166 +#: src/strings.ts:2167 msgid "We send you occasional promotional offers & product updates on your email (once every month)." msgstr "" -#: src/strings.ts:1166 +#: src/strings.ts:1167 msgid "We will send you occasional promotional offers & product updates on your email (sent once every month)." msgstr "" -#: src/strings.ts:1353 +#: src/strings.ts:1354 msgid "We would love to know what you think!" msgstr "" -#: src/strings.ts:2551 +#: src/strings.ts:2552 msgid "We’re setting up your plan right now. We’ll notify you as soon as everything is ready." msgstr "" -#: src/strings.ts:2321 +#: src/strings.ts:2322 msgid "Web clip settings" msgstr "" -#: src/strings.ts:2028 +#: src/strings.ts:2029 msgid "Website" msgstr "" -#: src/strings.ts:624 +#: src/strings.ts:625 msgid "Wed" msgstr "" -#: src/strings.ts:615 +#: src/strings.ts:616 msgid "Wednesday" msgstr "" -#: src/strings.ts:663 +#: src/strings.ts:664 msgid "Week" msgstr "" #: src/strings.ts:168 -#: src/strings.ts:1568 +#: src/strings.ts:1569 msgid "Weekly" msgstr "" -#: src/strings.ts:779 +#: src/strings.ts:780 msgid "Welcome back, {email}" msgstr "" -#: src/strings.ts:1887 +#: src/strings.ts:1888 msgid "Welcome back!" msgstr "" -#: src/strings.ts:2582 +#: src/strings.ts:2583 msgid "Welcome to Notesnook {plan}" msgstr "" -#: src/strings.ts:2072 +#: src/strings.ts:2073 msgid "Welcome to Notesnook Pro" msgstr "" -#: src/strings.ts:1391 +#: src/strings.ts:1392 msgid "What do I do if I am not getting the email?" msgstr "" -#: src/strings.ts:2502 +#: src/strings.ts:2503 msgid "What happens to my data if I switch plans?" msgstr "" -#: src/strings.ts:2518 +#: src/strings.ts:2519 msgid "What is your refund policy?" msgstr "" -#: src/strings.ts:1666 +#: src/strings.ts:1667 msgid "What went wrong?" msgstr "" -#: src/strings.ts:2508 +#: src/strings.ts:2509 msgid "Why do you need my credit card details for a free trial?" msgstr "" -#: src/strings.ts:2382 +#: src/strings.ts:2383 msgid "Width" msgstr "" -#: src/strings.ts:2488 +#: src/strings.ts:2489 msgid "Words" msgstr "" -#: src/strings.ts:2411 +#: src/strings.ts:2412 msgid "Work & Office" msgstr "" -#: src/strings.ts:822 +#: src/strings.ts:823 msgid "Write notes with freedom, no spying, no tracking." msgstr "" -#: src/strings.ts:1373 +#: src/strings.ts:1374 msgid "Write something..." msgstr "" -#: src/strings.ts:1653 +#: src/strings.ts:1654 msgid "Write with freedom." msgstr "" -#: src/strings.ts:2060 +#: src/strings.ts:2061 msgid "Write with freedom. Never compromise on privacy again." msgstr "" -#: src/strings.ts:662 +#: src/strings.ts:663 msgid "Year" msgstr "" #: src/strings.ts:170 -#: src/strings.ts:1570 +#: src/strings.ts:1571 msgid "Yearly" msgstr "" -#: src/strings.ts:547 +#: src/strings.ts:548 msgid "Yes" msgstr "" -#: src/strings.ts:2515 +#: src/strings.ts:2516 msgid "Yes, you can cancel your trial anytime. No questions asked." msgstr "" @@ -7179,71 +7180,71 @@ msgstr "" msgid "You also agree to recieve marketing emails from us which you can opt-out of from app settings." msgstr "" -#: src/strings.ts:2587 +#: src/strings.ts:2588 msgid "You are already subscribed to this plan." msgstr "" -#: src/strings.ts:2238 +#: src/strings.ts:2239 msgid "You are editing \"{notebookTitle}\"." msgstr "" -#: src/strings.ts:2042 +#: src/strings.ts:2043 msgid "You are editing #{tag}" msgstr "" -#: src/strings.ts:1780 +#: src/strings.ts:1781 msgid "You are logging into the beta version of Notesnook. Switching between beta & stable versions can cause weird issues including data loss. It is recommended that you do not use both simultaneously." msgstr "" -#: src/strings.ts:1360 +#: src/strings.ts:1361 msgid "You are not logged in" msgstr "" -#: src/strings.ts:885 +#: src/strings.ts:886 msgid "You are renaming color {color}" msgstr "" -#: src/strings.ts:572 +#: src/strings.ts:573 msgid "You can add as many tags as you want." msgstr "" -#: src/strings.ts:463 +#: src/strings.ts:464 msgid "You can also link a note to multiple Notebooks. Tap and hold any notebook to enable multi-select." msgstr "" -#: src/strings.ts:2063 +#: src/strings.ts:2064 msgid "You can change the theme at any time from Settings or the side menu." msgstr "" -#: src/strings.ts:2590 +#: src/strings.ts:2591 msgid "You can change your subscription plan from the web app" msgstr "" -#: src/strings.ts:2419 +#: src/strings.ts:2420 msgid "You can create shortcuts of frequently accessed notebooks in the side menu" msgstr "" -#: src/strings.ts:2078 +#: src/strings.ts:2079 msgid "You can import your notes from most other note taking apps." msgstr "" -#: src/strings.ts:1435 +#: src/strings.ts:1436 msgid "You can multi-select notes and move them to a notebook at once" msgstr "" -#: src/strings.ts:1426 +#: src/strings.ts:1427 msgid "You can pin frequently used Notebooks to the Side Menu to quickly access them." msgstr "" -#: src/strings.ts:1169 +#: src/strings.ts:1170 msgid "You can set a custom proxy URL to increase your privacy." msgstr "" -#: src/strings.ts:1407 +#: src/strings.ts:1408 msgid "You can swipe left anywhere in the app to start a new note." msgstr "" -#: src/strings.ts:2052 +#: src/strings.ts:2053 msgid "" "You can track your bug report at [{url}]({url}).\n" "\n" @@ -7256,236 +7257,236 @@ msgstr "" msgid "You can track your issue at " msgstr "" -#: src/strings.ts:1027 +#: src/strings.ts:1028 msgid "You can use all premium features for free for the next 14 days" msgstr "" -#: src/strings.ts:1057 +#: src/strings.ts:1058 msgid "You can use fallback 2FA method incase you are unable to login via primary method" msgstr "" -#: src/strings.ts:1449 +#: src/strings.ts:1450 msgid "You can view & restore older versions of any note by going to its properties -> History." msgstr "" -#: src/strings.ts:1748 +#: src/strings.ts:1749 msgid "You have {count} custom dictionary words." msgstr "" -#: src/strings.ts:2197 +#: src/strings.ts:2198 msgid "You have been logged out from all other devices." msgstr "" -#: src/strings.ts:2191 +#: src/strings.ts:2192 msgid "You have been logged out." msgstr "" -#: src/strings.ts:2586 +#: src/strings.ts:2587 msgid "You have made a one time purchase. To change your plan please contact support." msgstr "" -#: src/strings.ts:963 +#: src/strings.ts:964 msgid "You have not added any notebooks yet" msgstr "" -#: src/strings.ts:962 +#: src/strings.ts:963 msgid "You have not added any tags yet" msgstr "" -#: src/strings.ts:961 +#: src/strings.ts:962 msgid "You have not created any notes yet" msgstr "" -#: src/strings.ts:960 +#: src/strings.ts:961 msgid "You have not favorited any notes yet" msgstr "" -#: src/strings.ts:965 +#: src/strings.ts:966 msgid "You have not published any monographs yet" msgstr "" -#: src/strings.ts:964 +#: src/strings.ts:965 msgid "You have not set any reminders yet" msgstr "" -#: src/strings.ts:1544 +#: src/strings.ts:1545 msgid "You have unsynced notes. Take a backup or sync your notes to avoid losing your critical data." msgstr "" -#: src/strings.ts:1633 +#: src/strings.ts:1634 msgid "You must log out in order to change/reset server URLs." msgstr "" -#: src/strings.ts:835 +#: src/strings.ts:836 msgid "You simply cannot get any better of a note taking app than @notesnook. The UI is clean and slick, it is feature rich, encrypted, reasonably priced (esp. for students & educators) & open source" msgstr "" -#: src/strings.ts:1067 +#: src/strings.ts:1068 msgid "You subscribed to Notesnook Pro on {date}. Verify this subscription?" msgstr "" -#: src/strings.ts:708 +#: src/strings.ts:709 msgid "You subscribed to Notesnook Pro on Android Phone/Tablet using Google In App Purchase." msgstr "" -#: src/strings.ts:701 +#: src/strings.ts:702 msgid "You subscribed to Notesnook Pro on iOS using Apple In App Purchase. You can cancel anytime with your iTunes Account settings." msgstr "" -#: src/strings.ts:714 +#: src/strings.ts:715 msgid "You subscribed to Notesnook Pro on the Web/Desktop App." msgstr "" -#: src/strings.ts:720 +#: src/strings.ts:721 msgid "You subscribed to Notesnook Pro using a gift card." msgstr "" -#: src/strings.ts:695 +#: src/strings.ts:696 msgid "You were awarded a subscription to Notesnook Pro by Streetwriters." msgstr "" -#: src/strings.ts:467 +#: src/strings.ts:468 msgid "You will be logged out from all your devices" msgstr "" -#: src/strings.ts:1850 +#: src/strings.ts:1851 msgid "You will receive instructions on how to recover your account on this email" msgstr "" -#: src/strings.ts:466 +#: src/strings.ts:467 msgid "Your account email will be changed without affecting your subscription or any other settings." msgstr "" -#: src/strings.ts:1916 +#: src/strings.ts:1917 msgid "Your account has been recovered." msgstr "" -#: src/strings.ts:501 -#: src/strings.ts:1727 +#: src/strings.ts:502 +#: src/strings.ts:1728 msgid "Your account is now 100% secure against unauthorized logins." msgstr "" -#: src/strings.ts:1855 +#: src/strings.ts:1856 msgid "Your account password must be strong & unique." msgstr "" -#: src/strings.ts:1033 +#: src/strings.ts:1034 msgid "Your account will be downgraded in {days} days" msgstr "" -#: src/strings.ts:959 +#: src/strings.ts:960 msgid "Your archive" msgstr "" -#: src/strings.ts:2484 +#: src/strings.ts:2485 msgid "Your archive is empty" msgstr "" -#: src/strings.ts:1928 +#: src/strings.ts:1929 msgid "Your backup is ready to download" msgstr "" -#: src/strings.ts:1585 +#: src/strings.ts:1586 msgid "Your changes could not be saved" msgstr "" -#: src/strings.ts:1775 +#: src/strings.ts:1776 msgid "Your changes have been saved and will be reflected after the app has refreshed." msgstr "" -#: src/strings.ts:2098 +#: src/strings.ts:2099 msgid "Your current 2FA method is {method}" msgstr "" -#: src/strings.ts:2593 +#: src/strings.ts:2594 msgid "Your current subscription does not allow changing plans" msgstr "" -#: src/strings.ts:1800 +#: src/strings.ts:1801 msgid "Your data recovery key is basically a hashed version of your password (plus some random salt). It can be used to decrypt your data for re-encryption." msgstr "" -#: src/strings.ts:1853 +#: src/strings.ts:1854 msgid "Your data recovery key will be used to decrypt your data" msgstr "" -#: src/strings.ts:2504 +#: src/strings.ts:2505 msgid "Your data remains 100% accessible regardless of what plan you are on. That includes your notes, notebooks, attachments, and anything else you might have created." msgstr "" -#: src/strings.ts:1783 +#: src/strings.ts:1784 msgid "Your email has been confirmed." msgstr "" -#: src/strings.ts:2495 +#: src/strings.ts:2496 msgid "Your email has been confirmed. You can now securely sync your encrypted notes across all devices." msgstr "" -#: src/strings.ts:765 +#: src/strings.ts:766 msgid "Your email is not confirmed. Please confirm your email address to change account password." msgstr "" -#: src/strings.ts:953 +#: src/strings.ts:954 msgid "Your favorites" msgstr "" -#: src/strings.ts:1030 +#: src/strings.ts:1031 msgid "Your free trial ends on {date}" msgstr "" -#: src/strings.ts:1403 +#: src/strings.ts:1404 msgid "Your free trial has expired" msgstr "" -#: src/strings.ts:1025 +#: src/strings.ts:1026 msgid "Your free trial has started" msgstr "" -#: src/strings.ts:1402 +#: src/strings.ts:1403 msgid "Your free trial is ending soon" msgstr "" -#: src/strings.ts:1777 +#: src/strings.ts:1778 msgid "Your full name" msgstr "" -#: src/strings.ts:958 +#: src/strings.ts:959 msgid "Your monographs" msgstr "" -#: src/strings.ts:1311 +#: src/strings.ts:1312 msgid "Your name is stored 100% end-to-end encrypted and only visible to you." msgstr "" -#: src/strings.ts:560 +#: src/strings.ts:561 msgid "Your note will be unencrypted and removed from the vault." msgstr "" -#: src/strings.ts:956 +#: src/strings.ts:957 msgid "Your notebooks" msgstr "" -#: src/strings.ts:954 +#: src/strings.ts:955 msgid "Your notes" msgstr "" -#: src/strings.ts:1891 +#: src/strings.ts:1892 msgid "Your password is always hashed before leaving this device." msgstr "" -#: src/strings.ts:831 +#: src/strings.ts:832 msgid "Your privacy matters to us, no matter who you are. In a world where everyone is trying to spy on you, Notesnook encrypts all your data before it leaves your device. With Notesnook no one can ever sell your data again." msgstr "" -#: src/strings.ts:1308 +#: src/strings.ts:1309 msgid "Your profile pictrure is stored 100% end-to-end encrypted and only visible to you." msgstr "" -#: src/strings.ts:1996 +#: src/strings.ts:1997 msgid "Your refund has been issued. Please wait 24 hours before reaching out to us in case you do not receive your funds." msgstr "" -#: src/strings.ts:957 +#: src/strings.ts:958 msgid "Your reminders" msgstr "" @@ -7493,54 +7494,54 @@ msgstr "" msgid "Your session has expired. Please enter password for {obfuscatedEmail} to continue." msgstr "" -#: src/strings.ts:1034 +#: src/strings.ts:1035 msgid "Your subscription ends on {date}" msgstr "" -#: src/strings.ts:1994 +#: src/strings.ts:1995 msgid "Your subscription has been canceled." msgstr "" -#: src/strings.ts:1031 +#: src/strings.ts:1032 msgid "Your subscription has ended" msgstr "" -#: src/strings.ts:1035 +#: src/strings.ts:1036 msgid "Your subscription renews on {date}" msgstr "" -#: src/strings.ts:955 +#: src/strings.ts:956 msgid "Your tags" msgstr "" -#: src/strings.ts:689 +#: src/strings.ts:690 msgid "yr" msgstr "" -#: src/strings.ts:647 +#: src/strings.ts:648 msgid "Z to A" msgstr "" -#: src/strings.ts:792 +#: src/strings.ts:793 msgid "Zipping" msgstr "" -#: src/strings.ts:2460 +#: src/strings.ts:2461 msgid "Zoom" msgstr "" -#: src/strings.ts:2092 +#: src/strings.ts:2093 msgid "Zoom factor" msgstr "" -#: src/strings.ts:1699 +#: src/strings.ts:1700 msgid "Zoom in" msgstr "" -#: src/strings.ts:2093 +#: src/strings.ts:2094 msgid "Zoom in or out the app content." msgstr "" -#: src/strings.ts:1698 +#: src/strings.ts:1699 msgid "Zoom out" msgstr "" diff --git a/packages/intl/src/strings.ts b/packages/intl/src/strings.ts index 706766fb7..11d913c27 100644 --- a/packages/intl/src/strings.ts +++ b/packages/intl/src/strings.ts @@ -422,7 +422,8 @@ $time$: Current time. $timestamp$: Full date and time without any spaces or other symbols. (e.g 202305261253). $count$: Number of notes + 1. -$headline$: Use starting line of the note as title.`, +$headline$: Use starting line of the note as title. +$day$: Current day (eg. Monday)`, setYourName: () => t`Set your name`, presets: () => t`PRESETS`, group: () => t`GROUP`,