diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..0a3d8c2 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.webp filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore index 3017b0e..4b127f1 100644 --- a/.gitignore +++ b/.gitignore @@ -42,4 +42,4 @@ next-env.d.ts dev/ -.claude/ \ No newline at end of file +.claude/ diff --git a/BRAND-ASSETS.md b/BRAND-ASSETS.md new file mode 100644 index 0000000..ce0e0e8 --- /dev/null +++ b/BRAND-ASSETS.md @@ -0,0 +1,320 @@ +# RaidGuild Brand Assets — Agent Manifest + +> **Purpose:** This is a single, self-contained document that an AI agent can read to (1) understand the RaidGuild brand guidelines and (2) know the exact download URL for **every** brand asset. Drop this file into your agent's context when building a RaidGuild-branded site or asset. +> +> **Companion doc:** `AGENTS.md` is the *developer/design-system* handbook (components, tokens, setup). **This file** is the *asset inventory + download map*. Use both together. +> +> **2024 Q4 Brand Refresh.** Source of truth: + +--- + +## 1. How to download assets + +Every asset lives in the `public/` folder of the brand repo and is served from the live site root. There are two interchangeable base URLs: + +| Source | Base URL | Use for | +| --- | --- | --- | +| **Live site** (recommended for HTTP fetch) | `https://www.brand.raidguild.org` | Fetching a rendered asset directly, e.g. `.../assets/logos/full-m500.svg` | +| **GitHub raw** (direct file bytes) | `https://raw.githubusercontent.com/raid-guild/brand/main/public` | Programmatic download / pinning to a commit | +| **GitHub tree** (browse a folder) | `https://github.com/raid-guild/brand/tree/main/public` | Human browsing / bulk download | + +**Path rule:** anything under `public/assets/...` in the repo is served at `https://www.brand.raidguild.org/assets/...`. Example: + +- Repo path: `public/assets/logos/full-m500.svg` +- Live URL: `https://www.brand.raidguild.org/assets/logos/full-m500.svg` +- Raw URL: `https://raw.githubusercontent.com/raid-guild/brand/main/public/assets/logos/full-m500.svg` + +Throughout this doc, `{LIVE}` = `https://www.brand.raidguild.org` and `{RAW}` = `https://raw.githubusercontent.com/raid-guild/brand/main/public`. + +### Asset inventory at a glance + +| Category | Count | Format | Location | +| --- | --- | --- | --- | +| Logos (logotype + logomark) | 14 | SVG | `/assets/logos/` | +| Icons — 8bit roles | 17 | SVG | `/assets/icon/8bit/` | +| Icons — D&D service/community | 15 | SVG | `/assets/icon/dd/` | +| Icons — Magic/alchemical | 13 | SVG | `/assets/icon/magic/` | +| Social avatars | 3 | PNG (400×400) | `/assets/social/` | +| Illustrations | 848 files (53 scenes × 4 palettes × 2 tones × full+thumb) | WebP | `/assets/webp/` | +| Full brand guidelines | 1 | PDF | `/assets/RaidGuild_brand_guidelines.pdf` | +| Fonts | 7 files | OTF/WOFF/TTF | `/fonts/` | + +Naming convention for color-coded assets: `m` = Moloch (warm red), `s` = Scroll (warm yellow); the number is the palette step (e.g. `m500` = Moloch 500). A two-part name like `m800-s100` means *foreground on background* (Moloch 800 mark on a Scroll 100 background). + +--- + +## 2. Brand foundations + +### 2.1 Colors + +The primary palette is a warm, high-contrast combination of red, off-black, and off-white — warm and energetic, meant to inspire action. All colors are defined as CSS custom properties in `src/app/globals.css`. + +**Primary colors (use these first):** + +| Name | Hex | Role | +| --- | --- | --- | +| Moloch 800 | `#29100A` | Primary dark / foreground text | +| Moloch 500 | `#BD482D` | **Primary brand red** (CTAs, accents) | +| Scroll 100 | `#F9F7E7` | Primary light / background | +| Scroll 700 | `#534A13` | Deep warm yellow accent | + +**Moloch scale (warm reds):** + +| Step | Hex | +| --- | --- | +| Moloch 100 | `#FAEEEB` | +| Moloch 200 | `#EFC5BB` | +| Moloch 300 | `#E39B8B` | +| Moloch 400 | `#D25C41` | +| Moloch 500 | `#BD482D` | +| Moloch 600 | `#8B3521` | +| Moloch 700 | `#5C2316` | +| Moloch 800 | `#29100A` | + +**Scroll scale (warm yellows):** + +| Step | Hex | +| --- | --- | +| Scroll 100 | `#F9F7E7` | +| Scroll 200 | `#ECE5AC` | +| Scroll 300 | `#DCCD6A` | +| Scroll 400 | `#D2C141` | +| Scroll 500 | `#B5A22C` | +| Scroll 600 | `#837820` | +| Scroll 700 | `#534A13` | +| Scroll 800 | `#211E07` | + +**Neutral scale:** + +| Step | Hex | +| --- | --- | +| Neutral 100 | `#F1EFEE` | +| Neutral 200 | `#D5CECD` | +| Neutral 300 | `#B9AEAC` | +| Neutral 400 | `#9E8E8A` | +| Neutral 500 | `#806F6B` | +| Neutral 600 | `#645754` | +| Neutral 700 | `#433937` | +| Neutral 800 | `#221D1C` | +| Neutral White | `#FAFAFA` | +| Neutral Black | `#0D0D0D` | + +**Semantic mapping (light theme):** background `Scroll 100`, foreground `Moloch 800`, primary `Moloch 500` on `Scroll 100`, secondary/muted `Neutral 100` with `Neutral 600` text, accent `Moloch 500`, border/input `Neutral 200`, focus ring `Moloch 500`. Dark theme flips background to `Moloch 800` with `Scroll 100` text. Prefer Tailwind utilities: `bg-moloch-500`, `text-scroll-100`, etc. + +- Tokens source (raw CSS bytes): `https://raw.githubusercontent.com/raid-guild/brand/main/src/app/globals.css` (browse: ) + +### 2.2 Typography + +Three families, wired up in `src/lib/fonts.ts`. Download the font files from `/fonts/` (see §6). + +| Family | Role | Notes | +| --- | --- | --- | +| **Mazius Display** | Display / headlines / brand graphics | High-contrast calligraphic serif (latin chancery influence). Bold weight preferred for headlines; two italics can combine for expressiveness. | +| **EB Garamond** | Body & supporting copy, UI components | Chosen for high readability. | +| **Ubuntu Mono** | Code / technical content | Monospace. | + +**Type scale** (px / line-height / letter-spacing) and matching utility classes: + +| Token | Size | Line height | Letter spacing | Class | +| --- | --- | --- | --- | --- | +| Display Large | 80px | 110% | -2% | `type-display-lg` | +| Display Medium | 60px | 120% | -1% | `type-display-md` | +| Display Small | 48px | 120% | 0% | `type-display-sm` | +| Heading Large | 36px | 120% | 0% | `type-heading-lg` | +| Heading Medium | 28px | 130% | 0% | `type-heading-md` | +| Body Large | 20px | 140% | 0% | `type-body-lg` | +| Body Base | 16px | 160% | 0% | `text-body-base` | +| Body Small | 12px | 160% | 0% | `type-body-sm` | + +> Note the exception: Body Base uses `text-body-base` (not `type-body-base`). All other tokens follow the `type-*` convention. + +Additional utility classes available: `type-heading-sm`, `type-body-md`, `type-label`, `type-label-md`, `type-label-sm`, `type-code-lg`, `type-code-md`, `type-code-sm`. + +### 2.3 Layout / grid + +- `container-custom`: max-width 1280px with responsive padding. +- `grid-custom`: responsive grid, 4 columns (mobile) → 8 (tablet) → 12 (desktop). +- Radius base: `--radius: 0.625rem` (with `radius-sm/md/lg/xl` derived). + +--- + +## 3. Logos + +The logo has two elements: the **crossed-sword logomark** and the **"Raid Guild" logotype (wordmark)**. Rules: + +- The wordmark is **not** used on its own. +- Use the **logomark alone** only when space is limited or the full logotype is inappropriate. +- "Floating" variants are single-color transparent marks; "with background" variants bake in a colored background (`foreground-background`). + +**Download folder:** `{LIVE}/assets/logos/` · GitHub: + +### Full logotype (mark + wordmark) + +| File | Description | URL | +| --- | --- | --- | +| `full-m800.svg` | Full logo, Moloch 800 (floating) | `{LIVE}/assets/logos/full-m800.svg` | +| `full-m500.svg` | Full logo, Moloch 500 (floating) | `{LIVE}/assets/logos/full-m500.svg` | +| `full-s100.svg` | Full logo, Scroll 100 (floating, for dark backgrounds) | `{LIVE}/assets/logos/full-s100.svg` | +| `full-m500-m800.svg` | Moloch 500 mark on Moloch 800 background | `{LIVE}/assets/logos/full-m500-m800.svg` | +| `full-m800-m500.svg` | Moloch 800 mark on Moloch 500 background | `{LIVE}/assets/logos/full-m800-m500.svg` | +| `full-m800-s100.svg` | Moloch 800 mark on Scroll 100 background | `{LIVE}/assets/logos/full-m800-s100.svg` | +| `full-s100-s700.svg` | Scroll 100 mark on Scroll 700 background | `{LIVE}/assets/logos/full-s100-s700.svg` | + +### Logomark (crossed swords only) + +| File | Description | URL | +| --- | --- | --- | +| `symbol-m800.svg` | Symbol, Moloch 800 (floating) | `{LIVE}/assets/logos/symbol-m800.svg` | +| `symbol-m500.svg` | Symbol, Moloch 500 (floating) | `{LIVE}/assets/logos/symbol-m500.svg` | +| `symbol-s700.svg` | Symbol, Scroll 700 (floating) | `{LIVE}/assets/logos/symbol-s700.svg` | +| `symbol-m500-m800.svg` | Moloch 500 symbol on Moloch 800 background | `{LIVE}/assets/logos/symbol-m500-m800.svg` | +| `symbol-m800-m500.svg` | Moloch 800 symbol on Moloch 500 background | `{LIVE}/assets/logos/symbol-m800-m500.svg` | +| `symbol-m800-s100.svg` | Moloch 800 symbol on Scroll 100 background | `{LIVE}/assets/logos/symbol-m800-s100.svg` | +| `symbol-s100-s700.svg` | Scroll 100 symbol on Scroll 700 background | `{LIVE}/assets/logos/symbol-s100-s700.svg` | + +**Quick pick:** primary logo on light backgrounds → `full-m500.svg` or `full-m800.svg`; on dark backgrounds → `full-s100.svg`. + +--- + +## 4. Iconography + +All icons are **SVG** (crisp at any size, colorable via CSS `fill`/`stroke`). Recommended colors: Moloch 800 `#29100A`, Moloch 500 `#BD482D`, Scroll 100 `#F9F7E7`, Scroll 700 `#534A13`. In docs/MDX, **prefer these SVG icons over emoji**. + +**Download folder:** `{LIVE}/assets/icon/` · GitHub: + +### 4.1 8bit — role characters (`/assets/icon/8bit/`) + +D&D-inspired pixelated hero characters, one per guild member role. URL pattern: `{LIVE}/assets/icon/8bit/.svg` + +| Icon | Role / meaning | +| --- | --- | +| `alchemist` | DAO Consultant | +| `archer` | Visual Design | +| `cleric` | Account Manager | +| `druid` | Data Science | +| `dwarf` | Treasury (AngryDwarf) | +| `healer` | Internal Ops | +| `hunter` | BizDev | +| `monk` | PM | +| `necromancer` | DevOps | +| `paladin` | Backend Dev | +| `ranger` | UX Design | +| `rogue` | Legal | +| `scribe` | Content Creator | +| `sorcerer` | (role character; no role label on the published page) | +| `tavernkeeper` | Community | +| `warrior` | Frontend Dev | +| `wizard` | Smart Contracts | + +### 4.2 D&D — service & community icons (`/assets/icon/dd/`) + +Original RaidGuild service/community line icons defining core offerings and values. URL pattern: `{LIVE}/assets/icon/dd/.svg` + +`community`, `consultation`, `culture`, `dao`, `education`, `experiment`, `frontend`, `fullstack`, `learning`, `manifesto`, `marketing`, `robot`, `spear`, `sprint`, `swords` + +### 4.3 Magic — mystical/alchemical glyphs (`/assets/icon/magic/`) + +Mystical, transformative symbols evoking the spiritual side of the craft. URL pattern: `{LIVE}/assets/icon/magic/.svg` + +`candle`, `cauldron`, `chalice`, `crystal`, `feather`, `flask`, `hourglass`, `lantern`, `moon`, `pumpkin`, `sparkle`, `star`, `stars` + +--- + +## 5. Illustrations + +Technology-forward line art blending cyberpunk aesthetics with D&D heroism ("where blockchain meets fantasy, and builders become adventurers"). Format: **WebP**. + +**Download folder:** `{LIVE}/assets/webp/` · GitHub: +Midjourney prompts used to generate them: + +**Usage:** Pair with brand colors. **Maintain original aspect ratios — do not stretch or distort.** + +### 5.1 URL construction + +Each illustration is a combination of four dimensions. Build any URL as: + +``` +{LIVE}/assets/webp///-.webp # full-size +{LIVE}/assets/webp//thumbnails//-.webp # thumbnail +``` + +| Dimension | Allowed values | +| --- | --- | +| `` | `moloch500`, `moloch800`, `scroll100`, `scroll700` | +| `` | `c` (full color) · `bw` (black & white) | +| `` | `1440x1440` (square) · `1080x1440` (portrait) · `1440x550` (landscape) — **see which scenes belong to which size below** | + +> **Naming note:** illustration palette folders use the **full** names (`moloch500`, `scroll100`, …), **not** the `m500`/`s100` short codes used for logos and icons. A thumbnail lives under the **same palette** as its full-size asset (only `/thumbnails/` is inserted before the size). + +Every scene exists in all 4 palettes, both tones, and as full + thumbnail (= 16 files per scene). Example concrete URLs: + +- `{LIVE}/assets/webp/moloch500/1440x1440/forge-fire-c.webp` +- `{LIVE}/assets/webp/scroll100/1080x1440/tower-tree-bw.webp` +- `{LIVE}/assets/webp/moloch800/1440x550/ship-mech-c.webp` (thumbnail: `{LIVE}/assets/webp/moloch800/thumbnails/1440x550/ship-mech-c.webp`) + +### 5.2 Scenes by aspect ratio + +**Square — `1440x1440` (39 scenes):** +`castle-flag`, `castle-staff`, `desk-work`, `forge-anvil`, `forge-building`, `forge-duo`, `forge-fire`, `forge-work`, `portal-arch`, `ravens-flight`, `stairs-spiral`, `stone-monuments`, `table-castle`, `tree-mech`, `trio-arch`, `trio-backs`, `trio-beast`, `trio-mountain`, `trio-orb`, `trio-portal`, `trio-portraits`, `trio-profiles`, `trio-warriors`, `trio-weapons`, `trio-wings`, `warrior-solo`, `warriors-armed`, `warriors-belts`, `warriors-casual`, `warriors-confident`, `warriors-forward`, `warriors-magic`, `warriors-masked`, `warriors-moloch`, `warriors-orbs`, `warriors-ready`, `warriors-standing`, `warriors-triangle`, `warriors-white` + +**Portrait — `1080x1440` (12 scenes):** +`arch-gate`, `book-orb`, `compass-circular`, `raven-solo`, `stairs-cloud`, `stairs-curve`, `stairs-twist`, `stone-pedestal`, `tower-floating`, `tower-platform`, `tower-tree`, `tree-island` + +**Landscape — `1440x550` (2 scenes):** +`ship-front`, `ship-mech` + +> Total = 53 scenes × 4 palettes × 2 tones × (full + thumbnail) = **848 WebP files.** + +--- + +## 6. Fonts + +Download from `{LIVE}/fonts/` (GitHub: ). **URL = `{LIVE}/fonts/`** for every file below. + +| File | Family / weight | URL | +| --- | --- | --- | +| `MAZIUSREVIEW20.09-Regular.otf` | Mazius Display, Regular | `{LIVE}/fonts/MAZIUSREVIEW20.09-Regular.otf` | +| `MAZIUSREVIEW20.09-Regular.woff` | Mazius Display, Regular (woff) | `{LIVE}/fonts/MAZIUSREVIEW20.09-Regular.woff` | +| `MaziusDisplay-Bold.otf` | Mazius Display, Bold | `{LIVE}/fonts/MaziusDisplay-Bold.otf` | +| `MaziusDisplay-Extraitalic.otf` | Mazius Display, Extra Italic | `{LIVE}/fonts/MaziusDisplay-Extraitalic.otf` | +| `MaziusDisplay-ExtraItalicBold.otf` | Mazius Display, Extra Italic Bold | `{LIVE}/fonts/MaziusDisplay-ExtraItalicBold.otf` | +| `EBGaramond-VariableFont_wght.ttf` | EB Garamond (variable weight) | `{LIVE}/fonts/EBGaramond-VariableFont_wght.ttf` | +| `EBGaramond-Italic-VariableFont_wght.ttf` | EB Garamond Italic (variable weight) | `{LIVE}/fonts/EBGaramond-Italic-VariableFont_wght.ttf` | + +Ubuntu Mono is loaded from Google Fonts (no local file needed). + +--- + +## 7. Social avatars + +Square 400×400 PNG avatars for social profiles. Folder: `{LIVE}/assets/social/` + +| File | Use | URL | +| --- | --- | --- | +| `400x400_dark.png` | Dark background avatar | `{LIVE}/assets/social/400x400_dark.png` | +| `400x400_light.png` | Light background avatar | `{LIVE}/assets/social/400x400_light.png` | +| `400x400_red.png` | Red (Moloch) avatar | `{LIVE}/assets/social/400x400_red.png` | + +--- + +## 8. Full brand guidelines (PDF) + +The complete human-facing brand guidelines (2024 Q4 Refresh): + +- `{LIVE}/assets/RaidGuild_brand_guidelines.pdf` (~5.7 MB) +- Raw: `{RAW}/assets/RaidGuild_brand_guidelines.pdf` + +--- + +## 9. Agent quick-start checklist + +1. **Logo:** use `full-m500.svg`/`full-m800.svg` on light, `full-s100.svg` on dark. Never use the wordmark alone. +2. **Colors:** background `#F9F7E7` (Scroll 100), text `#29100A` (Moloch 800), primary/CTA `#BD482D` (Moloch 500). Full scales in §2.1. +3. **Type:** Mazius Display for headlines, EB Garamond for body, Ubuntu Mono for code. Download fonts from §6. +4. **Icons:** SVGs under `/assets/icon/{8bit,dd,magic}/`. Color with `fill`/`stroke`. Prefer over emoji. +5. **Illustrations:** build URLs via the §5.1 template; keep aspect ratios; pair with brand colors. +6. **Deeper dev guidance / components:** see `AGENTS.md` and `docs/ui-components.md` in the repo. + +--- + +*Maintenance: update this file whenever assets are added/renamed, palettes change, or the download base URLs move, so agents stay aligned with the source of truth.* diff --git a/public/assets/logos/ai/ai-mark-dark.svg b/public/assets/logos/ai/ai-mark-dark.svg new file mode 100644 index 0000000..80ee6e1 --- /dev/null +++ b/public/assets/logos/ai/ai-mark-dark.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/logos/ai/ai-mark-fg.svg b/public/assets/logos/ai/ai-mark-fg.svg new file mode 100644 index 0000000..98b600e --- /dev/null +++ b/public/assets/logos/ai/ai-mark-fg.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/logos/ai/ai-mark-teal.svg b/public/assets/logos/ai/ai-mark-teal.svg new file mode 100644 index 0000000..0f7f200 --- /dev/null +++ b/public/assets/logos/ai/ai-mark-teal.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/webp/1080x1440/arch-gate-bw.webp b/public/assets/webp/1080x1440/arch-gate-bw.webp deleted file mode 100644 index 2889d05..0000000 Binary files a/public/assets/webp/1080x1440/arch-gate-bw.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/arch-gate-c.webp b/public/assets/webp/1080x1440/arch-gate-c.webp deleted file mode 100644 index 1dcd2d0..0000000 Binary files a/public/assets/webp/1080x1440/arch-gate-c.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/book-orb-bw.webp b/public/assets/webp/1080x1440/book-orb-bw.webp deleted file mode 100644 index ec37495..0000000 Binary files a/public/assets/webp/1080x1440/book-orb-bw.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/book-orb-c.webp b/public/assets/webp/1080x1440/book-orb-c.webp deleted file mode 100644 index 3cf79b6..0000000 Binary files a/public/assets/webp/1080x1440/book-orb-c.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/compass-circular-bw.webp b/public/assets/webp/1080x1440/compass-circular-bw.webp deleted file mode 100644 index 29bc30c..0000000 Binary files a/public/assets/webp/1080x1440/compass-circular-bw.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/compass-circular-c.webp b/public/assets/webp/1080x1440/compass-circular-c.webp deleted file mode 100644 index bcc1d37..0000000 Binary files a/public/assets/webp/1080x1440/compass-circular-c.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/raven-solo-bw.webp b/public/assets/webp/1080x1440/raven-solo-bw.webp deleted file mode 100644 index ea74733..0000000 Binary files a/public/assets/webp/1080x1440/raven-solo-bw.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/raven-solo-c.webp b/public/assets/webp/1080x1440/raven-solo-c.webp deleted file mode 100644 index 264250b..0000000 Binary files a/public/assets/webp/1080x1440/raven-solo-c.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/stairs-cloud-bw.webp b/public/assets/webp/1080x1440/stairs-cloud-bw.webp deleted file mode 100644 index ddd9466..0000000 Binary files a/public/assets/webp/1080x1440/stairs-cloud-bw.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/stairs-cloud-c.webp b/public/assets/webp/1080x1440/stairs-cloud-c.webp deleted file mode 100644 index ebbd945..0000000 Binary files a/public/assets/webp/1080x1440/stairs-cloud-c.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/stairs-curve-bw.webp b/public/assets/webp/1080x1440/stairs-curve-bw.webp deleted file mode 100644 index e8563c4..0000000 Binary files a/public/assets/webp/1080x1440/stairs-curve-bw.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/stairs-curve-c.webp b/public/assets/webp/1080x1440/stairs-curve-c.webp deleted file mode 100644 index 2f68d54..0000000 Binary files a/public/assets/webp/1080x1440/stairs-curve-c.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/stairs-twist-bw.webp b/public/assets/webp/1080x1440/stairs-twist-bw.webp deleted file mode 100644 index 0cd8d99..0000000 Binary files a/public/assets/webp/1080x1440/stairs-twist-bw.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/stairs-twist-c.webp b/public/assets/webp/1080x1440/stairs-twist-c.webp deleted file mode 100644 index 461bac5..0000000 Binary files a/public/assets/webp/1080x1440/stairs-twist-c.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/stone-pedestal-bw.webp b/public/assets/webp/1080x1440/stone-pedestal-bw.webp deleted file mode 100644 index 06bb078..0000000 Binary files a/public/assets/webp/1080x1440/stone-pedestal-bw.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/stone-pedestal-c.webp b/public/assets/webp/1080x1440/stone-pedestal-c.webp deleted file mode 100644 index ffb94b6..0000000 Binary files a/public/assets/webp/1080x1440/stone-pedestal-c.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/tower-floating-bw.webp b/public/assets/webp/1080x1440/tower-floating-bw.webp deleted file mode 100644 index 668f6b1..0000000 Binary files a/public/assets/webp/1080x1440/tower-floating-bw.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/tower-floating-c.webp b/public/assets/webp/1080x1440/tower-floating-c.webp deleted file mode 100644 index f4377bd..0000000 Binary files a/public/assets/webp/1080x1440/tower-floating-c.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/tower-platform-bw.webp b/public/assets/webp/1080x1440/tower-platform-bw.webp deleted file mode 100644 index 1b95f93..0000000 Binary files a/public/assets/webp/1080x1440/tower-platform-bw.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/tower-platform-c.webp b/public/assets/webp/1080x1440/tower-platform-c.webp deleted file mode 100644 index 863f351..0000000 Binary files a/public/assets/webp/1080x1440/tower-platform-c.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/tower-tree-bw.webp b/public/assets/webp/1080x1440/tower-tree-bw.webp deleted file mode 100644 index a24d3cd..0000000 Binary files a/public/assets/webp/1080x1440/tower-tree-bw.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/tower-tree-c.webp b/public/assets/webp/1080x1440/tower-tree-c.webp deleted file mode 100644 index 33521a8..0000000 Binary files a/public/assets/webp/1080x1440/tower-tree-c.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/tree-island-bw.webp b/public/assets/webp/1080x1440/tree-island-bw.webp deleted file mode 100644 index 6d84621..0000000 Binary files a/public/assets/webp/1080x1440/tree-island-bw.webp and /dev/null differ diff --git a/public/assets/webp/1080x1440/tree-island-c.webp b/public/assets/webp/1080x1440/tree-island-c.webp deleted file mode 100644 index 4d452f8..0000000 Binary files a/public/assets/webp/1080x1440/tree-island-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/castle-flag-bw.webp b/public/assets/webp/1440x1440/castle-flag-bw.webp deleted file mode 100644 index 5bebe48..0000000 Binary files a/public/assets/webp/1440x1440/castle-flag-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/castle-flag-c.webp b/public/assets/webp/1440x1440/castle-flag-c.webp deleted file mode 100644 index d4b0372..0000000 Binary files a/public/assets/webp/1440x1440/castle-flag-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/castle-staff-bw.webp b/public/assets/webp/1440x1440/castle-staff-bw.webp deleted file mode 100644 index cb71975..0000000 Binary files a/public/assets/webp/1440x1440/castle-staff-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/castle-staff-c.webp b/public/assets/webp/1440x1440/castle-staff-c.webp deleted file mode 100644 index 7732e1d..0000000 Binary files a/public/assets/webp/1440x1440/castle-staff-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/desk-work-bw.webp b/public/assets/webp/1440x1440/desk-work-bw.webp deleted file mode 100644 index e8efcbf..0000000 Binary files a/public/assets/webp/1440x1440/desk-work-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/desk-work-c.webp b/public/assets/webp/1440x1440/desk-work-c.webp deleted file mode 100644 index c37abfd..0000000 Binary files a/public/assets/webp/1440x1440/desk-work-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/forge-anvil-bw.webp b/public/assets/webp/1440x1440/forge-anvil-bw.webp deleted file mode 100644 index 10993c6..0000000 Binary files a/public/assets/webp/1440x1440/forge-anvil-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/forge-anvil-c.webp b/public/assets/webp/1440x1440/forge-anvil-c.webp deleted file mode 100644 index ffbfbd4..0000000 Binary files a/public/assets/webp/1440x1440/forge-anvil-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/forge-building-bw.webp b/public/assets/webp/1440x1440/forge-building-bw.webp deleted file mode 100644 index 9fe04c3..0000000 Binary files a/public/assets/webp/1440x1440/forge-building-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/forge-building-c.webp b/public/assets/webp/1440x1440/forge-building-c.webp deleted file mode 100644 index 88e1d6b..0000000 Binary files a/public/assets/webp/1440x1440/forge-building-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/forge-duo-bw.webp b/public/assets/webp/1440x1440/forge-duo-bw.webp deleted file mode 100644 index 3f703ca..0000000 Binary files a/public/assets/webp/1440x1440/forge-duo-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/forge-duo-c.webp b/public/assets/webp/1440x1440/forge-duo-c.webp deleted file mode 100644 index b9e8d93..0000000 Binary files a/public/assets/webp/1440x1440/forge-duo-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/forge-fire-bw.webp b/public/assets/webp/1440x1440/forge-fire-bw.webp deleted file mode 100644 index d7ce3c0..0000000 Binary files a/public/assets/webp/1440x1440/forge-fire-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/forge-fire-c.webp b/public/assets/webp/1440x1440/forge-fire-c.webp deleted file mode 100644 index 9f7cc08..0000000 Binary files a/public/assets/webp/1440x1440/forge-fire-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/forge-work-bw.webp b/public/assets/webp/1440x1440/forge-work-bw.webp deleted file mode 100644 index 1e4dd42..0000000 Binary files a/public/assets/webp/1440x1440/forge-work-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/forge-work-c.webp b/public/assets/webp/1440x1440/forge-work-c.webp deleted file mode 100644 index 7f3fac2..0000000 Binary files a/public/assets/webp/1440x1440/forge-work-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/portal-arch-bw.webp b/public/assets/webp/1440x1440/portal-arch-bw.webp deleted file mode 100644 index 1b11ff3..0000000 Binary files a/public/assets/webp/1440x1440/portal-arch-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/portal-arch-c.webp b/public/assets/webp/1440x1440/portal-arch-c.webp deleted file mode 100644 index 887f1ad..0000000 Binary files a/public/assets/webp/1440x1440/portal-arch-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/ravens-flight-bw.webp b/public/assets/webp/1440x1440/ravens-flight-bw.webp deleted file mode 100644 index 0424810..0000000 Binary files a/public/assets/webp/1440x1440/ravens-flight-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/ravens-flight-c.webp b/public/assets/webp/1440x1440/ravens-flight-c.webp deleted file mode 100644 index a352a05..0000000 Binary files a/public/assets/webp/1440x1440/ravens-flight-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/stairs-spiral-bw.webp b/public/assets/webp/1440x1440/stairs-spiral-bw.webp deleted file mode 100644 index 8f29a66..0000000 Binary files a/public/assets/webp/1440x1440/stairs-spiral-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/stairs-spiral-c.webp b/public/assets/webp/1440x1440/stairs-spiral-c.webp deleted file mode 100644 index 91c7252..0000000 Binary files a/public/assets/webp/1440x1440/stairs-spiral-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/stone-monuments-bw.webp b/public/assets/webp/1440x1440/stone-monuments-bw.webp deleted file mode 100644 index bb6bb87..0000000 Binary files a/public/assets/webp/1440x1440/stone-monuments-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/stone-monuments-c.webp b/public/assets/webp/1440x1440/stone-monuments-c.webp deleted file mode 100644 index 5de990d..0000000 Binary files a/public/assets/webp/1440x1440/stone-monuments-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/table-castle-bw.webp b/public/assets/webp/1440x1440/table-castle-bw.webp deleted file mode 100644 index 445fff7..0000000 Binary files a/public/assets/webp/1440x1440/table-castle-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/table-castle-c.webp b/public/assets/webp/1440x1440/table-castle-c.webp deleted file mode 100644 index cbd4b5f..0000000 Binary files a/public/assets/webp/1440x1440/table-castle-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/tree-mech-bw.webp b/public/assets/webp/1440x1440/tree-mech-bw.webp deleted file mode 100644 index 635fcc5..0000000 Binary files a/public/assets/webp/1440x1440/tree-mech-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/tree-mech-c.webp b/public/assets/webp/1440x1440/tree-mech-c.webp deleted file mode 100644 index be6e09b..0000000 Binary files a/public/assets/webp/1440x1440/tree-mech-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-arch-bw.webp b/public/assets/webp/1440x1440/trio-arch-bw.webp deleted file mode 100644 index 5dace16..0000000 Binary files a/public/assets/webp/1440x1440/trio-arch-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-arch-c.webp b/public/assets/webp/1440x1440/trio-arch-c.webp deleted file mode 100644 index dd4ad8e..0000000 Binary files a/public/assets/webp/1440x1440/trio-arch-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-backs-bw.webp b/public/assets/webp/1440x1440/trio-backs-bw.webp deleted file mode 100644 index 34ac8bd..0000000 Binary files a/public/assets/webp/1440x1440/trio-backs-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-backs-c.webp b/public/assets/webp/1440x1440/trio-backs-c.webp deleted file mode 100644 index ce8917d..0000000 Binary files a/public/assets/webp/1440x1440/trio-backs-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-beast-bw.webp b/public/assets/webp/1440x1440/trio-beast-bw.webp deleted file mode 100644 index 11c260f..0000000 Binary files a/public/assets/webp/1440x1440/trio-beast-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-beast-c.webp b/public/assets/webp/1440x1440/trio-beast-c.webp deleted file mode 100644 index d26196e..0000000 Binary files a/public/assets/webp/1440x1440/trio-beast-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-mountain-bw.webp b/public/assets/webp/1440x1440/trio-mountain-bw.webp deleted file mode 100644 index db913f1..0000000 Binary files a/public/assets/webp/1440x1440/trio-mountain-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-mountain-c.webp b/public/assets/webp/1440x1440/trio-mountain-c.webp deleted file mode 100644 index f015831..0000000 Binary files a/public/assets/webp/1440x1440/trio-mountain-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-orb-bw.webp b/public/assets/webp/1440x1440/trio-orb-bw.webp deleted file mode 100644 index 1aacd86..0000000 Binary files a/public/assets/webp/1440x1440/trio-orb-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-orb-c.webp b/public/assets/webp/1440x1440/trio-orb-c.webp deleted file mode 100644 index 7ee1395..0000000 Binary files a/public/assets/webp/1440x1440/trio-orb-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-portal-bw.webp b/public/assets/webp/1440x1440/trio-portal-bw.webp deleted file mode 100644 index 6be4235..0000000 Binary files a/public/assets/webp/1440x1440/trio-portal-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-portal-c.webp b/public/assets/webp/1440x1440/trio-portal-c.webp deleted file mode 100644 index d446d57..0000000 Binary files a/public/assets/webp/1440x1440/trio-portal-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-portraits-bw.webp b/public/assets/webp/1440x1440/trio-portraits-bw.webp deleted file mode 100644 index 1063181..0000000 Binary files a/public/assets/webp/1440x1440/trio-portraits-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-portraits-c.webp b/public/assets/webp/1440x1440/trio-portraits-c.webp deleted file mode 100644 index 67995cb..0000000 Binary files a/public/assets/webp/1440x1440/trio-portraits-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-profiles-bw.webp b/public/assets/webp/1440x1440/trio-profiles-bw.webp deleted file mode 100644 index 48a5012..0000000 Binary files a/public/assets/webp/1440x1440/trio-profiles-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-profiles-c.webp b/public/assets/webp/1440x1440/trio-profiles-c.webp deleted file mode 100644 index 3185023..0000000 Binary files a/public/assets/webp/1440x1440/trio-profiles-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-warriors-bw.webp b/public/assets/webp/1440x1440/trio-warriors-bw.webp deleted file mode 100644 index 820c051..0000000 Binary files a/public/assets/webp/1440x1440/trio-warriors-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-warriors-c.webp b/public/assets/webp/1440x1440/trio-warriors-c.webp deleted file mode 100644 index 0249085..0000000 Binary files a/public/assets/webp/1440x1440/trio-warriors-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-weapons-bw.webp b/public/assets/webp/1440x1440/trio-weapons-bw.webp deleted file mode 100644 index 0f40ed0..0000000 Binary files a/public/assets/webp/1440x1440/trio-weapons-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-weapons-c.webp b/public/assets/webp/1440x1440/trio-weapons-c.webp deleted file mode 100644 index b42239d..0000000 Binary files a/public/assets/webp/1440x1440/trio-weapons-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-wings-bw.webp b/public/assets/webp/1440x1440/trio-wings-bw.webp deleted file mode 100644 index 3ce63f3..0000000 Binary files a/public/assets/webp/1440x1440/trio-wings-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/trio-wings-c.webp b/public/assets/webp/1440x1440/trio-wings-c.webp deleted file mode 100644 index da96339..0000000 Binary files a/public/assets/webp/1440x1440/trio-wings-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warrior-solo-bw.webp b/public/assets/webp/1440x1440/warrior-solo-bw.webp deleted file mode 100644 index e999dee..0000000 Binary files a/public/assets/webp/1440x1440/warrior-solo-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warrior-solo-c.webp b/public/assets/webp/1440x1440/warrior-solo-c.webp deleted file mode 100644 index 2c50723..0000000 Binary files a/public/assets/webp/1440x1440/warrior-solo-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-armed-bw.webp b/public/assets/webp/1440x1440/warriors-armed-bw.webp deleted file mode 100644 index 7ff93f0..0000000 Binary files a/public/assets/webp/1440x1440/warriors-armed-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-armed-c.webp b/public/assets/webp/1440x1440/warriors-armed-c.webp deleted file mode 100644 index 00bd192..0000000 Binary files a/public/assets/webp/1440x1440/warriors-armed-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-belts-bw.webp b/public/assets/webp/1440x1440/warriors-belts-bw.webp deleted file mode 100644 index f1f9e70..0000000 Binary files a/public/assets/webp/1440x1440/warriors-belts-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-belts-c.webp b/public/assets/webp/1440x1440/warriors-belts-c.webp deleted file mode 100644 index 9a56360..0000000 Binary files a/public/assets/webp/1440x1440/warriors-belts-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-casual-bw.webp b/public/assets/webp/1440x1440/warriors-casual-bw.webp deleted file mode 100644 index 8909c31..0000000 Binary files a/public/assets/webp/1440x1440/warriors-casual-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-casual-c.webp b/public/assets/webp/1440x1440/warriors-casual-c.webp deleted file mode 100644 index 165ec7f..0000000 Binary files a/public/assets/webp/1440x1440/warriors-casual-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-confident-bw.webp b/public/assets/webp/1440x1440/warriors-confident-bw.webp deleted file mode 100644 index f7ea3ab..0000000 Binary files a/public/assets/webp/1440x1440/warriors-confident-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-confident-c.webp b/public/assets/webp/1440x1440/warriors-confident-c.webp deleted file mode 100644 index d88655f..0000000 Binary files a/public/assets/webp/1440x1440/warriors-confident-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-forward-bw.webp b/public/assets/webp/1440x1440/warriors-forward-bw.webp deleted file mode 100644 index f5e78ea..0000000 Binary files a/public/assets/webp/1440x1440/warriors-forward-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-forward-c.webp b/public/assets/webp/1440x1440/warriors-forward-c.webp deleted file mode 100644 index 3eb3228..0000000 Binary files a/public/assets/webp/1440x1440/warriors-forward-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-magic-bw.webp b/public/assets/webp/1440x1440/warriors-magic-bw.webp deleted file mode 100644 index 2a53198..0000000 Binary files a/public/assets/webp/1440x1440/warriors-magic-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-magic-c.webp b/public/assets/webp/1440x1440/warriors-magic-c.webp deleted file mode 100644 index db2a31e..0000000 Binary files a/public/assets/webp/1440x1440/warriors-magic-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-masked-bw.webp b/public/assets/webp/1440x1440/warriors-masked-bw.webp deleted file mode 100644 index 9bac42e..0000000 Binary files a/public/assets/webp/1440x1440/warriors-masked-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-masked-c.webp b/public/assets/webp/1440x1440/warriors-masked-c.webp deleted file mode 100644 index 6d22e11..0000000 Binary files a/public/assets/webp/1440x1440/warriors-masked-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-moloch-bw.webp b/public/assets/webp/1440x1440/warriors-moloch-bw.webp deleted file mode 100644 index 5e88a67..0000000 Binary files a/public/assets/webp/1440x1440/warriors-moloch-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-moloch-c.webp b/public/assets/webp/1440x1440/warriors-moloch-c.webp deleted file mode 100644 index cde5697..0000000 Binary files a/public/assets/webp/1440x1440/warriors-moloch-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-orbs-bw.webp b/public/assets/webp/1440x1440/warriors-orbs-bw.webp deleted file mode 100644 index f84133e..0000000 Binary files a/public/assets/webp/1440x1440/warriors-orbs-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-orbs-c.webp b/public/assets/webp/1440x1440/warriors-orbs-c.webp deleted file mode 100644 index 6237c88..0000000 Binary files a/public/assets/webp/1440x1440/warriors-orbs-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-ready-bw.webp b/public/assets/webp/1440x1440/warriors-ready-bw.webp deleted file mode 100644 index eec5e0d..0000000 Binary files a/public/assets/webp/1440x1440/warriors-ready-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-ready-c.webp b/public/assets/webp/1440x1440/warriors-ready-c.webp deleted file mode 100644 index 8a34c81..0000000 Binary files a/public/assets/webp/1440x1440/warriors-ready-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-standing-bw.webp b/public/assets/webp/1440x1440/warriors-standing-bw.webp deleted file mode 100644 index f7acf23..0000000 Binary files a/public/assets/webp/1440x1440/warriors-standing-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-standing-c.webp b/public/assets/webp/1440x1440/warriors-standing-c.webp deleted file mode 100644 index 846c293..0000000 Binary files a/public/assets/webp/1440x1440/warriors-standing-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-triangle-bw.webp b/public/assets/webp/1440x1440/warriors-triangle-bw.webp deleted file mode 100644 index 79210ea..0000000 Binary files a/public/assets/webp/1440x1440/warriors-triangle-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-triangle-c.webp b/public/assets/webp/1440x1440/warriors-triangle-c.webp deleted file mode 100644 index e1d95da..0000000 Binary files a/public/assets/webp/1440x1440/warriors-triangle-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-white-bw.webp b/public/assets/webp/1440x1440/warriors-white-bw.webp deleted file mode 100644 index b55d75b..0000000 Binary files a/public/assets/webp/1440x1440/warriors-white-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x1440/warriors-white-c.webp b/public/assets/webp/1440x1440/warriors-white-c.webp deleted file mode 100644 index 9e009f6..0000000 Binary files a/public/assets/webp/1440x1440/warriors-white-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x550/ship-front-bw.webp b/public/assets/webp/1440x550/ship-front-bw.webp deleted file mode 100644 index 7098e5b..0000000 Binary files a/public/assets/webp/1440x550/ship-front-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x550/ship-front-c.webp b/public/assets/webp/1440x550/ship-front-c.webp deleted file mode 100644 index 44046e2..0000000 Binary files a/public/assets/webp/1440x550/ship-front-c.webp and /dev/null differ diff --git a/public/assets/webp/1440x550/ship-mech-bw.webp b/public/assets/webp/1440x550/ship-mech-bw.webp deleted file mode 100644 index 0879eb8..0000000 Binary files a/public/assets/webp/1440x550/ship-mech-bw.webp and /dev/null differ diff --git a/public/assets/webp/1440x550/ship-mech-c.webp b/public/assets/webp/1440x550/ship-mech-c.webp deleted file mode 100644 index 2dedadb..0000000 Binary files a/public/assets/webp/1440x550/ship-mech-c.webp and /dev/null differ diff --git a/public/assets/webp/moloch500/1080x1440/arch-gate-bw.webp b/public/assets/webp/moloch500/1080x1440/arch-gate-bw.webp new file mode 100644 index 0000000..e880154 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/arch-gate-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1853ef9ce5c64c766302247add663b66d742c8f394f3e66600f0e078fa55a58 +size 465070 diff --git a/public/assets/webp/moloch500/1080x1440/arch-gate-c.webp b/public/assets/webp/moloch500/1080x1440/arch-gate-c.webp new file mode 100644 index 0000000..380a14c --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/arch-gate-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c5ae69ac3cebb41a1de0429ac68068b571d4cc5359d018fe2ba5692f39c11a1 +size 886910 diff --git a/public/assets/webp/moloch500/1080x1440/book-orb-bw.webp b/public/assets/webp/moloch500/1080x1440/book-orb-bw.webp new file mode 100644 index 0000000..da90db7 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/book-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa1ea1f04948026f1ba5c62985eb91dae0e82c7ac4c3b8a043023f7c0733fc0d +size 430660 diff --git a/public/assets/webp/moloch500/1080x1440/book-orb-c.webp b/public/assets/webp/moloch500/1080x1440/book-orb-c.webp new file mode 100644 index 0000000..5566a90 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/book-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a4484397cbc8586eb09236b21a0de5a08f08b5f137f0ee48d445cf29429c076 +size 664248 diff --git a/public/assets/webp/moloch500/1080x1440/compass-circular-bw.webp b/public/assets/webp/moloch500/1080x1440/compass-circular-bw.webp new file mode 100644 index 0000000..55e1e18 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/compass-circular-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16727aacb98be464797009ccd8c60661be474599e8fa867ef3e0a685af6e1013 +size 446602 diff --git a/public/assets/webp/moloch500/1080x1440/compass-circular-c.webp b/public/assets/webp/moloch500/1080x1440/compass-circular-c.webp new file mode 100644 index 0000000..f573644 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/compass-circular-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2345423f25df2019e8694e6e5843043e9083f42a77adf197ed7799c9e97866e9 +size 737788 diff --git a/public/assets/webp/moloch500/1080x1440/raven-solo-bw.webp b/public/assets/webp/moloch500/1080x1440/raven-solo-bw.webp new file mode 100644 index 0000000..a152238 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/raven-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf2e75ad48ff943acac9a4e7900734c3e7eb0bf6092eef5f0f1c946d72e0a266 +size 378340 diff --git a/public/assets/webp/moloch500/1080x1440/raven-solo-c.webp b/public/assets/webp/moloch500/1080x1440/raven-solo-c.webp new file mode 100644 index 0000000..ef82a93 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/raven-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78e0701c7ef03c2a22d5d902b0c40bd0ebfa374c2c7954e2f7422f07e0b9acae +size 670104 diff --git a/public/assets/webp/moloch500/1080x1440/stairs-cloud-bw.webp b/public/assets/webp/moloch500/1080x1440/stairs-cloud-bw.webp new file mode 100644 index 0000000..b2f01f6 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/stairs-cloud-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b564ae8875c04831b6faa0c19937f1fcfb0b6007f96a38630bd764cd1b837065 +size 519712 diff --git a/public/assets/webp/moloch500/1080x1440/stairs-cloud-c.webp b/public/assets/webp/moloch500/1080x1440/stairs-cloud-c.webp new file mode 100644 index 0000000..750998d --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/stairs-cloud-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcbb27c2273510ff0497c45bf55b44e03e0ca21ecf02b0fd81dd0b33bd9e116f +size 921440 diff --git a/public/assets/webp/moloch500/1080x1440/stairs-curve-bw.webp b/public/assets/webp/moloch500/1080x1440/stairs-curve-bw.webp new file mode 100644 index 0000000..ffd5d55 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/stairs-curve-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4409d5cce454b0263453c64a19b83312c0b76a3a988113756e177895eb35580d +size 432844 diff --git a/public/assets/webp/moloch500/1080x1440/stairs-curve-c.webp b/public/assets/webp/moloch500/1080x1440/stairs-curve-c.webp new file mode 100644 index 0000000..f6c6a22 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/stairs-curve-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3118e532b0df2a0cf9cb5886122bd1eb34e8216c6bb8a815e3b2a84801f05f7 +size 704284 diff --git a/public/assets/webp/moloch500/1080x1440/stairs-twist-bw.webp b/public/assets/webp/moloch500/1080x1440/stairs-twist-bw.webp new file mode 100644 index 0000000..28d3155 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/stairs-twist-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1038ddf0591913cf27919b1e660c1f613ea43b830df545ffb811de7f296231a8 +size 359178 diff --git a/public/assets/webp/moloch500/1080x1440/stairs-twist-c.webp b/public/assets/webp/moloch500/1080x1440/stairs-twist-c.webp new file mode 100644 index 0000000..793a109 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/stairs-twist-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e83763519167e2f9e1ba79d91652fc9a253dbda3c9cadf2d512be26cb3d7180 +size 608510 diff --git a/public/assets/webp/moloch500/1080x1440/stone-pedestal-bw.webp b/public/assets/webp/moloch500/1080x1440/stone-pedestal-bw.webp new file mode 100644 index 0000000..acf5410 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/stone-pedestal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88f1661577bf7ad0eecc31bc8d9139a22850b65cfd69f255728965b746b1b26a +size 365314 diff --git a/public/assets/webp/moloch500/1080x1440/stone-pedestal-c.webp b/public/assets/webp/moloch500/1080x1440/stone-pedestal-c.webp new file mode 100644 index 0000000..17c708b --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/stone-pedestal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e16f3cc78e3dee79f0e0abacc69888d748a5f26e62fc3d2f75a40fb199fe06 +size 524364 diff --git a/public/assets/webp/moloch500/1080x1440/tower-floating-bw.webp b/public/assets/webp/moloch500/1080x1440/tower-floating-bw.webp new file mode 100644 index 0000000..983de4b --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/tower-floating-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bff58638e34128b590b1ed060abfa2f69b75d3018341b6ab0afb5834caff79b +size 239088 diff --git a/public/assets/webp/moloch500/1080x1440/tower-floating-c.webp b/public/assets/webp/moloch500/1080x1440/tower-floating-c.webp new file mode 100644 index 0000000..59fd007 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/tower-floating-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:045d8934e63579dd624af4a2accfa8be4b0b9c1946f56691a0e615a1c3490115 +size 371946 diff --git a/public/assets/webp/moloch500/1080x1440/tower-platform-bw.webp b/public/assets/webp/moloch500/1080x1440/tower-platform-bw.webp new file mode 100644 index 0000000..7db11b2 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/tower-platform-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd910e002060977ae30a9ca7befeac896e58f6cbf0e949f04aac4522fab74a7e +size 509168 diff --git a/public/assets/webp/moloch500/1080x1440/tower-platform-c.webp b/public/assets/webp/moloch500/1080x1440/tower-platform-c.webp new file mode 100644 index 0000000..c262d6e --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/tower-platform-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc194fa40e659f47756a5c1a48ed4014e2eb3fbd9f33019002a0d0553cdc12d0 +size 962010 diff --git a/public/assets/webp/moloch500/1080x1440/tower-tree-bw.webp b/public/assets/webp/moloch500/1080x1440/tower-tree-bw.webp new file mode 100644 index 0000000..2f861bd --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/tower-tree-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6067ce7e8ecd82cfa3d237352631622ddd91489529d0be32028d3c13d0b3cc31 +size 405666 diff --git a/public/assets/webp/moloch500/1080x1440/tower-tree-c.webp b/public/assets/webp/moloch500/1080x1440/tower-tree-c.webp new file mode 100644 index 0000000..e9f4fd5 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/tower-tree-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:548342e2d560f1810cefc564636910150cebde5915ede7a954dcb033073cb228 +size 637894 diff --git a/public/assets/webp/moloch500/1080x1440/tree-island-bw.webp b/public/assets/webp/moloch500/1080x1440/tree-island-bw.webp new file mode 100644 index 0000000..816fd34 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/tree-island-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19d51d6c771b87262fdbdc4ecd869dc447d4f0874615915debc7922b659f1566 +size 448066 diff --git a/public/assets/webp/moloch500/1080x1440/tree-island-c.webp b/public/assets/webp/moloch500/1080x1440/tree-island-c.webp new file mode 100644 index 0000000..3477e06 --- /dev/null +++ b/public/assets/webp/moloch500/1080x1440/tree-island-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b07c3588c35d1b94c087f25865f052d7bc25c90233ab42da9f502706246130 +size 763848 diff --git a/public/assets/webp/moloch500/1440x1440/castle-flag-bw.webp b/public/assets/webp/moloch500/1440x1440/castle-flag-bw.webp new file mode 100644 index 0000000..380a5a1 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/castle-flag-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abd4a6f9b04e45162f3ea725e26b2ce08aa5cb815104d609c7d8da42be1abed0 +size 792216 diff --git a/public/assets/webp/moloch500/1440x1440/castle-flag-c.webp b/public/assets/webp/moloch500/1440x1440/castle-flag-c.webp new file mode 100644 index 0000000..279092a --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/castle-flag-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aed04e1766ff11d03a08a27e2d14e79900fc46c2ed90eb86925c8ec7fb763320 +size 893206 diff --git a/public/assets/webp/moloch500/1440x1440/castle-staff-bw.webp b/public/assets/webp/moloch500/1440x1440/castle-staff-bw.webp new file mode 100644 index 0000000..c9f5ab6 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/castle-staff-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f30e813c24ea4795244417af6e74d8a64702269705daec2b995505fc9feb45 +size 917924 diff --git a/public/assets/webp/moloch500/1440x1440/castle-staff-c.webp b/public/assets/webp/moloch500/1440x1440/castle-staff-c.webp new file mode 100644 index 0000000..b583c78 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/castle-staff-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c24dc80da8315895b7feda68a1b0ed603e50a5f36b8da025c3a96618daaee24b +size 1227100 diff --git a/public/assets/webp/moloch500/1440x1440/desk-work-bw.webp b/public/assets/webp/moloch500/1440x1440/desk-work-bw.webp new file mode 100644 index 0000000..70e9405 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/desk-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:552f35917ff2bbc5a9b0b5e77cf45ed2b9c3e9b3dd1e17a6ab5f42e24fd501d2 +size 844324 diff --git a/public/assets/webp/moloch500/1440x1440/desk-work-c.webp b/public/assets/webp/moloch500/1440x1440/desk-work-c.webp new file mode 100644 index 0000000..87cfc3b --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/desk-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829ae7606e4424301c410218ac1e94ed947bc98b26610f9ee7a2e92d4010576c +size 1588426 diff --git a/public/assets/webp/moloch500/1440x1440/forge-anvil-bw.webp b/public/assets/webp/moloch500/1440x1440/forge-anvil-bw.webp new file mode 100644 index 0000000..0f9ba75 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/forge-anvil-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c866a798ffe8cc22c457f4dba12e2a53048ddaaf582e14f2129d44439b1a9a0 +size 1005410 diff --git a/public/assets/webp/moloch500/1440x1440/forge-anvil-c.webp b/public/assets/webp/moloch500/1440x1440/forge-anvil-c.webp new file mode 100644 index 0000000..5692dc8 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/forge-anvil-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af72002f3cb74fd4f60d71da66c36a7a02ffbf0ff9bbfe695aa614554ce8dd1f +size 1702960 diff --git a/public/assets/webp/moloch500/1440x1440/forge-building-bw.webp b/public/assets/webp/moloch500/1440x1440/forge-building-bw.webp new file mode 100644 index 0000000..cb12928 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/forge-building-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370d70380a69707e46eb4c00d17f34df366b0d36a6dfc9e904ea0a46336c6afe +size 797378 diff --git a/public/assets/webp/moloch500/1440x1440/forge-building-c.webp b/public/assets/webp/moloch500/1440x1440/forge-building-c.webp new file mode 100644 index 0000000..8d467ca --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/forge-building-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e531561d857580626678b27c0d02d3b2b896385d561268ce2b9d980e531cf2b +size 1223560 diff --git a/public/assets/webp/moloch500/1440x1440/forge-duo-bw.webp b/public/assets/webp/moloch500/1440x1440/forge-duo-bw.webp new file mode 100644 index 0000000..814f278 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/forge-duo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:240090a242ec53c69b66ee6f3886ecb5272ed75ce273ce27a517b8bc55288f98 +size 829616 diff --git a/public/assets/webp/moloch500/1440x1440/forge-duo-c.webp b/public/assets/webp/moloch500/1440x1440/forge-duo-c.webp new file mode 100644 index 0000000..740558a --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/forge-duo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa94714e2c7c532595ca0d295af7368c6c16abf91d283dc4a435f3af9e3dfd1c +size 1376188 diff --git a/public/assets/webp/moloch500/1440x1440/forge-fire-bw.webp b/public/assets/webp/moloch500/1440x1440/forge-fire-bw.webp new file mode 100644 index 0000000..99ace33 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/forge-fire-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c2cf7e5ff15e6527f61400409c1156b6acc5ef77c148ef751f9c31cd48d6f0 +size 930898 diff --git a/public/assets/webp/moloch500/1440x1440/forge-fire-c.webp b/public/assets/webp/moloch500/1440x1440/forge-fire-c.webp new file mode 100644 index 0000000..1505adb --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/forge-fire-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:751d65faff3e6e79f5495ba24a1c23ce7861153b0e49ad5d4bbd01bf59641268 +size 1529008 diff --git a/public/assets/webp/moloch500/1440x1440/forge-work-bw.webp b/public/assets/webp/moloch500/1440x1440/forge-work-bw.webp new file mode 100644 index 0000000..0e64660 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/forge-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81536c5bcb4b3dfa832e0b94b4299e137e5fc9f3c53c2e47e059ad44ca7c72e7 +size 865048 diff --git a/public/assets/webp/moloch500/1440x1440/forge-work-c.webp b/public/assets/webp/moloch500/1440x1440/forge-work-c.webp new file mode 100644 index 0000000..cef90d2 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/forge-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8d6f6fb8e357c2f79808225e7b80871412db8761635c888dedd26c45bf73008 +size 1305288 diff --git a/public/assets/webp/moloch500/1440x1440/portal-arch-bw.webp b/public/assets/webp/moloch500/1440x1440/portal-arch-bw.webp new file mode 100644 index 0000000..19f916f --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/portal-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7de924b1da487e4caf671c48f9cbe2ce5434d908b1981873a89b7901fa2063 +size 1045230 diff --git a/public/assets/webp/moloch500/1440x1440/portal-arch-c.webp b/public/assets/webp/moloch500/1440x1440/portal-arch-c.webp new file mode 100644 index 0000000..2beda23 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/portal-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:472b3cbedfefab34c5577b9f589b6e20b8f52d2ff3363bb932f0291911f04ef7 +size 2209118 diff --git a/public/assets/webp/moloch500/1440x1440/ravens-flight-bw.webp b/public/assets/webp/moloch500/1440x1440/ravens-flight-bw.webp new file mode 100644 index 0000000..4f4d37d --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/ravens-flight-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae534f4a08dd223a99a24c06f0944ac1a923b0d465a4632faaa7bce1b2792e7a +size 866614 diff --git a/public/assets/webp/moloch500/1440x1440/ravens-flight-c.webp b/public/assets/webp/moloch500/1440x1440/ravens-flight-c.webp new file mode 100644 index 0000000..13cac95 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/ravens-flight-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:039e474a5ad2e3dfa1fd492aab42d1156b0be1261d58c3b29935df3398f53833 +size 1263332 diff --git a/public/assets/webp/moloch500/1440x1440/stairs-spiral-bw.webp b/public/assets/webp/moloch500/1440x1440/stairs-spiral-bw.webp new file mode 100644 index 0000000..228fa1f --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/stairs-spiral-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c4bf26a1247c1f66af111f742cf543e8d2cf55c1a2577fce90e99f0577a871 +size 709738 diff --git a/public/assets/webp/moloch500/1440x1440/stairs-spiral-c.webp b/public/assets/webp/moloch500/1440x1440/stairs-spiral-c.webp new file mode 100644 index 0000000..1dfdcc5 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/stairs-spiral-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e287d333a9b690cbf1a3b6ed8678463b94fb89fc34d61f870e370a6f8f457f8b +size 1053282 diff --git a/public/assets/webp/moloch500/1440x1440/stone-monuments-bw.webp b/public/assets/webp/moloch500/1440x1440/stone-monuments-bw.webp new file mode 100644 index 0000000..49d6c4e --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/stone-monuments-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16ddd1df19cc4ff17443b355e171af33e29b6512659a0f1ff2fa1f852e9d520a +size 840424 diff --git a/public/assets/webp/moloch500/1440x1440/stone-monuments-c.webp b/public/assets/webp/moloch500/1440x1440/stone-monuments-c.webp new file mode 100644 index 0000000..6044a87 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/stone-monuments-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b802298db5fce708600c43264850bab198d2f976d759b07c01f4b68297314607 +size 1234176 diff --git a/public/assets/webp/moloch500/1440x1440/table-castle-bw.webp b/public/assets/webp/moloch500/1440x1440/table-castle-bw.webp new file mode 100644 index 0000000..7610738 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/table-castle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa2c5609afb9ebb42f1c61fb000df749ce3a4469a5e0e157403dcf1c7debbeaf +size 797452 diff --git a/public/assets/webp/moloch500/1440x1440/table-castle-c.webp b/public/assets/webp/moloch500/1440x1440/table-castle-c.webp new file mode 100644 index 0000000..199ff33 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/table-castle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f57124278502a96be98d3a074cd27ffbd0c4515a9597c4861dbd58a94e12772 +size 1324476 diff --git a/public/assets/webp/moloch500/1440x1440/tree-mech-bw.webp b/public/assets/webp/moloch500/1440x1440/tree-mech-bw.webp new file mode 100644 index 0000000..37e23d1 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/tree-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee9eae98be574edaad22899f7a97e5c9a37fbbdb679e972727c1873e8a7f5f42 +size 1031556 diff --git a/public/assets/webp/moloch500/1440x1440/tree-mech-c.webp b/public/assets/webp/moloch500/1440x1440/tree-mech-c.webp new file mode 100644 index 0000000..6345db9 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/tree-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7c04b88983ee3665118c7e675ea203337d60d6aa64f172398830e5dcd48be99 +size 1964448 diff --git a/public/assets/webp/moloch500/1440x1440/trio-arch-bw.webp b/public/assets/webp/moloch500/1440x1440/trio-arch-bw.webp new file mode 100644 index 0000000..917481e --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6022f6e86f6f66effc28b61724956dd1eeab0612df7d49ac7fadcf439fb965c4 +size 858560 diff --git a/public/assets/webp/moloch500/1440x1440/trio-arch-c.webp b/public/assets/webp/moloch500/1440x1440/trio-arch-c.webp new file mode 100644 index 0000000..ce60029 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d8bf420456ceeb1f5dcfee56a197de074685189057190e8cb0d22b6a3ed3c54 +size 1474490 diff --git a/public/assets/webp/moloch500/1440x1440/trio-backs-bw.webp b/public/assets/webp/moloch500/1440x1440/trio-backs-bw.webp new file mode 100644 index 0000000..556574b --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-backs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a99a2b5e6e5b5422538df14e4efb8ac00e2b70a31e002aaf74cdc75d6e3b319 +size 1063386 diff --git a/public/assets/webp/moloch500/1440x1440/trio-backs-c.webp b/public/assets/webp/moloch500/1440x1440/trio-backs-c.webp new file mode 100644 index 0000000..5759a70 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-backs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fbfe23bbc2887bac9b9eabd6433cc5e16562be0d8d0c6258dcdb4f2114a348c +size 1621198 diff --git a/public/assets/webp/moloch500/1440x1440/trio-beast-bw.webp b/public/assets/webp/moloch500/1440x1440/trio-beast-bw.webp new file mode 100644 index 0000000..6731d55 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-beast-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9853c62eb1e7b1c35a894bd03e2506aa6fd01d440c843778aea7cf53d1b8f74 +size 821138 diff --git a/public/assets/webp/moloch500/1440x1440/trio-beast-c.webp b/public/assets/webp/moloch500/1440x1440/trio-beast-c.webp new file mode 100644 index 0000000..b601a46 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-beast-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:996da7664c7aef8bf3059664704e8507215c32669d186cc95dea6405b7355a99 +size 1298852 diff --git a/public/assets/webp/moloch500/1440x1440/trio-mountain-bw.webp b/public/assets/webp/moloch500/1440x1440/trio-mountain-bw.webp new file mode 100644 index 0000000..7a59375 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-mountain-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a3292904b554abd71aa27820122b91b7e916b701904c4c73aa114198842f216 +size 1009700 diff --git a/public/assets/webp/moloch500/1440x1440/trio-mountain-c.webp b/public/assets/webp/moloch500/1440x1440/trio-mountain-c.webp new file mode 100644 index 0000000..85a4cf2 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-mountain-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9fdb8523291c8ff5ecbe50905fc1c0246ce463a76a51473084d9eeeb698397 +size 1851518 diff --git a/public/assets/webp/moloch500/1440x1440/trio-orb-bw.webp b/public/assets/webp/moloch500/1440x1440/trio-orb-bw.webp new file mode 100644 index 0000000..d6e824a --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09b4cc70f1932400c5caa6acd8cfaec1cda44b516e1325deeff69b7257ca6b6f +size 815834 diff --git a/public/assets/webp/moloch500/1440x1440/trio-orb-c.webp b/public/assets/webp/moloch500/1440x1440/trio-orb-c.webp new file mode 100644 index 0000000..720aac5 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a232b0d0bad1869735abd5dc2531bf2711af3c50f4978f58af6898dd0a2da0a5 +size 1282958 diff --git a/public/assets/webp/moloch500/1440x1440/trio-portal-bw.webp b/public/assets/webp/moloch500/1440x1440/trio-portal-bw.webp new file mode 100644 index 0000000..3458127 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-portal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8801b659e328313aa3117162722bcaa76118e190fe56370016871681715815a8 +size 855024 diff --git a/public/assets/webp/moloch500/1440x1440/trio-portal-c.webp b/public/assets/webp/moloch500/1440x1440/trio-portal-c.webp new file mode 100644 index 0000000..9c91a4e --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-portal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4be4c21c6b2668e5c3ecb679b0ba696af920bff34ab48dcadd148af677074f25 +size 1595508 diff --git a/public/assets/webp/moloch500/1440x1440/trio-portraits-bw.webp b/public/assets/webp/moloch500/1440x1440/trio-portraits-bw.webp new file mode 100644 index 0000000..a60f5fc --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-portraits-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07bac54efaf847ca2c00c33ce01b82d81a55a7f3668f505ca8c06765771c70d5 +size 728830 diff --git a/public/assets/webp/moloch500/1440x1440/trio-portraits-c.webp b/public/assets/webp/moloch500/1440x1440/trio-portraits-c.webp new file mode 100644 index 0000000..35e7732 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-portraits-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4de597f89ddefa3167ce621ef20161b3fc64b36ca8e67eb0b1e32f9f37e7209f +size 1152314 diff --git a/public/assets/webp/moloch500/1440x1440/trio-profiles-bw.webp b/public/assets/webp/moloch500/1440x1440/trio-profiles-bw.webp new file mode 100644 index 0000000..7713301 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-profiles-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95492f7157877e320f0cb9e60532a4d8302a8b828b4d1102c068350592a96aa9 +size 791100 diff --git a/public/assets/webp/moloch500/1440x1440/trio-profiles-c.webp b/public/assets/webp/moloch500/1440x1440/trio-profiles-c.webp new file mode 100644 index 0000000..53d63f9 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-profiles-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8512fa7ce008e4526f4c0a350d36f9fdc1c6e696ef8ca7fe59ea5017f54ae7ae +size 1369816 diff --git a/public/assets/webp/moloch500/1440x1440/trio-warriors-bw.webp b/public/assets/webp/moloch500/1440x1440/trio-warriors-bw.webp new file mode 100644 index 0000000..b4edb83 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-warriors-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d349f7d071ee786631d48a91d14ca9acf72f053b77f75b6303ec8b901b7615a +size 754556 diff --git a/public/assets/webp/moloch500/1440x1440/trio-warriors-c.webp b/public/assets/webp/moloch500/1440x1440/trio-warriors-c.webp new file mode 100644 index 0000000..ef158e2 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-warriors-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3fa928f9747f17dba496f940ff6a5ea8cdd003345f78e2b85de4ed668edbe92 +size 1253518 diff --git a/public/assets/webp/moloch500/1440x1440/trio-weapons-bw.webp b/public/assets/webp/moloch500/1440x1440/trio-weapons-bw.webp new file mode 100644 index 0000000..6803231 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-weapons-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f78d92e49bbef3d07bd15a08ae347486a348c5edd0dbc7dff1506f0163190f8 +size 887130 diff --git a/public/assets/webp/moloch500/1440x1440/trio-weapons-c.webp b/public/assets/webp/moloch500/1440x1440/trio-weapons-c.webp new file mode 100644 index 0000000..391dd1b --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-weapons-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d3f9223c3d1d0907678eaac02fac57be21b4ca15e8dc3d9242393ba9cc3c66f +size 1778484 diff --git a/public/assets/webp/moloch500/1440x1440/trio-wings-bw.webp b/public/assets/webp/moloch500/1440x1440/trio-wings-bw.webp new file mode 100644 index 0000000..d212beb --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-wings-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63c22b6348ca3f54f86bed21c5213154e42cf8e54df3e461fca0ca5498288266 +size 695720 diff --git a/public/assets/webp/moloch500/1440x1440/trio-wings-c.webp b/public/assets/webp/moloch500/1440x1440/trio-wings-c.webp new file mode 100644 index 0000000..28d8f4f --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/trio-wings-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e204614cc3b5d6ab5275c3123c56f5f7a8075b04d51fcb76975ef423d165a31f +size 1206386 diff --git a/public/assets/webp/moloch500/1440x1440/warrior-solo-bw.webp b/public/assets/webp/moloch500/1440x1440/warrior-solo-bw.webp new file mode 100644 index 0000000..3c7da90 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warrior-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5f285263cdb9f77d3f3c492e13c859cac6c8a6161018431a9d3008a1d2f8208 +size 610494 diff --git a/public/assets/webp/moloch500/1440x1440/warrior-solo-c.webp b/public/assets/webp/moloch500/1440x1440/warrior-solo-c.webp new file mode 100644 index 0000000..90e6c6e --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warrior-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f4552289dc5b47d3826324033fb0b98747a9115aad2ab2d8f7b8ddbe7e95c0 +size 768516 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-armed-bw.webp b/public/assets/webp/moloch500/1440x1440/warriors-armed-bw.webp new file mode 100644 index 0000000..988c743 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-armed-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2df2d40d8a82cfc470779d2268e6f75e991ef777458ae36754f64fb67109b818 +size 704114 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-armed-c.webp b/public/assets/webp/moloch500/1440x1440/warriors-armed-c.webp new file mode 100644 index 0000000..35574d1 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-armed-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18532667b4f3403ccc5edbcde6c91d1e096b339267360cc909fc33463d061771 +size 1258248 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-belts-bw.webp b/public/assets/webp/moloch500/1440x1440/warriors-belts-bw.webp new file mode 100644 index 0000000..697a62b --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-belts-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0315714b816b9c4854fea058f52c4a7afda4ce441f20d8e2e75a02354c6f3d9e +size 829214 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-belts-c.webp b/public/assets/webp/moloch500/1440x1440/warriors-belts-c.webp new file mode 100644 index 0000000..656b58a --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-belts-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6c21ca5b7598ce2d86c4e958bc1be2d4dcb543e359767615dc4eea57a46c04 +size 1367508 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-casual-bw.webp b/public/assets/webp/moloch500/1440x1440/warriors-casual-bw.webp new file mode 100644 index 0000000..7ded5ea --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-casual-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8534e594f48db44a7d3e2cbce646a1e0a6bf8eae5063be40dd56e59a155a1bb1 +size 726852 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-casual-c.webp b/public/assets/webp/moloch500/1440x1440/warriors-casual-c.webp new file mode 100644 index 0000000..14ac81b --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-casual-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc3a99248849b030b5d4c556317a0efff6e397ba710eef242413d6657a43eb85 +size 1084010 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-confident-bw.webp b/public/assets/webp/moloch500/1440x1440/warriors-confident-bw.webp new file mode 100644 index 0000000..27d5a81 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-confident-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e53b737f08455d4861609f372b72b30ba625fa4e716bc265878209094df85385 +size 810676 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-confident-c.webp b/public/assets/webp/moloch500/1440x1440/warriors-confident-c.webp new file mode 100644 index 0000000..36ec976 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-confident-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38feb9e541a0de5aae6a4dd2bc179d4d9eb9b18f127a259863d515674c54594e +size 1256844 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-forward-bw.webp b/public/assets/webp/moloch500/1440x1440/warriors-forward-bw.webp new file mode 100644 index 0000000..a3d93fb --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-forward-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50c269e7a4a98a3093cdd08a5f1cba6614423c95a35b41901a1e71266745c79b +size 815888 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-forward-c.webp b/public/assets/webp/moloch500/1440x1440/warriors-forward-c.webp new file mode 100644 index 0000000..072e923 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-forward-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5921dbb13064cce94f56db6ffa72ae80d02e2b65257972d55b29f69fd9968282 +size 1275054 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-magic-bw.webp b/public/assets/webp/moloch500/1440x1440/warriors-magic-bw.webp new file mode 100644 index 0000000..2206e40 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-magic-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b79029262e2d5133fceb464f52f65652a187c3b2be5ff8560e1f9c0b570e45ec +size 833196 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-magic-c.webp b/public/assets/webp/moloch500/1440x1440/warriors-magic-c.webp new file mode 100644 index 0000000..fb53a5e --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-magic-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c24105204d844bc28870139138952e8eb6474af49b29be091ffcd08de002e2d5 +size 1607144 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-masked-bw.webp b/public/assets/webp/moloch500/1440x1440/warriors-masked-bw.webp new file mode 100644 index 0000000..d62dcb7 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-masked-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfa7e74c45c2ffe39e5f50ee3aa7347c2322c7dc277954ead4d0e96c9dbce418 +size 797790 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-masked-c.webp b/public/assets/webp/moloch500/1440x1440/warriors-masked-c.webp new file mode 100644 index 0000000..2c80965 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-masked-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d5be6345efc751ec01ea516d38bc78c5a2fd226e87818512e67726cecd112ad +size 1428580 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-moloch-bw.webp b/public/assets/webp/moloch500/1440x1440/warriors-moloch-bw.webp new file mode 100644 index 0000000..eb8c083 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-moloch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb39683c2dc11628b495c60b81e293ac7d3ec98bf4271ddda1392b06de2323e +size 913510 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-moloch-c.webp b/public/assets/webp/moloch500/1440x1440/warriors-moloch-c.webp new file mode 100644 index 0000000..90596b1 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-moloch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:180ef06f40ff330b5f93f4d3f975dbc952c8d0eb0882a1f66a91a997df15f111 +size 1420216 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-orbs-bw.webp b/public/assets/webp/moloch500/1440x1440/warriors-orbs-bw.webp new file mode 100644 index 0000000..8a1d32c --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-orbs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c00d81974c9e8b03c7c38b1818639c5dae69f9f908e5fdf84d2cfe80a3e715a +size 1104510 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-orbs-c.webp b/public/assets/webp/moloch500/1440x1440/warriors-orbs-c.webp new file mode 100644 index 0000000..7787889 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-orbs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6f20cd7baad002c5ec0690ac2e3cc1cb1d77b02fae0dcef1a2ca83631a97fd +size 1870436 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-ready-bw.webp b/public/assets/webp/moloch500/1440x1440/warriors-ready-bw.webp new file mode 100644 index 0000000..aecde3e --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-ready-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb8ef00b53bcca3b5d64d290b4534724d3586d224a7b0a14423703ebf971be19 +size 696588 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-ready-c.webp b/public/assets/webp/moloch500/1440x1440/warriors-ready-c.webp new file mode 100644 index 0000000..87a6cae --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-ready-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd55b9ed3ce8007d39b7d26664d307ba7903069c382ea86dd3a56aeb62664c10 +size 1265246 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-standing-bw.webp b/public/assets/webp/moloch500/1440x1440/warriors-standing-bw.webp new file mode 100644 index 0000000..e2f7507 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-standing-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5416ee88da6afc4c7ff3c713e22febf6b27059f7b79e35b928d52e14400b79c +size 760526 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-standing-c.webp b/public/assets/webp/moloch500/1440x1440/warriors-standing-c.webp new file mode 100644 index 0000000..2637d82 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-standing-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6da77a5b6ad19984558a55c43c10f9fffa315bc6c88ded44aa16c84403028983 +size 1315166 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-triangle-bw.webp b/public/assets/webp/moloch500/1440x1440/warriors-triangle-bw.webp new file mode 100644 index 0000000..13d70f2 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-triangle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b69c05058079432a6329f0a9f4110d48b0d5319d1f5f8637773844827fab687 +size 876548 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-triangle-c.webp b/public/assets/webp/moloch500/1440x1440/warriors-triangle-c.webp new file mode 100644 index 0000000..af91373 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-triangle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ce3ee080289bfb526b19d4d5f0a8a546d55f90aa9e5643060ad3bc541991423 +size 1446114 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-white-bw.webp b/public/assets/webp/moloch500/1440x1440/warriors-white-bw.webp new file mode 100644 index 0000000..f7d1a64 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-white-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7515acd17ad35221acc7e53890de3c731d683410f00cebb4f47dc1fa08960c97 +size 1059794 diff --git a/public/assets/webp/moloch500/1440x1440/warriors-white-c.webp b/public/assets/webp/moloch500/1440x1440/warriors-white-c.webp new file mode 100644 index 0000000..897f5c2 --- /dev/null +++ b/public/assets/webp/moloch500/1440x1440/warriors-white-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7929a9717ce0cc28ce17f7b2120f9747ea7cd4061a51f292d4c6da62369cb1b +size 1702886 diff --git a/public/assets/webp/moloch500/1440x550/ship-front-bw.webp b/public/assets/webp/moloch500/1440x550/ship-front-bw.webp new file mode 100644 index 0000000..5237fa0 --- /dev/null +++ b/public/assets/webp/moloch500/1440x550/ship-front-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a955eab59ba65175513efcf211f10a1a98f1816105ac69f4ea87106f15bb74f +size 139864 diff --git a/public/assets/webp/moloch500/1440x550/ship-front-c.webp b/public/assets/webp/moloch500/1440x550/ship-front-c.webp new file mode 100644 index 0000000..cda186c --- /dev/null +++ b/public/assets/webp/moloch500/1440x550/ship-front-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14c3f05c2c93ca0592d5ae16f3d545ad945a9584e5d366f55b78c17c0ef163ab +size 183438 diff --git a/public/assets/webp/moloch500/1440x550/ship-mech-bw.webp b/public/assets/webp/moloch500/1440x550/ship-mech-bw.webp new file mode 100644 index 0000000..76e5766 --- /dev/null +++ b/public/assets/webp/moloch500/1440x550/ship-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba5d6673344b7e721aabc478d3ee32ff56db90d483d3da8469da160399ce213 +size 137746 diff --git a/public/assets/webp/moloch500/1440x550/ship-mech-c.webp b/public/assets/webp/moloch500/1440x550/ship-mech-c.webp new file mode 100644 index 0000000..eb8dad4 --- /dev/null +++ b/public/assets/webp/moloch500/1440x550/ship-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1cd80a6bba6038df20714e2a9f11f1f6034f3f6caf7e19159c8cdae931073dc +size 192124 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/arch-gate-bw.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/arch-gate-bw.webp new file mode 100644 index 0000000..df92837 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/arch-gate-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe57d48cb4725792bbfbb089d4c67391575f98def8894b22441f09c50b66175d +size 51772 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/arch-gate-c.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/arch-gate-c.webp new file mode 100644 index 0000000..57c3e0a --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/arch-gate-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ae39d5fa354a589431a05e7d0f6effd13703d296bfca5e709ba55af9c8adfdf +size 55932 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/book-orb-bw.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/book-orb-bw.webp new file mode 100644 index 0000000..59ff18c --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/book-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b19e9e5a43a83d983373dab2495abf59d1391ef626fd91091c85fc56bb4419bb +size 48264 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/book-orb-c.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/book-orb-c.webp new file mode 100644 index 0000000..bcf7bec --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/book-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:716e9463df6b0063cbb9e699230a2892f03ec395a71440883b385ddd85174fae +size 47132 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/compass-circular-bw.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/compass-circular-bw.webp new file mode 100644 index 0000000..1b0e392 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/compass-circular-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22775b6bdcb594eccf69fb351c63687de93eb4fb714b6c8795209d534593fd8c +size 53222 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/compass-circular-c.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/compass-circular-c.webp new file mode 100644 index 0000000..a7ef526 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/compass-circular-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f9417ca62ee07a874ee15fbaf6bf310d5d7c36c6acc9246d004b05f3e5ff805 +size 53550 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/raven-solo-bw.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/raven-solo-bw.webp new file mode 100644 index 0000000..d196d57 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/raven-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94c47d231b374e4d889491a5bb51d7e9023f13824b56d71924ce45a48e706ca0 +size 45258 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/raven-solo-c.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/raven-solo-c.webp new file mode 100644 index 0000000..e6b6452 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/raven-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f227e4a389bc537684e1f29d3572872b7a53e972c6e88c05cb15ddfaf5c3d42b +size 47248 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-cloud-bw.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-cloud-bw.webp new file mode 100644 index 0000000..bcba4db --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-cloud-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca642af0e5ac81f93fe9b5966c5b3180146282c17cdca23c84379ddf964307f3 +size 51910 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-cloud-c.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-cloud-c.webp new file mode 100644 index 0000000..be20629 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-cloud-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cd1cc2e5bfc6a0c0ebf66c1f2563e5e6534db70409bb88895e242471158f44a +size 52700 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-curve-bw.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-curve-bw.webp new file mode 100644 index 0000000..01159ee --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-curve-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27f7a08889d70845c425a8b8d02bed37007738337153d45a729875941c0750c8 +size 46770 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-curve-c.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-curve-c.webp new file mode 100644 index 0000000..b4a9a79 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-curve-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97dd130d3acca2bd1bda8965ff9aa76d337e0d3fea4dec6467547bbaf2fb5a74 +size 46918 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-twist-bw.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-twist-bw.webp new file mode 100644 index 0000000..44e7e7d --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-twist-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:840e0be037973dfb9cbb1652aa31d6ce9cbb934a90b0e22ba78f67fea4e9a286 +size 41106 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-twist-c.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-twist-c.webp new file mode 100644 index 0000000..c0519f6 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/stairs-twist-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6c98740177986a6356912a8f6d11f783a4f7ca20085f3fb2088b85b75a5295a +size 42022 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/stone-pedestal-bw.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/stone-pedestal-bw.webp new file mode 100644 index 0000000..80b73c7 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/stone-pedestal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac57af5a6716c96b1ad68c12658faeb2b3d9339f1197661df4d445c40c9b5f4b +size 41236 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/stone-pedestal-c.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/stone-pedestal-c.webp new file mode 100644 index 0000000..779998f --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/stone-pedestal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:487af72d76b9802c1a6f30f41d8b338fccf44481bbcadc971f6e4704696b7cf6 +size 39668 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/tower-floating-bw.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/tower-floating-bw.webp new file mode 100644 index 0000000..5793b49 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/tower-floating-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d72bddbee07dc8feaf70126a4fca79eb424a46f246827672c5bc0548473d82b +size 32302 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/tower-floating-c.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/tower-floating-c.webp new file mode 100644 index 0000000..77a4907 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/tower-floating-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65e2422c07adfdc77fac791f483fc00047693ee19b4ca816b4d525c933fbf29f +size 32082 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/tower-platform-bw.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/tower-platform-bw.webp new file mode 100644 index 0000000..17ae96e --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/tower-platform-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5415bccf444b432c5e046b1c50e649d3c7e4fc3b2ac0c3cb49e51d337f09cd42 +size 55642 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/tower-platform-c.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/tower-platform-c.webp new file mode 100644 index 0000000..406fc59 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/tower-platform-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:227f63a63c8d40eb56c4fb67d9e096ba0636019b6d46f1b1ce18fd2059f4979e +size 57902 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/tower-tree-bw.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/tower-tree-bw.webp new file mode 100644 index 0000000..32fa8c6 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/tower-tree-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c1bcf2f2652983870abc4fa9882b8a0d4a2a55a4bc9df8010b262bddf7eb5c6 +size 43184 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/tower-tree-c.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/tower-tree-c.webp new file mode 100644 index 0000000..2fc29b6 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/tower-tree-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7238a2b79b3740cc67e219945c229edc33afb7d68a905991afa1135685ad7eed +size 42524 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/tree-island-bw.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/tree-island-bw.webp new file mode 100644 index 0000000..113f803 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/tree-island-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12a797d59062909d1adb621bde24fecd820c8f28fc836e8783d275fd91904b4b +size 50618 diff --git a/public/assets/webp/moloch500/thumbnails/1080x1440/tree-island-c.webp b/public/assets/webp/moloch500/thumbnails/1080x1440/tree-island-c.webp new file mode 100644 index 0000000..4758be7 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1080x1440/tree-island-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:501c4d0e904e48c830135b5c9a57a40a0341601ae8df19282dbfff2b6dd524d4 +size 52050 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/castle-flag-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/castle-flag-bw.webp new file mode 100644 index 0000000..8a9ed9d --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/castle-flag-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d73595d533d06b6aba2da816a0dc67542e4b757e56641fb3f1aef5b47f20b73 +size 41046 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/castle-flag-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/castle-flag-c.webp new file mode 100644 index 0000000..241ebc8 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/castle-flag-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b191672ed28c84a1186c5a5daf726d56326b78f0a6171ac7f51f388cc851b903 +size 44044 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/castle-staff-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/castle-staff-bw.webp new file mode 100644 index 0000000..ed3dfd4 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/castle-staff-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1a4ef3a2cab7291be89ec883b74524f30ef742ca460a15d03781b78d3db6c5 +size 52698 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/castle-staff-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/castle-staff-c.webp new file mode 100644 index 0000000..9ee452a --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/castle-staff-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2016647224bc3777ac2a4e161f2df47075e523abdec106dc2473730a7f131e9 +size 51740 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/desk-work-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/desk-work-bw.webp new file mode 100644 index 0000000..7b44f11 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/desk-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cca41782d00ba87592f9db3b4261f86333a86600a814c645ae0064fccb5d8760 +size 54818 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/desk-work-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/desk-work-c.webp new file mode 100644 index 0000000..bd91912 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/desk-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bcf956ff4f35753088811bb9d690b075ccd922cd86583c38eed55c24dc3f2ed +size 54784 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/forge-anvil-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-anvil-bw.webp new file mode 100644 index 0000000..a803bbe --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-anvil-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f455e16f8cdfe4d4a80f0f3f68c50ec4e5618fff7f45c23d11075aaa4ef0f9 +size 63268 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/forge-anvil-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-anvil-c.webp new file mode 100644 index 0000000..a650da8 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-anvil-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a286d1366883ed92f096fb4a54499afb14a901a44bf6313813d5ff424878317a +size 62372 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/forge-building-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-building-bw.webp new file mode 100644 index 0000000..42a5f8f --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-building-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6cbc12d05155bd59a72a0617b1c139c4af64dfb4dc92a63e98a45fefec72dfc +size 54958 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/forge-building-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-building-c.webp new file mode 100644 index 0000000..4a8cece --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-building-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:440a932a485418a5fdf199d883fdcf1783efd458055b5c1d66b6a67b8f14b610 +size 53608 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/forge-duo-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-duo-bw.webp new file mode 100644 index 0000000..92d15da --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-duo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86972c49f4ff2e3ff8bd980eef5f3dcb9eba0f4a8846a024c6a245f0058e9d5e +size 51318 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/forge-duo-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-duo-c.webp new file mode 100644 index 0000000..7986d93 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-duo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9db71c03b12fce0a6565497585ac895da334e5ab9dd707d83b7d8ebd707dffab +size 49988 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/forge-fire-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-fire-bw.webp new file mode 100644 index 0000000..a8aa802 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-fire-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e00d44dde9740e712650af90db1310825e6daaa086e7fdaa3aadbe032ec35ed +size 60698 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/forge-fire-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-fire-c.webp new file mode 100644 index 0000000..a0024be --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-fire-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfcef44f94a0f6ea70ff71e90a5fff01f5289547c2af86e50ebc3d073d6049f2 +size 62200 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/forge-work-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-work-bw.webp new file mode 100644 index 0000000..c3cb964 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cfe8f4741648108897b5dd3f5bf46b36d846f2166b1fd7df674f8517a014beb +size 57274 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/forge-work-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-work-c.webp new file mode 100644 index 0000000..bd85bf6 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/forge-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb44650b80a285f65647cefe09949dddf36abb1aa48f9b155eb6e575439409ea +size 56944 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/portal-arch-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/portal-arch-bw.webp new file mode 100644 index 0000000..8a1a5d8 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/portal-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eead0cfdb230b40b0bb608424159488c433db87564335b6fe1a0118788e6764 +size 63984 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/portal-arch-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/portal-arch-c.webp new file mode 100644 index 0000000..009def5 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/portal-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed88f39b805f12f34e06b6fe4db8020fdfe92035827e5008a24857587084273d +size 64536 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/ravens-flight-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/ravens-flight-bw.webp new file mode 100644 index 0000000..bbac5db --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/ravens-flight-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b487a2c137ee2795e3c8ab69150fc9c5df17d1a7cdef3230086458d2daeb174 +size 62904 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/ravens-flight-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/ravens-flight-c.webp new file mode 100644 index 0000000..94f864a --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/ravens-flight-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc7ffd2b39884034ff1b81ca86a992d8dae067e265cbafe4e1e7ef4adf1c3837 +size 63196 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/stairs-spiral-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/stairs-spiral-bw.webp new file mode 100644 index 0000000..6f59a27 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/stairs-spiral-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:271a3b5feeb05b7434410d49f02c4bb5678643de5687032f04044ca94ec99b8f +size 47222 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/stairs-spiral-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/stairs-spiral-c.webp new file mode 100644 index 0000000..c459f98 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/stairs-spiral-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2bd41a5eced778e4c785493d8453005f90c3a2dd723dacea87bb039a65e2ef2 +size 46904 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/stone-monuments-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/stone-monuments-bw.webp new file mode 100644 index 0000000..af0b798 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/stone-monuments-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26c5dfdbbab48aede45243a78c92d329938bae9148ab48d63a806c4bc07bf0d9 +size 55276 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/stone-monuments-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/stone-monuments-c.webp new file mode 100644 index 0000000..b830a6f --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/stone-monuments-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7582de701477ee95263c455a35ed60b6bbcbfd138efff3998274947181db9582 +size 53348 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/table-castle-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/table-castle-bw.webp new file mode 100644 index 0000000..d4ad58c --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/table-castle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b0bd51aff48d70a3ae448f758263af444bbc619d5f8db53dbede9f989cb318e +size 55702 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/table-castle-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/table-castle-c.webp new file mode 100644 index 0000000..a216fc5 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/table-castle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cfc923da57171ddbebffc4e5bcbf5cf45e6569bee09563ed8ab12db173f0f8b +size 56564 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/tree-mech-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/tree-mech-bw.webp new file mode 100644 index 0000000..efaee61 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/tree-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bab3f2eb544c0569523695b4aff914bbe89741aacfa1c37012a6bcc907ac6f38 +size 66580 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/tree-mech-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/tree-mech-c.webp new file mode 100644 index 0000000..948457e --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/tree-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eebb1ecf46a3b21729cbc833a1ac00843beaf3a888dd459748eea8fbaf8eaf35 +size 65668 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-arch-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-arch-bw.webp new file mode 100644 index 0000000..3088380 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f17a6fad7494b9e480032c5d002696b154aac5a6cf117f21aafc47e9c1d3d57 +size 58326 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-arch-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-arch-c.webp new file mode 100644 index 0000000..fb0ae60 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e879ad694c697cf132c3ae8cb60a3c1ebd630896d5a69035cd7f09dc23b146 +size 59534 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-backs-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-backs-bw.webp new file mode 100644 index 0000000..ed3dd1f --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-backs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99976243e2cbd76c6bda7480befd27592a04e856cc3250f5443ab778599186d3 +size 64790 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-backs-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-backs-c.webp new file mode 100644 index 0000000..9a4ca76 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-backs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f54d72864bddf6d1d66d241bb3add8ed0056d602d88ecbcf115ecdc48171cae0 +size 64432 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-beast-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-beast-bw.webp new file mode 100644 index 0000000..f8178bc --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-beast-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90d7b1cbdfa2ec362d0d968b065adc8753f104af78edb74a07236bbcaa38bbcc +size 57234 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-beast-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-beast-c.webp new file mode 100644 index 0000000..d183cf2 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-beast-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4557b8c3ef8a7607569157831cc82748135e5d4a3d2902a7d5aa9127e87e81f4 +size 56410 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-mountain-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-mountain-bw.webp new file mode 100644 index 0000000..56b4888 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-mountain-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ae94cd1fea48af703be2432b078658d56c43076b71d1f3d4448ecef68d4f1f +size 66858 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-mountain-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-mountain-c.webp new file mode 100644 index 0000000..470f732 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-mountain-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b59fb91fec0778fcefae5b1d5f2f74e7b62f3a47ca33e1be6f918c94ffe2cad +size 66516 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-orb-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-orb-bw.webp new file mode 100644 index 0000000..f317cf9 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3a846d9fc8d34aacc9f6488c98271e05cea6f9845c6479bba45b84ccbc5106b +size 56692 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-orb-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-orb-c.webp new file mode 100644 index 0000000..66de174 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39485731993cb68c6d9685368b8e133c5cecf4d03453b810bdce120c09a80235 +size 56686 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-portal-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-portal-bw.webp new file mode 100644 index 0000000..b4d5e34 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-portal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a8757be1a3831e5cac845074a46e0a37de3b6e25db132735742b82cb4feeec +size 56342 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-portal-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-portal-c.webp new file mode 100644 index 0000000..2db46de --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-portal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd27cc5fd6e144970ce81ecbb93b88680c20ba9c6536b5c35f90c7424b64d244 +size 55746 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-portraits-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-portraits-bw.webp new file mode 100644 index 0000000..2650d96 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-portraits-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e982b085c349decf37d63f36e7960db543796e8b0f44ce7401708ce50dfb288 +size 50986 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-portraits-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-portraits-c.webp new file mode 100644 index 0000000..576bd67 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-portraits-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f206beaabb1569f34e16af5687b4b6351a508628d16b576be7e013290fca3742 +size 49958 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-profiles-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-profiles-bw.webp new file mode 100644 index 0000000..ed4ad71 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-profiles-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7bd15c854138e7cb65d1e94e3953f0098a5aa0483a1ba6698ea8f158a48f9c +size 58444 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-profiles-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-profiles-c.webp new file mode 100644 index 0000000..76a1b79 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-profiles-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db11e8df00d17145cff45acd4d45d342d24c4a4c70e90aa64285bb95a74c8e9c +size 57874 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-warriors-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-warriors-bw.webp new file mode 100644 index 0000000..ac1273c --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-warriors-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fa9eb859e8e1a37cd24844682cd606d3a3eac14546b298b4ad685b858821c83 +size 51666 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-warriors-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-warriors-c.webp new file mode 100644 index 0000000..1028f27 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-warriors-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b54474fa684789312cc06cbba15180b59c5221ea02c1046b01fd04be2cd663b4 +size 51714 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-weapons-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-weapons-bw.webp new file mode 100644 index 0000000..f519028 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-weapons-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd9d5a377ac2229c5f5cbdf108ef7f66cf8898379c6f07d32ea5bb0b55d8304 +size 59246 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-weapons-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-weapons-c.webp new file mode 100644 index 0000000..9eee7f2 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-weapons-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95160344cee7860859d68045bbbceab25a7f7aa7e4d7dc34d39a96c5824a175e +size 60036 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-wings-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-wings-bw.webp new file mode 100644 index 0000000..0a25875 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-wings-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3353d24afae91a5298c23de680a10882fc2961be69958ca778df9af96054c82e +size 49566 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/trio-wings-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-wings-c.webp new file mode 100644 index 0000000..5e88d1f --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/trio-wings-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adf3627d84ec140e483b34220e1ed1520a08fa1d22a3ed4ca120b7508aa9f006 +size 47582 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warrior-solo-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warrior-solo-bw.webp new file mode 100644 index 0000000..2863bd5 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warrior-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26967227f5144af93163a56de254a8de27de3378603bc2f241a07ea707f9821f +size 47496 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warrior-solo-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warrior-solo-c.webp new file mode 100644 index 0000000..08ac3fd --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warrior-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fec6da89f332452e089d0c529b07dc488d3118fab04eabda1ba3b05dcf6e4b6 +size 45058 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-armed-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-armed-bw.webp new file mode 100644 index 0000000..aab9b63 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-armed-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b433530c23b4609d7248434aedd10d5aa6ddb9b36715617db7078e1adee79d4a +size 47962 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-armed-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-armed-c.webp new file mode 100644 index 0000000..9439c69 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-armed-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22e34d80d8b494280e8126121be3e72bf888adca911a66bcafe3bee641f58186 +size 47374 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-belts-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-belts-bw.webp new file mode 100644 index 0000000..ab85c02 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-belts-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a625b6667220ad236518cce98ef570bed3115a1fea01091acc62c1abf10d282 +size 53236 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-belts-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-belts-c.webp new file mode 100644 index 0000000..9396785 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-belts-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5146bcb3e13b03b07d246b7ef305e80b6ac84367de1f5146b4fb1a3a5910e48 +size 52478 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-casual-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-casual-bw.webp new file mode 100644 index 0000000..02b83d0 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-casual-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6370e81938439d4131c648d0661ed72be06c9ffcbbd32d2a79aa5f6ef0fc8d69 +size 53382 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-casual-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-casual-c.webp new file mode 100644 index 0000000..4c65f73 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-casual-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d4a5a0630ef161b1392bd424aed1966815de0a2b298a3e58efda2738c92a596 +size 51500 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-confident-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-confident-bw.webp new file mode 100644 index 0000000..2792a97 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-confident-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bb1fccd6294f8356b8bd982243e0127238b63654f7d702c7f03dc61c8635499 +size 60328 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-confident-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-confident-c.webp new file mode 100644 index 0000000..9b79578 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-confident-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df9f567af75cdda7de2785ce1127580087696706e68b3f288ea26baf5a5a247a +size 58782 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-forward-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-forward-bw.webp new file mode 100644 index 0000000..6b70757 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-forward-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d571d7e391b74859509760d7b294aa488d1ca80408ac42c4b1ddc1f4c73f760b +size 54366 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-forward-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-forward-c.webp new file mode 100644 index 0000000..c673f29 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-forward-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c0204b201f8fc196469564e02664899a85c03777b2aea5ee8557dc439531bc3 +size 53626 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-magic-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-magic-bw.webp new file mode 100644 index 0000000..79e3a61 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-magic-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baa2b77bc67467f9c7a3cd1ef506d3e0fc09f581b1f8fba52abd890389279f1c +size 55990 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-magic-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-magic-c.webp new file mode 100644 index 0000000..a4dbd5b --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-magic-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bf9e080d651f2dd37a50649dd830def48169dd870a8c9fda6bdc89b66241421 +size 57830 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-masked-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-masked-bw.webp new file mode 100644 index 0000000..eab3354 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-masked-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c4928eb3d406870eefc51496191e7e58b158a3db726280bf47c605e76f411d +size 54058 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-masked-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-masked-c.webp new file mode 100644 index 0000000..41f45c4 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-masked-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c95404b5ee1ec911d86d45a234445619fbb9561e43201166da6de680454882d +size 54052 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-moloch-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-moloch-bw.webp new file mode 100644 index 0000000..fd41ca7 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-moloch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4811562eb4dbb8d24b5bdeaf6654c4ff9210ce516ee41caf7227e126fc8288 +size 63498 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-moloch-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-moloch-c.webp new file mode 100644 index 0000000..e74b05f --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-moloch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:697e9459492f608d40341ce5a25fefcd37820c91ecb56017094ccdd010addbaa +size 61760 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-orbs-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-orbs-bw.webp new file mode 100644 index 0000000..dea8999 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-orbs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d40e412fb44996939d20f643d4d945746f37a734d93a9f562d6cb07778755ed8 +size 73788 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-orbs-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-orbs-c.webp new file mode 100644 index 0000000..1fa4c95 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-orbs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9b1370ac9f7bd923e4542de7bc3cbaa75f97817e6078839c8353d69112a09ec +size 71630 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-ready-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-ready-bw.webp new file mode 100644 index 0000000..513aa51 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-ready-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17ee9a98a3da821689652be07fcadfcfd083cf32099186419564c0424caeafe7 +size 54084 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-ready-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-ready-c.webp new file mode 100644 index 0000000..3d3a8a1 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-ready-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0496ddd6a10e3c787498d13f9fcc81c36d8cd7d3955efd17f89fa0beb29e9a8a +size 54472 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-standing-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-standing-bw.webp new file mode 100644 index 0000000..03b3e9d --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-standing-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9872c05917d67485b2ed069bdd00103d11375cb9e8caaeeea6b8a05d225f26c3 +size 56128 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-standing-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-standing-c.webp new file mode 100644 index 0000000..33d21dd --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-standing-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98da2ef32d2f209a9de270f2fe86df7503b267739b848904774838ed127f1885 +size 55404 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-triangle-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-triangle-bw.webp new file mode 100644 index 0000000..fcabfb7 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-triangle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc309943adb08fda1fa60af22d55e293113c38282c60b53c25af18bb84fcb9b +size 58478 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-triangle-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-triangle-c.webp new file mode 100644 index 0000000..64c1613 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-triangle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05150581d31d17def363a10ec77b25c2d9bda5c1989dba6bc3b49d11b20208b2 +size 58460 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-white-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-white-bw.webp new file mode 100644 index 0000000..15d08e0 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-white-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42b101354cd4af6e11bd76b540fd48bb5df1f44229a978572b080f20d41dd7f1 +size 66784 diff --git a/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-white-c.webp b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-white-c.webp new file mode 100644 index 0000000..ea572d2 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x1440/warriors-white-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3bdb56aabb16fdc22a8903b966214d20a6c9780862de76d10655a87246e3d7 +size 63746 diff --git a/public/assets/webp/moloch500/thumbnails/1440x550/ship-front-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x550/ship-front-bw.webp new file mode 100644 index 0000000..7fbd90f --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x550/ship-front-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d127a1fcd199209be9c5ab3c61a74839eb987281c43f0d3b352572361a26dea +size 42864 diff --git a/public/assets/webp/moloch500/thumbnails/1440x550/ship-front-c.webp b/public/assets/webp/moloch500/thumbnails/1440x550/ship-front-c.webp new file mode 100644 index 0000000..d01f25a --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x550/ship-front-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef3a683616624aacc7914e9917343e0836ae3ce6ee163189e88c65fef2e8f15d +size 42640 diff --git a/public/assets/webp/moloch500/thumbnails/1440x550/ship-mech-bw.webp b/public/assets/webp/moloch500/thumbnails/1440x550/ship-mech-bw.webp new file mode 100644 index 0000000..d53f5d9 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x550/ship-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0555a7a19d684d0579d45e42dda380a6e291f6f17e52f0fbf63e21ec87ce3a89 +size 42240 diff --git a/public/assets/webp/moloch500/thumbnails/1440x550/ship-mech-c.webp b/public/assets/webp/moloch500/thumbnails/1440x550/ship-mech-c.webp new file mode 100644 index 0000000..cd175e1 --- /dev/null +++ b/public/assets/webp/moloch500/thumbnails/1440x550/ship-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9661bf759e3d766149d9b6e4753455ad3d10f0df6ca607e74f1abec710baa141 +size 44438 diff --git a/public/assets/webp/moloch800/1080x1440/arch-gate-bw.webp b/public/assets/webp/moloch800/1080x1440/arch-gate-bw.webp new file mode 100644 index 0000000..dd5d3c9 --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/arch-gate-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a20eb1847002cac5a7e10d6efa61731bef097029f504673235fc64256bca1b8 +size 385924 diff --git a/public/assets/webp/moloch800/1080x1440/arch-gate-c.webp b/public/assets/webp/moloch800/1080x1440/arch-gate-c.webp new file mode 100644 index 0000000..19d7220 --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/arch-gate-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22e5a713951787046cb6f0e2ad4abdf9844a84b625e04410a808fc49ecb31f44 +size 907064 diff --git a/public/assets/webp/moloch800/1080x1440/book-orb-bw.webp b/public/assets/webp/moloch800/1080x1440/book-orb-bw.webp new file mode 100644 index 0000000..2f1caa5 --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/book-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee0b61b930d49b60db66c47c0cad3eafe388dcf55a820f5f85a818aebd1cbb78 +size 359414 diff --git a/public/assets/webp/moloch800/1080x1440/book-orb-c.webp b/public/assets/webp/moloch800/1080x1440/book-orb-c.webp new file mode 100644 index 0000000..a1387e1 --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/book-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c8687208b746900bc18af83f893df00b5ddee70ab79b53dbf9b45f0925687e0 +size 620038 diff --git a/public/assets/webp/moloch800/1080x1440/compass-circular-bw.webp b/public/assets/webp/moloch800/1080x1440/compass-circular-bw.webp new file mode 100644 index 0000000..4110a60 --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/compass-circular-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84885e1848bf75aa00513be45ccfab783ca78502ea50d161743942fb27a09c4f +size 376922 diff --git a/public/assets/webp/moloch800/1080x1440/compass-circular-c.webp b/public/assets/webp/moloch800/1080x1440/compass-circular-c.webp new file mode 100644 index 0000000..474b900 --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/compass-circular-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e988be47cdd58f9629e5e240fd07267f66828fc854b53f401880d6b2a83fc38f +size 669658 diff --git a/public/assets/webp/moloch800/1080x1440/raven-solo-bw.webp b/public/assets/webp/moloch800/1080x1440/raven-solo-bw.webp new file mode 100644 index 0000000..9bedfbb --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/raven-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08dae3ae7d67ca132bc1902b961f6d5553b8a86e74a4be73a232d41714b8d897 +size 338580 diff --git a/public/assets/webp/moloch800/1080x1440/raven-solo-c.webp b/public/assets/webp/moloch800/1080x1440/raven-solo-c.webp new file mode 100644 index 0000000..5f3a13a --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/raven-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10c58e032fbc8972a12985ce215bd93b684187eaf0f8fd18625856cb3ae21b23 +size 743578 diff --git a/public/assets/webp/moloch800/1080x1440/stairs-cloud-bw.webp b/public/assets/webp/moloch800/1080x1440/stairs-cloud-bw.webp new file mode 100644 index 0000000..7de161f --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/stairs-cloud-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:343e18290cce042483de9eb858ff0979de13f05b9ec2e748633d47ba88b8b69a +size 455078 diff --git a/public/assets/webp/moloch800/1080x1440/stairs-cloud-c.webp b/public/assets/webp/moloch800/1080x1440/stairs-cloud-c.webp new file mode 100644 index 0000000..ee90369 --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/stairs-cloud-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:504af85bd067630a32845a4955979aee9442c0410a110e5c90b2ca9fb2030796 +size 869320 diff --git a/public/assets/webp/moloch800/1080x1440/stairs-curve-bw.webp b/public/assets/webp/moloch800/1080x1440/stairs-curve-bw.webp new file mode 100644 index 0000000..23c986e --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/stairs-curve-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:085362d38f7df9ee7df32b12088212cf725aebc763c95ecebdf1f6b6fda3ee11 +size 359150 diff --git a/public/assets/webp/moloch800/1080x1440/stairs-curve-c.webp b/public/assets/webp/moloch800/1080x1440/stairs-curve-c.webp new file mode 100644 index 0000000..dac693d --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/stairs-curve-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94a97c245936529a0af0b13628b76863c8ba68e633d016c035e4b2d8d7752773 +size 745390 diff --git a/public/assets/webp/moloch800/1080x1440/stairs-twist-bw.webp b/public/assets/webp/moloch800/1080x1440/stairs-twist-bw.webp new file mode 100644 index 0000000..618949e --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/stairs-twist-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6c99b08c250b7a0c548dfc18df1236b3dab6c5556f7c34395702ed553d0f114 +size 318560 diff --git a/public/assets/webp/moloch800/1080x1440/stairs-twist-c.webp b/public/assets/webp/moloch800/1080x1440/stairs-twist-c.webp new file mode 100644 index 0000000..dad5d1b --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/stairs-twist-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1926d7443f725470747cb2ae18337faa9bccf0dd3ad7e2399e9b7d973cb0e868 +size 703816 diff --git a/public/assets/webp/moloch800/1080x1440/stone-pedestal-bw.webp b/public/assets/webp/moloch800/1080x1440/stone-pedestal-bw.webp new file mode 100644 index 0000000..5151d27 --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/stone-pedestal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:513b06eb11cdb020c7d913e98b294d3c7d1d19e75c90dbbf0c296b2ea278ba44 +size 319650 diff --git a/public/assets/webp/moloch800/1080x1440/stone-pedestal-c.webp b/public/assets/webp/moloch800/1080x1440/stone-pedestal-c.webp new file mode 100644 index 0000000..177f940 --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/stone-pedestal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d154060480bd18ff790cf94093240ebfe0876a5cc7466909921bf3bbf253e81a +size 569362 diff --git a/public/assets/webp/moloch800/1080x1440/tower-floating-bw.webp b/public/assets/webp/moloch800/1080x1440/tower-floating-bw.webp new file mode 100644 index 0000000..b9a5dfc --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/tower-floating-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde53990beeb12d8d91de0c3be44425ae9620dd9f31795b89cf04e534c91d9b1 +size 195836 diff --git a/public/assets/webp/moloch800/1080x1440/tower-floating-c.webp b/public/assets/webp/moloch800/1080x1440/tower-floating-c.webp new file mode 100644 index 0000000..e822019 --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/tower-floating-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfeea6c3934721cedfe7b3da7923f393c8bbbcab3b2c02986eefaa1a91ec5db3 +size 336252 diff --git a/public/assets/webp/moloch800/1080x1440/tower-platform-bw.webp b/public/assets/webp/moloch800/1080x1440/tower-platform-bw.webp new file mode 100644 index 0000000..91ef282 --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/tower-platform-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13fca4435c147fe020e9ae321c1d0ab6a622c3cd9c92fbb6f0cae4d2b3cb49b +size 448712 diff --git a/public/assets/webp/moloch800/1080x1440/tower-platform-c.webp b/public/assets/webp/moloch800/1080x1440/tower-platform-c.webp new file mode 100644 index 0000000..e95b0bc --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/tower-platform-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:705cabc5223e4feecc91a889330fdb9b5adf4aa8135ecf6a98d393fd569aedb7 +size 1022074 diff --git a/public/assets/webp/moloch800/1080x1440/tower-tree-bw.webp b/public/assets/webp/moloch800/1080x1440/tower-tree-bw.webp new file mode 100644 index 0000000..9254b66 --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/tower-tree-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b29a6db807f475e62e0b86eb93e4616057f4d330e50749be2e2d3e8e850c5be8 +size 314996 diff --git a/public/assets/webp/moloch800/1080x1440/tower-tree-c.webp b/public/assets/webp/moloch800/1080x1440/tower-tree-c.webp new file mode 100644 index 0000000..6dad73c --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/tower-tree-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:980e1bd9fbf12caad561b91ce1276ed79d2c820267c24f81521718bec5f2bdbe +size 608900 diff --git a/public/assets/webp/moloch800/1080x1440/tree-island-bw.webp b/public/assets/webp/moloch800/1080x1440/tree-island-bw.webp new file mode 100644 index 0000000..c706c25 --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/tree-island-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eaac33cb65774894df2d9f6aa881a74415bac5bc6f38500c76cfc1eed27279f +size 355642 diff --git a/public/assets/webp/moloch800/1080x1440/tree-island-c.webp b/public/assets/webp/moloch800/1080x1440/tree-island-c.webp new file mode 100644 index 0000000..e1c8141 --- /dev/null +++ b/public/assets/webp/moloch800/1080x1440/tree-island-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fddd23ffbee97e6b36d0544145982bb220bd784d60672341c5adb8557af6fd02 +size 868764 diff --git a/public/assets/webp/moloch800/1440x1440/castle-flag-bw.webp b/public/assets/webp/moloch800/1440x1440/castle-flag-bw.webp new file mode 100644 index 0000000..91139c3 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/castle-flag-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993e344b00b996d9666a71e492b55840b0cb1a69a6b156ff6b88d6eb8c65e660 +size 860290 diff --git a/public/assets/webp/moloch800/1440x1440/castle-flag-c.webp b/public/assets/webp/moloch800/1440x1440/castle-flag-c.webp new file mode 100644 index 0000000..4263031 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/castle-flag-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:037f110f6618fd47649a955c95e83f7f36ef0b30517bcde1fadc89b2616a7c2f +size 1212584 diff --git a/public/assets/webp/moloch800/1440x1440/castle-staff-bw.webp b/public/assets/webp/moloch800/1440x1440/castle-staff-bw.webp new file mode 100644 index 0000000..02e5702 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/castle-staff-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b02928756537082ea037476bf2d69deca54ffebafe83ecb86d3279a4cd6ec5e +size 895026 diff --git a/public/assets/webp/moloch800/1440x1440/castle-staff-c.webp b/public/assets/webp/moloch800/1440x1440/castle-staff-c.webp new file mode 100644 index 0000000..87e2221 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/castle-staff-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149e730dbca6fe8671b0b8454d3babbebc510c06546b2516d884d4b5aa784b90 +size 1607958 diff --git a/public/assets/webp/moloch800/1440x1440/desk-work-bw.webp b/public/assets/webp/moloch800/1440x1440/desk-work-bw.webp new file mode 100644 index 0000000..b24ca39 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/desk-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e587e3940369d2086e0685b2dfa46b3d9031012bd54ab975fb0d011e3c2cbf9f +size 729894 diff --git a/public/assets/webp/moloch800/1440x1440/desk-work-c.webp b/public/assets/webp/moloch800/1440x1440/desk-work-c.webp new file mode 100644 index 0000000..e384c10 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/desk-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90bdd8c2b371e1cf47430d63bfd40ff3355e8191591b4b3167aa403f4972e37 +size 1442596 diff --git a/public/assets/webp/moloch800/1440x1440/forge-anvil-bw.webp b/public/assets/webp/moloch800/1440x1440/forge-anvil-bw.webp new file mode 100644 index 0000000..f49cfb3 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/forge-anvil-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c0fa539a8606b8a5ffb0100c79c5851bbd5e08dd5cc11e6c8baf0a18a250da +size 840212 diff --git a/public/assets/webp/moloch800/1440x1440/forge-anvil-c.webp b/public/assets/webp/moloch800/1440x1440/forge-anvil-c.webp new file mode 100644 index 0000000..5f0d47c --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/forge-anvil-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d30c2501eb32beb83fb385eb273e0ec46b0d8bcfbd4347392fbc397d06f58ff +size 1678832 diff --git a/public/assets/webp/moloch800/1440x1440/forge-building-bw.webp b/public/assets/webp/moloch800/1440x1440/forge-building-bw.webp new file mode 100644 index 0000000..c91c432 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/forge-building-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b8a7ea109594a12640727631b368b2eff90e3f4c1f3de7e6d41f2cd92ad916d +size 696052 diff --git a/public/assets/webp/moloch800/1440x1440/forge-building-c.webp b/public/assets/webp/moloch800/1440x1440/forge-building-c.webp new file mode 100644 index 0000000..66131d3 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/forge-building-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f2f33236fb1cc5818393cd54103978bb92b41701b41977e4b09ecd42b1e5093 +size 1417046 diff --git a/public/assets/webp/moloch800/1440x1440/forge-duo-bw.webp b/public/assets/webp/moloch800/1440x1440/forge-duo-bw.webp new file mode 100644 index 0000000..0ca2cc2 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/forge-duo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04adeae3303ac8b57c06fe2c23ca601b786d02683a800bf3e366c519aa2784c +size 753722 diff --git a/public/assets/webp/moloch800/1440x1440/forge-duo-c.webp b/public/assets/webp/moloch800/1440x1440/forge-duo-c.webp new file mode 100644 index 0000000..498dadc --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/forge-duo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7249d7087a679ce9f74f557bf3c42386d15f01d0c7fff6abd65a5d1abe8f353 +size 1315086 diff --git a/public/assets/webp/moloch800/1440x1440/forge-fire-bw.webp b/public/assets/webp/moloch800/1440x1440/forge-fire-bw.webp new file mode 100644 index 0000000..7fcf638 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/forge-fire-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5acf42efdd1309978ed290643e66939bd375bd88e523a80664297f29de81b358 +size 670788 diff --git a/public/assets/webp/moloch800/1440x1440/forge-fire-c.webp b/public/assets/webp/moloch800/1440x1440/forge-fire-c.webp new file mode 100644 index 0000000..130ac1d --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/forge-fire-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44478f4314e7d5988355038313ade6b6689a115986de5cc6e82ee04faa072b61 +size 1238162 diff --git a/public/assets/webp/moloch800/1440x1440/forge-work-bw.webp b/public/assets/webp/moloch800/1440x1440/forge-work-bw.webp new file mode 100644 index 0000000..0cebbac --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/forge-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9935d66ca74bd4565fd6e16755db9d600f62ddfea94da929abb8a1d1c313fcd2 +size 695586 diff --git a/public/assets/webp/moloch800/1440x1440/forge-work-c.webp b/public/assets/webp/moloch800/1440x1440/forge-work-c.webp new file mode 100644 index 0000000..591642b --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/forge-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3df3494fd107fd0f8e26d90fe0c9f3b0aca22db0f9aedd98f8e2225311da1ba +size 1144440 diff --git a/public/assets/webp/moloch800/1440x1440/portal-arch-bw.webp b/public/assets/webp/moloch800/1440x1440/portal-arch-bw.webp new file mode 100644 index 0000000..0d6be37 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/portal-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26f5cac7f4657db4ce7e0c134fc67461ec0904765a0c3491b40a798c49396c4 +size 943392 diff --git a/public/assets/webp/moloch800/1440x1440/portal-arch-c.webp b/public/assets/webp/moloch800/1440x1440/portal-arch-c.webp new file mode 100644 index 0000000..95606be --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/portal-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:009043078d6a0bf65cca103cdaf1839a7e384f83c011e69b40b4f8a9b84f97e2 +size 2170698 diff --git a/public/assets/webp/moloch800/1440x1440/ravens-flight-bw.webp b/public/assets/webp/moloch800/1440x1440/ravens-flight-bw.webp new file mode 100644 index 0000000..46c9746 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/ravens-flight-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:346dbea9ecdef795a6dd228c70b438f6f2393fbe6905808fca0e448784a5de29 +size 772512 diff --git a/public/assets/webp/moloch800/1440x1440/ravens-flight-c.webp b/public/assets/webp/moloch800/1440x1440/ravens-flight-c.webp new file mode 100644 index 0000000..1c3760f --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/ravens-flight-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfcd6b57ed43776efab6ce0f77a480d46d069ca1a6f54a9bc1f2147a649e7f02 +size 1230764 diff --git a/public/assets/webp/moloch800/1440x1440/stairs-spiral-bw.webp b/public/assets/webp/moloch800/1440x1440/stairs-spiral-bw.webp new file mode 100644 index 0000000..b7e06ae --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/stairs-spiral-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad00cde2f009bcbceefda96943808c9793aa8710e595763ac032f13fb8846dc1 +size 662540 diff --git a/public/assets/webp/moloch800/1440x1440/stairs-spiral-c.webp b/public/assets/webp/moloch800/1440x1440/stairs-spiral-c.webp new file mode 100644 index 0000000..31f85a6 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/stairs-spiral-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62df002611c421b5dfcef6455d02fa799feb82d3e845a9cd83ae892cdee833a0 +size 1216108 diff --git a/public/assets/webp/moloch800/1440x1440/stone-monuments-bw.webp b/public/assets/webp/moloch800/1440x1440/stone-monuments-bw.webp new file mode 100644 index 0000000..41fa26f --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/stone-monuments-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b2aef59ce85e4b8ff433adaab4d6d643a3895d55d6abc45c70e16af9afc03a3 +size 771552 diff --git a/public/assets/webp/moloch800/1440x1440/stone-monuments-c.webp b/public/assets/webp/moloch800/1440x1440/stone-monuments-c.webp new file mode 100644 index 0000000..e4a6073 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/stone-monuments-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299ccef554deb0e3764a7f36bc239765e3f991a52270236d7595654ee0bb5519 +size 1222678 diff --git a/public/assets/webp/moloch800/1440x1440/table-castle-bw.webp b/public/assets/webp/moloch800/1440x1440/table-castle-bw.webp new file mode 100644 index 0000000..dfa5bff --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/table-castle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def4057135afb5ccd3e7dc78499232b6971de30118c7fcec80fa2ed81d753602 +size 700028 diff --git a/public/assets/webp/moloch800/1440x1440/table-castle-c.webp b/public/assets/webp/moloch800/1440x1440/table-castle-c.webp new file mode 100644 index 0000000..dad944f --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/table-castle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de5433d9692f6f6936d896a41c477fad8b57fd169885ca5b997fe88210ebee8 +size 1359864 diff --git a/public/assets/webp/moloch800/1440x1440/tree-mech-bw.webp b/public/assets/webp/moloch800/1440x1440/tree-mech-bw.webp new file mode 100644 index 0000000..bd87ec0 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/tree-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d29c73d5f67d10deadf5525d8c2145e7ddef528eae27ba9be401281b50e35ee +size 917936 diff --git a/public/assets/webp/moloch800/1440x1440/tree-mech-c.webp b/public/assets/webp/moloch800/1440x1440/tree-mech-c.webp new file mode 100644 index 0000000..0b550de --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/tree-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7b471e438b0317937fe9cc58b318687400c126012a6ad5d005da0e6173f8781 +size 1818228 diff --git a/public/assets/webp/moloch800/1440x1440/trio-arch-bw.webp b/public/assets/webp/moloch800/1440x1440/trio-arch-bw.webp new file mode 100644 index 0000000..629211d --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab52ba62fd4e7d6a201fa5847b2e9645e7dd06740e6f06c96a2913b59f39d35 +size 753772 diff --git a/public/assets/webp/moloch800/1440x1440/trio-arch-c.webp b/public/assets/webp/moloch800/1440x1440/trio-arch-c.webp new file mode 100644 index 0000000..5e17875 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe537aa4a79b2c85b027e9b5d0e1241d7cbfb79c854342b80fca78b25df8cb6 +size 1418088 diff --git a/public/assets/webp/moloch800/1440x1440/trio-backs-bw.webp b/public/assets/webp/moloch800/1440x1440/trio-backs-bw.webp new file mode 100644 index 0000000..c40cdae --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-backs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72a36d96f8c3c35cf873453d6a4317cfbcf4c26342b85cf5bd75d1356f9e3a95 +size 944762 diff --git a/public/assets/webp/moloch800/1440x1440/trio-backs-c.webp b/public/assets/webp/moloch800/1440x1440/trio-backs-c.webp new file mode 100644 index 0000000..da26eb0 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-backs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e2ddadb79b78306e0ca23968bbd94eee2d1e41ffde6f32c43e87c840dcff962 +size 1724452 diff --git a/public/assets/webp/moloch800/1440x1440/trio-beast-bw.webp b/public/assets/webp/moloch800/1440x1440/trio-beast-bw.webp new file mode 100644 index 0000000..fdd84ea --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-beast-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2161ac9a4ae9fec07481eb1af163730b6cd2802ab4d7692e44a3a6c26510113 +size 692648 diff --git a/public/assets/webp/moloch800/1440x1440/trio-beast-c.webp b/public/assets/webp/moloch800/1440x1440/trio-beast-c.webp new file mode 100644 index 0000000..bc57ce0 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-beast-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c096cb551809eddef27d92ff659c251b654be6136522b2747b0652c70d07656 +size 1207832 diff --git a/public/assets/webp/moloch800/1440x1440/trio-mountain-bw.webp b/public/assets/webp/moloch800/1440x1440/trio-mountain-bw.webp new file mode 100644 index 0000000..c93fd6b --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-mountain-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15dab5de389d539c8e3fd8b8fa9f0c1fddd6224a4584faec7b7262615a853c95 +size 903972 diff --git a/public/assets/webp/moloch800/1440x1440/trio-mountain-c.webp b/public/assets/webp/moloch800/1440x1440/trio-mountain-c.webp new file mode 100644 index 0000000..720b288 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-mountain-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e0f5e6b6f1784c13933dfc5dec5c674dc352d7e75cfd51856da70e8b5472cc +size 1770222 diff --git a/public/assets/webp/moloch800/1440x1440/trio-orb-bw.webp b/public/assets/webp/moloch800/1440x1440/trio-orb-bw.webp new file mode 100644 index 0000000..d707406 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da80a2ad68518d2a179dacdca4e5e79d3ff7232705a2c26c62059a2fa53b1bdc +size 724042 diff --git a/public/assets/webp/moloch800/1440x1440/trio-orb-c.webp b/public/assets/webp/moloch800/1440x1440/trio-orb-c.webp new file mode 100644 index 0000000..7daec36 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c47f61236a6e6d263a01c40753400d288e924b9b48380d297031d55eb92a2f5e +size 1399156 diff --git a/public/assets/webp/moloch800/1440x1440/trio-portal-bw.webp b/public/assets/webp/moloch800/1440x1440/trio-portal-bw.webp new file mode 100644 index 0000000..26f03f7 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-portal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df2f9857d5d6ac414154491661a4d6283ae85152127fd06bc029b60de005b80f +size 773776 diff --git a/public/assets/webp/moloch800/1440x1440/trio-portal-c.webp b/public/assets/webp/moloch800/1440x1440/trio-portal-c.webp new file mode 100644 index 0000000..4e9f277 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-portal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ba04fc0fb6dff2a90c5190d92d05423eabfa477e393b846eda9fac55c34bdef +size 1580944 diff --git a/public/assets/webp/moloch800/1440x1440/trio-portraits-bw.webp b/public/assets/webp/moloch800/1440x1440/trio-portraits-bw.webp new file mode 100644 index 0000000..21ad63c --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-portraits-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f29db66078425244b9f55b717e9f2fc201ac764217dd2d86afe61444d157516 +size 650024 diff --git a/public/assets/webp/moloch800/1440x1440/trio-portraits-c.webp b/public/assets/webp/moloch800/1440x1440/trio-portraits-c.webp new file mode 100644 index 0000000..685d292 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-portraits-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9787160ada5ffe7138f303221404116d564f62356af411353eee44b64077a00 +size 1122100 diff --git a/public/assets/webp/moloch800/1440x1440/trio-profiles-bw.webp b/public/assets/webp/moloch800/1440x1440/trio-profiles-bw.webp new file mode 100644 index 0000000..3900fba --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-profiles-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23683d7329d63d106187b21f50d3edc77e71e83f5ee7737002cb9bba81d20ad3 +size 729880 diff --git a/public/assets/webp/moloch800/1440x1440/trio-profiles-c.webp b/public/assets/webp/moloch800/1440x1440/trio-profiles-c.webp new file mode 100644 index 0000000..d1205d6 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-profiles-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0832a9ce361e5b01deaa6c69e57e7ee133c4006240f75f1afaf0df2e32fa919f +size 1330090 diff --git a/public/assets/webp/moloch800/1440x1440/trio-warriors-bw.webp b/public/assets/webp/moloch800/1440x1440/trio-warriors-bw.webp new file mode 100644 index 0000000..43c1ae5 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-warriors-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7ae97219254f86bcf89670e79d353fad09ce30adffa04740245fcf450e96ee7 +size 659648 diff --git a/public/assets/webp/moloch800/1440x1440/trio-warriors-c.webp b/public/assets/webp/moloch800/1440x1440/trio-warriors-c.webp new file mode 100644 index 0000000..d691a39 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-warriors-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412e18f6291d948d5aebc70d4790431c9533fad19906bcca37e1463ba26f86cf +size 1195460 diff --git a/public/assets/webp/moloch800/1440x1440/trio-weapons-bw.webp b/public/assets/webp/moloch800/1440x1440/trio-weapons-bw.webp new file mode 100644 index 0000000..c8c8bcf --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-weapons-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c986d505568a1e6db105f810d8c69e42c71f464ccbb0c3b8316f3a8ac4542f5d +size 819866 diff --git a/public/assets/webp/moloch800/1440x1440/trio-weapons-c.webp b/public/assets/webp/moloch800/1440x1440/trio-weapons-c.webp new file mode 100644 index 0000000..db266b4 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-weapons-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d863b4f443004ac935495002481e72b8fe6fe1667fc0ffe82c0a286a3abc661c +size 1693712 diff --git a/public/assets/webp/moloch800/1440x1440/trio-wings-bw.webp b/public/assets/webp/moloch800/1440x1440/trio-wings-bw.webp new file mode 100644 index 0000000..f204f00 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-wings-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf37207b93c7b5aaf5f5064665abd544472d31cb937820da1766b9a7c1f6007 +size 631714 diff --git a/public/assets/webp/moloch800/1440x1440/trio-wings-c.webp b/public/assets/webp/moloch800/1440x1440/trio-wings-c.webp new file mode 100644 index 0000000..05ea745 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/trio-wings-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:970cf27a0836832200c70ba9cc10906e9a63192e5425af672dd980200087a7ad +size 1234652 diff --git a/public/assets/webp/moloch800/1440x1440/warrior-solo-bw.webp b/public/assets/webp/moloch800/1440x1440/warrior-solo-bw.webp new file mode 100644 index 0000000..9a2aa1a --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warrior-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b6e9d466a7b25b259740b3b2fdb10f9216f71eafe21e0d621d7032a9aa3d957 +size 497152 diff --git a/public/assets/webp/moloch800/1440x1440/warrior-solo-c.webp b/public/assets/webp/moloch800/1440x1440/warrior-solo-c.webp new file mode 100644 index 0000000..16e0ef3 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warrior-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7de2882d7d343cd42cb01bad520d93320ccdb18806ab5071ede2d7a2d6f76671 +size 720168 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-armed-bw.webp b/public/assets/webp/moloch800/1440x1440/warriors-armed-bw.webp new file mode 100644 index 0000000..2350785 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-armed-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842504c95148491e3be952bb97e55dd91cd301dccc535965a3ac726b3d021195 +size 613440 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-armed-c.webp b/public/assets/webp/moloch800/1440x1440/warriors-armed-c.webp new file mode 100644 index 0000000..e1b1a88 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-armed-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:222cfa2795bc5abe56eff2fb1989a2357138e555a453d9aac472f35fcd6c3dda +size 1165082 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-belts-bw.webp b/public/assets/webp/moloch800/1440x1440/warriors-belts-bw.webp new file mode 100644 index 0000000..a48609a --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-belts-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d70a2a3ef0908342bee38ee1a282044f002b8d17f5dc64e84f3cb42d5a38e0a +size 702126 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-belts-c.webp b/public/assets/webp/moloch800/1440x1440/warriors-belts-c.webp new file mode 100644 index 0000000..ac8e0c1 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-belts-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aec0b50d3fa3a333e3b5687275282c88e591ce768033884fca11351d91fcc4cb +size 1249826 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-casual-bw.webp b/public/assets/webp/moloch800/1440x1440/warriors-casual-bw.webp new file mode 100644 index 0000000..d0ba694 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-casual-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:202c316881b1b31eb6dae5a2523e490fd3ddc8118cead420da2259bdfaeb0462 +size 673748 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-casual-c.webp b/public/assets/webp/moloch800/1440x1440/warriors-casual-c.webp new file mode 100644 index 0000000..c42d1c9 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-casual-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d5da24d9f85179600e6919107cd4d264120fdd23d51bf6244e97ed73315ee8 +size 1336292 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-confident-bw.webp b/public/assets/webp/moloch800/1440x1440/warriors-confident-bw.webp new file mode 100644 index 0000000..50744c0 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-confident-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ed3919f178a96a936c36a6f2a01ca2d118f0fe6ae04f9ede616c16b921b0e4d +size 677226 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-confident-c.webp b/public/assets/webp/moloch800/1440x1440/warriors-confident-c.webp new file mode 100644 index 0000000..9a84cf3 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-confident-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694bf20baf1fc9ffdf10598f01f0f817d41ec5022651bcde931cc611ca1ad36a +size 1161648 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-forward-bw.webp b/public/assets/webp/moloch800/1440x1440/warriors-forward-bw.webp new file mode 100644 index 0000000..13d6de6 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-forward-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e662c02db4df6f1f09d3d1ecd9bf07815a510b2ec45288dcde1c59431f8042 +size 750364 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-forward-c.webp b/public/assets/webp/moloch800/1440x1440/warriors-forward-c.webp new file mode 100644 index 0000000..5896ac5 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-forward-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f39eaecb027f7ecb6dd329a9b20be5542f740826e5a945a2ed138bb9847e4424 +size 1412782 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-magic-bw.webp b/public/assets/webp/moloch800/1440x1440/warriors-magic-bw.webp new file mode 100644 index 0000000..c08f02f --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-magic-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d739b7699768db63e32b677375752dfee4bb4d89d571876d4ba940c9d5dc54aa +size 744552 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-magic-c.webp b/public/assets/webp/moloch800/1440x1440/warriors-magic-c.webp new file mode 100644 index 0000000..37045f6 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-magic-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd30e37c11e936c2222dd500fd9264df412f19c77bf26491fa620b20bbbe372f +size 1632076 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-masked-bw.webp b/public/assets/webp/moloch800/1440x1440/warriors-masked-bw.webp new file mode 100644 index 0000000..45ee957 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-masked-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb236192aa1a8b6f7f0f500cff7296e7084ddae7cc6e774a897a3a293bdea315 +size 707868 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-masked-c.webp b/public/assets/webp/moloch800/1440x1440/warriors-masked-c.webp new file mode 100644 index 0000000..b39d56f --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-masked-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a604462ab56e7f8acc74951a105bd71ab4cd563361a9c5ff291fe97605c3964d +size 1341940 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-moloch-bw.webp b/public/assets/webp/moloch800/1440x1440/warriors-moloch-bw.webp new file mode 100644 index 0000000..44e1b17 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-moloch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed5e3286d13586b8f0514c3d5e6aa89bb581b36fc3e2af52e50b00efdc5bbb15 +size 851760 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-moloch-c.webp b/public/assets/webp/moloch800/1440x1440/warriors-moloch-c.webp new file mode 100644 index 0000000..20b4ed8 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-moloch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91e5a515a6b317b37dfc7322e19b1db19d37ef1745dcb32eabe04617436bb8a +size 1479888 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-orbs-bw.webp b/public/assets/webp/moloch800/1440x1440/warriors-orbs-bw.webp new file mode 100644 index 0000000..639f098 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-orbs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dec2d14810ca5794776cf792cd5018e65144a47e52202504cc9a12aac8262fe4 +size 1006474 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-orbs-c.webp b/public/assets/webp/moloch800/1440x1440/warriors-orbs-c.webp new file mode 100644 index 0000000..e3518d3 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-orbs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d796f2b524b82c9dc9e4ff4bc38c6e8a2cd61f47c97d5c1af092cc97fd7110 +size 2059266 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-ready-bw.webp b/public/assets/webp/moloch800/1440x1440/warriors-ready-bw.webp new file mode 100644 index 0000000..64f72f7 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-ready-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47a3789da3430072bff05ebcbc6285c5a516bbdf2052af9aeab2e8d822a0f3cb +size 643236 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-ready-c.webp b/public/assets/webp/moloch800/1440x1440/warriors-ready-c.webp new file mode 100644 index 0000000..b59b491 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-ready-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9ddabfc27d2b485197849a03818bcc18d99a7b51d7834a12bf03eb90525518d +size 1238958 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-standing-bw.webp b/public/assets/webp/moloch800/1440x1440/warriors-standing-bw.webp new file mode 100644 index 0000000..9fdc2eb --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-standing-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39969e0884d790907cda19bca3958810b1ee5ded96a6b6a6ea706c13d0f0b487 +size 671046 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-standing-c.webp b/public/assets/webp/moloch800/1440x1440/warriors-standing-c.webp new file mode 100644 index 0000000..47b7ad0 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-standing-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b04c6c3bf1be0da992aa30262566fc5cb68afdcf48d8251c6d84cc6e77f9c08e +size 1239688 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-triangle-bw.webp b/public/assets/webp/moloch800/1440x1440/warriors-triangle-bw.webp new file mode 100644 index 0000000..7991c19 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-triangle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58d3f688a385c4381630aed01c2881461369ed4b37586e34df0720dc86f0901c +size 745860 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-triangle-c.webp b/public/assets/webp/moloch800/1440x1440/warriors-triangle-c.webp new file mode 100644 index 0000000..a6db15b --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-triangle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b089ac3bdb2d2170e01fb19a89a7b37cc20d6d38370cba7b73dbcddaf951bbcb +size 1340030 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-white-bw.webp b/public/assets/webp/moloch800/1440x1440/warriors-white-bw.webp new file mode 100644 index 0000000..edae539 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-white-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7cf8480a9ae4aab67e073aaf5be627d71adf08d9cf517b9848bed0f23a628bc +size 934970 diff --git a/public/assets/webp/moloch800/1440x1440/warriors-white-c.webp b/public/assets/webp/moloch800/1440x1440/warriors-white-c.webp new file mode 100644 index 0000000..a8ec863 --- /dev/null +++ b/public/assets/webp/moloch800/1440x1440/warriors-white-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55b23e741a6ab4b98d1c5ecaa3706caf5244babc8393198e6da41c8a8b81f28e +size 1727856 diff --git a/public/assets/webp/moloch800/1440x550/ship-front-bw.webp b/public/assets/webp/moloch800/1440x550/ship-front-bw.webp new file mode 100644 index 0000000..2b31144 --- /dev/null +++ b/public/assets/webp/moloch800/1440x550/ship-front-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57590ce0b9e98a46ccf2926da0b212eda7cf4333d977b55c7b00ebc061d8a32d +size 140302 diff --git a/public/assets/webp/moloch800/1440x550/ship-front-c.webp b/public/assets/webp/moloch800/1440x550/ship-front-c.webp new file mode 100644 index 0000000..2a3816c --- /dev/null +++ b/public/assets/webp/moloch800/1440x550/ship-front-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae1cd08126ff86c71953346a706b30c32315bab1535234486669017418691ac9 +size 224762 diff --git a/public/assets/webp/moloch800/1440x550/ship-mech-bw.webp b/public/assets/webp/moloch800/1440x550/ship-mech-bw.webp new file mode 100644 index 0000000..299d925 --- /dev/null +++ b/public/assets/webp/moloch800/1440x550/ship-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32f9d42053a65c70d85c607423240ad486cee2b127950dafa226f8c2ca4f3621 +size 129334 diff --git a/public/assets/webp/moloch800/1440x550/ship-mech-c.webp b/public/assets/webp/moloch800/1440x550/ship-mech-c.webp new file mode 100644 index 0000000..aa55714 --- /dev/null +++ b/public/assets/webp/moloch800/1440x550/ship-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c60be509c32b6a102c41155a0a6937de7d9a82772755c979c4118646ff631383 +size 217490 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/arch-gate-bw.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/arch-gate-bw.webp new file mode 100644 index 0000000..b0b8b52 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/arch-gate-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02d64049c0da431f63245c57fb61eda1a4fd7769381136609171638ca62e4625 +size 40612 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/arch-gate-c.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/arch-gate-c.webp new file mode 100644 index 0000000..dab619a --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/arch-gate-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d893e326cc824276c7e1d9dd34cb10c6afcc0470b844bca923a2873b752e072d +size 51096 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/book-orb-bw.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/book-orb-bw.webp new file mode 100644 index 0000000..cd951de --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/book-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f5eeed6a820c24fe1b5911d9b8707a0b523d1085e10dc28d53e06a399d08ce +size 37916 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/book-orb-c.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/book-orb-c.webp new file mode 100644 index 0000000..218a5e3 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/book-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac628c20098a1451d660ccc3003f66b7999fec5bfb20c0f3933d74d230f4abac +size 42360 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/compass-circular-bw.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/compass-circular-bw.webp new file mode 100644 index 0000000..ce5c517 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/compass-circular-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fadb75a9b7000f4204fc11c576c98e8beb08c7a013e0a4a7b1b5947f457a846d +size 42116 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/compass-circular-c.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/compass-circular-c.webp new file mode 100644 index 0000000..ce80fca --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/compass-circular-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6702c31faedb142e22e1e5f63dbaec3f78d4f0ff8e64034defae6fb501a7a0a8 +size 48590 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/raven-solo-bw.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/raven-solo-bw.webp new file mode 100644 index 0000000..040cf09 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/raven-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a599261af70cdb3e38f6cee412ff36db09dae00a5193a3204fc50a13c64e0b +size 38266 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/raven-solo-c.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/raven-solo-c.webp new file mode 100644 index 0000000..f54cafc --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/raven-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49bd620a052dbbd82b7b392e8dbb00fc3643ba1d7f0a5afdde88c3ced084092c +size 44444 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-cloud-bw.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-cloud-bw.webp new file mode 100644 index 0000000..f959a30 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-cloud-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f70fc20d81f4760683dccb637008151fe26f5cc82d2c7dbeb381fbdf647404a +size 41696 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-cloud-c.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-cloud-c.webp new file mode 100644 index 0000000..619c948 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-cloud-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b6bebe089d4a7c4f98d80f6489fec0153c862553780e35f7deccae258427c3 +size 48418 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-curve-bw.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-curve-bw.webp new file mode 100644 index 0000000..8c46dda --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-curve-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f910cf624484b5bb10c00984033d58b4592adb0e3b67e0123fb464d64d0bb9a0 +size 37528 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-curve-c.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-curve-c.webp new file mode 100644 index 0000000..9a0299b --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-curve-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:082bd9ed59daf1e5302a28248165a3206b6662cd6ef68ddc370d2837c1a9edeb +size 42186 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-twist-bw.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-twist-bw.webp new file mode 100644 index 0000000..cf1d203 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-twist-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b67a043d017fe4055cb14012b0162d47db328be55d81f1e61be498f6236dc86 +size 32532 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-twist-c.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-twist-c.webp new file mode 100644 index 0000000..d48e0b9 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/stairs-twist-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681dee250c69491cf5cad2e03c5030b903bdcb12a0be209a3d432f0822653c5e +size 36518 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/stone-pedestal-bw.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/stone-pedestal-bw.webp new file mode 100644 index 0000000..3784b63 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/stone-pedestal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f7e0ebcd75f5bc73209818678f5a1c33bfe0f2909d474cd2f82ff522fa74a4 +size 35188 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/stone-pedestal-c.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/stone-pedestal-c.webp new file mode 100644 index 0000000..55c67be --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/stone-pedestal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52b65bc1170435cfeff27bfea5a6569316218e79c7cff3dab21713478c17377d +size 37354 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/tower-floating-bw.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/tower-floating-bw.webp new file mode 100644 index 0000000..ee1d4cb --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/tower-floating-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c242f70a95b1c22a780a1d2646bfd846d05841a0c5503af968ef4a4b66365a +size 26276 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/tower-floating-c.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/tower-floating-c.webp new file mode 100644 index 0000000..37ee038 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/tower-floating-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b464e5412405c79a4e64317af7493fa43f8acc326dba5fbb917d07a37fed48 +size 28050 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/tower-platform-bw.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/tower-platform-bw.webp new file mode 100644 index 0000000..bcf9779 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/tower-platform-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6ad155c86f0b61c67cf3828b086fd60b6b8c8e27e2571c636ff48cbfaa584d3 +size 45328 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/tower-platform-c.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/tower-platform-c.webp new file mode 100644 index 0000000..1330b4b --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/tower-platform-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ce6a0639e652aff6e79f9abc8f69f608a65931daa0685d4ac43152e8d03e045 +size 55118 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/tower-tree-bw.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/tower-tree-bw.webp new file mode 100644 index 0000000..6867c57 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/tower-tree-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a49c1f048ec5f2841ac2f7dc459507d0be8960a160632c862dbeb6868326f2c +size 34124 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/tower-tree-c.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/tower-tree-c.webp new file mode 100644 index 0000000..7ccd3e1 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/tower-tree-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e09baf7b5ecef0bf43f56a7cf9e5d2081d0429ea2fff92f770db779939af822 +size 39052 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/tree-island-bw.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/tree-island-bw.webp new file mode 100644 index 0000000..3bf0c96 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/tree-island-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5333ff497dfe656d8191793ff10338517ac2960a53f0280319b12d4336b1f1aa +size 39300 diff --git a/public/assets/webp/moloch800/thumbnails/1080x1440/tree-island-c.webp b/public/assets/webp/moloch800/thumbnails/1080x1440/tree-island-c.webp new file mode 100644 index 0000000..8d0922d --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1080x1440/tree-island-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:055d62b43307988be2a032ffb3988a474094e4c287c35ee3ea80d5223c1f9c9b +size 47526 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/castle-flag-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/castle-flag-bw.webp new file mode 100644 index 0000000..f3b3791 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/castle-flag-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2438231a76ec91c7cbc3410166fcce464de44eede782b2f6d13f5585a52768da +size 38478 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/castle-flag-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/castle-flag-c.webp new file mode 100644 index 0000000..2e0a4b5 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/castle-flag-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76a8dc8b78c2e91ca90ac8d5c07cddde39beedbb4d880a703c537651939e29e +size 47358 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/castle-staff-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/castle-staff-bw.webp new file mode 100644 index 0000000..f4b2167 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/castle-staff-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f1797c9c0ea2ec34b3a2f4f27b88b08eb9898d3470471964008c7f3c0a7bfd7 +size 49388 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/castle-staff-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/castle-staff-c.webp new file mode 100644 index 0000000..d1f4f7e --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/castle-staff-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6c9e188c5df0dafddbfd715747561e2cbc3021e45de6a6aa11f5b6a822169c6 +size 55398 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/desk-work-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/desk-work-bw.webp new file mode 100644 index 0000000..7be227b --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/desk-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d907b47ade43f3f6b8f2085febcc2c9466f2a1655046026c19863ea4582917ac +size 45198 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/desk-work-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/desk-work-c.webp new file mode 100644 index 0000000..eca144e --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/desk-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3eb4587ed16dd56ff11b57d8c9f49cf0d4a0cca67c9f4340c40234e733efadd +size 49870 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/forge-anvil-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-anvil-bw.webp new file mode 100644 index 0000000..6677bc7 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-anvil-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4365bbb967fa14569b54599b33bb6e0ba651b460ab3562a2a8e78422270045b +size 51276 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/forge-anvil-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-anvil-c.webp new file mode 100644 index 0000000..ea43600 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-anvil-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:832da892a0724841f840087f9c2e6d60b2cbe0b9cf7896412001eaa413312f78 +size 56414 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/forge-building-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-building-bw.webp new file mode 100644 index 0000000..0adf43a --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-building-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:add95dd15e9fb79da08a101b5421f8d040b89d2a0f5f293fb78908ed08b76a13 +size 45002 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/forge-building-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-building-c.webp new file mode 100644 index 0000000..b8fd5fc --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-building-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a0b7315b3d79fab5298ecd87ce8a0ec714fa84898c71296a6a3f5fc824ce9de +size 49150 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/forge-duo-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-duo-bw.webp new file mode 100644 index 0000000..5c47ff0 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-duo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73089d9f92e9640eaa120137f54cfd69e9a4fe6b9f5463bc56b44d5a0be9ce9e +size 42504 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/forge-duo-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-duo-c.webp new file mode 100644 index 0000000..ec510ad --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-duo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a8707a998cd0c2a4922594a82423c5336e7f6846872d27d2c15c9d31c15261b +size 45394 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/forge-fire-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-fire-bw.webp new file mode 100644 index 0000000..e8a8e44 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-fire-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5343805aa674f43fa232b14cf0ab4bff83467b52a8853cca48d6ff039e7baef7 +size 48370 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/forge-fire-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-fire-c.webp new file mode 100644 index 0000000..ef3a91d --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-fire-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636201b6c934cc01b945b5fe6e8e1ba8d9b07b04f8282017d0ee31d8c389c2f8 +size 56662 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/forge-work-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-work-bw.webp new file mode 100644 index 0000000..671d5e9 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e77ebaeb7ccd620016965fe28eca956ac87b2a8d3b1cea5739703b9de725991 +size 46946 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/forge-work-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-work-c.webp new file mode 100644 index 0000000..8325f29 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/forge-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149d8ccfaf8879ef6fe13c27c920657a7e22ab30ea1fd670fe12e30a268e07eb +size 50906 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/portal-arch-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/portal-arch-bw.webp new file mode 100644 index 0000000..0093aa3 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/portal-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72ffd6614ad333ab9a2afb0e30db6152f3b1ee8edaef70b0466985d9e4ef68b3 +size 51700 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/portal-arch-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/portal-arch-c.webp new file mode 100644 index 0000000..73307a5 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/portal-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f7dd83c32af31f2de8aa83b08dbbd682aeb6ef67f9ac14cb1d9dfad86ae155 +size 60796 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/ravens-flight-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/ravens-flight-bw.webp new file mode 100644 index 0000000..74d713b --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/ravens-flight-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8d16909d642318f05b78eee5e61962aba22950c45059887031eef56c46c49f +size 52598 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/ravens-flight-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/ravens-flight-c.webp new file mode 100644 index 0000000..f80656b --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/ravens-flight-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd74a94836d50bf112d4c5ebf0b564a0dab1c46837ee65629e99a883a93b7284 +size 55506 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/stairs-spiral-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/stairs-spiral-bw.webp new file mode 100644 index 0000000..77b4893 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/stairs-spiral-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:403f23cbb85b29d913791c08512d47af304b46f49bf88b238deb2d16b6085cc2 +size 42154 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/stairs-spiral-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/stairs-spiral-c.webp new file mode 100644 index 0000000..80b6ed4 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/stairs-spiral-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0dbcedf390421ec26b3d833225e82be1afc72f118de49a84bed0390072c82bd +size 45036 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/stone-monuments-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/stone-monuments-bw.webp new file mode 100644 index 0000000..dcfce96 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/stone-monuments-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b88c96ffa49d1a21d2228f69cae4e285a6925b0949725b4ec0ae741dbd16ae3 +size 48670 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/stone-monuments-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/stone-monuments-c.webp new file mode 100644 index 0000000..44ef209 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/stone-monuments-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff1f16de8109137c6edc9b5cb4093c8c54d2c125f72317b7835105ad7ed951d7 +size 50992 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/table-castle-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/table-castle-bw.webp new file mode 100644 index 0000000..e6a863e --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/table-castle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76159c7a0fa2f47679a4b7258e69bf74395ded2feb8529a4154f2d540ec4cb50 +size 46276 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/table-castle-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/table-castle-c.webp new file mode 100644 index 0000000..30ca22c --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/table-castle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69297dd444649cfb3e512490388fee0c4a13111c70a905d36ee5b8f827221734 +size 51018 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/tree-mech-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/tree-mech-bw.webp new file mode 100644 index 0000000..f179311 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/tree-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6529f3a4ce67f3e5688c0465629ddbaf87b785693a146021c8c8f87c616c59bf +size 55564 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/tree-mech-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/tree-mech-c.webp new file mode 100644 index 0000000..2526ff4 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/tree-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc503a2660ada5c56f8bfad29f9d9b05ef0c23c1d7f9d3cfc29e8ca091c25b75 +size 61052 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-arch-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-arch-bw.webp new file mode 100644 index 0000000..9bdf526 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58774b567f6c51dd24444bbe044fb4eaf91bfa58af56ed5bbe499085beffaf0c +size 48922 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-arch-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-arch-c.webp new file mode 100644 index 0000000..3315f10 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e87c16b3bb458b58b4c77a0e911093d932c8d1c2b3dad4015bb07e05d7b1e11 +size 56418 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-backs-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-backs-bw.webp new file mode 100644 index 0000000..e293d22 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-backs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9773afbd9a142e4f3d965b17d6b268195ee1e9cef98de2be41b5275e6cf0dc4c +size 52018 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-backs-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-backs-c.webp new file mode 100644 index 0000000..3ac66f1 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-backs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d4255e91b8673aeb2e9e74db59ec3aa0c4285bddceebdba6b926752fdcc55ae +size 54620 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-beast-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-beast-bw.webp new file mode 100644 index 0000000..1c6fd74 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-beast-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:897989df3d5c4898729ddea0b89502a21d56f875277953a040f51f4df7ecb4ab +size 49034 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-beast-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-beast-c.webp new file mode 100644 index 0000000..77a5b9b --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-beast-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ec9f9907f4812060aa393dba0c081185d7719f3169cc21e6fb4cba33ad94d81 +size 53160 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-mountain-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-mountain-bw.webp new file mode 100644 index 0000000..4276f78 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-mountain-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:881665bf9f403255ff303c479ece8b099f4c33273e4180f388650872c474e903 +size 56260 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-mountain-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-mountain-c.webp new file mode 100644 index 0000000..d898c2a --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-mountain-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:805c2ed810cca0d5d7ef6719279e7b492d3112b60042074f23f6ab3159bf3b9e +size 63908 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-orb-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-orb-bw.webp new file mode 100644 index 0000000..17f84f9 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a52f7634299229dd77a2b681d3206fd64adb06ed1519ba60267ea944302d045 +size 47866 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-orb-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-orb-c.webp new file mode 100644 index 0000000..fceb6c5 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8794e7930bcb63ef70d6a6a003938b43685ba5076a9de06b8f901b1b3af880ca +size 50688 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-portal-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-portal-bw.webp new file mode 100644 index 0000000..f6dd406 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-portal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5b87ca9b52c663821d9739bfb0494684670b9dc06d8174bc21f89289055fd7 +size 47486 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-portal-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-portal-c.webp new file mode 100644 index 0000000..b643e3f --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-portal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e23fc1573aafaf8feaeaff26499bbfd84992829f444f604636e4678bb46390a +size 54072 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-portraits-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-portraits-bw.webp new file mode 100644 index 0000000..ad4dd4d --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-portraits-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f62456ee10eb2358899645d8e39a4a82fa18aee7b8f6224fb7d1ade33349c6c1 +size 43290 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-portraits-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-portraits-c.webp new file mode 100644 index 0000000..c2ee2d8 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-portraits-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:535d75db0df36e035789f7a552754ecb30c23fb67e009b8e4bcaf81717849cdb +size 46978 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-profiles-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-profiles-bw.webp new file mode 100644 index 0000000..0e9bd1d --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-profiles-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68bc90048bdff7b3c2a5cf4f2366b85167eb3a84c047946104e83ed87f43e805 +size 49210 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-profiles-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-profiles-c.webp new file mode 100644 index 0000000..566a8e7 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-profiles-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f42bf3116ee1b09aadb2fa1af043fb824a57aee03c77779ec4ad1a93a3b954b0 +size 55324 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-warriors-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-warriors-bw.webp new file mode 100644 index 0000000..b9af71d --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-warriors-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a83c1dcb6eaaef2e71467feac27995f6fd7a194a4a2b3dc7647ccc87e5ec2957 +size 42900 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-warriors-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-warriors-c.webp new file mode 100644 index 0000000..af017a5 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-warriors-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f1c3e60241210b46ab4f078572acadcc22b4a2a1422ca305da775d5daeab16 +size 47468 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-weapons-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-weapons-bw.webp new file mode 100644 index 0000000..1e845dc --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-weapons-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:544f490cbafbd62d0d4edbce469dffdecc3c4bcd40583d75e8da0f2a7604e277 +size 49436 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-weapons-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-weapons-c.webp new file mode 100644 index 0000000..c1f8e2a --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-weapons-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcf7a57722c02bc34bfe208142c9f6c325ebce1b34c84bfd25e229acd8fab7e5 +size 56910 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-wings-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-wings-bw.webp new file mode 100644 index 0000000..b9b54bb --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-wings-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e557b92b114e0d6cf6d3a5971f11f8150a56e32bdcd30acca8f34a2d942a757d +size 41598 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/trio-wings-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-wings-c.webp new file mode 100644 index 0000000..db62619 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/trio-wings-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2592b0ba173947af466717d71ef07d2035bc1e83dbd08d6a9ea0b55b8149a8e4 +size 44970 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warrior-solo-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warrior-solo-bw.webp new file mode 100644 index 0000000..43d382f --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warrior-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:003eaaf06a7392601fa35b5a288319ee82d5c2f2866b0ceaf9b2428d788515af +size 41614 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warrior-solo-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warrior-solo-c.webp new file mode 100644 index 0000000..79264e0 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warrior-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6047e117b1a9a23a0505454d2a025c2a60e49248eec09039a013ed3b3606050a +size 42168 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-armed-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-armed-bw.webp new file mode 100644 index 0000000..502d0fb --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-armed-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e051344e831caa6789f9f1ecbbc7c9f15c7c8813af8ab1b3c12825209fdafc16 +size 40854 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-armed-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-armed-c.webp new file mode 100644 index 0000000..ff130d8 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-armed-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb3f44b4d0572b975e59201660629c04d0cbf019ff2e8cc48935649fd3ea8fd +size 44054 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-belts-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-belts-bw.webp new file mode 100644 index 0000000..f724e09 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-belts-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4313338390e236f81c580b2f3cf678f735e3cc043a3cb280c1f17d635b8e451e +size 44022 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-belts-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-belts-c.webp new file mode 100644 index 0000000..8f019f0 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-belts-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faba7005eb61d7e3faf5ac536a14a0b65d66fe2ed348ca65085069ef702b8fc5 +size 48158 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-casual-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-casual-bw.webp new file mode 100644 index 0000000..c1c3195 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-casual-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6004f4a3183ac64102b15123e819355fd34750b9e295f66d504fee2cbbf5a4bd +size 46734 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-casual-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-casual-c.webp new file mode 100644 index 0000000..d79f3cf --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-casual-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:240318f0ecb422176330ed4218e3ac5fb153d828cd30c708862e4e8ebaa3ec1c +size 50696 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-confident-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-confident-bw.webp new file mode 100644 index 0000000..da802ce --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-confident-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d99f59e46dba89cc5e98b011808c4ea0f7d1763e5ab2842dfd0885c9e4b3fdc +size 50340 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-confident-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-confident-c.webp new file mode 100644 index 0000000..2669cd1 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-confident-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62d370157ffa33af0b388389c3a4bdb4dc54479a01c1c1b758aee5ebb121c7ef +size 54938 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-forward-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-forward-bw.webp new file mode 100644 index 0000000..b965a06 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-forward-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87047012b16276a06f6e3236b7862a40a5cf9c233215969008634226e8cf5f14 +size 47648 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-forward-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-forward-c.webp new file mode 100644 index 0000000..67339f2 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-forward-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b543691f34149d6a4d4b81a423d4691e02978054a6eb5b1d002d05dbfe8ed547 +size 51364 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-magic-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-magic-bw.webp new file mode 100644 index 0000000..9568b92 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-magic-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b64dccff713e72b2bc9b7501e80ce5adc2024da84cc70e09e5575d3bf235c5f +size 48618 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-magic-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-magic-c.webp new file mode 100644 index 0000000..d6c6062 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-magic-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c851342180c3b6c6ddc5e5cf6c1c9cb06399e56e40b31e59a83b5d845285f8b5 +size 57746 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-masked-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-masked-bw.webp new file mode 100644 index 0000000..0f76f2c --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-masked-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:600c3b653869443e1bf4401a207a1b479a269dfb9366027c9827373a956abd98 +size 45060 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-masked-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-masked-c.webp new file mode 100644 index 0000000..a49ecb3 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-masked-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:301d6fee06489fa7f588e393b7e932620ee46b249702e34ef5c8dab09cb666da +size 52030 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-moloch-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-moloch-bw.webp new file mode 100644 index 0000000..bb627c8 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-moloch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76f9a6f47b1308134844dd4ffd6332606b4419ae6f9c40fa2d6e405b1f0086f1 +size 55166 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-moloch-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-moloch-c.webp new file mode 100644 index 0000000..cae3dd9 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-moloch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d60260bac3dae93722a07c6fc5c72e19f2777469519e3bff64b9d78d0060b591 +size 60252 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-orbs-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-orbs-bw.webp new file mode 100644 index 0000000..2d68b3f --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-orbs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52b5319f93a24f6c96ee6e09de8cc61c95079112094eda31b0716b36f686e535 +size 63150 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-orbs-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-orbs-c.webp new file mode 100644 index 0000000..1f9930e --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-orbs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e8099c923da5b42ae88b664c5ecc60cfaa9b4ab59dbc26a5b14f08300e3c733 +size 68640 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-ready-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-ready-bw.webp new file mode 100644 index 0000000..87f91b7 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-ready-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e754f598554a46c6f6650e3064b3ab55a475c16472a07a92d674b5816dc05027 +size 45882 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-ready-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-ready-c.webp new file mode 100644 index 0000000..9db1320 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-ready-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:654f0f1b871998a1f8c5d1f850591d2729704601d950a444cdd69b0107cdd558 +size 52574 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-standing-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-standing-bw.webp new file mode 100644 index 0000000..f747a23 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-standing-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1a02d56000c478a83b9df528f13cff94f8f444bfece09ac0b2fd52e174e9294 +size 47922 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-standing-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-standing-c.webp new file mode 100644 index 0000000..ba0ef23 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-standing-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77caddece6c981afca7df41d29f315233b9fcc0b87e9c2520c770337bf1ff862 +size 52706 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-triangle-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-triangle-bw.webp new file mode 100644 index 0000000..79c709c --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-triangle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cad49975a365c75e79ad4345454e76c50046c56ea5de10cf578cf645d8c43b3 +size 47538 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-triangle-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-triangle-c.webp new file mode 100644 index 0000000..6c342a0 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-triangle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee4657af6817823ac65c210d4c61c0d6ed7bd8bcfe3b690d06c5f028093628d7 +size 50732 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-white-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-white-bw.webp new file mode 100644 index 0000000..c0adb16 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-white-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:868b047ba1d7634e58aa90cca564ff85285fae26d931dcdc198570e850441230 +size 55588 diff --git a/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-white-c.webp b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-white-c.webp new file mode 100644 index 0000000..e1d2ebc --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x1440/warriors-white-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:912e90612c9d0bbd11914bf96774c68b2b3eff1e50f5cc7b67c84185bcb70afa +size 59260 diff --git a/public/assets/webp/moloch800/thumbnails/1440x550/ship-front-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x550/ship-front-bw.webp new file mode 100644 index 0000000..338a5d6 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x550/ship-front-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e681be8fca34fe8e71431e6c6c4acd90d15262bc2c2ab2fe625c3888f7769a98 +size 38202 diff --git a/public/assets/webp/moloch800/thumbnails/1440x550/ship-front-c.webp b/public/assets/webp/moloch800/thumbnails/1440x550/ship-front-c.webp new file mode 100644 index 0000000..35702e9 --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x550/ship-front-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5555422be2174e7f4f1f7c585ec5099444c387a371225b0d854687900020ea2 +size 42456 diff --git a/public/assets/webp/moloch800/thumbnails/1440x550/ship-mech-bw.webp b/public/assets/webp/moloch800/thumbnails/1440x550/ship-mech-bw.webp new file mode 100644 index 0000000..4ec8e0a --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x550/ship-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ff8e9d445f526e7c63483dadeecbdfb351bbc50d15c39d076766e2c9bbcbc60 +size 37706 diff --git a/public/assets/webp/moloch800/thumbnails/1440x550/ship-mech-c.webp b/public/assets/webp/moloch800/thumbnails/1440x550/ship-mech-c.webp new file mode 100644 index 0000000..a6b9f2c --- /dev/null +++ b/public/assets/webp/moloch800/thumbnails/1440x550/ship-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2016347969bc58253f6757196c2b03b6b91b7a7a7915e27ef195c3a4383a16e +size 42104 diff --git a/public/assets/webp/scroll100/1080x1440/arch-gate-bw.webp b/public/assets/webp/scroll100/1080x1440/arch-gate-bw.webp new file mode 100644 index 0000000..b19a7dd --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/arch-gate-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a357fcd16cdf9d77718580fe09b82ba2d742a9018cfbe6eb18532c544c07294b +size 479288 diff --git a/public/assets/webp/scroll100/1080x1440/arch-gate-c.webp b/public/assets/webp/scroll100/1080x1440/arch-gate-c.webp new file mode 100644 index 0000000..7a88ce9 --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/arch-gate-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:963c48cd402a1c6383a58f39ebfb61a150cc38b7803f959d801dfb1c2f74952a +size 979064 diff --git a/public/assets/webp/scroll100/1080x1440/book-orb-bw.webp b/public/assets/webp/scroll100/1080x1440/book-orb-bw.webp new file mode 100644 index 0000000..1788a2f --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/book-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8b9e7188f4638edb1c31aefc1b9b035b4bd734813abd61ded302e18e0c62efa +size 469410 diff --git a/public/assets/webp/scroll100/1080x1440/book-orb-c.webp b/public/assets/webp/scroll100/1080x1440/book-orb-c.webp new file mode 100644 index 0000000..42e3c3f --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/book-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c21071358449281b05e0ab7a95c6abbd62f53780ec9b6086891f9cbddff61664 +size 869228 diff --git a/public/assets/webp/scroll100/1080x1440/compass-circular-bw.webp b/public/assets/webp/scroll100/1080x1440/compass-circular-bw.webp new file mode 100644 index 0000000..e19ca64 --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/compass-circular-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d3184c594e9d04fb2fc9aa5b8982dbdbe1fd5434bc3a9c9f49b01dc7bde5e27 +size 477920 diff --git a/public/assets/webp/scroll100/1080x1440/compass-circular-c.webp b/public/assets/webp/scroll100/1080x1440/compass-circular-c.webp new file mode 100644 index 0000000..6bcfbf1 --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/compass-circular-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0f572841e66ae1a565f792f8400e5f54cb5f0d493ed80f96672e7e799dd5f6b +size 876252 diff --git a/public/assets/webp/scroll100/1080x1440/raven-solo-bw.webp b/public/assets/webp/scroll100/1080x1440/raven-solo-bw.webp new file mode 100644 index 0000000..eeb9128 --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/raven-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b203b0c27d8835123052a0a13ac794945b9c9abb5eeecc359452e51daea270 +size 406492 diff --git a/public/assets/webp/scroll100/1080x1440/raven-solo-c.webp b/public/assets/webp/scroll100/1080x1440/raven-solo-c.webp new file mode 100644 index 0000000..ae7fa64 --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/raven-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f6c3f5cdefc7cdf3d236f364f547fe1e588417ee10a95f65070cd8c0508e48b +size 775744 diff --git a/public/assets/webp/scroll100/1080x1440/stairs-cloud-bw.webp b/public/assets/webp/scroll100/1080x1440/stairs-cloud-bw.webp new file mode 100644 index 0000000..4ac4abd --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/stairs-cloud-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f68e0d261ddd7d5d725b487c46b039fa4756a203bf8a69daa53e918a327bf9 +size 570772 diff --git a/public/assets/webp/scroll100/1080x1440/stairs-cloud-c.webp b/public/assets/webp/scroll100/1080x1440/stairs-cloud-c.webp new file mode 100644 index 0000000..505afe6 --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/stairs-cloud-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcf60183f05268f0344a471b443b1af1e7dbc4ddba205ca4f3d9069655fd78c6 +size 1117870 diff --git a/public/assets/webp/scroll100/1080x1440/stairs-curve-bw.webp b/public/assets/webp/scroll100/1080x1440/stairs-curve-bw.webp new file mode 100644 index 0000000..921815e --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/stairs-curve-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7209a5c1bf3900e46f746bb3772a0f1cf7e242651d4b4fa9675627e3c8958f35 +size 454068 diff --git a/public/assets/webp/scroll100/1080x1440/stairs-curve-c.webp b/public/assets/webp/scroll100/1080x1440/stairs-curve-c.webp new file mode 100644 index 0000000..36f60e1 --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/stairs-curve-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e29d4b22d1874dfea0394e764998dc00af7cb7fba94f2d483935b589424f11c +size 880072 diff --git a/public/assets/webp/scroll100/1080x1440/stairs-twist-bw.webp b/public/assets/webp/scroll100/1080x1440/stairs-twist-bw.webp new file mode 100644 index 0000000..b3eeb9d --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/stairs-twist-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8bc74ddc3b3989886806ecb3137cef965d3a4b74757423a2c2006fdd974085c +size 398778 diff --git a/public/assets/webp/scroll100/1080x1440/stairs-twist-c.webp b/public/assets/webp/scroll100/1080x1440/stairs-twist-c.webp new file mode 100644 index 0000000..783e59a --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/stairs-twist-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49c9c4cddeb18000210ed3d73319410d7a163cedc3185fbfb979c0f04247c3e9 +size 714266 diff --git a/public/assets/webp/scroll100/1080x1440/stone-pedestal-bw.webp b/public/assets/webp/scroll100/1080x1440/stone-pedestal-bw.webp new file mode 100644 index 0000000..c4ed2aa --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/stone-pedestal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:265a231f1abca204686c3ec9e81b791bee970a107c8e1eeb91980b3113494c1c +size 374212 diff --git a/public/assets/webp/scroll100/1080x1440/stone-pedestal-c.webp b/public/assets/webp/scroll100/1080x1440/stone-pedestal-c.webp new file mode 100644 index 0000000..e86b5c0 --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/stone-pedestal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c25c0f7de4bae9f2a4fe74150fefef87a72604aa82e4ec0c7f573af2a6fa93be +size 598578 diff --git a/public/assets/webp/scroll100/1080x1440/tower-floating-bw.webp b/public/assets/webp/scroll100/1080x1440/tower-floating-bw.webp new file mode 100644 index 0000000..20282b2 --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/tower-floating-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2c5bb98592717bcc749d4294cd0f51e8e8b2a65914f53fe663a5e8e57f6049b +size 259312 diff --git a/public/assets/webp/scroll100/1080x1440/tower-floating-c.webp b/public/assets/webp/scroll100/1080x1440/tower-floating-c.webp new file mode 100644 index 0000000..a6215d7 --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/tower-floating-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f189e253d948c5e7d572414a1a94a87b8cfab52a4f74fe883160a4c601f0ebf6 +size 466454 diff --git a/public/assets/webp/scroll100/1080x1440/tower-platform-bw.webp b/public/assets/webp/scroll100/1080x1440/tower-platform-bw.webp new file mode 100644 index 0000000..b4073f0 --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/tower-platform-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7cdb0dacfdef5783f6cbd5d0b3be9fdff1686ee2daf34c4d1eb7a337827218a +size 522018 diff --git a/public/assets/webp/scroll100/1080x1440/tower-platform-c.webp b/public/assets/webp/scroll100/1080x1440/tower-platform-c.webp new file mode 100644 index 0000000..e0fcc1f --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/tower-platform-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e97b53266ea27ad8f0cfda226ca1701ee9c243bf9f21b678774a2e5c42300da +size 1085478 diff --git a/public/assets/webp/scroll100/1080x1440/tower-tree-bw.webp b/public/assets/webp/scroll100/1080x1440/tower-tree-bw.webp new file mode 100644 index 0000000..f13d2ed --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/tower-tree-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bcd4801e125e4b587e731d44725ceb0bd81f71eaf3794b8520a1d644221277b +size 429284 diff --git a/public/assets/webp/scroll100/1080x1440/tower-tree-c.webp b/public/assets/webp/scroll100/1080x1440/tower-tree-c.webp new file mode 100644 index 0000000..d371a69 --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/tower-tree-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b0eef767287630723228d104a91c22f6049138d1bddca566125f7ed527f83d0 +size 836868 diff --git a/public/assets/webp/scroll100/1080x1440/tree-island-bw.webp b/public/assets/webp/scroll100/1080x1440/tree-island-bw.webp new file mode 100644 index 0000000..7ff6e02 --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/tree-island-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d93719083b6686defa375c7ed71293616c3acd9f02dadd9f82497a28d4e8d27e +size 483552 diff --git a/public/assets/webp/scroll100/1080x1440/tree-island-c.webp b/public/assets/webp/scroll100/1080x1440/tree-island-c.webp new file mode 100644 index 0000000..a4ef391 --- /dev/null +++ b/public/assets/webp/scroll100/1080x1440/tree-island-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8b63b5b4d2ccfec25144d7d316e7769d01f0f871d52573e33179e7ecbb5874 +size 1000478 diff --git a/public/assets/webp/scroll100/1440x1440/castle-flag-bw.webp b/public/assets/webp/scroll100/1440x1440/castle-flag-bw.webp new file mode 100644 index 0000000..0f8f82d --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/castle-flag-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b6bd125e4abf271ad327697e3afe2f720593bd9745fe72d8c400f71bb2f6740 +size 1029438 diff --git a/public/assets/webp/scroll100/1440x1440/castle-flag-c.webp b/public/assets/webp/scroll100/1440x1440/castle-flag-c.webp new file mode 100644 index 0000000..3977fef --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/castle-flag-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7a4079efe63b6c543df0a495d75d4961cb38e54f1421c1629bcae56e57a9440 +size 1348318 diff --git a/public/assets/webp/scroll100/1440x1440/castle-staff-bw.webp b/public/assets/webp/scroll100/1440x1440/castle-staff-bw.webp new file mode 100644 index 0000000..c345598 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/castle-staff-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed948be704ca1f7420183e8a84cec87798c620bda95e68c0d72d341661f00919 +size 1041180 diff --git a/public/assets/webp/scroll100/1440x1440/castle-staff-c.webp b/public/assets/webp/scroll100/1440x1440/castle-staff-c.webp new file mode 100644 index 0000000..b8f4a54 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/castle-staff-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acbdf4520397e5531b3ea54dd0362df560c54a8337edb2d2fbae86286c9caed6 +size 1532852 diff --git a/public/assets/webp/scroll100/1440x1440/desk-work-bw.webp b/public/assets/webp/scroll100/1440x1440/desk-work-bw.webp new file mode 100644 index 0000000..57ce763 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/desk-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e91a1a97a3dfa4852703566c3d45921f4534da1f2f25b05df85efc32037d1fe6 +size 844338 diff --git a/public/assets/webp/scroll100/1440x1440/desk-work-c.webp b/public/assets/webp/scroll100/1440x1440/desk-work-c.webp new file mode 100644 index 0000000..3dd286c --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/desk-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac6b2d042ff5a3f7fd8e5d22d5895f6ba0ee4c9a0494aa33e2376ecf64ed9f55 +size 1547996 diff --git a/public/assets/webp/scroll100/1440x1440/forge-anvil-bw.webp b/public/assets/webp/scroll100/1440x1440/forge-anvil-bw.webp new file mode 100644 index 0000000..5393050 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/forge-anvil-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78d4ec331d3bf79c701bfb33eb5a5d16cd9a3b039731b860a44d9979b5f11581 +size 1038696 diff --git a/public/assets/webp/scroll100/1440x1440/forge-anvil-c.webp b/public/assets/webp/scroll100/1440x1440/forge-anvil-c.webp new file mode 100644 index 0000000..2b0d88d --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/forge-anvil-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab8f4df5125226350e0906da23e8e843d3fc03fe2a0bf2f79ec337c397aa1fc +size 1830556 diff --git a/public/assets/webp/scroll100/1440x1440/forge-building-bw.webp b/public/assets/webp/scroll100/1440x1440/forge-building-bw.webp new file mode 100644 index 0000000..9c8d090 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/forge-building-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d5744ee7b56cc0bd3ee4de0d16c3989606b9789ddded2bbae01dd4087f27a03 +size 878076 diff --git a/public/assets/webp/scroll100/1440x1440/forge-building-c.webp b/public/assets/webp/scroll100/1440x1440/forge-building-c.webp new file mode 100644 index 0000000..eeba63b --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/forge-building-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd865a5a63adc41e5e21d116d22fbf0253e8aa1a45e6bd0bbdb23d4bf88db663 +size 1561682 diff --git a/public/assets/webp/scroll100/1440x1440/forge-duo-bw.webp b/public/assets/webp/scroll100/1440x1440/forge-duo-bw.webp new file mode 100644 index 0000000..51e66ad --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/forge-duo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b133a30873e167bf0475436c03506138f15d7785b69ec180d2cfbec2ce7ac7c +size 857880 diff --git a/public/assets/webp/scroll100/1440x1440/forge-duo-c.webp b/public/assets/webp/scroll100/1440x1440/forge-duo-c.webp new file mode 100644 index 0000000..8853284 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/forge-duo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de86199459cee05b080dc7cb7ec20315c91f649339e0e7ecefb86896f090af93 +size 1468804 diff --git a/public/assets/webp/scroll100/1440x1440/forge-fire-bw.webp b/public/assets/webp/scroll100/1440x1440/forge-fire-bw.webp new file mode 100644 index 0000000..a3ccab5 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/forge-fire-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e0beb510f96e587378254ace97e7c742ca089805ccbcb205573f21d2ed7eba5 +size 953338 diff --git a/public/assets/webp/scroll100/1440x1440/forge-fire-c.webp b/public/assets/webp/scroll100/1440x1440/forge-fire-c.webp new file mode 100644 index 0000000..40e25ba --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/forge-fire-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:003162708f4b9f29c9f6ca107f6fc4417dde20be5405044fc238eff05021964b +size 1788650 diff --git a/public/assets/webp/scroll100/1440x1440/forge-work-bw.webp b/public/assets/webp/scroll100/1440x1440/forge-work-bw.webp new file mode 100644 index 0000000..52418b0 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/forge-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:501d89ea553964dd84fbc24ddca970b01ef843e8c039acce95f51773d8785d5f +size 927538 diff --git a/public/assets/webp/scroll100/1440x1440/forge-work-c.webp b/public/assets/webp/scroll100/1440x1440/forge-work-c.webp new file mode 100644 index 0000000..a19ffea --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/forge-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cd68328e944a92996e23a60410fde033bcd7145ffbb24c9f8a06e8e52ef446e +size 1605608 diff --git a/public/assets/webp/scroll100/1440x1440/portal-arch-bw.webp b/public/assets/webp/scroll100/1440x1440/portal-arch-bw.webp new file mode 100644 index 0000000..3379da5 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/portal-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:292a4c07b014ab3e07b1a53d2cac3ab0ea046fa159208bd43f8c5283cda65b60 +size 1074724 diff --git a/public/assets/webp/scroll100/1440x1440/portal-arch-c.webp b/public/assets/webp/scroll100/1440x1440/portal-arch-c.webp new file mode 100644 index 0000000..bcf6c13 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/portal-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec31ebff19696cdc09054062fd78567913f7b2f9410dd36a3e652ae098ba30a0 +size 2152124 diff --git a/public/assets/webp/scroll100/1440x1440/ravens-flight-bw.webp b/public/assets/webp/scroll100/1440x1440/ravens-flight-bw.webp new file mode 100644 index 0000000..d59cd7f --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/ravens-flight-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb9d3cd6a225e72b68c9099dae01d83e57146154fce8691cb29c4333f074dd7 +size 971636 diff --git a/public/assets/webp/scroll100/1440x1440/ravens-flight-c.webp b/public/assets/webp/scroll100/1440x1440/ravens-flight-c.webp new file mode 100644 index 0000000..0cfdc6c --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/ravens-flight-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5066316de504636751afd4efe72a61e470984d218ee0a124745b3d058c549517 +size 1532116 diff --git a/public/assets/webp/scroll100/1440x1440/stairs-spiral-bw.webp b/public/assets/webp/scroll100/1440x1440/stairs-spiral-bw.webp new file mode 100644 index 0000000..c73b8e0 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/stairs-spiral-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f34eb3ab6868fd28849b5063ba10b93ee0501b735259ac6a5f18c01d33b6e04 +size 790494 diff --git a/public/assets/webp/scroll100/1440x1440/stairs-spiral-c.webp b/public/assets/webp/scroll100/1440x1440/stairs-spiral-c.webp new file mode 100644 index 0000000..7d31c8c --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/stairs-spiral-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec203580f4fc9d2bcc1c3f2aab183d0532e902f94e06e83b6c2c63fcfb83396e +size 1254186 diff --git a/public/assets/webp/scroll100/1440x1440/stone-monuments-bw.webp b/public/assets/webp/scroll100/1440x1440/stone-monuments-bw.webp new file mode 100644 index 0000000..aecf522 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/stone-monuments-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2d8732f46222dc8c7d52ffaa915e47ff056b7e9f5a13b972d1ce1d5271574f4 +size 880248 diff --git a/public/assets/webp/scroll100/1440x1440/stone-monuments-c.webp b/public/assets/webp/scroll100/1440x1440/stone-monuments-c.webp new file mode 100644 index 0000000..bdb72c5 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/stone-monuments-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf6db6b6f135ba55e45a5ffe312535c08c7bf0e0b11b9c3446210fa160a9150 +size 1363226 diff --git a/public/assets/webp/scroll100/1440x1440/table-castle-bw.webp b/public/assets/webp/scroll100/1440x1440/table-castle-bw.webp new file mode 100644 index 0000000..1532de7 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/table-castle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c249e71fdd860f58ba6c731124149a98a0caaa1a50558f7fd6a0d4dd8fad3f94 +size 849546 diff --git a/public/assets/webp/scroll100/1440x1440/table-castle-c.webp b/public/assets/webp/scroll100/1440x1440/table-castle-c.webp new file mode 100644 index 0000000..0bfd1d2 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/table-castle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:173bb11a3b49f85ba403fca013facd70581af17ee5c53f570972792ce8cccd1f +size 1438222 diff --git a/public/assets/webp/scroll100/1440x1440/tree-mech-bw.webp b/public/assets/webp/scroll100/1440x1440/tree-mech-bw.webp new file mode 100644 index 0000000..48ac632 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/tree-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bc71ef648ca33cbbc45239c0b7edb711ae461aef08b02c1fc7b4e3387e86b2c +size 1063630 diff --git a/public/assets/webp/scroll100/1440x1440/tree-mech-c.webp b/public/assets/webp/scroll100/1440x1440/tree-mech-c.webp new file mode 100644 index 0000000..03afc6f --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/tree-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e4434cb278385f46b87b2a152357b7007b329f7d3f520ae2ca43c5fcd8db954 +size 1838596 diff --git a/public/assets/webp/scroll100/1440x1440/trio-arch-bw.webp b/public/assets/webp/scroll100/1440x1440/trio-arch-bw.webp new file mode 100644 index 0000000..cf8a258 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd86002dc58fb0534f34e12a28f25e7b6c267043cfe2e6b68d4ee34dd9802490 +size 919856 diff --git a/public/assets/webp/scroll100/1440x1440/trio-arch-c.webp b/public/assets/webp/scroll100/1440x1440/trio-arch-c.webp new file mode 100644 index 0000000..2fedcc6 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbc409f8685b42916c8e0ca784cdf15f968383d309a1887c8cd6060ad506bf23 +size 1709636 diff --git a/public/assets/webp/scroll100/1440x1440/trio-backs-bw.webp b/public/assets/webp/scroll100/1440x1440/trio-backs-bw.webp new file mode 100644 index 0000000..751c4b9 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-backs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da4ffbec10fc3b8bbcdb266ba96bfe532543d48991c0613569af3f5f3c9aef33 +size 1079726 diff --git a/public/assets/webp/scroll100/1440x1440/trio-backs-c.webp b/public/assets/webp/scroll100/1440x1440/trio-backs-c.webp new file mode 100644 index 0000000..c2f8b35 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-backs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28ce7667ce476efb14fc45c90b15d60b99804b1cb90f2b6d92fb6bed90bbae45 +size 1737978 diff --git a/public/assets/webp/scroll100/1440x1440/trio-beast-bw.webp b/public/assets/webp/scroll100/1440x1440/trio-beast-bw.webp new file mode 100644 index 0000000..73cf846 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-beast-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4000389de5ef5db41139552a59cad8afe63614f5ad571361c3866cbf1467daba +size 907298 diff --git a/public/assets/webp/scroll100/1440x1440/trio-beast-c.webp b/public/assets/webp/scroll100/1440x1440/trio-beast-c.webp new file mode 100644 index 0000000..c438605 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-beast-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b5756415f5bc05ac97aafa5a70c589e12a59617318e87e3c3b7a4ac2f6c56e0 +size 1515924 diff --git a/public/assets/webp/scroll100/1440x1440/trio-mountain-bw.webp b/public/assets/webp/scroll100/1440x1440/trio-mountain-bw.webp new file mode 100644 index 0000000..6f1ef7e --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-mountain-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:578e73cd66e01172853fbd24b2c2079ccb0c2e3c2303f1a672319f5a5a13caac +size 1062178 diff --git a/public/assets/webp/scroll100/1440x1440/trio-mountain-c.webp b/public/assets/webp/scroll100/1440x1440/trio-mountain-c.webp new file mode 100644 index 0000000..136ace4 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-mountain-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4503cc3d84ba5083e158e9e5ff490adcecd118b64dc7d9180c67809d47c6e4e3 +size 1901906 diff --git a/public/assets/webp/scroll100/1440x1440/trio-orb-bw.webp b/public/assets/webp/scroll100/1440x1440/trio-orb-bw.webp new file mode 100644 index 0000000..ee28fd6 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d375e3247467526a82677abb85e11f4f84445633499b74cd296299c14a740684 +size 880706 diff --git a/public/assets/webp/scroll100/1440x1440/trio-orb-c.webp b/public/assets/webp/scroll100/1440x1440/trio-orb-c.webp new file mode 100644 index 0000000..164fc68 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b2490e0d7299d300509ef48843be66cef049b783011e4d283a1647d6bf44d06 +size 1432176 diff --git a/public/assets/webp/scroll100/1440x1440/trio-portal-bw.webp b/public/assets/webp/scroll100/1440x1440/trio-portal-bw.webp new file mode 100644 index 0000000..2431a68 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-portal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda3bcbca6215bf851eee5a450af28cff000936444a3dbb35828c36546535ec4 +size 884404 diff --git a/public/assets/webp/scroll100/1440x1440/trio-portal-c.webp b/public/assets/webp/scroll100/1440x1440/trio-portal-c.webp new file mode 100644 index 0000000..cfa3126 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-portal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a49e9ae7e1dc533f82b2438efd93cd32ac0c173f86d22e8394006caf4f14cf5 +size 1591886 diff --git a/public/assets/webp/scroll100/1440x1440/trio-portraits-bw.webp b/public/assets/webp/scroll100/1440x1440/trio-portraits-bw.webp new file mode 100644 index 0000000..e9c234c --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-portraits-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa2be327e1d3549bb5aec189128256a4984f1635e34da35c22ab3f14d56033c9 +size 792652 diff --git a/public/assets/webp/scroll100/1440x1440/trio-portraits-c.webp b/public/assets/webp/scroll100/1440x1440/trio-portraits-c.webp new file mode 100644 index 0000000..7b687c2 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-portraits-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35a56464f1e30b3f629b53febceb196becbfe92be3d09fbd3580790a8893e893 +size 1308208 diff --git a/public/assets/webp/scroll100/1440x1440/trio-profiles-bw.webp b/public/assets/webp/scroll100/1440x1440/trio-profiles-bw.webp new file mode 100644 index 0000000..3eb4eb7 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-profiles-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48c52970394f6412bd74548ff27594ce932bb2b5f7d0e434372885de1942065a +size 856854 diff --git a/public/assets/webp/scroll100/1440x1440/trio-profiles-c.webp b/public/assets/webp/scroll100/1440x1440/trio-profiles-c.webp new file mode 100644 index 0000000..c5bdeea --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-profiles-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c79c4a129330c8e9008f76373cddc7a5a3b63f05cbd2f3e552320ede4b66bf7a +size 1614578 diff --git a/public/assets/webp/scroll100/1440x1440/trio-warriors-bw.webp b/public/assets/webp/scroll100/1440x1440/trio-warriors-bw.webp new file mode 100644 index 0000000..2d58af7 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-warriors-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02a061069052facb69c5c6d080c35da63406a24160b51e4140e5b3f883799cbf +size 800772 diff --git a/public/assets/webp/scroll100/1440x1440/trio-warriors-c.webp b/public/assets/webp/scroll100/1440x1440/trio-warriors-c.webp new file mode 100644 index 0000000..2d7c33f --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-warriors-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3469572b0b1a5224e33e2a4c71a6359a04a0d6b568ee55db53bceef05835e939 +size 1450472 diff --git a/public/assets/webp/scroll100/1440x1440/trio-weapons-bw.webp b/public/assets/webp/scroll100/1440x1440/trio-weapons-bw.webp new file mode 100644 index 0000000..8c0700e --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-weapons-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc91891576f3159308afbb9dfe12a168afea65d913fe97daa7fa9116c8e54ea5 +size 921998 diff --git a/public/assets/webp/scroll100/1440x1440/trio-weapons-c.webp b/public/assets/webp/scroll100/1440x1440/trio-weapons-c.webp new file mode 100644 index 0000000..45fcfcf --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-weapons-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fefb98c32e3b419cfd10b9e42c3a63563fd166fd6e8e8b21896afefedccec458 +size 1659898 diff --git a/public/assets/webp/scroll100/1440x1440/trio-wings-bw.webp b/public/assets/webp/scroll100/1440x1440/trio-wings-bw.webp new file mode 100644 index 0000000..cd07ab4 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-wings-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33fdbe1076255255229ad4a7ff1e17c46a5fcd0f016c106aa65b93a3ef0a8436 +size 751956 diff --git a/public/assets/webp/scroll100/1440x1440/trio-wings-c.webp b/public/assets/webp/scroll100/1440x1440/trio-wings-c.webp new file mode 100644 index 0000000..fa24ab7 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/trio-wings-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04a3ab19de118345c219b52b412a067efe3323aae2e3c6eea9867c4fc4e1190e +size 1314380 diff --git a/public/assets/webp/scroll100/1440x1440/warrior-solo-bw.webp b/public/assets/webp/scroll100/1440x1440/warrior-solo-bw.webp new file mode 100644 index 0000000..dc7fb7a --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warrior-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b54cebeff0936682edd095ee61656ed0a75b79f04733b578e847ddf3a5873f3 +size 689502 diff --git a/public/assets/webp/scroll100/1440x1440/warrior-solo-c.webp b/public/assets/webp/scroll100/1440x1440/warrior-solo-c.webp new file mode 100644 index 0000000..a8b49f0 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warrior-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd6fe992fff7fe5fb5904eecb002d700138d7f7a6ddfbe1d2c870b7ebbda24c6 +size 1013756 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-armed-bw.webp b/public/assets/webp/scroll100/1440x1440/warriors-armed-bw.webp new file mode 100644 index 0000000..90e9f64 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-armed-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52e9826a28ac7e1a126d69f972baf1cd9a96f865dc943c9a994ca6e55fb67e83 +size 721830 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-armed-c.webp b/public/assets/webp/scroll100/1440x1440/warriors-armed-c.webp new file mode 100644 index 0000000..eca8dbb --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-armed-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a69343eeccada1937a52a466cec31f742c2faae056086b1b90c06b02782e42d +size 1207304 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-belts-bw.webp b/public/assets/webp/scroll100/1440x1440/warriors-belts-bw.webp new file mode 100644 index 0000000..7876b7c --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-belts-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a9e877aea068895b3826426eb4d7abf9ae6ddff301b4f86f108793cdd00dff9 +size 882330 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-belts-c.webp b/public/assets/webp/scroll100/1440x1440/warriors-belts-c.webp new file mode 100644 index 0000000..0e57b33 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-belts-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70e39fb093f2fbdd1a694a4f0a6b7a6e3b2f847cbf7362450d44417fd719f2a3 +size 1583788 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-casual-bw.webp b/public/assets/webp/scroll100/1440x1440/warriors-casual-bw.webp new file mode 100644 index 0000000..c144620 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-casual-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9d6f49ad899bff1b0af5c54eb590213bbf217ef6ac713636c5c01cebef2138c +size 799678 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-casual-c.webp b/public/assets/webp/scroll100/1440x1440/warriors-casual-c.webp new file mode 100644 index 0000000..2757c8b --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-casual-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd14f47e798f00b637ba2f62bc8d8c7bd01bf4d4619afceac864d672120537d1 +size 1304384 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-confident-bw.webp b/public/assets/webp/scroll100/1440x1440/warriors-confident-bw.webp new file mode 100644 index 0000000..6d33f49 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-confident-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8366038230512cd499dfebb6d819ff2641cc8a55482148996f9ff2a0ce85f24 +size 898096 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-confident-c.webp b/public/assets/webp/scroll100/1440x1440/warriors-confident-c.webp new file mode 100644 index 0000000..f631b99 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-confident-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:754bd5764c73ace2ebbf7e16f2a60608cbd5f936edaa814424eb84df6eb8d9fc +size 1533484 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-forward-bw.webp b/public/assets/webp/scroll100/1440x1440/warriors-forward-bw.webp new file mode 100644 index 0000000..fd13e3a --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-forward-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b2f3eb951f5b21fce45e5d4f965fbcf2dbf974143c3205121d51a0bb4aabe10 +size 861704 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-forward-c.webp b/public/assets/webp/scroll100/1440x1440/warriors-forward-c.webp new file mode 100644 index 0000000..b6fa084 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-forward-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19269e3a98f7a765c40c48c202f7de7f5561efe56a9c4dca400f1466938791e3 +size 1393568 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-magic-bw.webp b/public/assets/webp/scroll100/1440x1440/warriors-magic-bw.webp new file mode 100644 index 0000000..18d6dc5 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-magic-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10dce59e770883a9297558595870c9def75dd089a4e1e8ce53387b215a6a0b4f +size 868344 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-magic-c.webp b/public/assets/webp/scroll100/1440x1440/warriors-magic-c.webp new file mode 100644 index 0000000..5ffb0e9 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-magic-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89d4c02b1ef12a8cdc1fc9a7bdf64902ccc11f22ca8982315cda0e98ca600f1f +size 1627784 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-masked-bw.webp b/public/assets/webp/scroll100/1440x1440/warriors-masked-bw.webp new file mode 100644 index 0000000..7953665 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-masked-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b187f6d6b6d8a9f8824267b3f1c846372d065adda6ddb89200cc5a0d8a5a4e39 +size 855058 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-masked-c.webp b/public/assets/webp/scroll100/1440x1440/warriors-masked-c.webp new file mode 100644 index 0000000..c4f3710 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-masked-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ec5c7caec1c694fd94328723b3fb6edb5f8d95c5c52fc00fef4e88694be7a04 +size 1599834 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-moloch-bw.webp b/public/assets/webp/scroll100/1440x1440/warriors-moloch-bw.webp new file mode 100644 index 0000000..cc1f5d4 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-moloch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a17ae2ca189a7dc78b32ad5105980c7a23788f94a0164e6529011be0b2f9a456 +size 970398 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-moloch-c.webp b/public/assets/webp/scroll100/1440x1440/warriors-moloch-c.webp new file mode 100644 index 0000000..de9d26a --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-moloch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c159590b1f922a0929b87bed090f39ebd5de3db7a8633f261f875d69822443b4 +size 1689694 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-orbs-bw.webp b/public/assets/webp/scroll100/1440x1440/warriors-orbs-bw.webp new file mode 100644 index 0000000..4034146 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-orbs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3a586e5ffcfd29720df097daeb443e6ca190718bb38b78d85360615f2b7b0e0 +size 1173346 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-orbs-c.webp b/public/assets/webp/scroll100/1440x1440/warriors-orbs-c.webp new file mode 100644 index 0000000..d0c0801 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-orbs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89c423833af3f1b15395ac78e5310710d13a429ebfd095b25a3990cdaa7493fd +size 2136662 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-ready-bw.webp b/public/assets/webp/scroll100/1440x1440/warriors-ready-bw.webp new file mode 100644 index 0000000..8cbe6d9 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-ready-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa1c889523a4a11665d886e816715879b7b716040b47d5b6cdc2debfa2c9f00b +size 714226 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-ready-c.webp b/public/assets/webp/scroll100/1440x1440/warriors-ready-c.webp new file mode 100644 index 0000000..ffd09a7 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-ready-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7671aef04be26a873cd0c124a34bb26511c9ee9bf80eacf74b496e7a630eed6 +size 1503636 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-standing-bw.webp b/public/assets/webp/scroll100/1440x1440/warriors-standing-bw.webp new file mode 100644 index 0000000..04c4803 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-standing-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f337474ffd075b81c436c4704e014a7d170fd3089ed29cae8e9aeeab35803c94 +size 813380 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-standing-c.webp b/public/assets/webp/scroll100/1440x1440/warriors-standing-c.webp new file mode 100644 index 0000000..7a9171c --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-standing-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f09a84c511e9ea00027cfe8bb089bab632fffba24d4404d1233c9355cf82ff38 +size 1483818 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-triangle-bw.webp b/public/assets/webp/scroll100/1440x1440/warriors-triangle-bw.webp new file mode 100644 index 0000000..3740083 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-triangle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05e7bdd5fd90ca7072dce41e5448d0ac8fb882e0040d1191772e11fb6b614449 +size 898816 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-triangle-c.webp b/public/assets/webp/scroll100/1440x1440/warriors-triangle-c.webp new file mode 100644 index 0000000..460cfb2 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-triangle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153c728e4c16d066fbba4921b8b7d6487fb13d4f0fde2489fd2695b43e34278e +size 1627600 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-white-bw.webp b/public/assets/webp/scroll100/1440x1440/warriors-white-bw.webp new file mode 100644 index 0000000..68b0fc2 --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-white-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a93990ec8728f838b7e4dab975f07f7f210845c78ddd0ba2a6505c57d5e2a5ee +size 1116766 diff --git a/public/assets/webp/scroll100/1440x1440/warriors-white-c.webp b/public/assets/webp/scroll100/1440x1440/warriors-white-c.webp new file mode 100644 index 0000000..9bbafdb --- /dev/null +++ b/public/assets/webp/scroll100/1440x1440/warriors-white-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:300c1e955b720bd940d3539aceb901324c035411f81fcb65431c255d4aa3f7f0 +size 2063812 diff --git a/public/assets/webp/scroll100/1440x550/ship-front-bw.webp b/public/assets/webp/scroll100/1440x550/ship-front-bw.webp new file mode 100644 index 0000000..7b3b6b8 --- /dev/null +++ b/public/assets/webp/scroll100/1440x550/ship-front-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c29675a483fa486e63414d1d6b9a13ed8068b4826a550b719a9ac910a1137027 +size 195724 diff --git a/public/assets/webp/scroll100/1440x550/ship-front-c.webp b/public/assets/webp/scroll100/1440x550/ship-front-c.webp new file mode 100644 index 0000000..a1c9e95 --- /dev/null +++ b/public/assets/webp/scroll100/1440x550/ship-front-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:064a956b9ff6b6989cb50063cc5d09df089ac42b9a4e1d97fa288b8781ad63a3 +size 251092 diff --git a/public/assets/webp/scroll100/1440x550/ship-mech-bw.webp b/public/assets/webp/scroll100/1440x550/ship-mech-bw.webp new file mode 100644 index 0000000..506ba45 --- /dev/null +++ b/public/assets/webp/scroll100/1440x550/ship-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bec3cb2302acf098034947aaecebd212866ea7463863e98ad1670e59f380fe3f +size 139886 diff --git a/public/assets/webp/scroll100/1440x550/ship-mech-c.webp b/public/assets/webp/scroll100/1440x550/ship-mech-c.webp new file mode 100644 index 0000000..bcdc349 --- /dev/null +++ b/public/assets/webp/scroll100/1440x550/ship-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d186b666a4d274963cd17b07d3574d3599ac7fbd7a60d171cd0578b5f5ea83 +size 213802 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/arch-gate-bw.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/arch-gate-bw.webp new file mode 100644 index 0000000..258f91a --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/arch-gate-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ed3d037bb22e80c423ba9a24e4db2f90b1a652a809ecabea99351cabf62126 +size 29844 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/arch-gate-c.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/arch-gate-c.webp new file mode 100644 index 0000000..e678d2c --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/arch-gate-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e978f07c9884061d16addb2cbbfbd947b807e923a78f98c2f24d160003eb08 +size 43562 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/book-orb-bw.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/book-orb-bw.webp new file mode 100644 index 0000000..1f433bf --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/book-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82b0d61549332e73c47a03eb170a28d45ab6e89e43ccc59177d7212601930adc +size 28840 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/book-orb-c.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/book-orb-c.webp new file mode 100644 index 0000000..f6cda59 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/book-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c557c8e44dba65438273c0f0479c7210fcebb2560e5b8333238ead62234024c +size 36422 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/compass-circular-bw.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/compass-circular-bw.webp new file mode 100644 index 0000000..22137eb --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/compass-circular-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2805d8ec53df85c3c82defeb1b5b08f944178fc47dbf9a1ed3f1e1d0cb659f34 +size 30808 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/compass-circular-c.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/compass-circular-c.webp new file mode 100644 index 0000000..ea7bd07 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/compass-circular-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36e7d25d0a7ba9464709d3fb199415cf16762be9c2b2e77f74072511db34ebd9 +size 40506 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/raven-solo-bw.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/raven-solo-bw.webp new file mode 100644 index 0000000..7e1e5f8 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/raven-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a1b58d20bf821f7ef7d875ba8927bb6b4f6db05a0322ab244734b0f864d81f9 +size 25952 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/raven-solo-c.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/raven-solo-c.webp new file mode 100644 index 0000000..ec739b5 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/raven-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93bc118dd26c8528e427c1a2c4f4e48919c8a3078d5401e2f60bb926040221c5 +size 36086 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-cloud-bw.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-cloud-bw.webp new file mode 100644 index 0000000..33b783f --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-cloud-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55f4263704db69e0535fdddad6d77a905f07a0652e6fd3f8f3e8ce0e1a16ed20 +size 29414 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-cloud-c.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-cloud-c.webp new file mode 100644 index 0000000..ccac43b --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-cloud-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ad0dbe870f247fe73629ec0bbaea97503783b211bf3b66190b0e4309aba1d4d +size 42436 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-curve-bw.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-curve-bw.webp new file mode 100644 index 0000000..23a4e6c --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-curve-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:851a4e6c0060b2dbbaa6e2efb81800ab91b089b68eeeb267ff01f51c351ae165 +size 27022 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-curve-c.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-curve-c.webp new file mode 100644 index 0000000..f2e7c46 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-curve-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15dcf16bb5f9a700dee5086e4485546eb4c884edb539370d9ea1fd6e9311f4f +size 35452 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-twist-bw.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-twist-bw.webp new file mode 100644 index 0000000..35f4e51 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-twist-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ce2171e7298f74af5093691e304b9f0368e28ea56bdfa3730d9ac89c366c86 +size 24962 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-twist-c.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-twist-c.webp new file mode 100644 index 0000000..f4100ce --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/stairs-twist-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c507757e20f5c5c3ce1d9a7311d63c3a232c5d3c22f15fc83c51a9bd46844bb5 +size 31522 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/stone-pedestal-bw.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/stone-pedestal-bw.webp new file mode 100644 index 0000000..b835184 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/stone-pedestal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a1be3f912abda360290557697f27380cf5690ec25fe90d87c7f1babcb9ab71e +size 23924 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/stone-pedestal-c.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/stone-pedestal-c.webp new file mode 100644 index 0000000..0f74b4f --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/stone-pedestal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d97069d9955a16ecf805ebdc3b2741eef79191136d55547b724e7299a73827a +size 30120 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/tower-floating-bw.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/tower-floating-bw.webp new file mode 100644 index 0000000..0f3a22e --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/tower-floating-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:594d6ca08b004baed5fcb4b4a0aa2fe5dc74eb0cd9f88e4f355a0439d8e6d995 +size 21048 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/tower-floating-c.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/tower-floating-c.webp new file mode 100644 index 0000000..64328ed --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/tower-floating-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b6d7fe1e08c924c734931717a963f368d06dd763ec3867629d94b1b06252d5e +size 24542 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/tower-platform-bw.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/tower-platform-bw.webp new file mode 100644 index 0000000..7bf4620 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/tower-platform-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e4c7b81e55bd8f0e437bda2754eb96a74c58fa1417d8a0906b5aad2f5b5987 +size 31968 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/tower-platform-c.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/tower-platform-c.webp new file mode 100644 index 0000000..aa63ccf --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/tower-platform-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c25888a8c1981ba541e41bdea1393e05974203907e9eeaeff7ff589b31bd1b20 +size 44208 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/tower-tree-bw.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/tower-tree-bw.webp new file mode 100644 index 0000000..37830d5 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/tower-tree-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7c29f24b8457481bed3bfe46294448997843618635525fb5306f657b072726 +size 25524 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/tower-tree-c.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/tower-tree-c.webp new file mode 100644 index 0000000..757b327 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/tower-tree-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358eae2401dc24fe80fd0be5d05b5862c4ea683462177c3d2ef951a619861972 +size 34560 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/tree-island-bw.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/tree-island-bw.webp new file mode 100644 index 0000000..12ea8db --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/tree-island-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9df13dff504235c4ea068c5ab066ac4cb7941cfb0e5cbb94d6c37f95a4f3f5f +size 27550 diff --git a/public/assets/webp/scroll100/thumbnails/1080x1440/tree-island-c.webp b/public/assets/webp/scroll100/thumbnails/1080x1440/tree-island-c.webp new file mode 100644 index 0000000..707816b --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1080x1440/tree-island-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1a71398753922888e85d80abc54979c9a554e027f566821232890b458638b9a +size 40576 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/castle-flag-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/castle-flag-bw.webp new file mode 100644 index 0000000..2e67c2e --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/castle-flag-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2326d97e557e15699d57d8344928d09b6f82add997ddcf17b2c30b10778737a +size 27366 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/castle-flag-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/castle-flag-c.webp new file mode 100644 index 0000000..67c9fe3 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/castle-flag-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1909459a36df65fe63b37c0698df3bfceff2adb85ab24f0e0969e109afc97bb +size 35770 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/castle-staff-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/castle-staff-bw.webp new file mode 100644 index 0000000..6de84c2 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/castle-staff-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672311a5f97ef04a4f6210e186a43e3c3b7f85b361f1a0c53f3881e35f33bc5b +size 33334 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/castle-staff-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/castle-staff-c.webp new file mode 100644 index 0000000..dc2c167 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/castle-staff-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b5f4ced0da3ed99854fc5738974c3bdbf33b1de618786d0502842c0f2b68504 +size 41742 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/desk-work-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/desk-work-bw.webp new file mode 100644 index 0000000..435f8fd --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/desk-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f82f5a6690cc3e5c17c80c541ed37b1da017bbd5f0209a5d3efb59b993a396ed +size 25082 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/desk-work-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/desk-work-c.webp new file mode 100644 index 0000000..1af1e11 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/desk-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bacbcb4192d5259387481a976841fefaaa20cf415a3671b7df432078a673f8b +size 34734 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/forge-anvil-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-anvil-bw.webp new file mode 100644 index 0000000..ea01093 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-anvil-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59b016905ea2b6b2024595ae954bfe541a1fa548d646f4bc4ba599c37c44f4b9 +size 30102 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/forge-anvil-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-anvil-c.webp new file mode 100644 index 0000000..c646f19 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-anvil-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e5ff8ee867d4e358d2f7dcc24281ce24cd703db6acf7f671149d8da26ab7565 +size 42464 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/forge-building-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-building-bw.webp new file mode 100644 index 0000000..f5d3aa9 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-building-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d7380b712e43618152fe6c15387c097bc9900e5995acb3d3746d452a8c9b22 +size 26310 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/forge-building-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-building-c.webp new file mode 100644 index 0000000..961917f --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-building-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e80a560347e0d0f5041846e8977f7b51d458308fec92e8f7c5077eb6a5bf47 +size 35416 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/forge-duo-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-duo-bw.webp new file mode 100644 index 0000000..8550a0d --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-duo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11fb6ff5473b88f1f0185c335ad7c53e689789b28735887d09ff5d5b3a3b9811 +size 24980 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/forge-duo-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-duo-c.webp new file mode 100644 index 0000000..898945d --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-duo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c626f3eb95b72686d6eabfbcaddc036630d3fe463486b646c36862c3bbbc0d +size 32440 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/forge-fire-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-fire-bw.webp new file mode 100644 index 0000000..b6af47a --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-fire-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6890c19fbfb267151474be1d6a7c0b9cf3bce03e1c4068dbae7016c3a86c469 +size 28316 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/forge-fire-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-fire-c.webp new file mode 100644 index 0000000..e7d6cbc --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-fire-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f737f92db1edc7cde1996e35f2a45fec12e77157d795ea84e978728688cf555 +size 42996 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/forge-work-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-work-bw.webp new file mode 100644 index 0000000..a6f879d --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22e5a5bb479ed811dc86f3bf051e70cdaba9627aa66774124d734712352291a9 +size 27366 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/forge-work-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-work-c.webp new file mode 100644 index 0000000..f784789 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/forge-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:623be86d836537c11490608ff150aa7dcdc154a5f50e097f294b9982353a7ebe +size 36018 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/portal-arch-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/portal-arch-bw.webp new file mode 100644 index 0000000..ecbc503 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/portal-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bbaa6c39dbcbdafc19d8e76dd8b8bacd944aa806fe641ea8d9c595c716d3d41 +size 28686 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/portal-arch-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/portal-arch-c.webp new file mode 100644 index 0000000..a804532 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/portal-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8fc1fea161378d578c27c3c178f1febf73ce49f53dc699e1e5d198a44028f20 +size 44606 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/ravens-flight-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/ravens-flight-bw.webp new file mode 100644 index 0000000..c99c819 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/ravens-flight-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e0c70d91ba1c5cf327c66f645720a3aa54bc5d528035bd9383791571893aa0 +size 33378 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/ravens-flight-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/ravens-flight-c.webp new file mode 100644 index 0000000..cd57da6 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/ravens-flight-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abdd1b2297a6013b771a01b7805463af59af3fad59dd3a7c710fd571055e1f24 +size 39570 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/stairs-spiral-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/stairs-spiral-bw.webp new file mode 100644 index 0000000..6fe418b --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/stairs-spiral-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:febe1099df00df7bbfe498ad536a68d5d40d2f5203f2156c85a7319092d27866 +size 23228 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/stairs-spiral-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/stairs-spiral-c.webp new file mode 100644 index 0000000..6ce7cb3 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/stairs-spiral-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a109f99a62b6ed0dface94610ee670b52817805061d53134c716359c58bf12e2 +size 30194 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/stone-monuments-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/stone-monuments-bw.webp new file mode 100644 index 0000000..73202c8 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/stone-monuments-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d1bf355c8c70cdaef4d5b48ba2a6a4c2d577db025f916759b68fb391996aba5 +size 28802 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/stone-monuments-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/stone-monuments-c.webp new file mode 100644 index 0000000..c132913 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/stone-monuments-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5e6d7b3c692deda7aacdf99c7d969fd964b8631bb2f26183e649287ba5e02c0 +size 33948 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/table-castle-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/table-castle-bw.webp new file mode 100644 index 0000000..b5f320b --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/table-castle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f535866ec1154b44d4e5d6b570601264e45aa9f71220d687e8ee323aaf61fac +size 27604 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/table-castle-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/table-castle-c.webp new file mode 100644 index 0000000..84a181a --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/table-castle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:717762c032d42b865d09036b0ff3b97437d5dcf58a6757e614f9884f74cf87c6 +size 36410 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/tree-mech-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/tree-mech-bw.webp new file mode 100644 index 0000000..76057e0 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/tree-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43c77446bbfa6d90168d90785671364b07d8121af6df93f522fbe3c968196525 +size 30774 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/tree-mech-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/tree-mech-c.webp new file mode 100644 index 0000000..e5dfc20 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/tree-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e80b332e7f9b7d92dc780c49faeabb3f196c0ec802fa8f97b0e4d390941d435 +size 43140 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-arch-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-arch-bw.webp new file mode 100644 index 0000000..1547cec --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90d075af2f594611bae7291bf08ee75e53338528adb8f8d37162fcafcc4d6e6a +size 26960 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-arch-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-arch-c.webp new file mode 100644 index 0000000..06aa839 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cd1d2e514de7f0dc103d8d8c20cbe495ed5033dd963f185768bc94633e8028e +size 38680 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-backs-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-backs-bw.webp new file mode 100644 index 0000000..726bbe0 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-backs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6d47a15920b99c933bf29ce9f0298d3251bf52f8819e4fbc935be345b38ebbb +size 30378 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-backs-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-backs-c.webp new file mode 100644 index 0000000..6c6add1 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-backs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b64c06dafe8d9a51b6a46f100912420f3f614e87494c64ed37ec728a9252844d +size 39492 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-beast-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-beast-bw.webp new file mode 100644 index 0000000..130ee8b --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-beast-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ac3f7b403e44a480c70b79b35486eb2827f0237c6877d99620024a9a5a1d0f2 +size 28578 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-beast-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-beast-c.webp new file mode 100644 index 0000000..e9f2353 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-beast-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2af86d2621588a45fe1143e16e3d63397c35756988adc72794b89e1a17086aa +size 36908 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-mountain-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-mountain-bw.webp new file mode 100644 index 0000000..e7c2e94 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-mountain-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed07983a0d53a8bd23f7e9b38bca8e06b11c4ee9f21f91e5dc7f698c17daa98 +size 32610 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-mountain-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-mountain-c.webp new file mode 100644 index 0000000..c1efa10 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-mountain-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be248d2df50149e3ccfcb77cad725e53f4fff20853009d93afa949806156737d +size 44922 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-orb-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-orb-bw.webp new file mode 100644 index 0000000..f68c698 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ce45264ed0ee77bd95e05d16515705d3d105d891670280b163448349914ded +size 27860 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-orb-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-orb-c.webp new file mode 100644 index 0000000..fedaba4 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f26953915820f3b1fb4811615331f6e2b0f8b21ad0151decfe192f2f6f5224 +size 33968 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-portal-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-portal-bw.webp new file mode 100644 index 0000000..fa87612 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-portal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e50286a3feb0b4ab13195f07f3dfdb3cb3cd7ff6a4fb4ced0d29f6a12cb3867a +size 26904 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-portal-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-portal-c.webp new file mode 100644 index 0000000..b1a4d5b --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-portal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a89ae93325d7d0044303d80d10c4b00a2e1c1f0cbd44651074b70179f08c04ed +size 37502 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-portraits-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-portraits-bw.webp new file mode 100644 index 0000000..057e9ea --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-portraits-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03f19d73ea19376ebb6d095c09b51ac9b594e749273547630164f725cec3fd88 +size 25232 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-portraits-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-portraits-c.webp new file mode 100644 index 0000000..bd00c53 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-portraits-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b0b42e3988bd4ff6ea16ce5ec704ba6950bec3108bbe0840eb62300c7c3ec7 +size 32472 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-profiles-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-profiles-bw.webp new file mode 100644 index 0000000..a1fcf6c --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-profiles-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcfa0f25881e423792e5e8c69502f615c1e1619a049758a42c47c46ee2c6e069 +size 28064 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-profiles-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-profiles-c.webp new file mode 100644 index 0000000..112d872 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-profiles-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26bb7f8cc7a7e7d536393c84d4ddbcc0b1673443fc0de32f00067728789d9bfc +size 38984 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-warriors-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-warriors-bw.webp new file mode 100644 index 0000000..c2c4866 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-warriors-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c561f9258c154078f7d512cd9c266a8cee5afac335cad7e8f769cc4cb054de0 +size 25008 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-warriors-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-warriors-c.webp new file mode 100644 index 0000000..55c09a1 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-warriors-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:288bee8c73d0e9ed1113882a4fc94a1e2dc30b54175b1ce6de4d5ad1eb2600d3 +size 34458 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-weapons-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-weapons-bw.webp new file mode 100644 index 0000000..5fc11fc --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-weapons-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d9c3ae077e806f3abb334fecd06ac584f2af4ef92739949cd25e4d56e3b9531 +size 28430 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-weapons-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-weapons-c.webp new file mode 100644 index 0000000..659bc5e --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-weapons-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32629051ae8183c659987bd4e3cc46ecc75c5f39e4466ed24969beb9ede4dbc7 +size 39252 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-wings-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-wings-bw.webp new file mode 100644 index 0000000..9b802da --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-wings-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6ae12c298044f42deeebbb53d91770cb430d21831b2a9548076eae252aacb6e +size 23250 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/trio-wings-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-wings-c.webp new file mode 100644 index 0000000..78a0426 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/trio-wings-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b2600acd98b8bf7680a752fd4880e74e0d6801821ed211efe96e0e9c0d44ceb +size 31288 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warrior-solo-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warrior-solo-bw.webp new file mode 100644 index 0000000..0f13bad --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warrior-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b812f9fce86cd2d2d230ed984009bd200ef61bdce0c1a77a63b26856ba9b3b66 +size 25248 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warrior-solo-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warrior-solo-c.webp new file mode 100644 index 0000000..41e2fa5 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warrior-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f0bab0f3c09566633605b030b5ca7290ca86ff59d666994b71a69c16e68ace9 +size 28496 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-armed-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-armed-bw.webp new file mode 100644 index 0000000..245130d --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-armed-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:673e431da1b649bf11ceb170786b993f78234951e3fabf4f7c21c672eb4d8ded +size 23792 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-armed-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-armed-c.webp new file mode 100644 index 0000000..eb25ece --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-armed-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aa74fe35a6c189c605f00405fb800575a037c2f04d623be6b787d3e744eeb64 +size 30928 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-belts-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-belts-bw.webp new file mode 100644 index 0000000..b6d90cf --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-belts-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:579482ef302ac5739a32ab756e31e8c86d71242f546233fbb12ba813e918b7da +size 24954 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-belts-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-belts-c.webp new file mode 100644 index 0000000..7b47020 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-belts-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c35a367b1160058a36cdf6128f99a2be51be6df5a56975c465cde4db92bc9af3 +size 34810 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-casual-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-casual-bw.webp new file mode 100644 index 0000000..c0624c0 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-casual-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:925a88ae8c4fe1a02b5007ab5508b96c3979a7489528da91f489a91c44a5b2ca +size 28020 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-casual-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-casual-c.webp new file mode 100644 index 0000000..dcc0948 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-casual-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45239bd4a7a857c2c95d1cadb9cefac44c917cd73e3fec0bb4b19fc63fe3a9e3 +size 35346 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-confident-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-confident-bw.webp new file mode 100644 index 0000000..36c7b4a --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-confident-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceb29fb0b4ce2dcbfc7f1a8353dcaaa59e251d6adac62f67b0324bce79c5fe15 +size 29430 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-confident-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-confident-c.webp new file mode 100644 index 0000000..0b651f3 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-confident-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f96a757aa04b746c5c2d5efe3e3f2be23d9e1452b2f6c47e2c58fb7a13646a2b +size 38620 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-forward-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-forward-bw.webp new file mode 100644 index 0000000..3d2825f --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-forward-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab1332142d6c651bed68921e0f43569b141131fe075bab30af881d943f2785ee +size 27062 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-forward-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-forward-c.webp new file mode 100644 index 0000000..9a1253e --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-forward-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:156376dbac2fc0b64126548d67a51a4cf0627d675e119350f5dbee5059c8bd44 +size 34868 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-magic-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-magic-bw.webp new file mode 100644 index 0000000..1ae1234 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-magic-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ff93394fa758704988bccca66291b0a9a85958b5212906b01a84a8d95b047d6 +size 28070 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-magic-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-magic-c.webp new file mode 100644 index 0000000..f4a7cfa --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-magic-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db9b1e95447ab8a49cbbaa6ee468c6f380fc83b4c149208e1ac30d8dbf5e6cb9 +size 41180 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-masked-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-masked-bw.webp new file mode 100644 index 0000000..f412f9b --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-masked-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c18ffe530bf8940c5e9ec63a8ef38d7a6ab080aea9bafad108d075e51e58b69 +size 27280 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-masked-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-masked-c.webp new file mode 100644 index 0000000..98e8f92 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-masked-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55598dbc788093241f72cc4e5e08bff18b06d16e7a7482d22c09911d9b77173 +size 37222 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-moloch-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-moloch-bw.webp new file mode 100644 index 0000000..5f46ea9 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-moloch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bd053bef364a3b5193c37c0950ad163135fb3f5ec9f3f258aa6bfc3cccc8768 +size 28836 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-moloch-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-moloch-c.webp new file mode 100644 index 0000000..ee601d1 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-moloch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b7e10993191f15aec10a5d9a19a4eb1f3ee818b285029884eda4f32d556b7fa +size 38254 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-orbs-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-orbs-bw.webp new file mode 100644 index 0000000..e83e44b --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-orbs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e67f87028b56cda1377c05b74178b74d7291cc3648151b5c988ba477058e13fa +size 34202 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-orbs-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-orbs-c.webp new file mode 100644 index 0000000..a88683a --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-orbs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7890b72d38ccaa1392a4d51a9b029a6ba9c1f7327aafdc998a3b07147fa9ebd2 +size 47938 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-ready-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-ready-bw.webp new file mode 100644 index 0000000..e978a7d --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-ready-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:830d4df037760071d36ee83ba144529d22042ee7f32ec3397d0c89ec5a12b0b6 +size 22380 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-ready-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-ready-c.webp new file mode 100644 index 0000000..b489366 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-ready-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9181fed672ed61268d53b050f22826e65d49e552d86cc596bedade1e5d24168b +size 36206 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-standing-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-standing-bw.webp new file mode 100644 index 0000000..156509f --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-standing-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91bb5edcc8a53e8e2d7dd703d325062813fc9ae36f36fef40b062426058b7ff8 +size 26754 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-standing-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-standing-c.webp new file mode 100644 index 0000000..2f185fa --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-standing-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96cbe4f4a41bb8b2a21ad05a935e51fa21f6daa79bee6f4b7ac61b534bb679df +size 36690 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-triangle-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-triangle-bw.webp new file mode 100644 index 0000000..531f783 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-triangle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8afd843a9522ec9cce559eddb0e533c84061f88f4749bd3f76ac92687d40d016 +size 26376 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-triangle-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-triangle-c.webp new file mode 100644 index 0000000..428d52e --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-triangle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3bb24dfd41bfc8bfaa364f3342218d570bf0d60f33baaddf6d2de008410629e +size 37492 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-white-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-white-bw.webp new file mode 100644 index 0000000..70af109 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-white-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47ae8fe13a18915f1d33be118fc4018f78d453f9a7b272c582c43e402fac937a +size 30544 diff --git a/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-white-c.webp b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-white-c.webp new file mode 100644 index 0000000..1fd5602 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x1440/warriors-white-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36c62a921047a1eaeb9be2513d72334d8fb474eac69768ce30c92f5ca91e0e31 +size 44634 diff --git a/public/assets/webp/scroll100/thumbnails/1440x550/ship-front-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x550/ship-front-bw.webp new file mode 100644 index 0000000..68435b6 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x550/ship-front-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3f7f777656ce881ef6ccb650645e99162cf8499426c9f7dafa406dcf280f6c3 +size 28716 diff --git a/public/assets/webp/scroll100/thumbnails/1440x550/ship-front-c.webp b/public/assets/webp/scroll100/thumbnails/1440x550/ship-front-c.webp new file mode 100644 index 0000000..813e002 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x550/ship-front-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fefe556a8764132a8981622de92bec250b89767ed919523625c02aed73b36a37 +size 33040 diff --git a/public/assets/webp/scroll100/thumbnails/1440x550/ship-mech-bw.webp b/public/assets/webp/scroll100/thumbnails/1440x550/ship-mech-bw.webp new file mode 100644 index 0000000..02861df --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x550/ship-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7187c9d4243bfc3870bf6ddc9e2e944baa9b29a8b486a3a283298a1b350e095e +size 24534 diff --git a/public/assets/webp/scroll100/thumbnails/1440x550/ship-mech-c.webp b/public/assets/webp/scroll100/thumbnails/1440x550/ship-mech-c.webp new file mode 100644 index 0000000..cf30ed8 --- /dev/null +++ b/public/assets/webp/scroll100/thumbnails/1440x550/ship-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1db54fd90af6c1bf5106a4af36f65db8edaa830a3c68153d40c24390ba1eef6 +size 31618 diff --git a/public/assets/webp/scroll700/1080x1440/arch-gate-bw.webp b/public/assets/webp/scroll700/1080x1440/arch-gate-bw.webp new file mode 100644 index 0000000..0787ea3 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/arch-gate-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:191e310b4049f165f8c9c0f9dfc9d7757b188b18fb8ee8380cd1fb38528361a1 +size 404990 diff --git a/public/assets/webp/scroll700/1080x1440/arch-gate-c.webp b/public/assets/webp/scroll700/1080x1440/arch-gate-c.webp new file mode 100644 index 0000000..be21bb4 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/arch-gate-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ff94e618fd4218bff4741de72a446a4c05bc21965463d9e33bfce33144e020d +size 829816 diff --git a/public/assets/webp/scroll700/1080x1440/book-orb-bw.webp b/public/assets/webp/scroll700/1080x1440/book-orb-bw.webp new file mode 100644 index 0000000..2436dc7 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/book-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c7711062b7e5b77a22d1ca441ac3b8416c175e8fce4be2456eef2e7fb932467 +size 372534 diff --git a/public/assets/webp/scroll700/1080x1440/book-orb-c.webp b/public/assets/webp/scroll700/1080x1440/book-orb-c.webp new file mode 100644 index 0000000..7ecfc87 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/book-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245c917a861e73e60747efb610f69d7b8205b91d83e811b5631b2c4ed57e21e6 +size 606586 diff --git a/public/assets/webp/scroll700/1080x1440/compass-circular-bw.webp b/public/assets/webp/scroll700/1080x1440/compass-circular-bw.webp new file mode 100644 index 0000000..5b302c5 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/compass-circular-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:044280cb828206f2e9996aad9b6c92a3c5b3b7b500234329445d49160fa891e5 +size 394550 diff --git a/public/assets/webp/scroll700/1080x1440/compass-circular-c.webp b/public/assets/webp/scroll700/1080x1440/compass-circular-c.webp new file mode 100644 index 0000000..7bbbf55 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/compass-circular-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1bb3ad07dc3d99e3e8dcbe168fc3126d09c05f64ab2e4c8f21930b78208250c +size 668364 diff --git a/public/assets/webp/scroll700/1080x1440/raven-solo-bw.webp b/public/assets/webp/scroll700/1080x1440/raven-solo-bw.webp new file mode 100644 index 0000000..af74147 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/raven-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:447964537bcb9a804c09ca07ebad106285c364319beb0ea931cdc7e08c2c35d1 +size 348080 diff --git a/public/assets/webp/scroll700/1080x1440/raven-solo-c.webp b/public/assets/webp/scroll700/1080x1440/raven-solo-c.webp new file mode 100644 index 0000000..a1a11e8 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/raven-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa28aa964a5b6d8ea3c786eb5f0864ab7ebd6edcebcb8150a71d08f78b7676d5 +size 648210 diff --git a/public/assets/webp/scroll700/1080x1440/stairs-cloud-bw.webp b/public/assets/webp/scroll700/1080x1440/stairs-cloud-bw.webp new file mode 100644 index 0000000..b56a062 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/stairs-cloud-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017cde5c1cea7c32a01347e4eb9ee2c2ee20ecc87948174cbdc634c569bb2ffe +size 476990 diff --git a/public/assets/webp/scroll700/1080x1440/stairs-cloud-c.webp b/public/assets/webp/scroll700/1080x1440/stairs-cloud-c.webp new file mode 100644 index 0000000..0198052 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/stairs-cloud-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb58d7747a515746d0f484d493f18242677f83f9abca67218f31ddb41fb5221d +size 868450 diff --git a/public/assets/webp/scroll700/1080x1440/stairs-curve-bw.webp b/public/assets/webp/scroll700/1080x1440/stairs-curve-bw.webp new file mode 100644 index 0000000..1b4bf2f --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/stairs-curve-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba1d4ec6af07ca2b11ca9e73f4e427c046a6cb4c93306fd671f7b8efa98ec60 +size 376496 diff --git a/public/assets/webp/scroll700/1080x1440/stairs-curve-c.webp b/public/assets/webp/scroll700/1080x1440/stairs-curve-c.webp new file mode 100644 index 0000000..da14871 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/stairs-curve-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30cdd447f765edbe85f7e7189fdcbb56a46659bd8039aa8d1f068e0bc8afe58f +size 650226 diff --git a/public/assets/webp/scroll700/1080x1440/stairs-twist-bw.webp b/public/assets/webp/scroll700/1080x1440/stairs-twist-bw.webp new file mode 100644 index 0000000..69111f5 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/stairs-twist-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b796d3b072bc8f6d1bcce00d8aaf8b960744f2838f1652c1aec784c6065357 +size 325666 diff --git a/public/assets/webp/scroll700/1080x1440/stairs-twist-c.webp b/public/assets/webp/scroll700/1080x1440/stairs-twist-c.webp new file mode 100644 index 0000000..4f2fe16 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/stairs-twist-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40c72920501ec68a283d6d440d722aa0ac8579b67fe132409b79a42a2cde5a0e +size 579396 diff --git a/public/assets/webp/scroll700/1080x1440/stone-pedestal-bw.webp b/public/assets/webp/scroll700/1080x1440/stone-pedestal-bw.webp new file mode 100644 index 0000000..ee3c575 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/stone-pedestal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:186665a0fd12d5559861c72cfe062c96ff5848705399f19dcc89eee1fb2aa261 +size 333512 diff --git a/public/assets/webp/scroll700/1080x1440/stone-pedestal-c.webp b/public/assets/webp/scroll700/1080x1440/stone-pedestal-c.webp new file mode 100644 index 0000000..81d9726 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/stone-pedestal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1758301d91e8d39ceb52b286ef44df3f56aa9c7f0c69be4e836d8b606fb9ccd +size 586604 diff --git a/public/assets/webp/scroll700/1080x1440/tower-floating-bw.webp b/public/assets/webp/scroll700/1080x1440/tower-floating-bw.webp new file mode 100644 index 0000000..9a4acf5 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/tower-floating-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ddb1bb62f1ca3faf8b92205d31ff7fcd093919322eb7e3a4428f8f2949fefc8 +size 205814 diff --git a/public/assets/webp/scroll700/1080x1440/tower-floating-c.webp b/public/assets/webp/scroll700/1080x1440/tower-floating-c.webp new file mode 100644 index 0000000..5e327da --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/tower-floating-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f79b8e0bbb7bd8a2ca2489075f877b662ff6a5ab554c53e7484f9d183ebfb936 +size 340662 diff --git a/public/assets/webp/scroll700/1080x1440/tower-platform-bw.webp b/public/assets/webp/scroll700/1080x1440/tower-platform-bw.webp new file mode 100644 index 0000000..b3081e4 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/tower-platform-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d07d8f648fd970f7fbdb49ada46ff48fa0ff4bf3fa9f3b050bc0a631a122d9c +size 468252 diff --git a/public/assets/webp/scroll700/1080x1440/tower-platform-c.webp b/public/assets/webp/scroll700/1080x1440/tower-platform-c.webp new file mode 100644 index 0000000..3bca08e --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/tower-platform-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:695bd175a1079e7ea03a0959dec0e566c868b77c4a5177d0ff2a73b7e0bbbee3 +size 1050116 diff --git a/public/assets/webp/scroll700/1080x1440/tower-tree-bw.webp b/public/assets/webp/scroll700/1080x1440/tower-tree-bw.webp new file mode 100644 index 0000000..728d6c5 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/tower-tree-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2dc8898f7d69e94874d4382da31ac205fb97acf8bebeb06c048ef431e5f4846 +size 324818 diff --git a/public/assets/webp/scroll700/1080x1440/tower-tree-c.webp b/public/assets/webp/scroll700/1080x1440/tower-tree-c.webp new file mode 100644 index 0000000..18ded99 --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/tower-tree-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d39e8392799ad5708b4e86d6922c9afba9dafe921ff2295c47b4c88201af67 +size 572952 diff --git a/public/assets/webp/scroll700/1080x1440/tree-island-bw.webp b/public/assets/webp/scroll700/1080x1440/tree-island-bw.webp new file mode 100644 index 0000000..2c5ac2f --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/tree-island-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbbabecfc0704e4308b86d1dcecac7ba3102441b3c83e958aaf3356e9d92c3c2 +size 389240 diff --git a/public/assets/webp/scroll700/1080x1440/tree-island-c.webp b/public/assets/webp/scroll700/1080x1440/tree-island-c.webp new file mode 100644 index 0000000..e5d7fba --- /dev/null +++ b/public/assets/webp/scroll700/1080x1440/tree-island-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae49b1ebd2ec796f21f5a7408846b1aceafbf0465488f3fc2260a46895d815bb +size 857990 diff --git a/public/assets/webp/scroll700/1440x1440/castle-flag-bw.webp b/public/assets/webp/scroll700/1440x1440/castle-flag-bw.webp new file mode 100644 index 0000000..c35d991 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/castle-flag-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ba64a7fe56bf50497291b7c2c6bc652489290775ad39bd32cc8bcff12115a97 +size 809540 diff --git a/public/assets/webp/scroll700/1440x1440/castle-flag-c.webp b/public/assets/webp/scroll700/1440x1440/castle-flag-c.webp new file mode 100644 index 0000000..0ce6bf1 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/castle-flag-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fbaddffe1fe21262ad8b37c83b060231239ed47d2a2d95b6724d6b478b4590b +size 1029232 diff --git a/public/assets/webp/scroll700/1440x1440/castle-staff-bw.webp b/public/assets/webp/scroll700/1440x1440/castle-staff-bw.webp new file mode 100644 index 0000000..d7858bc --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/castle-staff-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb2b5147b699d477711759c9b984cbc8568c740ec7c9c7be8e58b8c38558120 +size 878912 diff --git a/public/assets/webp/scroll700/1440x1440/castle-staff-c.webp b/public/assets/webp/scroll700/1440x1440/castle-staff-c.webp new file mode 100644 index 0000000..1b13d31 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/castle-staff-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c337435e3c8fdef1ee1c0189884fcc86d92f77bd3e933c8fa71a86f7a6fc58 +size 1500364 diff --git a/public/assets/webp/scroll700/1440x1440/desk-work-bw.webp b/public/assets/webp/scroll700/1440x1440/desk-work-bw.webp new file mode 100644 index 0000000..a1fa2d8 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/desk-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e198489a0497fea141ea2280a8d4915fa95a87a702e78acfaa415da02ce92b63 +size 765966 diff --git a/public/assets/webp/scroll700/1440x1440/desk-work-c.webp b/public/assets/webp/scroll700/1440x1440/desk-work-c.webp new file mode 100644 index 0000000..0bcfea0 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/desk-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:255fa068737f2522fb10d16be0f0a525807dd67dc667b592b1bd55de01bf8d25 +size 1499358 diff --git a/public/assets/webp/scroll700/1440x1440/forge-anvil-bw.webp b/public/assets/webp/scroll700/1440x1440/forge-anvil-bw.webp new file mode 100644 index 0000000..0f6f463 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/forge-anvil-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ae560b3cef99bca8c31631aca2055841e229521200e2be9fa53c9731bec0e23 +size 899186 diff --git a/public/assets/webp/scroll700/1440x1440/forge-anvil-c.webp b/public/assets/webp/scroll700/1440x1440/forge-anvil-c.webp new file mode 100644 index 0000000..085d283 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/forge-anvil-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3346af37c9d7332370cc8f1d37baafd068dd3e88731c29d3c29897e7c2f41d8f +size 1567940 diff --git a/public/assets/webp/scroll700/1440x1440/forge-building-bw.webp b/public/assets/webp/scroll700/1440x1440/forge-building-bw.webp new file mode 100644 index 0000000..7b073ac --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/forge-building-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12f4cef49c45810ef5618908e11089e27df10c294b3b9c7d76152ebb4a8aaa9f +size 725314 diff --git a/public/assets/webp/scroll700/1440x1440/forge-building-c.webp b/public/assets/webp/scroll700/1440x1440/forge-building-c.webp new file mode 100644 index 0000000..b0f3876 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/forge-building-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e456d8c52c9efe1889d40e7935f14607065e3a5d272bd934e5c54c84416cdafc +size 1187242 diff --git a/public/assets/webp/scroll700/1440x1440/forge-duo-bw.webp b/public/assets/webp/scroll700/1440x1440/forge-duo-bw.webp new file mode 100644 index 0000000..50b71d4 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/forge-duo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:710563e3a5651f31f73a19c6ae9c4f28a5fe657c07c060384638274a6e74109b +size 775906 diff --git a/public/assets/webp/scroll700/1440x1440/forge-duo-c.webp b/public/assets/webp/scroll700/1440x1440/forge-duo-c.webp new file mode 100644 index 0000000..b7b8ec2 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/forge-duo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bb66c38a58c083faba32e0f11de0d1b3da4228d70478be85dc8459d11e09dd2 +size 1316296 diff --git a/public/assets/webp/scroll700/1440x1440/forge-fire-bw.webp b/public/assets/webp/scroll700/1440x1440/forge-fire-bw.webp new file mode 100644 index 0000000..f0f2912 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/forge-fire-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdf3dd41e03a5e540e00937045aee3a3242a4f454b70400a484241817afb84c4 +size 769318 diff --git a/public/assets/webp/scroll700/1440x1440/forge-fire-c.webp b/public/assets/webp/scroll700/1440x1440/forge-fire-c.webp new file mode 100644 index 0000000..cab715a --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/forge-fire-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b81a348e0213ed0e57923cbf3841fdd2f40a8c7fd7587c9c4e7d5f2c0bc70e1b +size 1390842 diff --git a/public/assets/webp/scroll700/1440x1440/forge-work-bw.webp b/public/assets/webp/scroll700/1440x1440/forge-work-bw.webp new file mode 100644 index 0000000..b8ec055 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/forge-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca8a2f0323713e4316d0597e4525ed446353e7183ffaaee55e67d902e67b20eb +size 741966 diff --git a/public/assets/webp/scroll700/1440x1440/forge-work-c.webp b/public/assets/webp/scroll700/1440x1440/forge-work-c.webp new file mode 100644 index 0000000..9b55227 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/forge-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6404838688deb9b4596a0f0d75ae4a3fc5a3cad2d9d19dfd6daccfb1e679ba8 +size 1154782 diff --git a/public/assets/webp/scroll700/1440x1440/portal-arch-bw.webp b/public/assets/webp/scroll700/1440x1440/portal-arch-bw.webp new file mode 100644 index 0000000..1550b80 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/portal-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25df959073cfece40c6fa3a97a4b9026a650c2e89dcbd448cb7abb0066fdbaba +size 974550 diff --git a/public/assets/webp/scroll700/1440x1440/portal-arch-c.webp b/public/assets/webp/scroll700/1440x1440/portal-arch-c.webp new file mode 100644 index 0000000..c25ae3e --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/portal-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a84013b898be3d1126474936a3a90335c8aeae989d92e9fab92ff091db65f1a +size 2168068 diff --git a/public/assets/webp/scroll700/1440x1440/ravens-flight-bw.webp b/public/assets/webp/scroll700/1440x1440/ravens-flight-bw.webp new file mode 100644 index 0000000..3eb4c5a --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/ravens-flight-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c4c748c3a690e46e6000b3da5720d970d85f543338112bb1649b90fe705e822 +size 793478 diff --git a/public/assets/webp/scroll700/1440x1440/ravens-flight-c.webp b/public/assets/webp/scroll700/1440x1440/ravens-flight-c.webp new file mode 100644 index 0000000..da6fdb6 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/ravens-flight-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4011cc3e3f7090d01e0a0ee205084c1a756a2aee2ecb96847534bfa78062ff5 +size 1212348 diff --git a/public/assets/webp/scroll700/1440x1440/stairs-spiral-bw.webp b/public/assets/webp/scroll700/1440x1440/stairs-spiral-bw.webp new file mode 100644 index 0000000..77b8f6d --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/stairs-spiral-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fa7ce2302a7bb760c37d7bdf4e6c6a6996cc7cd8d41614e429e060196a3fbc8 +size 662346 diff --git a/public/assets/webp/scroll700/1440x1440/stairs-spiral-c.webp b/public/assets/webp/scroll700/1440x1440/stairs-spiral-c.webp new file mode 100644 index 0000000..27702c9 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/stairs-spiral-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c4cec31694f98c190b82691ac603d2103a794721453bd72f4ed2e293f799e56 +size 1227156 diff --git a/public/assets/webp/scroll700/1440x1440/stone-monuments-bw.webp b/public/assets/webp/scroll700/1440x1440/stone-monuments-bw.webp new file mode 100644 index 0000000..d799725 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/stone-monuments-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f93ea7de7b3930ceae8008f88185f3de1e65483ed8e71d553beff367be077ac +size 789330 diff --git a/public/assets/webp/scroll700/1440x1440/stone-monuments-c.webp b/public/assets/webp/scroll700/1440x1440/stone-monuments-c.webp new file mode 100644 index 0000000..786e33a --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/stone-monuments-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45a66c4ef19f799b09ecafba2791ac2a7b0190da78d2b7af5f8dc9873aeefc41 +size 1219058 diff --git a/public/assets/webp/scroll700/1440x1440/table-castle-bw.webp b/public/assets/webp/scroll700/1440x1440/table-castle-bw.webp new file mode 100644 index 0000000..567a63e --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/table-castle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14c5f821ad74a81066c6dfbcb64758b10a5ee5b611e4d2d6a4c4f90b0cc3c358 +size 723680 diff --git a/public/assets/webp/scroll700/1440x1440/table-castle-c.webp b/public/assets/webp/scroll700/1440x1440/table-castle-c.webp new file mode 100644 index 0000000..6f47c6b --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/table-castle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6247144253686c86e6bf010e5fe417952afcea0e627c0029e18c9c92c87a025 +size 1443726 diff --git a/public/assets/webp/scroll700/1440x1440/tree-mech-bw.webp b/public/assets/webp/scroll700/1440x1440/tree-mech-bw.webp new file mode 100644 index 0000000..aaa215c --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/tree-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5c241d480bd3878404279edd89f4e676e66afa2fba924fce7c550a29857dece +size 951014 diff --git a/public/assets/webp/scroll700/1440x1440/tree-mech-c.webp b/public/assets/webp/scroll700/1440x1440/tree-mech-c.webp new file mode 100644 index 0000000..eca5383 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/tree-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f16ec5aa1bb3bea86461308818bd8d07b31148b0499176b5e78211ded0d3659c +size 1867104 diff --git a/public/assets/webp/scroll700/1440x1440/trio-arch-bw.webp b/public/assets/webp/scroll700/1440x1440/trio-arch-bw.webp new file mode 100644 index 0000000..d39588f --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7bc50a56358e4c62c99826b2c7b0797f9fcf1178ce19c6c95114a80469948a8 +size 781408 diff --git a/public/assets/webp/scroll700/1440x1440/trio-arch-c.webp b/public/assets/webp/scroll700/1440x1440/trio-arch-c.webp new file mode 100644 index 0000000..5c7b0a8 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2380ef877fa2c07ea4da69c35d681c9b0dbfd323c6368499bbd1e752cf2026a9 +size 1410024 diff --git a/public/assets/webp/scroll700/1440x1440/trio-backs-bw.webp b/public/assets/webp/scroll700/1440x1440/trio-backs-bw.webp new file mode 100644 index 0000000..ed1c208 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-backs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8fda2b36b979ed29652b2c8ec955c8c932b9a7fcb6c9144bb1cc96647e8a843 +size 982934 diff --git a/public/assets/webp/scroll700/1440x1440/trio-backs-c.webp b/public/assets/webp/scroll700/1440x1440/trio-backs-c.webp new file mode 100644 index 0000000..48b18ba --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-backs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e4d3cf50180d7e76993bd17af9178c92199abda84ed6faef7d733b46bb778d4 +size 1532276 diff --git a/public/assets/webp/scroll700/1440x1440/trio-beast-bw.webp b/public/assets/webp/scroll700/1440x1440/trio-beast-bw.webp new file mode 100644 index 0000000..cbcd22d --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-beast-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b18ed5594e844eccf15a3bec6d03e12ee369ca7d9607871efd8b3291444457e +size 728160 diff --git a/public/assets/webp/scroll700/1440x1440/trio-beast-c.webp b/public/assets/webp/scroll700/1440x1440/trio-beast-c.webp new file mode 100644 index 0000000..0bfb337 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-beast-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14a7db6a3cb3aa3415cb9b78a999e534bf354b550daed05751aeb246610aafd9 +size 1206372 diff --git a/public/assets/webp/scroll700/1440x1440/trio-mountain-bw.webp b/public/assets/webp/scroll700/1440x1440/trio-mountain-bw.webp new file mode 100644 index 0000000..92f6f02 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-mountain-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54a3d8d162468a69afc563cb7ff86a98b21a3268eb6303567e6fbd808ba03cbc +size 928736 diff --git a/public/assets/webp/scroll700/1440x1440/trio-mountain-c.webp b/public/assets/webp/scroll700/1440x1440/trio-mountain-c.webp new file mode 100644 index 0000000..8734f3d --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-mountain-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:079e3766ec5c3c3dc62dcf0f3ce2e5f1ed28652187ceea76a9b977cafbb9b013 +size 1794128 diff --git a/public/assets/webp/scroll700/1440x1440/trio-orb-bw.webp b/public/assets/webp/scroll700/1440x1440/trio-orb-bw.webp new file mode 100644 index 0000000..589b0ab --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2852776806f946b9103dbefc112a567e37a3394be1fa33d3125d72c7cf295968 +size 748924 diff --git a/public/assets/webp/scroll700/1440x1440/trio-orb-c.webp b/public/assets/webp/scroll700/1440x1440/trio-orb-c.webp new file mode 100644 index 0000000..f7816ad --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd675434ea92bda09b08d023a4fad12df437371da11ffcc4cfaf632d1ee4882 +size 1204614 diff --git a/public/assets/webp/scroll700/1440x1440/trio-portal-bw.webp b/public/assets/webp/scroll700/1440x1440/trio-portal-bw.webp new file mode 100644 index 0000000..b053e17 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-portal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3a7b99186254d5db9e284323f465f4b810ff47ba45ad01b4aa3d9c4c6fed30 +size 791922 diff --git a/public/assets/webp/scroll700/1440x1440/trio-portal-c.webp b/public/assets/webp/scroll700/1440x1440/trio-portal-c.webp new file mode 100644 index 0000000..dcce935 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-portal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f42ab4b6e94fe1ec73d2284c304c3bc919396c9941b240e8d484dda101e926ed +size 1565582 diff --git a/public/assets/webp/scroll700/1440x1440/trio-portraits-bw.webp b/public/assets/webp/scroll700/1440x1440/trio-portraits-bw.webp new file mode 100644 index 0000000..63ace7a --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-portraits-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52eefad9f80ff015af87345481d4bcb803cc33352c49b7fe098534c99a5fb00f +size 671140 diff --git a/public/assets/webp/scroll700/1440x1440/trio-portraits-c.webp b/public/assets/webp/scroll700/1440x1440/trio-portraits-c.webp new file mode 100644 index 0000000..eeb0e5c --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-portraits-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:287afc24fab4aa54aff890b1aa45d0d9cd57d400182e45c863b332ec861e8e46 +size 1102510 diff --git a/public/assets/webp/scroll700/1440x1440/trio-profiles-bw.webp b/public/assets/webp/scroll700/1440x1440/trio-profiles-bw.webp new file mode 100644 index 0000000..213e68b --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-profiles-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa18aefd79089563c16aa07d9517659a7c5fc357641ee87950cd394361077ef7 +size 749794 diff --git a/public/assets/webp/scroll700/1440x1440/trio-profiles-c.webp b/public/assets/webp/scroll700/1440x1440/trio-profiles-c.webp new file mode 100644 index 0000000..c0a96c4 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-profiles-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a465e30dda1d09f551c891ccec33ccd5d199c9ac89b8f9a08854d9206733c7ba +size 1332012 diff --git a/public/assets/webp/scroll700/1440x1440/trio-warriors-bw.webp b/public/assets/webp/scroll700/1440x1440/trio-warriors-bw.webp new file mode 100644 index 0000000..450cce0 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-warriors-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ca56033909ee24f5622713f198d52d7695618ff01d22fe288992b6d7f8bcd5b +size 684398 diff --git a/public/assets/webp/scroll700/1440x1440/trio-warriors-c.webp b/public/assets/webp/scroll700/1440x1440/trio-warriors-c.webp new file mode 100644 index 0000000..2ec37d0 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-warriors-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfd6a630cee5679f42efd3efa1aff5dc09c331c40537ab47f8a3da8445583b95 +size 1191372 diff --git a/public/assets/webp/scroll700/1440x1440/trio-weapons-bw.webp b/public/assets/webp/scroll700/1440x1440/trio-weapons-bw.webp new file mode 100644 index 0000000..d723c0a --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-weapons-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f6fbe2a776973bac5087762df246c892c14a9dd9cd57525b86a123cf3bf73c5 +size 835992 diff --git a/public/assets/webp/scroll700/1440x1440/trio-weapons-c.webp b/public/assets/webp/scroll700/1440x1440/trio-weapons-c.webp new file mode 100644 index 0000000..93013e9 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-weapons-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:972f519d3d6e8f0bbdd7e73739f6387f9b0dbfa4e36ced871e03c5e8b506aef2 +size 1740646 diff --git a/public/assets/webp/scroll700/1440x1440/trio-wings-bw.webp b/public/assets/webp/scroll700/1440x1440/trio-wings-bw.webp new file mode 100644 index 0000000..5728100 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-wings-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:345284845d80c697dfa17bd1fc9f9f9e85407cc38b93c0e9ee9863e3c8b12b62 +size 648160 diff --git a/public/assets/webp/scroll700/1440x1440/trio-wings-c.webp b/public/assets/webp/scroll700/1440x1440/trio-wings-c.webp new file mode 100644 index 0000000..e65259b --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/trio-wings-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d9c0a06a56ff4e4b4cc8c2de22e3af9e53b429b3536c94b324bd351af3cb203 +size 1211656 diff --git a/public/assets/webp/scroll700/1440x1440/warrior-solo-bw.webp b/public/assets/webp/scroll700/1440x1440/warrior-solo-bw.webp new file mode 100644 index 0000000..4938f34 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warrior-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3da71f4c31decf56c7bd45290ad5a84027b0a5d648aecf9e1bfb5b05c96dfa +size 521058 diff --git a/public/assets/webp/scroll700/1440x1440/warrior-solo-c.webp b/public/assets/webp/scroll700/1440x1440/warrior-solo-c.webp new file mode 100644 index 0000000..03c4006 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warrior-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea31bdcd9b8ad7964a9bb002bb94ed74124c080f3b0cf0ef2cf3132ffcfbe84c +size 704352 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-armed-bw.webp b/public/assets/webp/scroll700/1440x1440/warriors-armed-bw.webp new file mode 100644 index 0000000..08497d2 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-armed-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7e0407558c6fad40e7c5b4132bb16dcb616a29ab64d8660e7199d710a283f58 +size 645940 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-armed-c.webp b/public/assets/webp/scroll700/1440x1440/warriors-armed-c.webp new file mode 100644 index 0000000..8ce9b47 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-armed-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b5b6e83b8837c2f5e3d00272e1dc4b921d354b7d1dec77e567fb962afaec1ef +size 1183772 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-belts-bw.webp b/public/assets/webp/scroll700/1440x1440/warriors-belts-bw.webp new file mode 100644 index 0000000..b1539f0 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-belts-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a65c61c0e097de7481291f8c6a4d83af24f627d5adb1cff5c962523a403931c +size 747310 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-belts-c.webp b/public/assets/webp/scroll700/1440x1440/warriors-belts-c.webp new file mode 100644 index 0000000..e8868ba --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-belts-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb6016db998052f3ca03e30fe36fb606c795f9a93c386e88504a2472304e404 +size 1265660 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-casual-bw.webp b/public/assets/webp/scroll700/1440x1440/warriors-casual-bw.webp new file mode 100644 index 0000000..043a38d --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-casual-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393d79730904f9bf78173977b2380098c1d30853c000bc92847ef2e6287ddd16 +size 682708 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-casual-c.webp b/public/assets/webp/scroll700/1440x1440/warriors-casual-c.webp new file mode 100644 index 0000000..bbedde5 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-casual-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91fc430899c7bf5013606675b54e12ec8802348b2d79407f74027dd314e9b71c +size 1131278 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-confident-bw.webp b/public/assets/webp/scroll700/1440x1440/warriors-confident-bw.webp new file mode 100644 index 0000000..8e3e4fd --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-confident-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:541b78e1ace59a462cbbe5352d3f0f9bf4b109a762e1446e56fe8719f9128910 +size 714464 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-confident-c.webp b/public/assets/webp/scroll700/1440x1440/warriors-confident-c.webp new file mode 100644 index 0000000..c46b1b5 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-confident-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f2b87ab75b71c11b20835bb6d6403a1272e87c2778dea35a120b8350cad7f6 +size 1160038 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-forward-bw.webp b/public/assets/webp/scroll700/1440x1440/warriors-forward-bw.webp new file mode 100644 index 0000000..49814f2 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-forward-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:778238ee4c4c0905644779ac02660a73f767739453f70d094f7cacb2cb96f37e +size 769940 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-forward-c.webp b/public/assets/webp/scroll700/1440x1440/warriors-forward-c.webp new file mode 100644 index 0000000..5f939e4 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-forward-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc39245359044d514dfcccc6c6b3f9ceda35b61cd62204fc8c355c5019f2a4eb +size 1261956 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-magic-bw.webp b/public/assets/webp/scroll700/1440x1440/warriors-magic-bw.webp new file mode 100644 index 0000000..7885cf6 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-magic-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afabe0c10f0853f77fa3a6ba8ba8606a7a31d00366101769c3e21031d1e80b7a +size 767494 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-magic-c.webp b/public/assets/webp/scroll700/1440x1440/warriors-magic-c.webp new file mode 100644 index 0000000..f595f20 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-magic-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0331f4761fba26fc4d7af104ff3f5b3448d1ab5350283ea7d3b24b3e24f6d500 +size 1611296 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-masked-bw.webp b/public/assets/webp/scroll700/1440x1440/warriors-masked-bw.webp new file mode 100644 index 0000000..969b912 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-masked-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bde8aa01d4a7bed94ee5e122ecd5380a110c38ae62a4b5f90954bb2d842e5eea +size 735390 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-masked-c.webp b/public/assets/webp/scroll700/1440x1440/warriors-masked-c.webp new file mode 100644 index 0000000..7c1305c --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-masked-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c9cf80b0882f6291f09508ea2e65e4d737a311fab0d7f33d377c517ec5c554 +size 1360940 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-moloch-bw.webp b/public/assets/webp/scroll700/1440x1440/warriors-moloch-bw.webp new file mode 100644 index 0000000..2fb1b71 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-moloch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3288e4091173d2bbdaa5c81f12781c1f4a82eee2ecb47ce5afa39ab4c117e2f8 +size 860054 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-moloch-c.webp b/public/assets/webp/scroll700/1440x1440/warriors-moloch-c.webp new file mode 100644 index 0000000..c9b66b0 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-moloch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672c74812f5b90fde70cf7bb45bdc13b6785d632353a87542519e4301484b369 +size 1407990 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-orbs-bw.webp b/public/assets/webp/scroll700/1440x1440/warriors-orbs-bw.webp new file mode 100644 index 0000000..81086ed --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-orbs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11b15462befcef52af17ba5d359b0e96f9f44df4427ef9c0f4cc3f9e7ac573a7 +size 1029626 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-orbs-c.webp b/public/assets/webp/scroll700/1440x1440/warriors-orbs-c.webp new file mode 100644 index 0000000..6f9b649 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-orbs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad098d2db97dda958cfa5eeff64b79c115acbe60c47818e4ea5f668d34bcab4c +size 1821694 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-ready-bw.webp b/public/assets/webp/scroll700/1440x1440/warriors-ready-bw.webp new file mode 100644 index 0000000..cf8788a --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-ready-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8681121c89dcf522f174753d9c3dd15508df4c4e5dac7f6c38100abd06df50c +size 662848 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-ready-c.webp b/public/assets/webp/scroll700/1440x1440/warriors-ready-c.webp new file mode 100644 index 0000000..38aed22 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-ready-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9c58974be2f4537e28f24090ce45f313997902878506202c4c9846c7bc5a3b1 +size 1244654 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-standing-bw.webp b/public/assets/webp/scroll700/1440x1440/warriors-standing-bw.webp new file mode 100644 index 0000000..2b7d4c7 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-standing-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ef307a4f3670fa267829eb37b43ac662927ef33adc92aa4a70ec3581bcf02c6 +size 699688 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-standing-c.webp b/public/assets/webp/scroll700/1440x1440/warriors-standing-c.webp new file mode 100644 index 0000000..2392202 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-standing-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1558d3ea6c7ed54500381a261cde0c7e2892288588606a003ef93b4612895a5 +size 1259928 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-triangle-bw.webp b/public/assets/webp/scroll700/1440x1440/warriors-triangle-bw.webp new file mode 100644 index 0000000..ef52e49 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-triangle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fb3ab8f400fbb1c0ef44b99a0950f929694e91892539cd8290f1f11bf854aea +size 794350 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-triangle-c.webp b/public/assets/webp/scroll700/1440x1440/warriors-triangle-c.webp new file mode 100644 index 0000000..40a97c5 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-triangle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46c7036850f53cd49d7083e0db61bd8b10b9d452caed073e43cd0816633107bf +size 1372796 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-white-bw.webp b/public/assets/webp/scroll700/1440x1440/warriors-white-bw.webp new file mode 100644 index 0000000..e039dd1 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-white-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e65aefc77057833b26394119008ef45063c68e6bad3bdbcfbf10af9ecd167b53 +size 980738 diff --git a/public/assets/webp/scroll700/1440x1440/warriors-white-c.webp b/public/assets/webp/scroll700/1440x1440/warriors-white-c.webp new file mode 100644 index 0000000..827b058 --- /dev/null +++ b/public/assets/webp/scroll700/1440x1440/warriors-white-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dab527f617b49a0eb3ae9800fa0b6c6fc925fd8088d3b5cad604dbc701133c2f +size 1708498 diff --git a/public/assets/webp/scroll700/1440x550/ship-front-bw.webp b/public/assets/webp/scroll700/1440x550/ship-front-bw.webp new file mode 100644 index 0000000..d17d0cd --- /dev/null +++ b/public/assets/webp/scroll700/1440x550/ship-front-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e436a6dc4ec0477dd4d3e3315aa09cc7f6d2d1c090b114a3cfcc2b304085a40 +size 133060 diff --git a/public/assets/webp/scroll700/1440x550/ship-front-c.webp b/public/assets/webp/scroll700/1440x550/ship-front-c.webp new file mode 100644 index 0000000..54fa5ec --- /dev/null +++ b/public/assets/webp/scroll700/1440x550/ship-front-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54f601abcc427ff0b52541e639edb326ced347674964b830c601503228fc0ac +size 178306 diff --git a/public/assets/webp/scroll700/1440x550/ship-mech-bw.webp b/public/assets/webp/scroll700/1440x550/ship-mech-bw.webp new file mode 100644 index 0000000..20f39b2 --- /dev/null +++ b/public/assets/webp/scroll700/1440x550/ship-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cccacc9862861661aa24e462179be3ab23924ddcff7c88566833bf289ab13a28 +size 130712 diff --git a/public/assets/webp/scroll700/1440x550/ship-mech-c.webp b/public/assets/webp/scroll700/1440x550/ship-mech-c.webp new file mode 100644 index 0000000..385edab --- /dev/null +++ b/public/assets/webp/scroll700/1440x550/ship-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f5a585f39fc06b01c51a70922810ddce2260dae3afee2890f2c0b258f16b04 +size 217848 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/arch-gate-bw.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/arch-gate-bw.webp new file mode 100644 index 0000000..f918745 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/arch-gate-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53ecfda1b5f85c7f0b2a3b28cce7660d7b178e32c0b3a17a043c99143cdfbcfd +size 45084 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/arch-gate-c.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/arch-gate-c.webp new file mode 100644 index 0000000..9a0cf45 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/arch-gate-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:738b921f1594b2561cb3a708f9f456a7fd4871a8a3809bbe8b045489c0ebd8ff +size 51172 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/book-orb-bw.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/book-orb-bw.webp new file mode 100644 index 0000000..2011dc0 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/book-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8426b01e61d68dedcff3fefcd7495289866bb887abadedc3123ecebc14c4dc2f +size 42082 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/book-orb-c.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/book-orb-c.webp new file mode 100644 index 0000000..aa4442e --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/book-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec24343dcd69e7671ee5125f2e663257944b93408e2ab6d37d73509af4ff5fd7 +size 41060 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/compass-circular-bw.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/compass-circular-bw.webp new file mode 100644 index 0000000..b2c7838 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/compass-circular-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c854d0a9dc2c97467c39cdc2b8e94255afdd6b2ba73535df4c126f1f2a67cad +size 46638 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/compass-circular-c.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/compass-circular-c.webp new file mode 100644 index 0000000..d879037 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/compass-circular-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6ba79906678a1075f062a8b441970a02d8357e111f01d0056659011252fbe02 +size 48192 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/raven-solo-bw.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/raven-solo-bw.webp new file mode 100644 index 0000000..096185e --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/raven-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4930ff799ae3ca40ffcf2f0feca2d9a09a33856a56d01fdb60d86e9dfd79c4f +size 39930 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/raven-solo-c.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/raven-solo-c.webp new file mode 100644 index 0000000..4fdbfa0 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/raven-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac2c2d08e3f912a4993e267b74ab9c7eaad7657b614781222e3b6c73f0a92574 +size 44224 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-cloud-bw.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-cloud-bw.webp new file mode 100644 index 0000000..f9dffb3 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-cloud-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca23d83b9c7a359432d08561d5a0464e95e2e1a60e8f7076bd08bda3f85ab1f7 +size 45598 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-cloud-c.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-cloud-c.webp new file mode 100644 index 0000000..b34e796 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-cloud-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7b469b7ae4c933ed320d77c6897df3e674bf91396a6889e31e6c57059ab2bb +size 48008 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-curve-bw.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-curve-bw.webp new file mode 100644 index 0000000..fcf5951 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-curve-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7ff5960fb4f5e477a4b0b6563c9be3ef1980207e2456c24a79a9556a936ba58 +size 41342 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-curve-c.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-curve-c.webp new file mode 100644 index 0000000..c95121c --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-curve-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5b8a65c3576c2732dbc20be751461cfb9aee920fd0b4e194d413e79e72fbc60 +size 42138 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-twist-bw.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-twist-bw.webp new file mode 100644 index 0000000..383a7f7 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-twist-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d86773ecd6360b4da58cd6bfb6ded3de50d5e96c6172a7142219371f7e629ad3 +size 35934 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-twist-c.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-twist-c.webp new file mode 100644 index 0000000..6957833 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/stairs-twist-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02b9394a999f76a0e56ad11ac9358235a585e5b9bdc010e28b316ec0698a1e8e +size 37816 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/stone-pedestal-bw.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/stone-pedestal-bw.webp new file mode 100644 index 0000000..9039222 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/stone-pedestal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d9a3412549f80e66bc7e2568cb382e4dd7177c75f09bc1163ff216647bdaf6 +size 36702 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/stone-pedestal-c.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/stone-pedestal-c.webp new file mode 100644 index 0000000..8607e24 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/stone-pedestal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba6cd950cde9d363c521c21ba5a9101f1c4e9b012cc88aff4ade84edd1c2bebd +size 37074 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/tower-floating-bw.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/tower-floating-bw.webp new file mode 100644 index 0000000..29ae311 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/tower-floating-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e94acef1beb2d95b6710143110ed79318b40f9b7e151124650d06c6c512103ca +size 28598 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/tower-floating-c.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/tower-floating-c.webp new file mode 100644 index 0000000..512fc6f --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/tower-floating-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a8aec66f1cc65198a803d04d186268f9ec8a92895ecbab1f4c0793dce0b8e8c +size 28252 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/tower-platform-bw.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/tower-platform-bw.webp new file mode 100644 index 0000000..791f18c --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/tower-platform-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce0ef63b175e076846d56e81c44558dde151b8615c2786161bc544d98f70b275 +size 49670 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/tower-platform-c.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/tower-platform-c.webp new file mode 100644 index 0000000..68f0324 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/tower-platform-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cbc3801c88def053d29f5b2396d3576043b27901446f84c39383c17b6110483 +size 53872 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/tower-tree-bw.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/tower-tree-bw.webp new file mode 100644 index 0000000..707b506 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/tower-tree-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a51759efa20402fe6bfad96f0e957bf04ec608e53f942f675f556e76de66dc9e +size 36988 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/tower-tree-c.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/tower-tree-c.webp new file mode 100644 index 0000000..9c73a6f --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/tower-tree-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45bf2e2cb36842c7ce1a8fd4963968bcb0682847da34143b87d53b63fe2102cc +size 37218 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/tree-island-bw.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/tree-island-bw.webp new file mode 100644 index 0000000..998f468 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/tree-island-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65772fa77519bfd11612b90a3aeb41c3a3bd3f3a9ea108d12d4fb3c12c1b4cde +size 44080 diff --git a/public/assets/webp/scroll700/thumbnails/1080x1440/tree-island-c.webp b/public/assets/webp/scroll700/thumbnails/1080x1440/tree-island-c.webp new file mode 100644 index 0000000..3cc288b --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1080x1440/tree-island-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:335489736187070a785148885df9c9008a541fb2a2a5acfc99199fda723415f9 +size 46230 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/castle-flag-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/castle-flag-bw.webp new file mode 100644 index 0000000..a247a38 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/castle-flag-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4c16a76d47bdcd6dcf0c964a8ca553a62f4d5025421de608286c70f20c08e2 +size 38580 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/castle-flag-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/castle-flag-c.webp new file mode 100644 index 0000000..cf5a649 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/castle-flag-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:240434a36819a5d0301043130aaae6fc45ebddbf6b5abf4851bc7cb63de50fa9 +size 42862 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/castle-staff-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/castle-staff-bw.webp new file mode 100644 index 0000000..fc3ab59 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/castle-staff-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f16775ff8f0cdf8376206d971f5f51a37873289470c2650fc9d5202f77446b5b +size 48486 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/castle-staff-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/castle-staff-c.webp new file mode 100644 index 0000000..134534d --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/castle-staff-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c2e7f4c9f5a19e34b0a34a26f105380b59af5a245f944a7811c0b06944e4f0a +size 52216 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/desk-work-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/desk-work-bw.webp new file mode 100644 index 0000000..22fafc1 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/desk-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9621b0b589dce475d5cfb948f92a9838ca532d3b0995996d98ebe913ec6f16d +size 48100 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/desk-work-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/desk-work-c.webp new file mode 100644 index 0000000..f3d1d4e --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/desk-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f8e67a96b74852a14e780b6196346c53f8d9c3d0eb6b65bfb1fe050b38af7cf +size 49250 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/forge-anvil-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-anvil-bw.webp new file mode 100644 index 0000000..cec4534 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-anvil-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2a9ac3846f6e1d37a2ac28c6ff8f53a5bc01d5be472c7498919f10c31bfbf23 +size 55248 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/forge-anvil-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-anvil-c.webp new file mode 100644 index 0000000..c2ea6a9 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-anvil-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8a8a21da6e842500b47cd971536da71393ab9753ac4563c321999d77a42aaf5 +size 56880 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/forge-building-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-building-bw.webp new file mode 100644 index 0000000..f30acdb --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-building-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b7aba846a76efbbea7b1db4d5aef012f7ea13e56d57908b489c93bbeadf4bb +size 48090 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/forge-building-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-building-c.webp new file mode 100644 index 0000000..ffdc330 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-building-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8f8e63aa0591da048602d902ba304505c31c4a92ecdd4762861502fc23bfd6 +size 48914 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/forge-duo-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-duo-bw.webp new file mode 100644 index 0000000..d607413 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-duo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f46b3beb98b05f00afcdf892b20e7c48c0d86ca570263b1f82db1b12802ef537 +size 44952 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/forge-duo-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-duo-c.webp new file mode 100644 index 0000000..9f75dd4 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-duo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:509f6c0b7b20c634ff4034efc396b0392c0ef59fbce0918db90e4d2454e17327 +size 44946 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/forge-fire-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-fire-bw.webp new file mode 100644 index 0000000..b262c96 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-fire-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:480d9fbca296ff31a57d1044eeb8ea2fe886ba45a34ff31b9bf53b3275f36899 +size 52422 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/forge-fire-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-fire-c.webp new file mode 100644 index 0000000..7d9bb8e --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-fire-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37f9b79937d15ac4b72ae982c6f9a42a7f8875e36b7869dff1586d6abbc658c6 +size 57460 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/forge-work-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-work-bw.webp new file mode 100644 index 0000000..6f6ec42 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-work-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2148ca52102ceda44e0aaf802fe4447b2f8c574d5ace539ee4be4b5a69510c2c +size 50160 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/forge-work-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-work-c.webp new file mode 100644 index 0000000..fdf57d7 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/forge-work-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2bdb752e6f3e8132cae49dc0c7f4d353b63b8a1f53a4b1555b7e45bfcf9e803 +size 50744 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/portal-arch-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/portal-arch-bw.webp new file mode 100644 index 0000000..3a0becd --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/portal-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2635abd7c3f704a0d6eaa1d310cbcceb76831425fcc43b9345a50fb99b136bec +size 55786 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/portal-arch-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/portal-arch-c.webp new file mode 100644 index 0000000..8b6de4b --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/portal-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dda04f1d27caace55197ae734f174364c39836c7deb5bd482184bced7d8a00e3 +size 58984 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/ravens-flight-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/ravens-flight-bw.webp new file mode 100644 index 0000000..586c01e --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/ravens-flight-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3487fd06d90818c9f055b6225ccf7f188c127d8415c884f3845b0311d282320a +size 55176 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/ravens-flight-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/ravens-flight-c.webp new file mode 100644 index 0000000..c145cc4 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/ravens-flight-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbacda3b5cc31059089519e6addbfd6b22dc84ae32fe21e391cb7811017ea6fc +size 56828 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/stairs-spiral-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/stairs-spiral-bw.webp new file mode 100644 index 0000000..aca61ab --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/stairs-spiral-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdaef18306e5e9d5c5966062de5638c996f29c645b32d306883581e5f1a217ae +size 43040 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/stairs-spiral-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/stairs-spiral-c.webp new file mode 100644 index 0000000..3f3fa12 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/stairs-spiral-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa9b7580b1285272af6723e50d7d1cf1ce819fc10c4f907217e43d56d618724 +size 44550 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/stone-monuments-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/stone-monuments-bw.webp new file mode 100644 index 0000000..3ed061f --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/stone-monuments-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adbe5abedcaab6a2117f1647ec2d9c1748c011d34feb96e7cc468fbebbc838de +size 49736 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/stone-monuments-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/stone-monuments-c.webp new file mode 100644 index 0000000..36e3770 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/stone-monuments-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e1dd27e2714b5a88dde6e1d4af81ab2886bc797297049bb50d37753380692e7 +size 50046 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/table-castle-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/table-castle-bw.webp new file mode 100644 index 0000000..3dcbe3d --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/table-castle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01b3e8335d9d143cbf71023f8c763cd63c4c81efc8cfe45d3f561b68db866d70 +size 48818 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/table-castle-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/table-castle-c.webp new file mode 100644 index 0000000..b159313 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/table-castle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00491c92ead8a82b7b5351d0002a7352ad3b2862f33318cf84c3877e2a816eba +size 50892 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/tree-mech-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/tree-mech-bw.webp new file mode 100644 index 0000000..eed8744 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/tree-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f593bf53aa8c9912347db67aac93b8c8febdc9b4e5d35b0ed0ccd064e724264e +size 58952 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/tree-mech-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/tree-mech-c.webp new file mode 100644 index 0000000..17f5250 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/tree-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:454a7524b8bbccf7565d0f25f5b57461e3f7faef087e10750a41a32a4c20f35b +size 59086 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-arch-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-arch-bw.webp new file mode 100644 index 0000000..3bcf829 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-arch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b14794f640440c9bedec5e4b599b57c1b3668b7f1131d86bdfd249b5d730b290 +size 52376 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-arch-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-arch-c.webp new file mode 100644 index 0000000..1d677f7 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-arch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39da24fcf6e8ef46ae3c3286f3033e412654c4ce640c8e807dd1d27bf65f74be +size 56064 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-backs-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-backs-bw.webp new file mode 100644 index 0000000..9f57a06 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-backs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c5f736cf95318520ba6df6e4020c5aab92df67d0fc6963f2450f332b94d6263 +size 56054 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-backs-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-backs-c.webp new file mode 100644 index 0000000..5ac510a --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-backs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef8c89db71aa1db00a8d6c988d5bbf51bc621739fa0f0ad813e703addd7642ad +size 56148 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-beast-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-beast-bw.webp new file mode 100644 index 0000000..3a4c639 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-beast-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c14204c1c9ef66bf95684614bbfc9f6db234f45349a93de727c49d761800481f +size 50678 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-beast-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-beast-c.webp new file mode 100644 index 0000000..429cee2 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-beast-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4a1f27f408349ba24db8cf09b8380434ee25407fe80e18ccfcafc315a0524db +size 51766 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-mountain-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-mountain-bw.webp new file mode 100644 index 0000000..1af456b --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-mountain-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31046cd7940bdd357cac72c74114030549a633f9f8e8f0ad5aa031aced62e5ac +size 59482 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-mountain-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-mountain-c.webp new file mode 100644 index 0000000..b0ae9e9 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-mountain-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26911bde5c020c6a981e1d7499cd169439dda6638ba87732707aa1be23f1f247 +size 62446 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-orb-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-orb-bw.webp new file mode 100644 index 0000000..73e874e --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-orb-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed1357daf1a5d5cb29b6a37d144a0bc2c19bb843e9e0ebe4db68d28cf03af299 +size 49698 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-orb-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-orb-c.webp new file mode 100644 index 0000000..dbadbff --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-orb-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db3d7345de014b50c6f702d5525a428eac2d1459be91d965154028f7f6a80a0a +size 51060 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-portal-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-portal-bw.webp new file mode 100644 index 0000000..64c8e11 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-portal-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c4fbb6b635019554477fcee6431833bf694b2fea617326c53f2735542e787d1 +size 50104 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-portal-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-portal-c.webp new file mode 100644 index 0000000..3d6cf0c --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-portal-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0636388ebdaa238e6556c9bb379a140357282ab3d70ff080fa2096e72aae8892 +size 51990 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-portraits-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-portraits-bw.webp new file mode 100644 index 0000000..c3f5547 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-portraits-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b3bb27cd34c29af24e9df00e046454f229dc345b42a5e965b83f58e65b09c55 +size 45308 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-portraits-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-portraits-c.webp new file mode 100644 index 0000000..37f5573 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-portraits-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:948bbccdaf2178c9d5e2d48929b0aaa0d5c18de36078ab3d719a1bb2ccb8f268 +size 46232 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-profiles-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-profiles-bw.webp new file mode 100644 index 0000000..a443175 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-profiles-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47a28eacdea0d91c2a394d99ab244a921451c4041f439f69b792e5d98c1e86a1 +size 51796 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-profiles-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-profiles-c.webp new file mode 100644 index 0000000..5c58f08 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-profiles-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55acfc32af890099662886ca7b69e5c2c5f5dca2e13eaf61a8649449be8dc6a2 +size 55244 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-warriors-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-warriors-bw.webp new file mode 100644 index 0000000..16e5223 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-warriors-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05db06ded0d204ce5a618066f91b134580dc6e7a8d4537f8603c4306df891c11 +size 45070 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-warriors-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-warriors-c.webp new file mode 100644 index 0000000..6358e86 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-warriors-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7560b74fc1bba6c43132393aa1c51f945e9eb6cacd25734681c079b438d44f92 +size 47784 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-weapons-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-weapons-bw.webp new file mode 100644 index 0000000..c0af304 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-weapons-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b2d9d188efb3fe34bca5a7f46ce49a55c97d8d0629beef59614d0dafb1c7e69 +size 52108 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-weapons-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-weapons-c.webp new file mode 100644 index 0000000..e0f8424 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-weapons-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a5681fefe643fc2e5824941947199c2f2b9e8c76f889224ecd0d9702aa2eb21 +size 55916 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-wings-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-wings-bw.webp new file mode 100644 index 0000000..c745b6b --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-wings-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:588e75c61b419461a8f18ace53bf358b14f239db154a2c63987cf88e8fc827c0 +size 44236 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/trio-wings-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-wings-c.webp new file mode 100644 index 0000000..7b51d6a --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/trio-wings-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:180413e589e72d2f58b02fb29f724b94de82bcadad20cf078ee3f31a21d0d815 +size 44128 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warrior-solo-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warrior-solo-bw.webp new file mode 100644 index 0000000..beb93a7 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warrior-solo-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa75dc12dec9826985dee2b3dca6b2b4260603e694b7dec403c5f22b9cddf144 +size 42444 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warrior-solo-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warrior-solo-c.webp new file mode 100644 index 0000000..417e24f --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warrior-solo-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7363539231e369baf5f3107e31e4f086bbc63deaebe9f6bed567828751e49f8f +size 41322 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-armed-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-armed-bw.webp new file mode 100644 index 0000000..a480905 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-armed-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b11796e8dd3cda26183b3e9e94cfbbb3809c6f4e52f03d71d2a58d8629c7ccc9 +size 42372 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-armed-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-armed-c.webp new file mode 100644 index 0000000..87dad31 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-armed-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e90784af02090ab99c57e3b17f0e5c9827e9dc9fecabc95a0785dad4377d324 +size 42174 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-belts-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-belts-bw.webp new file mode 100644 index 0000000..dfc7bd4 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-belts-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebf0c2bb77befe15b99ebd8e436824a64c05b123708aeca9c551e082369b20b4 +size 46802 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-belts-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-belts-c.webp new file mode 100644 index 0000000..5f752ad --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-belts-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad0d3e9fc3ea05b12f7014ee583e8d541e53ac40dcb60b5b3061bd6599aa3d9b +size 46944 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-casual-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-casual-bw.webp new file mode 100644 index 0000000..528f9b8 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-casual-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:710ff32e5365779f5a4c62173898d9cbaab351afbf005819f35e3c6b012c80c6 +size 47812 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-casual-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-casual-c.webp new file mode 100644 index 0000000..d83aa04 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-casual-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a97f5af9f55fe30a2c6542bb5e774da5f14cba580f36164666632d95873c25c9 +size 49624 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-confident-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-confident-bw.webp new file mode 100644 index 0000000..e1eb407 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-confident-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a7ed45c7153d6d6bbd9bc05ed7a85b5b0107b93d5623ebc73d6a8d9d263620 +size 53144 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-confident-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-confident-c.webp new file mode 100644 index 0000000..80488ce --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-confident-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbb7eab35f7b3b568fba3404f1485bb3945607a07f211bc869de578e9adf5aad +size 53064 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-forward-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-forward-bw.webp new file mode 100644 index 0000000..663c5e1 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-forward-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936b9788e7559b02a84e2c3c3441d9465984984e7327bb2d76cf918f375c6110 +size 48942 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-forward-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-forward-c.webp new file mode 100644 index 0000000..06ec3e2 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-forward-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceae5b193b3007a1c5de0e3f66bbe7ff730113a742d29d500cca5b4247abb062 +size 50256 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-magic-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-magic-bw.webp new file mode 100644 index 0000000..9f11f53 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-magic-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f50cb4727e584d56f6203b18bfb12b12bf9b64e7715283ed9d643ddafb833237 +size 50130 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-magic-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-magic-c.webp new file mode 100644 index 0000000..5d23896 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-magic-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed7b7973074fd030dd3d0c7d905e0f48f5a0299c3efbbdd85dfb7174b93f6ece +size 55226 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-masked-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-masked-bw.webp new file mode 100644 index 0000000..4403218 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-masked-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e43260961f8a3eb5a887f6d2b2ae712af48412da1267090025d32bb59954b2b +size 46904 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-masked-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-masked-c.webp new file mode 100644 index 0000000..18e1982 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-masked-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bced4c6803caafea59d6eed78557b0450accc17f679d67f724340306a5970652 +size 50854 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-moloch-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-moloch-bw.webp new file mode 100644 index 0000000..200a55e --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-moloch-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:823ca6d3333b26d57ffd9182d47ac6daf992f4898a787e126c35d574497ff0ce +size 57656 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-moloch-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-moloch-c.webp new file mode 100644 index 0000000..975a28f --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-moloch-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a7ce18bbbc276b1536cd851b70e53ae0e3e3e5d9abb4f5d18957f93ec24c6b1 +size 58070 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-orbs-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-orbs-bw.webp new file mode 100644 index 0000000..f9a5849 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-orbs-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc1740ad8dac16e122fe42fd902aeea1e8c9bde97823cac06a89d6b43affb15 +size 66082 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-orbs-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-orbs-c.webp new file mode 100644 index 0000000..f344d21 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-orbs-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fff98f3d9c4b599f3f6539399f119b814cba59e13f340e202cc18d2de1908082 +size 65414 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-ready-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-ready-bw.webp new file mode 100644 index 0000000..09b7ca7 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-ready-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e21316fb75a8fa85948aba07099bf14dd089641c41e877f709c523246f7e20 +size 48540 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-ready-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-ready-c.webp new file mode 100644 index 0000000..6c56d30 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-ready-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d422a5c4ce5d755ef19c17ebed96809d5997b889120c4fa0aaf1da0cd452e94f +size 51256 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-standing-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-standing-bw.webp new file mode 100644 index 0000000..fb9deed --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-standing-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5c97d653a3ff5758dad2499f78afc634774227218b8de480ca45ec62e1e3bd4 +size 50456 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-standing-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-standing-c.webp new file mode 100644 index 0000000..e96eefd --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-standing-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f21c7f2838e5091c19c3d71e92802212f5989fb6635b6520fa3ba631f871b61 +size 52890 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-triangle-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-triangle-bw.webp new file mode 100644 index 0000000..50da8d1 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-triangle-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b678aab7d53ec0689a1457866737dce17fc173a8d1e1054056e410f24f656b +size 51314 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-triangle-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-triangle-c.webp new file mode 100644 index 0000000..b7d3c67 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-triangle-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5a8b878e11a57e3133e4fea1756a81080852d83e851c4d3d0222d1b83f63efa +size 53276 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-white-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-white-bw.webp new file mode 100644 index 0000000..d3a1bb2 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-white-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:805c84de687d63a3c22502cc72c706948316c52b453551405ea772da7728c222 +size 59632 diff --git a/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-white-c.webp b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-white-c.webp new file mode 100644 index 0000000..7ceb4a6 --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x1440/warriors-white-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3237bb3843a3ae04e5068be8c8e2aa52400b5426822903f078bc937289ec79a +size 60564 diff --git a/public/assets/webp/scroll700/thumbnails/1440x550/ship-front-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x550/ship-front-bw.webp new file mode 100644 index 0000000..fe4d88c --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x550/ship-front-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a3f4848554b5c0e6c59346e79b1d7371181920312b848c67f31abdbba41a7d6 +size 39648 diff --git a/public/assets/webp/scroll700/thumbnails/1440x550/ship-front-c.webp b/public/assets/webp/scroll700/thumbnails/1440x550/ship-front-c.webp new file mode 100644 index 0000000..fe5805a --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x550/ship-front-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fda4deea5581ce9b481b7baa6a95ad963239e881467d2be6a6c7d3cce0746f5 +size 41420 diff --git a/public/assets/webp/scroll700/thumbnails/1440x550/ship-mech-bw.webp b/public/assets/webp/scroll700/thumbnails/1440x550/ship-mech-bw.webp new file mode 100644 index 0000000..da260ac --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x550/ship-mech-bw.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06786ca542df749af7aecda176c086d5e0611dbed0531cffff022b49fb53eada +size 38068 diff --git a/public/assets/webp/scroll700/thumbnails/1440x550/ship-mech-c.webp b/public/assets/webp/scroll700/thumbnails/1440x550/ship-mech-c.webp new file mode 100644 index 0000000..97d785c --- /dev/null +++ b/public/assets/webp/scroll700/thumbnails/1440x550/ship-mech-c.webp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee5ee0b3bb832809a27e726ebafc831223a4056a52ccb586f9e9a5a686312db +size 41680 diff --git a/public/assets/webp/thumbnails/1080x1440/arch-gate-bw.webp b/public/assets/webp/thumbnails/1080x1440/arch-gate-bw.webp deleted file mode 100644 index f752dc3..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/arch-gate-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/arch-gate-c.webp b/public/assets/webp/thumbnails/1080x1440/arch-gate-c.webp deleted file mode 100644 index 71813ad..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/arch-gate-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/book-orb-bw.webp b/public/assets/webp/thumbnails/1080x1440/book-orb-bw.webp deleted file mode 100644 index 7ee2f1e..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/book-orb-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/book-orb-c.webp b/public/assets/webp/thumbnails/1080x1440/book-orb-c.webp deleted file mode 100644 index 94dc55c..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/book-orb-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/compass-circular-bw.webp b/public/assets/webp/thumbnails/1080x1440/compass-circular-bw.webp deleted file mode 100644 index 4c8af3d..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/compass-circular-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/compass-circular-c.webp b/public/assets/webp/thumbnails/1080x1440/compass-circular-c.webp deleted file mode 100644 index 66faca1..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/compass-circular-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/raven-solo-bw.webp b/public/assets/webp/thumbnails/1080x1440/raven-solo-bw.webp deleted file mode 100644 index 4fae673..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/raven-solo-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/raven-solo-c.webp b/public/assets/webp/thumbnails/1080x1440/raven-solo-c.webp deleted file mode 100644 index 06e4c35..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/raven-solo-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/stairs-cloud-bw.webp b/public/assets/webp/thumbnails/1080x1440/stairs-cloud-bw.webp deleted file mode 100644 index 1afb2ad..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/stairs-cloud-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/stairs-cloud-c.webp b/public/assets/webp/thumbnails/1080x1440/stairs-cloud-c.webp deleted file mode 100644 index 2473fae..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/stairs-cloud-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/stairs-curve-bw.webp b/public/assets/webp/thumbnails/1080x1440/stairs-curve-bw.webp deleted file mode 100644 index 4b8344b..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/stairs-curve-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/stairs-curve-c.webp b/public/assets/webp/thumbnails/1080x1440/stairs-curve-c.webp deleted file mode 100644 index 9063ad8..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/stairs-curve-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/stairs-twist-bw.webp b/public/assets/webp/thumbnails/1080x1440/stairs-twist-bw.webp deleted file mode 100644 index c6a6d55..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/stairs-twist-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/stairs-twist-c.webp b/public/assets/webp/thumbnails/1080x1440/stairs-twist-c.webp deleted file mode 100644 index cc9ae03..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/stairs-twist-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/stone-pedestal-bw.webp b/public/assets/webp/thumbnails/1080x1440/stone-pedestal-bw.webp deleted file mode 100644 index 5ef2747..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/stone-pedestal-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/stone-pedestal-c.webp b/public/assets/webp/thumbnails/1080x1440/stone-pedestal-c.webp deleted file mode 100644 index 41dda64..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/stone-pedestal-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/tower-floating-bw.webp b/public/assets/webp/thumbnails/1080x1440/tower-floating-bw.webp deleted file mode 100644 index 84f07bf..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/tower-floating-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/tower-floating-c.webp b/public/assets/webp/thumbnails/1080x1440/tower-floating-c.webp deleted file mode 100644 index 402179b..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/tower-floating-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/tower-platform-bw.webp b/public/assets/webp/thumbnails/1080x1440/tower-platform-bw.webp deleted file mode 100644 index def570a..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/tower-platform-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/tower-platform-c.webp b/public/assets/webp/thumbnails/1080x1440/tower-platform-c.webp deleted file mode 100644 index 9f58ecf..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/tower-platform-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/tower-tree-bw.webp b/public/assets/webp/thumbnails/1080x1440/tower-tree-bw.webp deleted file mode 100644 index 9d3e291..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/tower-tree-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/tower-tree-c.webp b/public/assets/webp/thumbnails/1080x1440/tower-tree-c.webp deleted file mode 100644 index d244281..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/tower-tree-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/tree-island-bw.webp b/public/assets/webp/thumbnails/1080x1440/tree-island-bw.webp deleted file mode 100644 index b53fc78..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/tree-island-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1080x1440/tree-island-c.webp b/public/assets/webp/thumbnails/1080x1440/tree-island-c.webp deleted file mode 100644 index f46a681..0000000 Binary files a/public/assets/webp/thumbnails/1080x1440/tree-island-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/castle-flag-bw.webp b/public/assets/webp/thumbnails/1440x1440/castle-flag-bw.webp deleted file mode 100644 index 6183d95..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/castle-flag-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/castle-flag-c.webp b/public/assets/webp/thumbnails/1440x1440/castle-flag-c.webp deleted file mode 100644 index a329fdd..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/castle-flag-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/castle-staff-bw.webp b/public/assets/webp/thumbnails/1440x1440/castle-staff-bw.webp deleted file mode 100644 index 0e72ca6..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/castle-staff-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/castle-staff-c.webp b/public/assets/webp/thumbnails/1440x1440/castle-staff-c.webp deleted file mode 100644 index 8f613c0..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/castle-staff-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/desk-work-bw.webp b/public/assets/webp/thumbnails/1440x1440/desk-work-bw.webp deleted file mode 100644 index 97a9fe5..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/desk-work-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/desk-work-c.webp b/public/assets/webp/thumbnails/1440x1440/desk-work-c.webp deleted file mode 100644 index c615f8c..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/desk-work-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/forge-anvil-bw.webp b/public/assets/webp/thumbnails/1440x1440/forge-anvil-bw.webp deleted file mode 100644 index 0a7f239..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/forge-anvil-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/forge-anvil-c.webp b/public/assets/webp/thumbnails/1440x1440/forge-anvil-c.webp deleted file mode 100644 index 29c0552..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/forge-anvil-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/forge-building-bw.webp b/public/assets/webp/thumbnails/1440x1440/forge-building-bw.webp deleted file mode 100644 index 24aad14..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/forge-building-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/forge-building-c.webp b/public/assets/webp/thumbnails/1440x1440/forge-building-c.webp deleted file mode 100644 index dd4d71d..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/forge-building-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/forge-duo-bw.webp b/public/assets/webp/thumbnails/1440x1440/forge-duo-bw.webp deleted file mode 100644 index 961c90c..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/forge-duo-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/forge-duo-c.webp b/public/assets/webp/thumbnails/1440x1440/forge-duo-c.webp deleted file mode 100644 index 7b29c25..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/forge-duo-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/forge-fire-bw.webp b/public/assets/webp/thumbnails/1440x1440/forge-fire-bw.webp deleted file mode 100644 index 7a650f5..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/forge-fire-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/forge-fire-c.webp b/public/assets/webp/thumbnails/1440x1440/forge-fire-c.webp deleted file mode 100644 index 7fc8c07..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/forge-fire-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/forge-work-bw.webp b/public/assets/webp/thumbnails/1440x1440/forge-work-bw.webp deleted file mode 100644 index ddacb09..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/forge-work-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/forge-work-c.webp b/public/assets/webp/thumbnails/1440x1440/forge-work-c.webp deleted file mode 100644 index e5167f4..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/forge-work-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/portal-arch-bw.webp b/public/assets/webp/thumbnails/1440x1440/portal-arch-bw.webp deleted file mode 100644 index 8291cd2..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/portal-arch-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/portal-arch-c.webp b/public/assets/webp/thumbnails/1440x1440/portal-arch-c.webp deleted file mode 100644 index 5b1485c..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/portal-arch-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/ravens-flight-bw.webp b/public/assets/webp/thumbnails/1440x1440/ravens-flight-bw.webp deleted file mode 100644 index 593a7f9..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/ravens-flight-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/ravens-flight-c.webp b/public/assets/webp/thumbnails/1440x1440/ravens-flight-c.webp deleted file mode 100644 index 726759c..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/ravens-flight-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/stairs-spiral-bw.webp b/public/assets/webp/thumbnails/1440x1440/stairs-spiral-bw.webp deleted file mode 100644 index 1b1625f..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/stairs-spiral-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/stairs-spiral-c.webp b/public/assets/webp/thumbnails/1440x1440/stairs-spiral-c.webp deleted file mode 100644 index f4d9aba..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/stairs-spiral-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/stone-monuments-bw.webp b/public/assets/webp/thumbnails/1440x1440/stone-monuments-bw.webp deleted file mode 100644 index f0dbe03..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/stone-monuments-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/stone-monuments-c.webp b/public/assets/webp/thumbnails/1440x1440/stone-monuments-c.webp deleted file mode 100644 index c1605ec..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/stone-monuments-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/table-castle-bw.webp b/public/assets/webp/thumbnails/1440x1440/table-castle-bw.webp deleted file mode 100644 index c8b5dab..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/table-castle-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/table-castle-c.webp b/public/assets/webp/thumbnails/1440x1440/table-castle-c.webp deleted file mode 100644 index 0266640..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/table-castle-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/tree-mech-bw.webp b/public/assets/webp/thumbnails/1440x1440/tree-mech-bw.webp deleted file mode 100644 index 2f3ac67..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/tree-mech-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/tree-mech-c.webp b/public/assets/webp/thumbnails/1440x1440/tree-mech-c.webp deleted file mode 100644 index cc5ffa9..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/tree-mech-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-arch-bw.webp b/public/assets/webp/thumbnails/1440x1440/trio-arch-bw.webp deleted file mode 100644 index 034f8ac..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-arch-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-arch-c.webp b/public/assets/webp/thumbnails/1440x1440/trio-arch-c.webp deleted file mode 100644 index d3f7877..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-arch-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-backs-bw.webp b/public/assets/webp/thumbnails/1440x1440/trio-backs-bw.webp deleted file mode 100644 index 443fd0b..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-backs-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-backs-c.webp b/public/assets/webp/thumbnails/1440x1440/trio-backs-c.webp deleted file mode 100644 index 8b40a38..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-backs-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-beast-bw.webp b/public/assets/webp/thumbnails/1440x1440/trio-beast-bw.webp deleted file mode 100644 index 954866b..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-beast-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-beast-c.webp b/public/assets/webp/thumbnails/1440x1440/trio-beast-c.webp deleted file mode 100644 index c417c58..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-beast-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-mountain-bw.webp b/public/assets/webp/thumbnails/1440x1440/trio-mountain-bw.webp deleted file mode 100644 index 9a5571b..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-mountain-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-mountain-c.webp b/public/assets/webp/thumbnails/1440x1440/trio-mountain-c.webp deleted file mode 100644 index eab4623..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-mountain-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-orb-bw.webp b/public/assets/webp/thumbnails/1440x1440/trio-orb-bw.webp deleted file mode 100644 index 56011c5..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-orb-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-orb-c.webp b/public/assets/webp/thumbnails/1440x1440/trio-orb-c.webp deleted file mode 100644 index 86c8072..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-orb-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-portal-bw.webp b/public/assets/webp/thumbnails/1440x1440/trio-portal-bw.webp deleted file mode 100644 index 3a06cfb..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-portal-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-portal-c.webp b/public/assets/webp/thumbnails/1440x1440/trio-portal-c.webp deleted file mode 100644 index d27f6a9..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-portal-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-portraits-bw.webp b/public/assets/webp/thumbnails/1440x1440/trio-portraits-bw.webp deleted file mode 100644 index 9d1c310..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-portraits-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-portraits-c.webp b/public/assets/webp/thumbnails/1440x1440/trio-portraits-c.webp deleted file mode 100644 index 060935e..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-portraits-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-profiles-bw.webp b/public/assets/webp/thumbnails/1440x1440/trio-profiles-bw.webp deleted file mode 100644 index d719e1f..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-profiles-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-profiles-c.webp b/public/assets/webp/thumbnails/1440x1440/trio-profiles-c.webp deleted file mode 100644 index 50b4ae6..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-profiles-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-warriors-bw.webp b/public/assets/webp/thumbnails/1440x1440/trio-warriors-bw.webp deleted file mode 100644 index bf32bf0..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-warriors-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-warriors-c.webp b/public/assets/webp/thumbnails/1440x1440/trio-warriors-c.webp deleted file mode 100644 index b9c94bf..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-warriors-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-weapons-bw.webp b/public/assets/webp/thumbnails/1440x1440/trio-weapons-bw.webp deleted file mode 100644 index bf0480f..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-weapons-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-weapons-c.webp b/public/assets/webp/thumbnails/1440x1440/trio-weapons-c.webp deleted file mode 100644 index be531cc..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-weapons-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-wings-bw.webp b/public/assets/webp/thumbnails/1440x1440/trio-wings-bw.webp deleted file mode 100644 index 7a4b855..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-wings-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/trio-wings-c.webp b/public/assets/webp/thumbnails/1440x1440/trio-wings-c.webp deleted file mode 100644 index 0ebc597..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/trio-wings-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warrior-solo-bw.webp b/public/assets/webp/thumbnails/1440x1440/warrior-solo-bw.webp deleted file mode 100644 index dba7960..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warrior-solo-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warrior-solo-c.webp b/public/assets/webp/thumbnails/1440x1440/warrior-solo-c.webp deleted file mode 100644 index 3323a4d..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warrior-solo-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-armed-bw.webp b/public/assets/webp/thumbnails/1440x1440/warriors-armed-bw.webp deleted file mode 100644 index d90a9fe..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-armed-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-armed-c.webp b/public/assets/webp/thumbnails/1440x1440/warriors-armed-c.webp deleted file mode 100644 index 1bbd26a..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-armed-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-belts-bw.webp b/public/assets/webp/thumbnails/1440x1440/warriors-belts-bw.webp deleted file mode 100644 index 84b4b38..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-belts-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-belts-c.webp b/public/assets/webp/thumbnails/1440x1440/warriors-belts-c.webp deleted file mode 100644 index 0951294..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-belts-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-casual-bw.webp b/public/assets/webp/thumbnails/1440x1440/warriors-casual-bw.webp deleted file mode 100644 index 66f54f1..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-casual-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-casual-c.webp b/public/assets/webp/thumbnails/1440x1440/warriors-casual-c.webp deleted file mode 100644 index ed5132b..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-casual-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-confident-bw.webp b/public/assets/webp/thumbnails/1440x1440/warriors-confident-bw.webp deleted file mode 100644 index c973c95..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-confident-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-confident-c.webp b/public/assets/webp/thumbnails/1440x1440/warriors-confident-c.webp deleted file mode 100644 index 3f15a00..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-confident-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-forward-bw.webp b/public/assets/webp/thumbnails/1440x1440/warriors-forward-bw.webp deleted file mode 100644 index adbead7..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-forward-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-forward-c.webp b/public/assets/webp/thumbnails/1440x1440/warriors-forward-c.webp deleted file mode 100644 index c11405b..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-forward-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-magic-bw.webp b/public/assets/webp/thumbnails/1440x1440/warriors-magic-bw.webp deleted file mode 100644 index c1d9776..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-magic-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-magic-c.webp b/public/assets/webp/thumbnails/1440x1440/warriors-magic-c.webp deleted file mode 100644 index 3a01068..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-magic-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-masked-bw.webp b/public/assets/webp/thumbnails/1440x1440/warriors-masked-bw.webp deleted file mode 100644 index fc0cd2c..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-masked-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-masked-c.webp b/public/assets/webp/thumbnails/1440x1440/warriors-masked-c.webp deleted file mode 100644 index 0902640..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-masked-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-moloch-bw.webp b/public/assets/webp/thumbnails/1440x1440/warriors-moloch-bw.webp deleted file mode 100644 index e1ed53d..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-moloch-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-moloch-c.webp b/public/assets/webp/thumbnails/1440x1440/warriors-moloch-c.webp deleted file mode 100644 index ee0917c..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-moloch-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-orbs-bw.webp b/public/assets/webp/thumbnails/1440x1440/warriors-orbs-bw.webp deleted file mode 100644 index ca6642a..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-orbs-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-orbs-c.webp b/public/assets/webp/thumbnails/1440x1440/warriors-orbs-c.webp deleted file mode 100644 index 3cc499b..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-orbs-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-ready-bw.webp b/public/assets/webp/thumbnails/1440x1440/warriors-ready-bw.webp deleted file mode 100644 index ad0756f..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-ready-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-ready-c.webp b/public/assets/webp/thumbnails/1440x1440/warriors-ready-c.webp deleted file mode 100644 index 36cb2ff..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-ready-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-standing-bw.webp b/public/assets/webp/thumbnails/1440x1440/warriors-standing-bw.webp deleted file mode 100644 index 05d1bd0..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-standing-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-standing-c.webp b/public/assets/webp/thumbnails/1440x1440/warriors-standing-c.webp deleted file mode 100644 index f9acfbe..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-standing-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-triangle-bw.webp b/public/assets/webp/thumbnails/1440x1440/warriors-triangle-bw.webp deleted file mode 100644 index 821460d..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-triangle-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-triangle-c.webp b/public/assets/webp/thumbnails/1440x1440/warriors-triangle-c.webp deleted file mode 100644 index 229c588..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-triangle-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-white-bw.webp b/public/assets/webp/thumbnails/1440x1440/warriors-white-bw.webp deleted file mode 100644 index d307ec2..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-white-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x1440/warriors-white-c.webp b/public/assets/webp/thumbnails/1440x1440/warriors-white-c.webp deleted file mode 100644 index a3c9f99..0000000 Binary files a/public/assets/webp/thumbnails/1440x1440/warriors-white-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x550/ship-front-bw.webp b/public/assets/webp/thumbnails/1440x550/ship-front-bw.webp deleted file mode 100644 index 518b402..0000000 Binary files a/public/assets/webp/thumbnails/1440x550/ship-front-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x550/ship-front-c.webp b/public/assets/webp/thumbnails/1440x550/ship-front-c.webp deleted file mode 100644 index b85ce94..0000000 Binary files a/public/assets/webp/thumbnails/1440x550/ship-front-c.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x550/ship-mech-bw.webp b/public/assets/webp/thumbnails/1440x550/ship-mech-bw.webp deleted file mode 100644 index 843e6a9..0000000 Binary files a/public/assets/webp/thumbnails/1440x550/ship-mech-bw.webp and /dev/null differ diff --git a/public/assets/webp/thumbnails/1440x550/ship-mech-c.webp b/public/assets/webp/thumbnails/1440x550/ship-mech-c.webp deleted file mode 100644 index 8b12fbc..0000000 Binary files a/public/assets/webp/thumbnails/1440x550/ship-mech-c.webp and /dev/null differ diff --git a/public/brand-assets.json b/public/brand-assets.json new file mode 100644 index 0000000..2f9c44d --- /dev/null +++ b/public/brand-assets.json @@ -0,0 +1,244 @@ +{ + "$schema": "https://raidguild.org/schemas/brand-manifest-v1.json", + "name": "RaidGuild Brand Assets Manifest", + "version": "1.0.0", + "brandRefresh": "2024 Q4", + "description": "Machine-readable inventory of every RaidGuild brand asset plus the core brand guidelines. Intended to back an agent-facing endpoint (e.g. /api/guidelines). Human-readable companion: BRAND-ASSETS.md.", + "sourceOfTruth": "https://github.com/raid-guild/brand", + "companionDocs": { + "assetManifestMarkdown": "https://github.com/raid-guild/brand/blob/main/BRAND-ASSETS.md", + "developerHandbook": "AGENTS.md", + "uiComponents": "docs/ui-components.md", + "tokensSource": "https://github.com/raid-guild/brand/blob/main/src/app/globals.css" + }, + "baseUrls": { + "live": "https://www.brand.raidguild.org", + "githubRaw": "https://raw.githubusercontent.com/raid-guild/brand/main/public", + "githubTree": "https://github.com/raid-guild/brand/tree/main/public" + }, + "downloadRule": "Any repo path under public/... is served at {live}/... (the public/ prefix is dropped). Example: public/assets/logos/full-m500.svg -> https://www.brand.raidguild.org/assets/logos/full-m500.svg", + "namingConvention": { + "colorCodes": { "m": "Moloch (warm red)", "s": "Scroll (warm yellow)" }, + "example": "m500 = Moloch 500; a two-part code foreground-background like m800-s100 = Moloch 800 mark on a Scroll 100 background." + }, + "guidelines": { + "colors": { + "note": "Warm, high-contrast palette (red / off-black / off-white). Defined as CSS custom properties in src/app/globals.css. Prefer Tailwind utilities e.g. bg-moloch-500, text-scroll-100.", + "primary": [ + { "name": "Moloch 800", "hex": "#29100A", "role": "Primary dark / foreground text" }, + { "name": "Moloch 500", "hex": "#BD482D", "role": "Primary brand red (CTAs, accents)" }, + { "name": "Scroll 100", "hex": "#F9F7E7", "role": "Primary light / background" }, + { "name": "Scroll 700", "hex": "#534A13", "role": "Deep warm yellow accent" } + ], + "scales": { + "moloch": { + "100": "#FAEEEB", + "200": "#EFC5BB", + "300": "#E39B8B", + "400": "#D25C41", + "500": "#BD482D", + "600": "#8B3521", + "700": "#5C2316", + "800": "#29100A" + }, + "scroll": { + "100": "#F9F7E7", + "200": "#ECE5AC", + "300": "#DCCD6A", + "400": "#D2C141", + "500": "#B5A22C", + "600": "#837820", + "700": "#534A13", + "800": "#211E07" + }, + "neutral": { + "100": "#F1EFEE", + "200": "#D5CECD", + "300": "#B9AEAC", + "400": "#9E8E8A", + "500": "#806F6B", + "600": "#645754", + "700": "#433937", + "800": "#221D1C", + "white": "#FAFAFA", + "black": "#0D0D0D" + } + }, + "semanticLight": { + "background": "Scroll 100 (#F9F7E7)", + "foreground": "Moloch 800 (#29100A)", + "primary": "Moloch 500 (#BD482D) on Scroll 100", + "secondaryMuted": "Neutral 100 (#F1EFEE) with Neutral 600 (#645754) text", + "accent": "Moloch 500 (#BD482D)", + "borderInput": "Neutral 200 (#D5CECD)", + "focusRing": "Moloch 500 (#BD482D)" + }, + "semanticDark": "Background flips to Moloch 800 (#29100A) with Scroll 100 (#F9F7E7) text." + }, + "typography": { + "families": [ + { "name": "Mazius Display", "cssVar": "--font-display", "role": "Display / headlines / brand graphics", "notes": "High-contrast calligraphic serif; bold preferred for headlines; two italics combine for expressiveness." }, + { "name": "EB Garamond", "cssVar": "--font-body", "role": "Body & supporting copy, UI components", "notes": "Chosen for high readability." }, + { "name": "Ubuntu Mono", "cssVar": "--font-mono", "role": "Code / technical content", "notes": "Loaded from Google Fonts; no local file needed." } + ], + "scale": [ + { "token": "Display Large", "px": 80, "lineHeight": "110%", "letterSpacing": "-2%", "class": "type-display-lg" }, + { "token": "Display Medium", "px": 60, "lineHeight": "120%", "letterSpacing": "-1%", "class": "type-display-md" }, + { "token": "Display Small", "px": 48, "lineHeight": "120%", "letterSpacing": "0%", "class": "type-display-sm" }, + { "token": "Heading Large", "px": 36, "lineHeight": "120%", "letterSpacing": "0%", "class": "type-heading-lg" }, + { "token": "Heading Medium", "px": 28, "lineHeight": "130%", "letterSpacing": "0%", "class": "type-heading-md" }, + { "token": "Body Large", "px": 20, "lineHeight": "140%", "letterSpacing": "0%", "class": "type-body-lg" }, + { "token": "Body Base", "px": 16, "lineHeight": "160%", "letterSpacing": "0%", "class": "text-body-base" }, + { "token": "Body Small", "px": 12, "lineHeight": "160%", "letterSpacing": "0%", "class": "type-body-sm" } + ], + "additionalClasses": ["type-heading-sm", "type-body-md", "type-label", "type-label-md", "type-label-sm", "type-code-lg", "type-code-md", "type-code-sm"] + }, + "layout": { + "containerCustom": "max-width 1280px, responsive padding", + "gridCustom": "4 cols (mobile) -> 8 (tablet) -> 12 (desktop)", + "radiusBase": "0.625rem (with radius-sm/md/lg/xl derived)" + } + }, + "assets": { + "logos": { + "format": "svg", + "folder": "https://www.brand.raidguild.org/assets/logos/", + "rules": [ + "Logo = crossed-sword logomark + 'Raid Guild' wordmark.", + "The wordmark is NOT used on its own.", + "Use the logomark alone only when space is limited or the full logotype is inappropriate.", + "'Floating' = single-color transparent mark. 'With background' = baked-in colored background named foreground-background." + ], + "quickPick": { + "onLight": ["full-m500.svg", "full-m800.svg"], + "onDark": ["full-s100.svg"] + }, + "items": [ + { "file": "full-m800.svg", "type": "logotype", "description": "Full logo, Moloch 800 (floating)", "url": "https://www.brand.raidguild.org/assets/logos/full-m800.svg" }, + { "file": "full-m500.svg", "type": "logotype", "description": "Full logo, Moloch 500 (floating)", "url": "https://www.brand.raidguild.org/assets/logos/full-m500.svg" }, + { "file": "full-s100.svg", "type": "logotype", "description": "Full logo, Scroll 100 (floating, for dark backgrounds)", "url": "https://www.brand.raidguild.org/assets/logos/full-s100.svg" }, + { "file": "full-m500-m800.svg", "type": "logotype", "description": "Moloch 500 mark on Moloch 800 background", "url": "https://www.brand.raidguild.org/assets/logos/full-m500-m800.svg" }, + { "file": "full-m800-m500.svg", "type": "logotype", "description": "Moloch 800 mark on Moloch 500 background", "url": "https://www.brand.raidguild.org/assets/logos/full-m800-m500.svg" }, + { "file": "full-m800-s100.svg", "type": "logotype", "description": "Moloch 800 mark on Scroll 100 background", "url": "https://www.brand.raidguild.org/assets/logos/full-m800-s100.svg" }, + { "file": "full-s100-s700.svg", "type": "logotype", "description": "Scroll 100 mark on Scroll 700 background", "url": "https://www.brand.raidguild.org/assets/logos/full-s100-s700.svg" }, + { "file": "symbol-m800.svg", "type": "logomark", "description": "Symbol, Moloch 800 (floating)", "url": "https://www.brand.raidguild.org/assets/logos/symbol-m800.svg" }, + { "file": "symbol-m500.svg", "type": "logomark", "description": "Symbol, Moloch 500 (floating)", "url": "https://www.brand.raidguild.org/assets/logos/symbol-m500.svg" }, + { "file": "symbol-s700.svg", "type": "logomark", "description": "Symbol, Scroll 700 (floating)", "url": "https://www.brand.raidguild.org/assets/logos/symbol-s700.svg" }, + { "file": "symbol-m500-m800.svg", "type": "logomark", "description": "Moloch 500 symbol on Moloch 800 background", "url": "https://www.brand.raidguild.org/assets/logos/symbol-m500-m800.svg" }, + { "file": "symbol-m800-m500.svg", "type": "logomark", "description": "Moloch 800 symbol on Moloch 500 background", "url": "https://www.brand.raidguild.org/assets/logos/symbol-m800-m500.svg" }, + { "file": "symbol-m800-s100.svg", "type": "logomark", "description": "Moloch 800 symbol on Scroll 100 background", "url": "https://www.brand.raidguild.org/assets/logos/symbol-m800-s100.svg" }, + { "file": "symbol-s100-s700.svg", "type": "logomark", "description": "Scroll 100 symbol on Scroll 700 background", "url": "https://www.brand.raidguild.org/assets/logos/symbol-s100-s700.svg" } + ] + }, + "icons": { + "format": "svg", + "folder": "https://www.brand.raidguild.org/assets/icon/", + "usage": "Colorable via CSS fill/stroke. Recommended colors: Moloch 800 #29100A, Moloch 500 #BD482D, Scroll 100 #F9F7E7, Scroll 700 #534A13. Prefer these SVG icons over emoji in docs/MDX.", + "sets": { + "8bit": { + "folder": "https://www.brand.raidguild.org/assets/icon/8bit/", + "urlPattern": "https://www.brand.raidguild.org/assets/icon/8bit/{name}.svg", + "description": "D&D-inspired pixelated hero characters, one per guild member role.", + "items": [ + { "name": "alchemist", "role": "DAO Consultant" }, + { "name": "archer", "role": "Visual Design" }, + { "name": "cleric", "role": "Account Manager" }, + { "name": "druid", "role": "Data Science" }, + { "name": "dwarf", "role": "Treasury (AngryDwarf)" }, + { "name": "healer", "role": "Internal Ops" }, + { "name": "hunter", "role": "BizDev" }, + { "name": "monk", "role": "PM" }, + { "name": "necromancer", "role": "DevOps" }, + { "name": "paladin", "role": "Backend Dev" }, + { "name": "ranger", "role": "UX Design" }, + { "name": "rogue", "role": "Legal" }, + { "name": "scribe", "role": "Content Creator" }, + { "name": "sorcerer", "role": "(role character)" }, + { "name": "tavernkeeper", "role": "Community" }, + { "name": "warrior", "role": "Frontend Dev" }, + { "name": "wizard", "role": "Smart Contracts" } + ] + }, + "dd": { + "folder": "https://www.brand.raidguild.org/assets/icon/dd/", + "urlPattern": "https://www.brand.raidguild.org/assets/icon/dd/{name}.svg", + "description": "Original RaidGuild service & community line icons defining core offerings and values.", + "items": ["community", "consultation", "culture", "dao", "education", "experiment", "frontend", "fullstack", "learning", "manifesto", "marketing", "robot", "spear", "sprint", "swords"] + }, + "magic": { + "folder": "https://www.brand.raidguild.org/assets/icon/magic/", + "urlPattern": "https://www.brand.raidguild.org/assets/icon/magic/{name}.svg", + "description": "Mystical, alchemical glyphs evoking the spiritual side of the craft.", + "items": ["candle", "cauldron", "chalice", "crystal", "feather", "flask", "hourglass", "lantern", "moon", "pumpkin", "sparkle", "star", "stars"] + } + } + }, + "illustrations": { + "format": "webp", + "folder": "https://www.brand.raidguild.org/assets/webp/", + "totalFiles": 848, + "description": "Technology-forward line art blending cyberpunk aesthetics with D&D heroism.", + "usage": "Pair with brand colors. Maintain original aspect ratios; do not stretch or distort.", + "midjourneyPrompts": "https://hackmd.io/@Suede/Skbpddppll", + "urlTemplates": { + "full": "https://www.brand.raidguild.org/assets/webp/{palette}/{size}/{scene}-{tone}.webp", + "thumbnail": "https://www.brand.raidguild.org/assets/webp/{palette}/thumbnails/{size}/{scene}-{tone}.webp" + }, + "dimensions": { + "palette": ["moloch500", "moloch800", "scroll100", "scroll700"], + "tone": { "c": "full color", "bw": "black & white" }, + "note": "Every scene exists in all 4 palettes, both tones, full + thumbnail (16 files per scene). IMPORTANT: a scene only exists under its own aspect-ratio folder (see scenesBySize) — do not request a scene from a size it does not belong to." + }, + "scenesBySize": { + "1440x1440": { + "aspect": "square", + "count": 39, + "scenes": ["castle-flag", "castle-staff", "desk-work", "forge-anvil", "forge-building", "forge-duo", "forge-fire", "forge-work", "portal-arch", "ravens-flight", "stairs-spiral", "stone-monuments", "table-castle", "tree-mech", "trio-arch", "trio-backs", "trio-beast", "trio-mountain", "trio-orb", "trio-portal", "trio-portraits", "trio-profiles", "trio-warriors", "trio-weapons", "trio-wings", "warrior-solo", "warriors-armed", "warriors-belts", "warriors-casual", "warriors-confident", "warriors-forward", "warriors-magic", "warriors-masked", "warriors-moloch", "warriors-orbs", "warriors-ready", "warriors-standing", "warriors-triangle", "warriors-white"] + }, + "1080x1440": { + "aspect": "portrait", + "count": 12, + "scenes": ["arch-gate", "book-orb", "compass-circular", "raven-solo", "stairs-cloud", "stairs-curve", "stairs-twist", "stone-pedestal", "tower-floating", "tower-platform", "tower-tree", "tree-island"] + }, + "1440x550": { + "aspect": "landscape", + "count": 2, + "scenes": ["ship-front", "ship-mech"] + } + }, + "examples": [ + "https://www.brand.raidguild.org/assets/webp/moloch500/1440x1440/forge-fire-c.webp", + "https://www.brand.raidguild.org/assets/webp/scroll100/1080x1440/tower-tree-bw.webp", + "https://www.brand.raidguild.org/assets/webp/moloch800/thumbnails/1440x550/ship-mech-c.webp" + ] + }, + "fonts": { + "folder": "https://www.brand.raidguild.org/fonts/", + "items": [ + { "file": "MAZIUSREVIEW20.09-Regular.otf", "family": "Mazius Display", "weight": "Regular", "url": "https://www.brand.raidguild.org/fonts/MAZIUSREVIEW20.09-Regular.otf" }, + { "file": "MAZIUSREVIEW20.09-Regular.woff", "family": "Mazius Display", "weight": "Regular (woff)", "url": "https://www.brand.raidguild.org/fonts/MAZIUSREVIEW20.09-Regular.woff" }, + { "file": "MaziusDisplay-Bold.otf", "family": "Mazius Display", "weight": "Bold", "url": "https://www.brand.raidguild.org/fonts/MaziusDisplay-Bold.otf" }, + { "file": "MaziusDisplay-Extraitalic.otf", "family": "Mazius Display", "weight": "Extra Italic", "url": "https://www.brand.raidguild.org/fonts/MaziusDisplay-Extraitalic.otf" }, + { "file": "MaziusDisplay-ExtraItalicBold.otf", "family": "Mazius Display", "weight": "Extra Italic Bold", "url": "https://www.brand.raidguild.org/fonts/MaziusDisplay-ExtraItalicBold.otf" }, + { "file": "EBGaramond-VariableFont_wght.ttf", "family": "EB Garamond", "weight": "Variable", "url": "https://www.brand.raidguild.org/fonts/EBGaramond-VariableFont_wght.ttf" }, + { "file": "EBGaramond-Italic-VariableFont_wght.ttf", "family": "EB Garamond", "weight": "Italic Variable", "url": "https://www.brand.raidguild.org/fonts/EBGaramond-Italic-VariableFont_wght.ttf" } + ] + }, + "social": { + "format": "png", + "dimensions": "400x400", + "folder": "https://www.brand.raidguild.org/assets/social/", + "items": [ + { "file": "400x400_dark.png", "description": "Dark background avatar", "url": "https://www.brand.raidguild.org/assets/social/400x400_dark.png" }, + { "file": "400x400_light.png", "description": "Light background avatar", "url": "https://www.brand.raidguild.org/assets/social/400x400_light.png" }, + { "file": "400x400_red.png", "description": "Red (Moloch) avatar", "url": "https://www.brand.raidguild.org/assets/social/400x400_red.png" } + ] + }, + "guidelinesPdf": { + "format": "pdf", + "description": "Complete human-facing brand guidelines (2024 Q4 Refresh), ~5.7 MB.", + "url": "https://www.brand.raidguild.org/assets/RaidGuild_brand_guidelines.pdf", + "rawUrl": "https://raw.githubusercontent.com/raid-guild/brand/main/public/assets/RaidGuild_brand_guidelines.pdf" + } + } +} diff --git a/src/app/ai/page.tsx b/src/app/ai/page.tsx new file mode 100644 index 0000000..91a4ce6 --- /dev/null +++ b/src/app/ai/page.tsx @@ -0,0 +1,242 @@ +import type { Metadata } from "next"; +import { Space_Grotesk, Inter, JetBrains_Mono } from "next/font/google"; +import Image from "next/image"; +import Link from "next/link"; + +const spaceGrotesk = Space_Grotesk({ subsets: ["latin"], weight: ["500", "700"] }); +const inter = Inter({ subsets: ["latin"], weight: ["400", "500"] }); +const jetbrainsMono = JetBrains_Mono({ subsets: ["latin"], weight: ["400", "500"] }); + +export const metadata: Metadata = { + title: "RaidGuild AI — Sub-brand Guidelines", + description: + "Design system for raidguild.ai, RaidGuild's AI consulting agency. Built to contrast with the main RaidGuild brand.", +}; + +const COLORS = [ + { name: "Background", hex: "#060609", hsl: "240 20% 3%", textOn: "#E8E6E3" }, + { name: "Card", hex: "#0D0D12", hsl: "240 15% 6%", textOn: "#E8E6E3" }, + { name: "Border", hex: "#202027", hsl: "240 10% 14%", textOn: "#E8E6E3" }, + { name: "Foreground", hex: "#E8E6E3", hsl: "30 10% 90%", textOn: "#060609" }, + { name: "Primary (teal)", hex: "#2FD09A", hsl: "160 63% 50%", textOn: "#060609" }, + { name: "Accent (pink)", hex: "#FF3863", hsl: "347 100% 61%", textOn: "#060609" }, + { name: "Muted foreground", hex: "#737B8C", hsl: "220 10% 50%", textOn: "#060609" }, +]; + +const LOGO_FILES = [ + { file: "ai-mark-teal.svg", label: "Teal — primary, for dark backgrounds", bg: "#0D0D12" }, + { file: "ai-mark-fg.svg", label: "Off-white — for dark backgrounds", bg: "#0D0D12" }, + { file: "ai-mark-dark.svg", label: "Near-black — for rare light contexts", bg: "#E8E6E3" }, +]; + +export default function AiSubBrandPage() { + return ( +
+
+ {/* Hero */} +
+

+ + ← Main RaidGuild brand system + +

+

+ RaidGuild AI — Sub-brand Guidelines +

+

+ The design system for raidguild.ai, RaidGuild's AI consulting + agency. It contrasts with the main RaidGuild brand on purpose. +

+
+ + {/* Relationship to RaidGuild */} +
+

+ Relationship to RaidGuild +

+

+ raidguild.ai was built by Dekan and Sam Kuhlman as a deliberate + visual break from the main RaidGuild brand — dark, technical, and + fantasy-free, where the main brand is warm, illustrated, and + D&D-flavored. +

+

+ Rule of thumb: raidguild.ai and its sub-pages use this system. + Everything else — the main site, the cohort, the portal — uses the + system at{" "} + + brand.raidguild.org + + . The two are not meant to blend. +

+
+ + {/* Logo */} +
+

+ Logo +

+

+ Derived from the original RaidGuild crossed-swords mark, recolored + for this sub-brand. Geometry unchanged. A lockup wordmark has not + been cut yet — the mark stands alone until then. +

+
+ {LOGO_FILES.map((logo) => ( +
+
+ {logo.label} +
+

{logo.label}

+ + Download SVG + +
+ ))} +
+
+ RaidGuild AI mark + + RAIDGUILD AI + +
+
+ + {/* Colors */} +
+

+ Colors +

+

+ Extracted from the live raidguild.ai stylesheet. The accent pink + (#FF3863) lands almost exactly on the pre-2024-refresh RaidGuild + red (#FF3864) — unintentional, and a nice coincidence. +

+
+ {COLORS.map((color) => ( +
+
+ {color.name} +
+
+

+ {color.hex} +

+

+ hsl({color.hsl}) +

+
+
+ ))} +
+
+ + {/* Typography */} +
+

+ Typography +

+

+ Three families: Space Grotesk for display, Inter for body, + JetBrains Mono for code. No Mazius Display, no EB Garamond, no + Ubuntu Mono — that's the main brand. +

+
+
+

Space Grotesk — display

+

+ Forward Deployed AI +

+
+
+

Inter — body

+

+ Intelligence embedded where the work gets done. RaidGuild AI + places builders and operators inside your stack to design, + ship, and maintain practical AI workflows. +

+
+
+

JetBrains Mono — code

+

+ const agent = deploy(stack); +

+
+
+
+ + {/* Voice */} +
+

+ Voice +

+

+ Technical, direct, minimal. No fantasy register — that's the + whole point of the contrast. +

+
    +
  • Say what the system does, not what it conquers.
  • +
  • Name the technology. Skip the metaphor.
  • +
  • Short sentences. No mercenaries, no quests, no guilds.
  • +
+
+ + {/* Resources */} +
+

+ Resources +

+
+ +

raidguild.ai

+

The live site

+
+ +

ai-solutions-website

+

Source repo

+
+ +

Main brand system

+

brand.raidguild.org

+ +
+
+
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index f8a5148..7858edf 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,108 +5,108 @@ import Image from "next/image"; import Link from "next/link"; const HERO_IMAGES = [ - "/assets/webp/1080x1440/tower-platform-c.webp", - "/assets/webp/1080x1440/stairs-twist-c.webp", - "/assets/webp/1080x1440/stairs-curve-c.webp", - "/assets/webp/1080x1440/stairs-cloud-c.webp", - "/assets/webp/1080x1440/book-orb-c.webp", - "/assets/webp/1080x1440/tree-island-c.webp", - "/assets/webp/1080x1440/arch-gate-c.webp", - "/assets/webp/1080x1440/tower-floating-c.webp", - "/assets/webp/1080x1440/tower-tree-c.webp", - "/assets/webp/1080x1440/compass-circular-c.webp", - "/assets/webp/1080x1440/stone-pedestal-c.webp", - "/assets/webp/1080x1440/raven-solo-c.webp", - "/assets/webp/1440x1440/castle-staff-c.webp", - "/assets/webp/1440x1440/castle-flag-c.webp", - "/assets/webp/1440x1440/warriors-moloch-c.webp", - "/assets/webp/1440x1440/stairs-spiral-c.webp", - "/assets/webp/1440x1440/forge-duo-c.webp", - "/assets/webp/1440x1440/forge-anvil-c.webp", - "/assets/webp/1440x1440/forge-work-c.webp", - "/assets/webp/1440x1440/forge-fire-c.webp", - "/assets/webp/1440x1440/trio-portraits-c.webp", - "/assets/webp/1440x1440/ravens-flight-c.webp", - "/assets/webp/1440x1440/desk-work-c.webp", - "/assets/webp/1440x1440/warrior-solo-c.webp", - "/assets/webp/1440x1440/trio-profiles-c.webp", - "/assets/webp/1440x1440/stone-monuments-c.webp", - "/assets/webp/1440x1440/tree-mech-c.webp", - "/assets/webp/1440x1440/portal-arch-c.webp", - "/assets/webp/1440x1440/forge-building-c.webp", - "/assets/webp/1440x1440/table-castle-c.webp", - "/assets/webp/1440x1440/trio-arch-c.webp", - "/assets/webp/1440x1440/trio-backs-c.webp", - "/assets/webp/1440x1440/trio-beast-c.webp", - "/assets/webp/1440x1440/trio-wings-c.webp", - "/assets/webp/1440x1440/trio-mountain-c.webp", - "/assets/webp/1440x1440/trio-orb-c.webp", - "/assets/webp/1440x1440/trio-portal-c.webp", - "/assets/webp/1440x1440/trio-weapons-c.webp", - "/assets/webp/1440x1440/warriors-triangle-c.webp", - "/assets/webp/1440x1440/warriors-confident-c.webp", - "/assets/webp/1440x1440/warriors-forward-c.webp", - "/assets/webp/1440x1440/warriors-casual-c.webp", - "/assets/webp/1440x1440/warriors-orbs-c.webp", - "/assets/webp/1440x1440/warriors-magic-c.webp", - "/assets/webp/1440x1440/warriors-white-c.webp", - "/assets/webp/1440x1440/warriors-ready-c.webp", - "/assets/webp/1440x1440/warriors-belts-c.webp", - "/assets/webp/1440x1440/warriors-standing-c.webp", - "/assets/webp/1440x1440/warriors-masked-c.webp", - "/assets/webp/1440x1440/warriors-armed-c.webp", - "/assets/webp/1440x1440/trio-warriors-c.webp", - "/assets/webp/1080x1440/tower-platform-bw.webp", - "/assets/webp/1080x1440/stairs-twist-bw.webp", - "/assets/webp/1080x1440/stairs-curve-bw.webp", - "/assets/webp/1080x1440/stairs-cloud-bw.webp", - "/assets/webp/1080x1440/book-orb-bw.webp", - "/assets/webp/1080x1440/tree-island-bw.webp", - "/assets/webp/1080x1440/arch-gate-bw.webp", - "/assets/webp/1080x1440/tower-floating-bw.webp", - "/assets/webp/1080x1440/tower-tree-bw.webp", - "/assets/webp/1080x1440/compass-circular-bw.webp", - "/assets/webp/1080x1440/stone-pedestal-bw.webp", - "/assets/webp/1080x1440/raven-solo-bw.webp", - "/assets/webp/1440x1440/castle-flag-bw.webp", - "/assets/webp/1440x1440/castle-staff-bw.webp", - "/assets/webp/1440x1440/warriors-moloch-bw.webp", - "/assets/webp/1440x1440/stairs-spiral-bw.webp", - "/assets/webp/1440x1440/forge-duo-bw.webp", - "/assets/webp/1440x1440/forge-anvil-bw.webp", - "/assets/webp/1440x1440/forge-work-bw.webp", - "/assets/webp/1440x1440/forge-fire-bw.webp", - "/assets/webp/1440x1440/trio-portraits-bw.webp", - "/assets/webp/1440x1440/ravens-flight-bw.webp", - "/assets/webp/1440x1440/desk-work-bw.webp", - "/assets/webp/1440x1440/warrior-solo-bw.webp", - "/assets/webp/1440x1440/trio-profiles-bw.webp", - "/assets/webp/1440x1440/stone-monuments-bw.webp", - "/assets/webp/1440x1440/tree-mech-bw.webp", - "/assets/webp/1440x1440/portal-arch-bw.webp", - "/assets/webp/1440x1440/forge-building-bw.webp", - "/assets/webp/1440x1440/table-castle-bw.webp", - "/assets/webp/1440x1440/trio-arch-bw.webp", - "/assets/webp/1440x1440/trio-backs-bw.webp", - "/assets/webp/1440x1440/trio-beast-bw.webp", - "/assets/webp/1440x1440/trio-wings-bw.webp", - "/assets/webp/1440x1440/trio-mountain-bw.webp", - "/assets/webp/1440x1440/trio-orb-bw.webp", - "/assets/webp/1440x1440/trio-portal-bw.webp", - "/assets/webp/1440x1440/trio-weapons-bw.webp", - "/assets/webp/1440x1440/trio-warriors-bw.webp", - "/assets/webp/1440x1440/warriors-triangle-bw.webp", - "/assets/webp/1440x1440/warriors-confident-bw.webp", - "/assets/webp/1440x1440/warriors-forward-bw.webp", - "/assets/webp/1440x1440/warriors-casual-bw.webp", - "/assets/webp/1440x1440/warriors-orbs-bw.webp", - "/assets/webp/1440x1440/warriors-magic-bw.webp", - "/assets/webp/1440x1440/warriors-white-bw.webp", - "/assets/webp/1440x1440/warriors-ready-bw.webp", - "/assets/webp/1440x1440/warriors-belts-bw.webp", - "/assets/webp/1440x1440/warriors-standing-bw.webp", - "/assets/webp/1440x1440/warriors-masked-bw.webp", - "/assets/webp/1440x1440/warriors-armed-bw.webp", + "/assets/webp/scroll100/1080x1440/tower-platform-c.webp", + "/assets/webp/scroll100/1080x1440/stairs-twist-c.webp", + "/assets/webp/scroll100/1080x1440/stairs-curve-c.webp", + "/assets/webp/scroll100/1080x1440/stairs-cloud-c.webp", + "/assets/webp/scroll100/1080x1440/book-orb-c.webp", + "/assets/webp/scroll100/1080x1440/tree-island-c.webp", + "/assets/webp/scroll100/1080x1440/arch-gate-c.webp", + "/assets/webp/scroll100/1080x1440/tower-floating-c.webp", + "/assets/webp/scroll100/1080x1440/tower-tree-c.webp", + "/assets/webp/scroll100/1080x1440/compass-circular-c.webp", + "/assets/webp/scroll100/1080x1440/stone-pedestal-c.webp", + "/assets/webp/scroll100/1080x1440/raven-solo-c.webp", + "/assets/webp/scroll100/1440x1440/castle-staff-c.webp", + "/assets/webp/scroll100/1440x1440/castle-flag-c.webp", + "/assets/webp/scroll100/1440x1440/warriors-moloch-c.webp", + "/assets/webp/scroll100/1440x1440/stairs-spiral-c.webp", + "/assets/webp/scroll100/1440x1440/forge-duo-c.webp", + "/assets/webp/scroll100/1440x1440/forge-anvil-c.webp", + "/assets/webp/scroll100/1440x1440/forge-work-c.webp", + "/assets/webp/scroll100/1440x1440/forge-fire-c.webp", + "/assets/webp/scroll100/1440x1440/trio-portraits-c.webp", + "/assets/webp/scroll100/1440x1440/ravens-flight-c.webp", + "/assets/webp/scroll100/1440x1440/desk-work-c.webp", + "/assets/webp/scroll100/1440x1440/warrior-solo-c.webp", + "/assets/webp/scroll100/1440x1440/trio-profiles-c.webp", + "/assets/webp/scroll100/1440x1440/stone-monuments-c.webp", + "/assets/webp/scroll100/1440x1440/tree-mech-c.webp", + "/assets/webp/scroll100/1440x1440/portal-arch-c.webp", + "/assets/webp/scroll100/1440x1440/forge-building-c.webp", + "/assets/webp/scroll100/1440x1440/table-castle-c.webp", + "/assets/webp/scroll100/1440x1440/trio-arch-c.webp", + "/assets/webp/scroll100/1440x1440/trio-backs-c.webp", + "/assets/webp/scroll100/1440x1440/trio-beast-c.webp", + "/assets/webp/scroll100/1440x1440/trio-wings-c.webp", + "/assets/webp/scroll100/1440x1440/trio-mountain-c.webp", + "/assets/webp/scroll100/1440x1440/trio-orb-c.webp", + "/assets/webp/scroll100/1440x1440/trio-portal-c.webp", + "/assets/webp/scroll100/1440x1440/trio-weapons-c.webp", + "/assets/webp/scroll100/1440x1440/warriors-triangle-c.webp", + "/assets/webp/scroll100/1440x1440/warriors-confident-c.webp", + "/assets/webp/scroll100/1440x1440/warriors-forward-c.webp", + "/assets/webp/scroll100/1440x1440/warriors-casual-c.webp", + "/assets/webp/scroll100/1440x1440/warriors-orbs-c.webp", + "/assets/webp/scroll100/1440x1440/warriors-magic-c.webp", + "/assets/webp/scroll100/1440x1440/warriors-white-c.webp", + "/assets/webp/scroll100/1440x1440/warriors-ready-c.webp", + "/assets/webp/scroll100/1440x1440/warriors-belts-c.webp", + "/assets/webp/scroll100/1440x1440/warriors-standing-c.webp", + "/assets/webp/scroll100/1440x1440/warriors-masked-c.webp", + "/assets/webp/scroll100/1440x1440/warriors-armed-c.webp", + "/assets/webp/scroll100/1440x1440/trio-warriors-c.webp", + "/assets/webp/scroll100/1080x1440/tower-platform-bw.webp", + "/assets/webp/scroll100/1080x1440/stairs-twist-bw.webp", + "/assets/webp/scroll100/1080x1440/stairs-curve-bw.webp", + "/assets/webp/scroll100/1080x1440/stairs-cloud-bw.webp", + "/assets/webp/scroll100/1080x1440/book-orb-bw.webp", + "/assets/webp/scroll100/1080x1440/tree-island-bw.webp", + "/assets/webp/scroll100/1080x1440/arch-gate-bw.webp", + "/assets/webp/scroll100/1080x1440/tower-floating-bw.webp", + "/assets/webp/scroll100/1080x1440/tower-tree-bw.webp", + "/assets/webp/scroll100/1080x1440/compass-circular-bw.webp", + "/assets/webp/scroll100/1080x1440/stone-pedestal-bw.webp", + "/assets/webp/scroll100/1080x1440/raven-solo-bw.webp", + "/assets/webp/scroll100/1440x1440/castle-flag-bw.webp", + "/assets/webp/scroll100/1440x1440/castle-staff-bw.webp", + "/assets/webp/scroll100/1440x1440/warriors-moloch-bw.webp", + "/assets/webp/scroll100/1440x1440/stairs-spiral-bw.webp", + "/assets/webp/scroll100/1440x1440/forge-duo-bw.webp", + "/assets/webp/scroll100/1440x1440/forge-anvil-bw.webp", + "/assets/webp/scroll100/1440x1440/forge-work-bw.webp", + "/assets/webp/scroll100/1440x1440/forge-fire-bw.webp", + "/assets/webp/scroll100/1440x1440/trio-portraits-bw.webp", + "/assets/webp/scroll100/1440x1440/ravens-flight-bw.webp", + "/assets/webp/scroll100/1440x1440/desk-work-bw.webp", + "/assets/webp/scroll100/1440x1440/warrior-solo-bw.webp", + "/assets/webp/scroll100/1440x1440/trio-profiles-bw.webp", + "/assets/webp/scroll100/1440x1440/stone-monuments-bw.webp", + "/assets/webp/scroll100/1440x1440/tree-mech-bw.webp", + "/assets/webp/scroll100/1440x1440/portal-arch-bw.webp", + "/assets/webp/scroll100/1440x1440/forge-building-bw.webp", + "/assets/webp/scroll100/1440x1440/table-castle-bw.webp", + "/assets/webp/scroll100/1440x1440/trio-arch-bw.webp", + "/assets/webp/scroll100/1440x1440/trio-backs-bw.webp", + "/assets/webp/scroll100/1440x1440/trio-beast-bw.webp", + "/assets/webp/scroll100/1440x1440/trio-wings-bw.webp", + "/assets/webp/scroll100/1440x1440/trio-mountain-bw.webp", + "/assets/webp/scroll100/1440x1440/trio-orb-bw.webp", + "/assets/webp/scroll100/1440x1440/trio-portal-bw.webp", + "/assets/webp/scroll100/1440x1440/trio-weapons-bw.webp", + "/assets/webp/scroll100/1440x1440/trio-warriors-bw.webp", + "/assets/webp/scroll100/1440x1440/warriors-triangle-bw.webp", + "/assets/webp/scroll100/1440x1440/warriors-confident-bw.webp", + "/assets/webp/scroll100/1440x1440/warriors-forward-bw.webp", + "/assets/webp/scroll100/1440x1440/warriors-casual-bw.webp", + "/assets/webp/scroll100/1440x1440/warriors-orbs-bw.webp", + "/assets/webp/scroll100/1440x1440/warriors-magic-bw.webp", + "/assets/webp/scroll100/1440x1440/warriors-white-bw.webp", + "/assets/webp/scroll100/1440x1440/warriors-ready-bw.webp", + "/assets/webp/scroll100/1440x1440/warriors-belts-bw.webp", + "/assets/webp/scroll100/1440x1440/warriors-standing-bw.webp", + "/assets/webp/scroll100/1440x1440/warriors-masked-bw.webp", + "/assets/webp/scroll100/1440x1440/warriors-armed-bw.webp", ]; export default function Home() { @@ -211,6 +211,14 @@ export default function Home() {

+

+ + AI sub-brand → + +

{/* For Designers & Developers */} @@ -273,7 +281,8 @@ export default function Home() { Illustrations

- Technology-forward line art library echoing cyberpunk and D&D heroism + Technology-forward line art library echoing cyberpunk and D&D + heroism

@@ -286,7 +295,8 @@ export default function Home() { Iconography

- Magical mystical symbols paired with practical development and community icons + Magical mystical symbols paired with practical development and + community icons

@@ -344,6 +354,66 @@ export default function Home() { + + {/* For Agents */} +
+

+ For Agents +

+

+ Give an AI agent everything it needs to build with the RaidGuild + brand — a markdown manifest for context, structured JSON for + programmatic use, and a paid API for the complete guidelines + package. +

+
+ +

+ Agent Manifest (Markdown) +

+

+ One file that teaches an AI agent the whole brand — guidelines, + assets, and download URLs. Drop it into your agent's + context. +

+ + + +

+ brand-assets.json +

+

+ The same inventory, machine-readable. Served live for + programmatic use. +

+ + + +

+ Paid Guidelines API (x402) +

+

+ The complete guidelines package via x402 micropayment. + Discovery is public; the full payload requires payment. +

+ +
+
); diff --git a/src/components/illustrations/IllustrationGallery.tsx b/src/components/illustrations/IllustrationGallery.tsx index e28bfb2..cbd32dc 100644 --- a/src/components/illustrations/IllustrationGallery.tsx +++ b/src/components/illustrations/IllustrationGallery.tsx @@ -5,6 +5,7 @@ import Image from "next/image"; type IllustrationVariant = "color" | "bw"; type IllustrationSize = "1440x1440" | "1080x1440" | "1440x550"; +type BackgroundVariant = "scroll100" | "moloch800" | "moloch500" | "scroll700"; interface Illustration { name: string; @@ -17,14 +18,22 @@ const illustrations: Illustration[] = [ { name: "castle-staff", displayName: "Castle Staff", sizes: ["1440x1440"] }, { name: "desk-work", displayName: "Desk Work", sizes: ["1440x1440"] }, { name: "forge-anvil", displayName: "Forge Anvil", sizes: ["1440x1440"] }, - { name: "forge-building", displayName: "Forge Building", sizes: ["1440x1440"] }, + { + name: "forge-building", + displayName: "Forge Building", + sizes: ["1440x1440"], + }, { name: "forge-duo", displayName: "Forge Duo", sizes: ["1440x1440"] }, { name: "forge-fire", displayName: "Forge Fire", sizes: ["1440x1440"] }, { name: "forge-work", displayName: "Forge Work", sizes: ["1440x1440"] }, { name: "portal-arch", displayName: "Portal Arch", sizes: ["1440x1440"] }, { name: "ravens-flight", displayName: "Ravens Flight", sizes: ["1440x1440"] }, { name: "stairs-spiral", displayName: "Stairs Spiral", sizes: ["1440x1440"] }, - { name: "stone-monuments", displayName: "Stone Monuments", sizes: ["1440x1440"] }, + { + name: "stone-monuments", + displayName: "Stone Monuments", + sizes: ["1440x1440"], + }, { name: "table-castle", displayName: "Table Castle", sizes: ["1440x1440"] }, { name: "tree-mech", displayName: "Tree Mech", sizes: ["1440x1440"] }, { name: "trio-arch", displayName: "Trio Arch", sizes: ["1440x1440"] }, @@ -33,35 +42,103 @@ const illustrations: Illustration[] = [ { name: "trio-mountain", displayName: "Trio Mountain", sizes: ["1440x1440"] }, { name: "trio-orb", displayName: "Trio Orb", sizes: ["1440x1440"] }, { name: "trio-portal", displayName: "Trio Portal", sizes: ["1440x1440"] }, - { name: "trio-portraits", displayName: "Trio Portraits", sizes: ["1440x1440"] }, + { + name: "trio-portraits", + displayName: "Trio Portraits", + sizes: ["1440x1440"], + }, { name: "trio-profiles", displayName: "Trio Profiles", sizes: ["1440x1440"] }, { name: "trio-warriors", displayName: "Trio Warriors", sizes: ["1440x1440"] }, { name: "trio-weapons", displayName: "Trio Weapons", sizes: ["1440x1440"] }, { name: "trio-wings", displayName: "Trio Wings", sizes: ["1440x1440"] }, { name: "warrior-solo", displayName: "Warrior Solo", sizes: ["1440x1440"] }, - { name: "warriors-armed", displayName: "Warriors Armed", sizes: ["1440x1440"] }, - { name: "warriors-belts", displayName: "Warriors Belts", sizes: ["1440x1440"] }, - { name: "warriors-casual", displayName: "Warriors Casual", sizes: ["1440x1440"] }, - { name: "warriors-confident", displayName: "Warriors Confident", sizes: ["1440x1440"] }, - { name: "warriors-forward", displayName: "Warriors Forward", sizes: ["1440x1440"] }, - { name: "warriors-magic", displayName: "Warriors Magic", sizes: ["1440x1440"] }, - { name: "warriors-masked", displayName: "Warriors Masked", sizes: ["1440x1440"] }, - { name: "warriors-moloch", displayName: "Warriors Moloch", sizes: ["1440x1440"] }, + { + name: "warriors-armed", + displayName: "Warriors Armed", + sizes: ["1440x1440"], + }, + { + name: "warriors-belts", + displayName: "Warriors Belts", + sizes: ["1440x1440"], + }, + { + name: "warriors-casual", + displayName: "Warriors Casual", + sizes: ["1440x1440"], + }, + { + name: "warriors-confident", + displayName: "Warriors Confident", + sizes: ["1440x1440"], + }, + { + name: "warriors-forward", + displayName: "Warriors Forward", + sizes: ["1440x1440"], + }, + { + name: "warriors-magic", + displayName: "Warriors Magic", + sizes: ["1440x1440"], + }, + { + name: "warriors-masked", + displayName: "Warriors Masked", + sizes: ["1440x1440"], + }, + { + name: "warriors-moloch", + displayName: "Warriors Moloch", + sizes: ["1440x1440"], + }, { name: "warriors-orbs", displayName: "Warriors Orbs", sizes: ["1440x1440"] }, - { name: "warriors-ready", displayName: "Warriors Ready", sizes: ["1440x1440"] }, - { name: "warriors-standing", displayName: "Warriors Standing", sizes: ["1440x1440"] }, - { name: "warriors-triangle", displayName: "Warriors Triangle", sizes: ["1440x1440"] }, - { name: "warriors-white", displayName: "Warriors White", sizes: ["1440x1440"] }, + { + name: "warriors-ready", + displayName: "Warriors Ready", + sizes: ["1440x1440"], + }, + { + name: "warriors-standing", + displayName: "Warriors Standing", + sizes: ["1440x1440"], + }, + { + name: "warriors-triangle", + displayName: "Warriors Triangle", + sizes: ["1440x1440"], + }, + { + name: "warriors-white", + displayName: "Warriors White", + sizes: ["1440x1440"], + }, { name: "arch-gate", displayName: "Arch Gate", sizes: ["1080x1440"] }, { name: "book-orb", displayName: "Book Orb", sizes: ["1080x1440"] }, - { name: "compass-circular", displayName: "Compass Circular", sizes: ["1080x1440"] }, + { + name: "compass-circular", + displayName: "Compass Circular", + sizes: ["1080x1440"], + }, { name: "raven-solo", displayName: "Raven Solo", sizes: ["1080x1440"] }, { name: "stairs-cloud", displayName: "Stairs Cloud", sizes: ["1080x1440"] }, { name: "stairs-curve", displayName: "Stairs Curve", sizes: ["1080x1440"] }, { name: "stairs-twist", displayName: "Stairs Twist", sizes: ["1080x1440"] }, - { name: "stone-pedestal", displayName: "Stone Pedestal", sizes: ["1080x1440"] }, - { name: "tower-floating", displayName: "Tower Floating", sizes: ["1080x1440"] }, - { name: "tower-platform", displayName: "Tower Platform", sizes: ["1080x1440"] }, + { + name: "stone-pedestal", + displayName: "Stone Pedestal", + sizes: ["1080x1440"], + }, + { + name: "tower-floating", + displayName: "Tower Floating", + sizes: ["1080x1440"], + }, + { + name: "tower-platform", + displayName: "Tower Platform", + sizes: ["1080x1440"], + }, { name: "tower-tree", displayName: "Tower Tree", sizes: ["1080x1440"] }, { name: "tree-island", displayName: "Tree Island", sizes: ["1080x1440"] }, { name: "ship-front", displayName: "Ship Front", sizes: ["1440x550"] }, @@ -70,30 +147,34 @@ const illustrations: Illustration[] = [ export default function IllustrationGallery() { const [selectedIllustration, setSelectedIllustration] = useState( - illustrations[0] + illustrations[0], ); const [variant, setVariant] = useState("color"); const [size, setSize] = useState("1440x1440"); + const [background, setBackground] = useState("scroll100"); const getImagePath = ( name: string, variant: IllustrationVariant, size: IllustrationSize, - isThumbnail = false + isThumbnail = false, ) => { const suffix = variant === "color" ? "-c" : "-bw"; const folder = isThumbnail ? `thumbnails/${size}` : size; - return `/assets/webp/${folder}/${name}${suffix}.webp`; + return `/assets/webp/${background}/${folder}/${name}${suffix}.webp`; }; const filteredIllustrations = illustrations.filter((ill) => - ill.sizes.includes(size) + ill.sizes.includes(size), ); // When size changes, automatically select the first illustration in the new size category useEffect(() => { const firstInCategory = filteredIllustrations[0]; - if (firstInCategory && !filteredIllustrations.includes(selectedIllustration)) { + if ( + firstInCategory && + !filteredIllustrations.includes(selectedIllustration) + ) { setSelectedIllustration(firstInCategory); } }, [size, filteredIllustrations, selectedIllustration]); @@ -104,6 +185,40 @@ export default function IllustrationGallery() {
{/* Controls */}
+ {/* Size Filter */} +
+ + + +
+ {/* Variant Toggle */}
- {/* Size Filter */} + {/* Background Variant Toggle */}
+
@@ -171,7 +296,7 @@ export default function IllustrationGallery() { selectedIllustration.name, variant, size, - false + false, )} alt={selectedIllustration.displayName} fill @@ -188,7 +313,14 @@ export default function IllustrationGallery() { {selectedIllustration.displayName}

- {size} • {variant === "color" ? "Full Color" : "Black & White"} + {size} • {variant === "color" ? "Full Color" : "Black & White"} •{" "} + {background === "scroll100" + ? "Scroll 100" + : background === "scroll700" + ? "Scroll 700" + : background === "moloch500" + ? "Moloch 500" + : "Moloch 800"}